Skip to content

Commit

Permalink
Make timeout/timeoutTo always return the outcome of the effect
Browse files Browse the repository at this point in the history
`timeout*` methods are implemented in terms of a race between a desired
effect and the timeout. In the case that both effects complete
simultaneously, it could happen that the timeout would win the race, a
`TimeoutException` be raised, and the outcome of the desired effect
lost.

As is noted in #3456, this is a general problem with the `race*`
methods, and can't be addressed in the general case without breaking the
current interfaces.

This change is a more narrow take on the problem specifically focusing
on the `timeout` and `timeoutTo` methods. As these methods inherently
wait for both racing effects to complete, the implementation is changed
to always take into account the outcome of the desired effect, only
raising a `TimeoutException` if the timeout won the race *and* the
desired effect was effectively canceled. Similarly, errors from the
desired effect are preferentially propagated over the generic
`TimeoutException`.

The `timeoutAndForget` methods are left unchanged, as they explicitly
avoid waiting for the losing effect to finish.

This change allows for `timeout` and `timeoutTo` methods to be safely
used on effects that acquire resources, such as `Semaphore.acquire`,
ensuring that successful outcomes are always propagated back to the
user.
  • Loading branch information
biochimia committed Apr 24, 2024
1 parent 1ba83f0 commit ee7f1f6
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 24 deletions.
9 changes: 6 additions & 3 deletions core/shared/src/main/scala/cats/effect/IO.scala
Original file line number Diff line number Diff line change
Expand Up @@ -819,9 +819,12 @@ sealed abstract class IO[+A] private () extends IOPlatform[A] {
*/
def timeoutTo[A2 >: A](duration: Duration, fallback: IO[A2]): IO[A2] = {
handleDuration[IO[A2]](duration, this) { finiteDuration =>
race(IO.sleep(finiteDuration)).flatMap {
case Right(_) => fallback
case Left(value) => IO.pure(value)
IO.uncancelable { poll =>
poll(racePair(IO.sleep(finiteDuration))) flatMap {
case Left((oc, f)) => f.cancel *> oc.embed(poll(IO.canceled) *> IO.never)
case Right((f, _)) =>
f.cancel *> f.join.flatMap { oc => oc.fold(fallback, IO.raiseError, identity) }
}
}
}
}
Expand Down
23 changes: 17 additions & 6 deletions kernel/shared/src/main/scala/cats/effect/kernel/GenTemporal.scala
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,13 @@ trait GenTemporal[F[_], E] extends GenConcurrent[F, E] with Clock[F] {
handleDuration(duration, fa)(timeoutTo(fa, _, fallback))

protected def timeoutTo[A](fa: F[A], duration: FiniteDuration, fallback: F[A]): F[A] =
flatMap(race(fa, sleep(duration))) {
case Left(a) => pure(a)
case Right(_) => fallback
uncancelable { poll =>
implicit val F: GenTemporal[F, E] = this

poll(racePair(fa, sleep(duration))) flatMap {
case Left((oc, f)) => f.cancel *> oc.embed(poll(F.canceled) *> F.never)
case Right((f, _)) => f.cancel *> f.join.flatMap { oc => oc.embed(fallback) }
}
}

/**
Expand All @@ -115,9 +119,16 @@ trait GenTemporal[F[_], E] extends GenConcurrent[F, E] with Clock[F] {

protected def timeout[A](fa: F[A], duration: FiniteDuration)(
implicit ev: TimeoutException <:< E): F[A] = {
flatMap(race(fa, sleep(duration))) {
case Left(a) => pure(a)
case Right(_) => raiseError[A](ev(new TimeoutException(duration.toString())))
uncancelable { poll =>
implicit val F: GenTemporal[F, E] = this

poll(racePair(fa, sleep(duration))) flatMap {
case Left((oc, f)) => f.cancel *> oc.embed(poll(F.canceled) *> F.never)
case Right((f, _)) =>
f.cancel *> f.join.flatMap { oc =>
oc.embed(raiseError[A](ev(new TimeoutException(duration.toString()))))
}
}
}
}

Expand Down
89 changes: 74 additions & 15 deletions laws/shared/src/test/scala/cats/effect/laws/GenTemporalSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ package cats
package effect
package laws

import cats.effect.kernel.Temporal
import cats.effect.kernel.{Outcome, Temporal}
import cats.effect.kernel.testkit.TimeT
import cats.effect.kernel.testkit.pure._
import cats.syntax.all._

import org.specs2.mutable.Specification

import scala.concurrent.TimeoutException
import scala.concurrent.duration._
// import scala.concurrent.TimeoutException

class GenTemporalSpec extends Specification { outer =>

Expand All @@ -43,6 +43,40 @@ class GenTemporalSpec extends Specification { outer =>
val fa = F.pure(true)
F.timeout(fa, Duration.Inf) mustEqual fa
}

"succeed on a fast action" in {
val op = F.timeout(F.pure(true), Duration.Zero)

run(TimeT.run(op)) mustEqual Outcome.Succeeded(Some(true))
}

"error out on a slow action" in {
val op = F.timeout(F.never.as(true), Duration.Zero)

run(TimeT.run(op)) must beLike {
case Outcome.Errored(e) => e must haveClass[TimeoutException]
}
}

"propagate successful outcome of uncancelable action" in {
val fa = F.uncancelable(_ => F.sleep(50.millis).as(true))
val op = F.timeout(fa, Duration.Zero)

run(TimeT.run(op)) mustEqual Outcome.Succeeded(Some(true))
}

"propagate errors from uncancelable action" in {
val fa = F.uncancelable { _ =>
F.sleep(50.millis) *> F.raiseError(new RuntimeException("fa failed")).as(true)
}
val op = F.timeout(fa, Duration.Zero)

run(TimeT.run(op)) must beLike {
case Outcome.Errored(e) =>
e must haveClass[RuntimeException]
e.getMessage mustEqual "fa failed"
}
}
}

"timeoutTo" should {
Expand All @@ -51,6 +85,44 @@ class GenTemporalSpec extends Specification { outer =>
val fallback: TimeT[F, Boolean] = F.raiseError(new RuntimeException)
F.timeoutTo(fa, Duration.Inf, fallback) mustEqual fa
}

"succeed on a fast action" in {
val fallback: TimeT[F, Boolean] = F.raiseError(new RuntimeException)
val op = F.timeoutTo(F.pure(true), Duration.Zero, fallback)

run(TimeT.run(op)) mustEqual Outcome.Succeeded(Some(true))
}

"error out on a slow action" in {
val fallback: TimeT[F, Boolean] = F.raiseError(new RuntimeException)
val op = F.timeoutTo(F.never.as(true), Duration.Zero, fallback)

run(TimeT.run(op)) must beLike {
case Outcome.Errored(e) => e must haveClass[RuntimeException]
}
}

"propagate successful outcome of uncancelable action" in {
val fallback: TimeT[F, Boolean] = F.raiseError(new RuntimeException)
val fa = F.uncancelable(_ => F.sleep(50.millis).as(true))
val op = F.timeoutTo(fa, Duration.Zero, fallback)

run(TimeT.run(op)) mustEqual Outcome.Succeeded(Some(true))
}

"propagate errors from uncancelable action" in {
val fallback: TimeT[F, Boolean] = F.raiseError(new RuntimeException)
val fa = F.uncancelable { _ =>
F.sleep(50.millis) *> F.raiseError(new RuntimeException("fa failed")).as(true)
}
val op = F.timeoutTo(fa, Duration.Zero, fallback)

run(TimeT.run(op)) must beLike {
case Outcome.Errored(e) =>
e must haveClass[RuntimeException]
e.getMessage mustEqual "fa failed"
}
}
}

"timeoutAndForget" should {
Expand All @@ -63,13 +135,6 @@ class GenTemporalSpec extends Specification { outer =>

// TODO enable these tests once Temporal for TimeT is fixed
/*"temporal" should {
"timeout" should {
"succeed" in {
val op = F.timeout(F.pure(true), 10.seconds)
run(TimeT.run(op)) mustEqual Succeeded(Some(true))
}.pendingUntilFixed
"cancel a loop" in {
val op: TimeT[F, Either[Throwable, Unit]] = F.timeout(loop, 5.millis).attempt
Expand All @@ -80,12 +145,6 @@ class GenTemporalSpec extends Specification { outer =>
}
"timeoutTo" should {
"succeed" in {
val op: TimeT[F, Boolean] = F.timeoutTo(F.pure(true), 5.millis, F.raiseError(new RuntimeException))
run(TimeT.run(op)) mustEqual Succeeded(Some(true))
}.pendingUntilFixed
"use fallback" in {
val op: TimeT[F, Boolean] = F.timeoutTo(loop >> F.pure(false), 5.millis, F.pure(true))
Expand Down
17 changes: 17 additions & 0 deletions tests/shared/src/test/scala/cats/effect/IOSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1853,6 +1853,23 @@ class IOSpec extends BaseSpec with Discipline with IOPlatformSpecification {
"non-terminate on an uncancelable fiber" in ticked { implicit ticker =>
IO.never.uncancelable.timeout(1.second) must nonTerminate
}

"propagate successful result from a completed effect" in real {
IO.pure(true).delayBy(50.millis).uncancelable.timeout(10.millis).map { res =>
res must beTrue
}
}

"propagate error from a completed effect" in real {
IO.raiseError(new RuntimeException)
.delayBy(50.millis)
.uncancelable
.timeout(10.millis)
.attempt
.map { res =>
res must beLike { case Left(e) => e must haveClass[RuntimeException] }
}
}
}

"timeoutTo" should {
Expand Down

0 comments on commit ee7f1f6

Please sign in to comment.