heftia/README.md

107 lines
4.4 KiB
Markdown
Raw Normal View History

2023-08-28 10:02:00 +03:00
# Heftia
2023-09-18 10:07:42 +03:00
[![Hackage](https://img.shields.io/hackage/v/heftia.svg)](https://hackage.haskell.org/package/heftia)
2023-08-28 10:02:00 +03:00
Heftia, a composition of hefty trees and co-Yoneda, is a higher-order effects
2023-08-27 16:32:48 +03:00
version of Freer.
The paper
* Casper Bach Poulsen and Cas van der Rest. 2023. Hefty Algebras: Modular
Elaboration of Higher-Order Algebraic Effects. Proc. ACM Program. Lang. 7,
POPL, Article 62 (January 2023), 31 pages. <https://doi.org/10.1145/3571255>
inspires this library.
Hefty trees, proposed by the above paper, are extensions of free monads,
allowing for a straightforward treatment of higher-order effects.
This library offers Heftia monads and Freer monads, encoded into data
2023-08-27 16:32:48 +03:00
types in several ways to enable tuning in pursuit of high performance.
2023-08-25 07:23:49 +03:00
Additionally, it's designed to operate as a handler system based
on [`classy-effects`](https://github.com/sayo-hs/classy-effects), which aims to
standardize and unify the definitions of effects in Haskell.
Compared to existing Effect System libraries in Haskell that handle higher-order effects, this
library's approach allows for a more effortless and flexible handling of higher-order effects. Here
are some examples:
* Two interpretations of the `censor` effect for Writer
Let's consider the following Writer effectful program:
```hs
hello :: (Writer String m, Monad m) => m ()
hello = do
tell "Hello"
tell " world!"
censorHello :: (Writer String m, Monad m) => m ()
censorHello =
censor
(\s -> if s == "Hello" then "Goodbye" else s)
hello
```
For `censorHello`, should the final written string be `"Goodbye world!"`? Or should it be `"Hello world!"`?
With Heftia, you can freely choose either behavior depending on which higher-order effect interpreter (which we call an elaborator) you use.
```hs
main :: IO ()
main = runFreerEffects do
(s :: String, _) <-
interpretTell
. runElaborate' (elaborateWriterT @String)
$ censorHello
(sTransactional :: String, _) <-
interpretTell
. runElaborate' (elaborateWriterTransactionalT @String)
$ censorHello
sendIns $ putStrLn $ "Normal: " <> s
sendIns $ putStrLn $ "Transactional: " <> sTransactional
```
Using the `elaborateWriterT` elaborator, you'll get "Goodbye world!", whereas with the `elaborateWriterTransactionalT` elaborator, you'll get "Hello world!".
For more details, please refer to the [complete code](heftia-effects/Example/Writer/Main.hs) and the [implementation of the elaborator](heftia-effects/src/Control/Effect/Handler/Heftia/Writer.hs).
* Extracting Multi-shot Delimited Continuations
In handling higher-order effects, it's easy to work with multi-shot delimited continuations.
This enables an almost complete emulation of "Algebraic Effects and Handlers".
For more details, please refer to
[Example 3 - Delimited Continuation](<docs/examples/03 Delimited Continuation.md>) .
Furthermore, the structure of Heftia is theoretically straightforward, with ad-hoc elements being
eliminated.
2023-09-18 05:38:40 +03:00
Heftia is the second objective of the [Sayo Project](https://github.com/sayo-hs).
## Documentation
2023-09-16 15:32:23 +03:00
Examples with explanations can be found in the [docs/examples/](docs/examples/) directory.
## Future Plans
* Benchmarking
* Enriching the documentation
* Completing missing definitions such as
* the Heftia monad transformer encoded in tree structure
* handlers for the `Accum`, `Coroutine`, `Fresh`, `Input`, `Output` effect classes
and others.
## License
2023-09-17 16:20:01 +03:00
The license is MPL 2.0. Please refer to the [NOTICE](NOTICE).
Additionally, this README.md and the documents under the `docs`/`docs-ja` directory are licensed
under CC BY-SA 4.0.
2023-08-25 07:23:49 +03:00
## Your contributions are welcome!
2023-09-16 15:32:23 +03:00
Please see [CONTRIBUTING.md](CONTRIBUTING.md).
2023-09-18 09:32:37 +03:00
## Credits
Parts of this project have been adapted or inspired by the following resources:
* **[Hefty Algebras -- The Artifact](https://github.com/heft-lang/POPL2023)**
* **Copyright** (c) 2023 Casper Bach Poulsen and Cas van der Rest
* **License**: MIT
* **Modifications**: The inspiration for the idea of Heftia. Code was used in the Data.{[Free](https://github.com/sayo-hs/heftia/blob/165a5246ffbf473210bfb26a17da3e37d79a5346/heftia/src/Data/Free/Sum.hs),[Hefty](https://github.com/sayo-hs/heftia/blob/165a5246ffbf473210bfb26a17da3e37d79a5346/heftia/src/Data/Hefty/Sum.hs)}.Sum.