scalaz/ioeffect

Name: ioeffect

Owner: Scalaz

Description: An effect monad for Scalaz 7.x.

Created: 2018-04-10 17:06:58.0

Updated: 2018-05-20 19:22:48.0

Pushed: 2018-05-14 08:10:19.0

Homepage:

Size: 108

Language: Scala

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Build Status

Backport of the IO Monad to scalaz 7.2.

There are no binary or source compatibility guarantees between releases of this preview.

aryDependencies += "org.scalaz" %% "scalaz-ioeffect" % "<version>"

where <version> is the latest on maven central.

scalaz-ioeffect

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:

Why IO?

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:

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.

Introduction

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).

Usage

Main

Your main function can extend SafeApp, which provides a complete runtime system and allows your entire program to be purely functional.

rt scalaz.ioeffect.{IO, SafeApp}
rt scalaz.ioeffect.console._

rt java.io.IOException

ct MyApp extends SafeApp {
pe Error = IOException

f run(args: List[String]): IO[Error, Unit] =
for {
  _ <- putStrLn("Hello! What is your name?")
  n <- getStrLn
  _ <- putStrLn("Hello, " + n + ", good to meet you!")
} yield ()

Pure Values

You can lift pure values into IO with IO.point:

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:

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.

Impure Code

You can use the sync method of IO to import effectful synchronous code into your purely functional program:

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:

readFile(name: String): IO[Exception, ByteArray] =
.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:

makeRequest(req: Request): IO[HttpException, Response] =
.async(cb => Http.req(req, cb))
Mapping

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.

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:

response: IO[AppError, Response] =
keRequest(r).leftMap(AppError(_))
Chaining

You can execute two actions in sequence with the flatMap method. The second action may depend on the value produced by the first action.

contacts: IO[IOException, IList[Contact]] =
adFile("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:

contacts: IO[IOException, IList[Contact]] =
r {
file <- readFile("contacts.csv")
csv  <- parseCsv(file)
yield csv.map(rowToContact)
Failure

You can create IO actions that describe failure with IO.fail:

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:

file: IO[Void, Data] = readData("data.json").attempt[Void].map {
se -\/ (_)    => IO.point(NoData)
se  \/-(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]:

sqrt(io: IO[Void, Double]): IO[NonNegError, Double] =
.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:

File("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:

File("primary.json").catchSome {
se FileNotFoundException(_) => openFile("backup.json")

You can execute one action, or, if it fails, execute another action, with the orElse combinator:

file = openFile("primary.json").orElse(openFile("backup.json"))
Retry

There are a number of useful combinators for repeating actions until failure or success:

Brackets

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.

File("data.json").bracket(closeFile(_)) { file =>
r {
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:

composite = action1.ensuring(cleanupAction)
Fibers

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.

analyzed =
r {
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.

fib(n: Int): IO[Void, Int] =
 (n <= 1) IO.point(1)
se 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).

Error Model

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:

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.

Parallelism

To execute actions in parallel, the par method can be used:

bigCompute(m1: Matrix, m2: Matrix, v: Matrix): IO[Void, Matrix] =
r {
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.

Racing

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.

on1.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.

Performance

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.

Stack Safety

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 |

Thread Shifting - JVM

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.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.