Backport of the IO Monad to scalaz 7.2.
There are no binary or source compatibility guarantees between releases of this preview.
libraryDependencies += "org.scalaz" %% "scalaz-ioeffect" % "<version>"
where <version>
is the latest on maven central.
The scalaz.ioeffect
package provides a general-purpose effect monad and associated abstractions for purely functional Scala applications.
The package strives to deliver on the following design goals:
Effect monads like IO
are how purely functional programs interact with the real world. Functional programmers use them to build complex, real world software without giving up the equational reasoning, composability, and type safety afforded by purely functional programming.
However, there are many practical reasons to build your programs using IO
, including all of the following:
Future
, IO
lets you easily write asynchronous code without blocking or callbacks. Compared to Future
, IO
has significantly better performance and cleaner, more expressive, and more composable semantics.IO
lets you wrap up all effects into a purely functional package that lets you build composable real world programs.IO
has all the concurrency features of Future
, and more, based on a clean fiber concurrency model designed to scale well past the limits of native threads. Unlike other effect monads, IO
's concurrency primitives do not leak threads.IO
provides composable resource-safe primitives that ensure resources like threads, sockets, and file handles are not leaked, which allows you to build long-running, robust applications. These applications will not leak resources, even in the presence of errors or interruption.IO
, like Scala's immutable collection types, is an immutable data structure. All IO
methods and functions return new IO
values. This lets you reason about IO
values the same way you reason about immutable collections.IO
reifies programs. In non-functional Scala programming, you cannot pass programs around or store them in data structures, because programs are not values. But IO
turns your programs into ordinary values, and lets you pass them around and compose them with ease.IO
programs tend to be slower than the equivalent imperative Scala, IO
is extremely fast given all the expressive features and strong guarantees it provides. Ordinary imperative Scala could not match this level of expressivity and performance without tedious, error-prone boilerplate that no one would write in real-life.While functional programmers must use IO
(or something like it) to represent effects, nearly all programmers will find the features of IO
help them build scalable, performant, concurrent, and leak-free applications faster and with stronger correctness guarantees than legacy techniques allow.
Use IO
because it's simply not practical to write real-world, correct software without it.
A value of type IO[E, A]
describes an effect that may fail with an E
, run forever, or produce a single A
.
IO
values are immutable, and all IO
functions produce new IO
values, enabling IO
to be reasoned about and used like any ordinary Scala immutable data structure.
IO
values do not actually do anything. However, they may be interpreted by the IO
runtime system into effectful interactions with the external world. Ideally, this occurs at a single time, in your application's main
function (SafeApp
provides this functionality automatically).
Your main function can extend SafeApp
, which provides a complete runtime
system and allows your entire program to be purely functional.
import scalaz.ioeffect.{IO, SafeApp}
import scalaz.ioeffect.console._
import java.io.IOException
object MyApp extends SafeApp {
def run(args: List[String]): IO[Void, ExitStatus] =
myAppLogic.attempt.map(_.fold(_ => 1, _ => 0)).map(ExitStatus.ExitNow(_))
def myAppLogic: IO[IOException, Unit] =
for {
_ <- putStrLn("Hello! What is your name?")
n <- getStrLn
_ <- putStrLn("Hello, " + n + ", good to meet you!")
} yield ()
}
You can lift pure values into IO
with IO.point
:
val liftedString: IO[Void, String] = IO.point("Hello World")
The constructor uses non-strict evaluation, so the parameter will not be evaluated until when and if the IO
action is executed at runtime.
Alternately, you can use the IO.now
constructor for strict evaluation:
val lifted: IO[Void, String] = IO.now("Hello World")
You should never use either constructor for importing impure code into IO
. The result of doing so is undefined.
You can use the sync
method of IO
to import effectful synchronous code into your purely functional program:
val nanoTime: IO[Void, Long] = IO.sync(System.nanoTime())
If you are importing effectful code that may throw exceptions, you can use the syncException
method of IO
:
def readFile(name: String): IO[Exception, ByteArray] =
IO.syncException(FileUtils.readBytes(name))
The syncCatch
method is more general, allowing you to catch and optionally translate any type of Throwable
into an error type.
You can use the async
method of IO
to import effectful asynchronous code into your purely functional program:
def makeRequest(req: Request): IO[HttpException, Response] =
IO.async(cb => Http.req(req, cb))
You can change an IO[E, A]
to an IO[E, B]
by calling the map
method with a function A => B
. This lets you transform values produced by actions into other values.
val answer = IO.point(21).map(_ * 2)
You can transform an IO[E, A]
into an IO[E2, A]
by calling the leftMap
method with a function E => E2
:
val response: IO[AppError, Response] =
makeRequest(r).leftMap(AppError(_))
You can execute two actions in sequence with the flatMap
method. The second action may depend on the value produced by the first action.
val contacts: IO[IOException, IList[Contact]] =
readFile("contacts.csv").flatMap((file: ByteArray) =>
parseCsv(file).map((csv: IList[CsvRow]) =>
csv.map(rowToContact)
)
)
You can use Scala's for
comprehension syntax to make this type of code more compact:
val contacts: IO[IOException, IList[Contact]] =
for {
file <- readFile("contacts.csv")
csv <- parseCsv(file)
} yield csv.map(rowToContact)
You can create IO
actions that describe failure with IO.fail
:
val failure: IO[String, Unit] = IO.fail("Oh noes!")
Like all IO
values, these are immutable values and do not actually throw any exceptions; they merely describe failure as a first-class value.
You can surface failures with attempt
, which takes an IO[E, A]
and produces an IO[E2, E \/ A]
. The choice of E2
is unconstrained, because the resulting computation cannot fail with any error.
The scalaz.Void
type makes a suitable choice to describe computations that cannot fail:
val file: IO[Void, Data] = readData("data.json").attempt[Void].map {
case -\/ (_) => IO.point(NoData)
case \/-(data) => IO.point(data)
}
You can submerge failures with IO.absolve
, which is the opposite of attempt
and turns an IO[E, E \/ A]
into an IO[E, A]
:
def sqrt(io: IO[Void, Double]): IO[NonNegError, Double] =
IO.absolve(
io[NonNegError].map(value =>
if (value < 0.0) -\/(NonNegError)
else \/-(Math.sqrt(value))
)
)
If you want to catch and recover from all types of errors and effectfully attempt recovery, you can use the catchAll
method:
openFile("primary.json").catchAll(_ => openFile("backup.json"))
If you want to catch and recover from only some types of exceptions and effectfully attempt recovery, you can use the catchSome
method:
openFile("primary.json").catchSome {
case FileNotFoundException(_) => openFile("backup.json")
}
You can execute one action, or, if it fails, execute another action, with the orElse
combinator:
val file = openFile("primary.json").orElse(openFile("backup.json"))
There are a number of useful combinators for repeating actions until failure or success:
IO.forever
— Repeats the action until the first failure.IO.retry
— Repeats the action until the first success.IO.retryN(n)
— Repeats the action until the first success, for up to the specified number of times (n
).IO.retryFor(d)
— Repeats the action until the first success, for up to the specified amount of time (d
).Brackets are a built-in primitive that let you safely acquire and release resources.
Brackets are used for a similar purpose as try/catch/finally, only brackets work with synchronous and asynchronous actions, work seamlessly with fiber interruption, and are built on a different error model that ensures no errors are ever swallowed.
Brackets consist of an acquire action, a utilize action (which uses the acquired resource), and a release action.
The release action is guaranteed to be executed by the runtime system, even if the utilize action throws an exception or the executing fiber is interrupted.
openFile("data.json").bracket(closeFile(_)) { file =>
for {
data <- decodeData(file)
grouped <- groupData(data)
} yield grouped
}
Brackets have compositional semantics, so if a bracket is nested inside another bracket, and the outer bracket acquires a resource, then the outer bracket's release will always be called, even if, for example, the inner bracket's release fails.
A helper method called ensuring
provides a simpler analogue of finally
:
val composite = action1.ensuring(cleanupAction)
To perform an action without blocking the current process, you can use fibers, which are a lightweight mechanism for concurrency.
You can fork
any IO[E, A]
to immediately yield an IO[Void, Fiber[E, A]]
. The provided Fiber
can be used to join
the fiber, which will resume on production of the fiber's value, or to interrupt
the fiber with some exception.
val analyzed =
for {
fiber1 <- analyzeData(data).fork // IO[E, Analysis]
fiber2 <- validateData(data).fork // IO[E, Boolean]
... // Do other stuff
valid <- fiber2.join
_ <- if (!valid) fiber1.interrupt(DataValidationError(data))
else IO.unit
analyzed <- fiber1.join
} yield analyzed
On the JVM, fibers will use threads, but will not consume unlimited threads. Instead, fibers yield cooperatively during periods of high-contention.
def fib(n: Int): IO[Void, Int] =
if (n <= 1) IO.point(1)
else for {
fiber1 <- fib(n - 2).fork
fiber2 <- fib(n - 1).fork
v2 <- fiber2.join
v1 <- fiber1.join
} yield v1 + v2
Interrupting a fiber returns an action that resumes when the fiber has completed or has been interrupted and all its finalizers have been run. These precise semantics allow construction of programs that do not leak resources.
A more powerful variant of fork
, called fork0
, allows specification of supervisor that will be passed any non-recoverable errors from the forked fiber, including all such errors that occur in finalizers. If this supervisor is not specified, then the supervisor of the parent fiber will be used, recursively, up to the root handler, which can be specified in RTS
(the default supervisor merely prints the stack trace).
The IO
error model is simple, consistent, permits both typed errors and termination, and does not violate any laws in the Functor
hierarchy.
An IO[E, A]
value may only raise errors of type E
. These errors are recoverable, and may be caught the attempt
method. The attempt
method yields a value that cannot possibly fail with any error E
. This rigorous guarantee can be reflected at compile-time by choosing a new error type such as Nothing
or Void
, which is possible because attempt
is polymorphic in the error type of the returned value.
Separately from errors of type E
, a fiber may be terminated for the following reasons:
E
. This can happen only when an IO.fail
is not handled. For values of type IO[Void, A]
, this type of failure is impossible.map
or flatMap
. For example, io.map(_ => throw e)
, or io.flatMap(a => throw e)
. The solution to this problem is to not to pass impure functions to purely functional libraries like Scalaz, because doing so leads to violations of laws and destruction of equational reasoning.IO.point
, IO.sync
, etc. For importing partial effects into IO
, the proper solution is to use a method such as syncException
, which safely translates exceptions into values.When a fiber is terminated, the reason for the termination, expressed as a Throwable
, is passed to the fiber's supervisor, which may choose to log, print the stack trace, restart the fiber, or perform some other action appropriate to the context.
A fiber cannot stop its own termination. However, all finalizers will be run during termination, even when some finalizers throw non-recoverable errors. Errors thrown by finalizers are passed to the fiber's supervisor.
There are no circumstances in which any errors will be "lost", which makes the IO
error model more diagnostic-friendly than the try
/catch
/finally
construct that is baked into both Scala and Java, which can easily lose errors.
To execute actions in parallel, the par
method can be used:
def bigCompute(m1: Matrix, m2: Matrix, v: Matrix): IO[Void, Matrix] =
for {
t <- computeInverse(m1).par(computeInverse(m2))
val (i1, i2) = t
r <- applyMatrices(i1, i2, v)
} yield r
The par
combinator has resource-safe semantics. If one computation fails, the other computation will be interrupted, to prevent wasting resources.
Two IO
actions can be raced, which means they will be executed in parallel, and the value of the first action that completes successfully will be returned.
action1.race(action2)
The race
combinator is resource-safe, which means that if one of the two actions returns a value, the other one will be interrupted, to prevent wasting resources.
The race
and even par
combinators are a specialization of a much-more powerful combinator called raceWith
, which allows executing user-defined logic when the first of two actions succeeds.
scalaz.ioeffect
has excellent performance, featuring a hand-optimized, low-level interpreter that achieves zero allocations for right-associated binds, and minimal allocations for left-associated binds.
The benchmarks
project may be used to compare IO
with other effect monads, including Future
(which is not an effect monad but is included for reference), Monix Task
, and Cats IO
.
As of the time of this writing, IO
is significantly faster than or at least comparable to all other purely functional solutions.
IO
is stack-safe on infinitely recursive flatMap
invocations, for pure values, synchronous effects, and asynchronous effects. IO
is guaranteed to be stack-safe on repeated map
invocations (io.map(f1).map(f2)...map(f10000)
), for at least 10,000 repetitions.
map | flatMap | |
---|---|---|
sync | 10,000 iterations | unlimited |
async | unlimited | unlimited |
By default, fibers make no guarantees as to which thread they execute on. They may shift between threads, especially as they execute for long periods of time.
Fibers only ever shift onto the thread pool of the runtime system, which means that by default, fibers running for a sufficiently long time will always return to the runtime system's thread pool, even when their (asynchronous) resumptions were initiated from other threads.
For performance reasons, fibers will attempt to execute on the same thread for a (configurable) minimum period, before yielding to other fibers. Fibers that resume from asynchronous callbacks will resume on the initiating thread, and continue for some time before yielding and resuming on the runtime thread pool.
These defaults help guarantee stack safety and cooperative multitasking. They can be changed in RTS
if automatic thread shifting is not desired.