idris-0.10: libs/effects/Effects.idr
module Effects
import Language.Reflection
import public Effect.Default
import Data.Vect
--- Effectful computations are described as algebraic data types that
--- explain how an effect is interpreted in some underlying context.
%access public
-- ----------------------------------------------------------------- [ Effects ]
||| The Effect type describes effectful computations.
|||
||| This type is parameterised by:
||| + The return type of the computation.
||| + The input resource.
||| + The computation to run on the resource given the return value.
Effect : Type
Effect = (x : Type) -> Type -> (x -> Type) -> Type
||| The `EFFECT` Data type describes how to promote the Effect
||| description into a concrete effect.
%error_reverse
data EFFECT : Type where
MkEff : Type -> Effect -> EFFECT
-- 'sig' gives the signature for an effect. There are four versions
-- depending on whether there is no resource needed,
-- no state change, a non-dependent change,
-- or a dependent change. These are easily disambiguated by type.
namespace NoResourceEffect
sig : Effect -> Type -> Type
sig e r = e r () (\v => ())
namespace NoUpdateEffect
sig : Effect -> (ret : Type) -> (resource : Type) -> Type
sig e r e_in = e r e_in (\v => e_in)
namespace UpdateEffect
sig : Effect -> (ret : Type) -> (res_in : Type) -> (res_out : Type) -> Type
sig e r e_in e_out = e r e_in (\v => e_out)
namespace DepUpdateEffect
sig : Effect ->
(ret : Type) -> (res_in : Type) -> (res_out : ret -> Type) -> Type
sig e r e_in e_out = e r e_in e_out
||| Handler interfaces describe how an effect `e` is translated to the
||| underlying computation context `m` for execution.
interface Handler (e : Effect) (m : Type -> Type) where
||| How to handle the effect.
|||
||| @ r The resource being handled.
||| @ eff The effect to be applied.
||| @ k The continuation to pass the result of the effect
covering handle : (r : res) -> (eff : e t res resk) ->
(k : ((x : t) -> resk x -> m a)) -> m a
||| Get the resource type (handy at the REPL to find out about an effect)
resourceType : EFFECT -> Type
resourceType (MkEff t e) = t
-- --------------------------------------------------------- [ Syntactic Sugar ]
-- A bit of syntactic sugar ('syntax' is not very flexible so we only go
-- up to a small number of parameters...)
-- No state transition
syntax "{" [inst] "}" [eff] = eff inst (\result => inst)
-- The state transition is dependent on a result `b`, a bound variable.
syntax "{" [inst] "==>" "{" {b} "}" [outst] "}" [eff]
= eff inst (\b => outst)
--- A simple state transition
syntax "{" [inst] "==>" [outst] "}" [eff] = eff inst (\result => outst)
-- --------------------------------------- [ Properties and Proof Construction ]
data SubList : List a -> List a -> Type where
SubNil : SubList [] []
Keep : SubList xs ys -> SubList (x :: xs) (x :: ys)
Drop : SubList xs ys -> SubList xs (x :: ys)
%hint
subListId : SubList xs xs
subListId {xs = Nil} = SubNil
subListId {xs = x :: xs} = Keep subListId
namespace Env
data Env : (m : Type -> Type) -> List EFFECT -> Type where
Nil : Env m Nil
(::) : Handler eff m => a -> Env m xs -> Env m (MkEff a eff :: xs)
data EffElem : Effect -> Type ->
List EFFECT -> Type where
Here : EffElem x a (MkEff a x :: xs)
There : EffElem x a xs -> EffElem x a (y :: xs)
||| make an environment corresponding to a sub-list
dropEnv : Env m ys -> SubList xs ys -> Env m xs
dropEnv [] SubNil = []
dropEnv (v :: vs) (Keep rest) = v :: dropEnv vs rest
dropEnv (v :: vs) (Drop rest) = dropEnv vs rest
updateWith : (ys' : List a) -> (xs : List a) ->
SubList ys xs -> List a
updateWith (y :: ys) (x :: xs) (Keep rest) = y :: updateWith ys xs rest
updateWith ys (x :: xs) (Drop rest) = x :: updateWith ys xs rest
updateWith [] [] SubNil = []
updateWith (y :: ys) [] SubNil = y :: ys
updateWith [] (x :: xs) (Keep rest) = []
||| Put things back, replacing old with new in the sub-environment
rebuildEnv : Env m ys' -> (prf : SubList ys xs) ->
Env m xs -> Env m (updateWith ys' xs prf)
rebuildEnv [] SubNil env = env
rebuildEnv (x :: xs) SubNil env = x :: xs
rebuildEnv [] (Keep rest) (y :: env) = []
rebuildEnv (x :: xs) (Keep rest) (y :: env) = x :: rebuildEnv xs rest env
rebuildEnv xs (Drop rest) (y :: env) = y :: rebuildEnv xs rest env
-- -------------------------------------------------- [ The Effect EDSL itself ]
updateResTy : (val : t) ->
(xs : List EFFECT) -> EffElem e a xs -> e t a b ->
List EFFECT
updateResTy {b} val (MkEff a e :: xs) Here n = (MkEff (b val) e) :: xs
updateResTy val (x :: xs) (There p) n = x :: updateResTy val xs p n
infix 5 :::, :-, :=
data LRes : lbl -> Type -> Type where
(:=) : (x : lbl) -> res -> LRes x res
(:::) : lbl -> EFFECT -> EFFECT
(:::) {lbl} x (MkEff r e) = MkEff (LRes x r) e
using (lbl : Type)
implementation Default a => Default (LRes lbl a) where
default = lbl := default
private
unlabel : {l : ty} -> Env m [l ::: x] -> Env m [x]
unlabel {m} {x = MkEff a eff} [l := v] = [v]
private
relabel : (l : ty) -> Env m xs -> Env m (map (\x => l ::: x) xs)
relabel {xs = []} l [] = []
relabel {xs = (MkEff a e :: xs)} l (v :: vs) = (l := v) :: relabel l vs
-- ------------------------------------------------- [ The Language of Effects ]
||| Definition of a language of effectful programs.
|||
||| @ x The return type of the result.
||| @ es The list of allowed side-effects.
||| @ ce Function to compute a new list of allowed side-effects.
data EffM : (m : Type -> Type) -> (x : Type)
-> (es : List EFFECT)
-> (ce : x -> List EFFECT) -> Type where
Value : (val : a) -> EffM m a (xs val) xs
EBind : EffM m a xs xs' ->
((val : a) -> EffM m b (xs' val) xs'') -> EffM m b xs xs''
CallP : (prf : EffElem e a xs) ->
(eff : e t a b) ->
EffM m t xs (\v => updateResTy v xs prf eff)
LiftP : (prf : SubList ys xs) ->
EffM m t ys ys' -> EffM m t xs (\v => updateWith (ys' v) xs prf)
New : Handler e' m => (e : EFFECT) -> resTy ->
{auto prf : e = MkEff resTy e'} ->
EffM m t (e :: es) (\v => e :: es) ->
EffM m t es (\v => es)
(:-) : (l : ty) ->
EffM m t [x] xs' -> -- [x] (\v => xs) ->
EffM m t [l ::: x] (\v => map (l :::) (xs' v))
-- Some type synonyms, so we don't always have to write EffM in full
namespace SimpleEff
-- Simple effects, no updates
Eff : (x : Type) -> (es : List EFFECT) -> Type
Eff x es = {m : Type -> Type} -> EffM m x es (\v => es)
EffT : (m : Type -> Type) -> (x : Type) -> (es : List EFFECT) -> Type
EffT m x es = EffM m x es (\v => es)
namespace TransEff
-- Dependent effects, updates not dependent on result
Eff : (x : Type) -> (es : List EFFECT) -> (ce : List EFFECT) -> Type
Eff x es ce = {m : Type -> Type} -> EffM m x es (\_ => ce)
EffT : (m : Type -> Type) ->
(x : Type) -> (es : List EFFECT) -> (ce : List EFFECT) -> Type
EffT m x es ce = EffM m x es (\_ => ce)
namespace DepEff
-- Dependent effects, updates dependent on result
Eff : (x : Type) -> (es : List EFFECT)
-> (ce : x -> List EFFECT) -> Type
Eff x es ce = {m : Type -> Type} -> EffM m x es ce
EffT : (m : Type -> Type) -> (x : Type) -> (es : List EFFECT)
-> (ce : x -> List EFFECT) -> Type
EffT m x es ce = EffM m x es ce
%no_implicit
(>>=) : EffM m a xs xs' ->
((val : a) -> EffM m b (xs' val) xs'') -> EffM m b xs xs''
(>>=) = EBind
-- namespace SimpleBind
-- (>>=) : Eff m a xs (\v => xs) ->
-- ((val : a) -> Eff m b xs xs') -> Eff m b xs xs'
-- (>>=) = EBind
||| Run a subprogram which results in an effect state the same as the input.
staticEff : EffM m a xs (\v => xs) -> EffM m a xs (\v => xs)
staticEff = id
||| Explicitly give the expected set of result effects for an effectful
||| operation.
toEff : .(xs' : List EFFECT) -> EffM m a xs (\v => xs') -> EffM m a xs (\v => xs')
toEff xs' = id
return : a -> EffM m a xs (\v => xs)
return x = Value x
-- ------------------------------------------------------ [ for idiom brackets ]
infixl 2 <*>
pure : a -> EffM m a xs (\v => xs)
pure = Value
pureM : (val : a) -> EffM m a (xs val) xs
pureM = Value
(<*>) : EffM m (a -> b) xs (\v => xs) ->
EffM m a xs (\v => xs) -> EffM m b xs (\v => xs)
(<*>) prog v = do fn <- prog
arg <- v
return (fn arg)
(*>) : EffM m a xs (\v => xs) ->
EffM m b xs (\v => xs) -> EffM m b xs (\v => xs)
a *> b = do a
b
new : Handler e' m => (e : EFFECT) -> resTy ->
{auto prf : e = MkEff resTy e'} ->
EffM m t (e :: es) (\v => e :: es) ->
EffM m t es (\v => es)
new = New
-- ---------------------------------------------------------- [ an interpreter ]
private
execEff : Env m xs -> (p : EffElem e res xs) ->
(eff : e a res resk) ->
((v : a) -> Env m (updateResTy v xs p eff) -> m t) -> m t
execEff (val :: env) Here eff' k
= handle val eff' (\v, res => k v (res :: env))
execEff (val :: env) (There p) eff k
= execEff env p eff (\v, env' => k v (val :: env'))
-- Q: Instead of m b, implement as StateT (Env m xs') m b, so that state
-- updates can be propagated even through failing computations?
eff : Env m xs -> EffM m a xs xs' -> ((x : a) -> Env m (xs' x) -> m b) -> m b
eff env (Value x) k = k x env
eff env (prog `EBind` c) k
= eff env prog (\p', env' => eff env' (c p') k)
eff env (CallP prf effP) k = execEff env prf effP k
eff env (LiftP prf effP) k
= let env' = dropEnv env prf in
eff env' effP (\p', envk => k p' (rebuildEnv envk prf env))
eff env (New (MkEff resTy newEff) res {prf=Refl} effP) k
= eff (res :: env) effP (\p', (val :: envk) => k p' envk)
eff env (l :- prog) k
= let env' = unlabel env in
eff env' prog (\p', envk => k p' (relabel l envk))
-- yuck :) Haven't got interface instances working nicely in tactic
-- proofs yet, and 'search' can't be told about any hints yet,
-- so just brute force it.
syntax MkDefaultEnv = with Env
(| [], [default], [default, default],
[default, default, default],
[default, default, default, default],
[default, default, default, default, default],
[default, default, default, default, default, default],
[default, default, default, default, default, default, default],
[default, default, default, default, default, default, default, default] |)
%no_implicit
call : {a, b: _} -> {e : Effect} ->
(eff : e t a b) ->
{auto prf : EffElem e a xs} ->
EffM m t xs (\v => updateResTy v xs prf eff)
call e {prf} = CallP prf e
implicit
lift : EffM m t ys ys' ->
{auto prf : SubList ys xs} ->
EffM m t xs (\v => updateWith (ys' v) xs prf)
lift e {prf} = LiftP prf e
-- --------------------------------------------------------- [ Running Effects ]
||| Run an effectful program.
|||
||| The content (`m`) in which to run the program is taken from the
||| environment in which the program is called. The `env` argument is
||| implicit and initialised automatically.
|||
||| @prog The effectful program to run.
%no_implicit
run : Applicative m =>
(prog : EffM m a xs xs') -> {default MkDefaultEnv env : Env m xs} ->
m a
run prog {env} = eff env prog (\r, env => pure r)
||| Run an effectful program in the identity context.
|||
||| A helper function useful for when the given context is 'pure'.
||| The `env` argument is implicit and initialised automatically.
|||
||| @prog The effectful program to run.
%no_implicit
runPure : (prog : EffM Basics.id a xs xs') ->
{default MkDefaultEnv env : Env Basics.id xs} -> a
runPure prog {env} = eff env prog (\r, env => r)
||| Run an effectful program in a given context `m` with a default value for the environment.
|||
||| This is useful for when there is no default environment for the given context.
|||
||| @env The environment to use.
||| @prog The effectful program to run.
%no_implicit
runInit : Applicative m => (env : Env m xs) -> (prog : EffM m a xs xs') -> m a
runInit env prog = eff env prog (\r, env => pure r)
||| Run an effectful program with a given default value for the environment.
|||
||| A helper function useful for when the given context is 'pure' and there is no default environment.
|||
||| @env The environment to use.
||| @prog The effectful program to run.
%no_implicit
runPureInit : (env : Env Basics.id xs) -> (prog : EffM Basics.id a xs xs') -> a
runPureInit env prog = eff env prog (\r, env => r)
%no_implicit
runWith : (a -> m a) -> Env m xs -> EffM m a xs xs' -> m a
runWith inj env prog = eff env prog (\r, env => inj r)
%no_implicit
runEnv : Applicative m => Env m xs -> EffM m a xs xs' ->
m (x : a ** Env m (xs' x))
runEnv env prog = eff env prog (\r, env => pure (r ** env))
-- ----------------------------------------------- [ some higher order things ]
mapE : (a -> {xs} EffM m b) -> List a -> {xs} EffM m (List b)
mapE f [] = pure []
mapE f (x :: xs) = [| f x :: mapE f xs |]
mapVE : (a -> {xs} EffM m b) ->
Vect n a ->
{xs} EffM m (Vect n b)
mapVE f [] = pure []
mapVE f (x :: xs) = [| f x :: mapVE f xs |]
when : Bool -> Lazy ({xs} EffM m ()) -> {xs} EffM m ()
when True e = Force e
when False e = pure ()
-- --------------------------------------------------------------------- [ EOF ]