Last active
August 26, 2019 05:53
-
-
Save andrevdm/a89fb3b21ac7dfedc3a7a5182c1df350 to your computer and use it in GitHub Desktop.
Polysemy basic test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE NoImplicitPrelude #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE TemplateHaskell #-} | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE LambdaCase #-} | |
{-# LANGUAGE PolyKinds #-} | |
{-# LANGUAGE RankNTypes #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
{-# LANGUAGE TypeApplications #-} | |
{-# LANGUAGE TypeOperators #-} | |
{-# LANGUAGE TypeFamilies #-} | |
module Main where | |
import Protolude | |
import Polysemy | |
import qualified Polysemy.Reader as R | |
import qualified System.IO as IO | |
-------------------------------------- | |
data Console m a where | |
ReadTTY :: Console m [Char] | |
WriteTTY :: [Char] -> Console m () | |
makeSem ''Console | |
runConsoleIO :: Members '[Embed IO] r | |
=> Sem (Console ': r) a | |
-> Sem r a | |
runConsoleIO = interpret $ \case | |
ReadTTY -> embed IO.getLine | |
WriteTTY msg -> embed $ IO.putStrLn msg | |
-------------------------------------- | |
-------------------------------------- | |
data ConsoleTxt m a where | |
ReadTTYTxt :: ConsoleTxt m Text | |
WriteTTYTxt :: Text -> ConsoleTxt m () | |
makeSem ''ConsoleTxt | |
runConsoleTxtIO :: Members '[Embed IO] r | |
=> Sem (ConsoleTxt ': r) a | |
-> Sem r a | |
runConsoleTxtIO = interpret $ \case | |
ReadTTYTxt -> embed getLine | |
WriteTTYTxt msg -> embed $ putText @IO msg -- @IO for putText's MonadIO | |
-------------------------------------- | |
-------------------------------------- | |
data ConsoleNotify m a where | |
Notify :: Text -> ConsoleNotify m () | |
makeSem ''ConsoleNotify | |
runConsoleNotifyIO :: Members '[Embed IO] r | |
=> Sem (ConsoleNotify ': r) a | |
-> Sem r a | |
runConsoleNotifyIO = interpret $ \case | |
Notify msg -> embed $ putText @IO msg | |
-------------------------------------- | |
-------------------------------------- | |
main :: IO () | |
main = do | |
IO.hSetBuffering IO.stdout IO.NoBuffering | |
runM . runConsoleIO $ do | |
l <- readTTY | |
writeTTY l | |
runM . runConsoleTxtIO . runConsoleNotifyIO $ do | |
l <- readTTYTxt | |
writeTTYTxt l | |
notify "all done" | |
let env = "I'm an environment" :: Text | |
runM . runConsoleTxtIO . runConsoleNotifyIO . R.runReader env $ testCombination | |
testCombination :: Members '[ ConsoleNotify | |
, ConsoleTxt | |
, R.Reader Text | |
] r | |
=> Sem r () | |
testCombination = do | |
env <- R.ask | |
writeTTYTxt $ " *" <> env <> "*" | |
l <- readTTYTxt | |
writeTTYTxt l | |
notify "all done" | |
-------------------------------------- | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment