effectful/README.md

125 lines
5.1 KiB
Markdown
Raw Normal View History

2021-06-13 20:57:30 +03:00
# effectful
2021-06-11 16:06:54 +03:00
2021-06-13 20:57:30 +03:00
[![Build Status](https://github.com/arybczak/effectful/workflows/Haskell-CI/badge.svg?branch=master)](https://github.com/arybczak/effectful/actions?query=branch%3Amaster)
[![Documentation](https://img.shields.io/static/v1?label=docs&message=0.0.0.0&color=informational)](https://rybczak.net/files/effectful/effectful-0.0.0.0-docs)
2021-06-11 16:06:54 +03:00
2021-06-23 03:42:11 +03:00
*Note:* this is a pre-release.
2021-06-12 16:15:04 +03:00
2021-06-20 22:37:41 +03:00
An easy to use, performant extensible effects library with seamless integration
with the existing Haskell ecosystem.
2021-06-11 16:06:54 +03:00
Main features:
2021-06-23 03:42:11 +03:00
1. Very fast (benchmark results with GHC 8.8.4:
[countdown](https://rybczak.net/files/effectful/countdown.html),
2021-06-23 03:52:13 +03:00
[filesize](https://rybczak.net/files/effectful/filesize.html), [comparison
with eff](https://rybczak.net/files/effectful/eff_comparison.html)).
2021-06-11 16:06:54 +03:00
2021-06-22 13:24:48 +03:00
2. Easy to use API (no boilerplate code and dealing with arcane types).
2021-06-11 16:06:54 +03:00
3. Correct semantics in presence of runtime exceptions (no more lost or
discarded state).
2021-06-12 16:15:04 +03:00
4. Seamless integration with the existing ecosystem (`exceptions`,
2021-06-20 22:37:41 +03:00
`monad-control`, `unliftio-core`, `resourcet` etc.).
2021-06-11 16:06:54 +03:00
2021-06-12 02:59:04 +03:00
5. Effects can be defined for either
- static dispatch (as fast as it gets, single interpretation) or
2021-06-20 22:37:41 +03:00
- dynamic dispatch (a bit slower, multiple interpretations),
2021-06-12 02:59:04 +03:00
2021-06-11 16:06:54 +03:00
depending on your needs.
2021-06-12 02:59:04 +03:00
## Motivation
2021-06-12 16:15:04 +03:00
Do we really need yet another library for handling effects? There's
2021-06-12 02:59:04 +03:00
[freer-simple](https://hackage.haskell.org/package/freer-simple),
[fused-effects](https://hackage.haskell.org/package/fused-effects),
[polysemy](https://hackage.haskell.org/package/polysemy),
[eff](https://github.com/hasura/eff) and probably a few more.
2021-06-13 20:57:30 +03:00
Unfortunately, of all of them only `eff` is a promising proposition because of
reasonable performance characteristics (see the talk "Effects for Less" linked
below for more information) and potential for good interoperability with the
existing ecosystem.
2021-06-12 02:59:04 +03:00
The second point is arguably the most important, because it allows focusing on
things that matter instead of reinventing all kinds of wheels and is crucial for
adoption of the library.
However, `eff` uses delimited continuations underneath, which:
- Are not yet supported by GHC (though [the
proposal](https://github.com/ghc-proposals/ghc-proposals/pull/313) for including
support for them has been accepted).
2021-06-18 22:38:14 +03:00
- Are quite hard to understand.
2021-06-12 02:59:04 +03:00
2021-06-18 22:38:14 +03:00
- Make the library "too powerful" in a sense as it faces
[a](https://github.com/hasura/eff/issues/13)
[few](https://github.com/hasura/eff/issues/7)
[issues](https://github.com/hasura/eff/issues/12) with no clear path towards
their resolution.
2021-06-12 02:59:04 +03:00
On the other hand, if support for continuations is excluded from the handler
monad, then the ability to define effects with non-linear control flow (such as
2021-06-12 16:15:04 +03:00
`NonDet`) is lost. Arguably it's a small price to pay for predictability,
2021-06-12 02:59:04 +03:00
because such specialized effects are needed rarely and locally, at which point a
dedicated, well established solution such as
[conduit](https://hackage.haskell.org/package/conduit),
[list-t](https://hackage.haskell.org/package/list-t) or
[logict](https://hackage.haskell.org/package/logict) can be used.
2021-06-13 20:57:30 +03:00
This is where `effectful` comes in. The `Eff` monad it uses is essentially a
2021-06-12 02:59:04 +03:00
`ReaderT` over `IO` on steroids, allowing us to dynamically extend its
environment with data types that represent effects or their handlers.
2021-06-12 02:59:04 +03:00
Because this concept is so simple:
- It's reasonably easy to understand what is going on under the hood.
- The `Eff` monad being a reader allows for seamless interoperability with
ubiquitous classes such as `MonadBaseControl` and `MonadUnliftIO` as well as
support for handling runtime exceptions without worrying about lost or
discarded state (see the talk "Monad Transformer State" linked below for more
information).
What is more:
- The `Eff` monad is concrete, so GHC has many possibilities for optimization,
which results in a very fast code at a default optimization level. There is no
need to mark every function `INLINE` or enable additional optimization passes,
it just works.
- If an advanced effect with non-linear control flow is needed, you can always
stick a transformer that implements it on top of `Eff` in a local context.
2021-06-13 20:57:30 +03:00
In conclusion, `effectful` aims to reduce duplication and bring back performance
2021-06-12 02:59:04 +03:00
to "boring" transformer stacks, most of which are a dozen of newtype'd `StateT`
or `ReaderT` transformers, each with a few associated operations (usually tied
to a type class), not to replace monad transformers altogether.
2021-06-11 16:06:54 +03:00
## Example
A `Filesystem` effect with two handlers, one that runs in `IO` and another that
uses an in-memory virtual file system can be found
2021-06-13 20:57:30 +03:00
[here](https://github.com/arybczak/effectful/blob/master/examples/FileSystem.hs).
2021-06-11 16:26:44 +03:00
## Resources
Resources that inspired the rise of this library and had a lot of impact on its
design.
Talks:
* [Effects for Less](https://www.youtube.com/watch?v=0jI-AlWEwYI) by Alexis King.
2021-06-18 22:22:24 +03:00
* [Monad Transformer State](https://www.youtube.com/watch?v=KZIN9f9rI34) by Michael Snoyman.
2021-06-11 16:26:44 +03:00
Blog posts:
* [ReaderT design pattern](https://www.fpcomplete.com/blog/2017/06/readert-design-pattern/) by Michael Snoyman.
* [Exceptions Best Practices](https://www.fpcomplete.com/blog/2016/11/exceptions-best-practices-haskell/) by Michael Snoyman.