]> Git — Sourcephile - haskell/symantic.git/blob - Language/Symantic/Expr/Lambda.hs
factorizing Type1_From ast Type0
[haskell/symantic.git] / Language / Symantic / Expr / Lambda.hs
1 {-# LANGUAGE DefaultSignatures #-}
2 {-# LANGUAGE DataKinds #-}
3 {-# LANGUAGE FlexibleContexts #-}
4 {-# LANGUAGE FlexibleInstances #-}
5 {-# LANGUAGE MultiParamTypeClasses #-}
6 {-# LANGUAGE OverloadedStrings #-}
7 {-# LANGUAGE Rank2Types #-}
8 {-# LANGUAGE ScopedTypeVariables #-}
9 {-# LANGUAGE TypeFamilies #-}
10 {-# LANGUAGE TypeOperators #-}
11 -- | Expression for /lambda abstraction/s
12 -- in /Higher-Order Abstract Syntax/ (HOAS).
13 module Language.Symantic.Expr.Lambda
14 ( module Language.Symantic.Expr.Lambda
15 , Sym_Lambda_Lam(..)
16 ) where
17
18 import qualified Control.Applicative as Applicative
19 import qualified Data.Function as Fun
20 import Data.Monoid
21 import Data.Proxy (Proxy(..))
22 import Data.Text (Text)
23 import qualified Data.Text as Text
24 import Data.Type.Equality ((:~:)(Refl))
25 import Prelude hiding (const, id)
26
27 import Language.Symantic.Type
28 import Language.Symantic.Repr
29 import Language.Symantic.Expr.Root
30 import Language.Symantic.Expr.Error
31 import Language.Symantic.Expr.From
32 import Language.Symantic.Trans.Common
33
34 -- * Class 'Sym_Lambda'
35 -- | Symantic.
36 class Sym_Lambda_Lam repr => Sym_Lambda repr where
37 -- | /Lambda application/.
38 ($$) :: repr ((->) arg res) -> repr arg -> repr res
39 default ($$) :: Trans t repr
40 => t repr ((->) arg res) -> t repr arg -> t repr res
41 ($$) f x = trans_lift (trans_apply f $$ trans_apply x)
42
43 -- | Convenient 'lam' and '$$' wrapper.
44 let_ :: repr var -> (repr var -> repr res) -> repr res
45 let_ x y = lam y $$ x
46
47 id :: repr a -> repr a
48 id a = (lam Fun.id) $$ a
49
50 const :: repr a -> repr b -> repr a
51 const a b = lam (lam . Fun.const) $$ a $$ b
52
53 -- | /Lambda composition/.
54 (#) :: repr (b -> c) -> repr (a -> b) -> repr (a -> c)
55 (#) f g = lam $ \a -> f $$ (g $$ a)
56
57 flip :: repr (a -> b -> c) -> repr (b -> a -> c)
58 flip f = lam $ \b -> lam $ \a -> f $$ a $$ b
59
60 infixl 0 $$
61 infixr 9 #
62
63 instance Sym_Lambda Repr_Host where
64 ($$) = (Applicative.<*>)
65 instance Sym_Lambda Repr_Text where
66 -- ($$) = repr_text_infix "$" (Precedence 0)
67 ($$) (Repr_Text a1) (Repr_Text a2) =
68 Repr_Text $ \p v ->
69 let p' = precedence_App in
70 paren p p' $ a1 p' v <> " " <> a2 p' v
71 let_ e in_ =
72 Repr_Text $ \p v ->
73 let p' = Precedence 2 in
74 let x = "x" <> Text.pack (show v) in
75 paren p p' $ "let" <> " " <> x <> " = "
76 <> unRepr_Text e (Precedence 0) (succ v) <> " in "
77 <> unRepr_Text (in_ (Repr_Text $ \_p _v -> x)) p' (succ v)
78 (#) = repr_text_infix "." (Precedence 9)
79 id = repr_text_app1 "id"
80 const = repr_text_app2 "const"
81 flip = repr_text_app1 "flip"
82 instance (Sym_Lambda r1, Sym_Lambda r2) => Sym_Lambda (Repr_Dup r1 r2) where
83 ($$) = repr_dup2 sym_Lambda ($$)
84
85 sym_Lambda :: Proxy Sym_Lambda
86 sym_Lambda = Proxy
87
88 -- * Type 'Expr_Lambda'
89 -- | Expression.
90 data Expr_Lambda (root:: *)
91 type instance Root_of_Expr (Expr_Lambda root) = root
92 type instance Type_of_Expr (Expr_Lambda root) = Type_Fun
93 type instance Sym_of_Expr (Expr_Lambda root) repr = Sym_Lambda repr
94 type instance Error_of_Expr ast (Expr_Lambda root) = Error_Expr_Lambda ast
95
96 -- | Parsing utility to check that the given type is a 'Type_Fun'
97 -- or raise 'Error_Expr_Type_mismatch'.
98 check_type_fun
99 :: forall ast ex root ty h ret.
100 ( root ~ Root_of_Expr ex
101 , ty ~ Type_Root_of_Expr ex
102 , Type0_Lift Type_Fun (Type_of_Expr root)
103 , Type0_Unlift Type_Fun (Type_of_Expr root)
104 , Error_Expr_Lift (Error_Expr (Error_of_Type ast ty) ty ast)
105 (Error_of_Expr ast root)
106 )
107 => Proxy ex -> ast -> ty h
108 -> (Type_Fun ty h -> Either (Error_of_Expr ast root) ret)
109 -> Either (Error_of_Expr ast root) ret
110 check_type_fun ex ast ty k =
111 case type0_unlift $ unType_Root ty of
112 Just ty_f -> k ty_f
113 Nothing -> Left $ error_expr ex $
114 Error_Expr_Type_mismatch ast
115 (Exists_Type0 (type_var0 SZero `type_fun` type_var0 (SSucc SZero)
116 :: ty ((->) Var0 Var0)))
117 (Exists_Type0 ty)
118
119 -- | Parse a /lambda variable/.
120 var_from
121 :: forall ast root hs ret.
122 ( Type0_From ast (Type_Root_of_Expr root)
123 , Error_Expr_Lift (Error_Expr_Lambda ast)
124 (Error_of_Expr ast root)
125 , Root_of_Expr root ~ root
126 ) => Text -> ExprFrom ast (Expr_Lambda root) hs ret
127 var_from name _ex ast = go
128 where
129 go :: forall ex hs'. (ex ~ (Expr_Lambda root))
130 => Lambda_Context (Lambda_Var (Type_Root_of_Expr ex)) hs'
131 -> ( forall h. Type_Root_of_Expr ex h
132 -> Forall_Repr_with_Context ex hs' h
133 -> Either (Error_of_Expr ast (Root_of_Expr ex)) ret )
134 -> Either (Error_of_Expr ast (Root_of_Expr ex)) ret
135 go c k' =
136 case c of
137 Lambda_Context_Empty -> Left $ error_expr_lift $
138 Error_Expr_Lambda_Var_unbound name ast
139 Lambda_Var n ty `Lambda_Context_Next` _ | n == name ->
140 k' ty $ Forall_Repr_with_Context $
141 \(repr `Lambda_Context_Next` _) -> repr
142 _ `Lambda_Context_Next` ctx' ->
143 go ctx' $ \ty (Forall_Repr_with_Context repr) ->
144 k' ty $ Forall_Repr_with_Context $
145 \(_ `Lambda_Context_Next` c') -> repr c'
146
147 -- | Parse '$$'.
148 app_from
149 :: forall ty ast root hs ret.
150 ( ty ~ Type_Root_of_Expr root
151 , Type0_From ast ty
152 , Type0_Eq ty
153 , Expr_From ast root
154 , Type0_Lift Type_Fun (Type_of_Expr root)
155 , Error_Expr_Lift (Error_Expr (Error_of_Type ast ty) ty ast)
156 (Error_of_Expr ast root)
157 , Type0_Unlift Type_Fun (Type_of_Expr root)
158 , Root_of_Expr root ~ root
159 ) => ast -> ast
160 -> ExprFrom ast (Expr_Lambda root) hs ret
161 app_from ast_lam ast_arg_actual ex ast ctx k =
162 expr_from (Proxy::Proxy root) ast_lam ctx $
163 \(ty_lam::ty h_lam) (Forall_Repr_with_Context l) ->
164 expr_from (Proxy::Proxy root) ast_arg_actual ctx $
165 \ty_arg_actual (Forall_Repr_with_Context arg_actual) ->
166 case type0_unlift $ unType_Root ty_lam of
167 Nothing -> Left $ error_expr ex $
168 Error_Expr_Type_mismatch ast
169 (Exists_Type0 (type_var0 SZero `type_fun` type_var0 (SSucc SZero)
170 :: ty ((->) Var0 Var0)))
171 (Exists_Type0 ty_lam)
172 Just (Type2 Proxy ty_arg_expected ty_res
173 :: Type_Fun ty h_lam) ->
174 check_type0_eq ex ast ty_arg_expected ty_arg_actual $ \Refl ->
175 k ty_res $ Forall_Repr_with_Context $
176 \c -> l c $$ arg_actual c
177
178 -- | Parse 'lam'.
179 lam_from
180 :: forall ty ast root hs ret.
181 ( ty ~ Type_Root_of_Expr root
182 , root ~ Root_of_Expr root
183 , Type0_From ast ty
184 , Expr_From ast root
185 , Type0_Lift Type_Fun (Type_of_Expr root)
186 , Error_Expr_Lift (Error_Expr (Error_of_Type ast ty) ty ast)
187 (Error_of_Expr ast root)
188 ) => Text -> ast -> ast
189 -> ExprFrom ast (Expr_Lambda root) hs ret
190 lam_from name ast_ty_arg ast_body ex ast ctx k =
191 either (\err -> Left $ error_expr ex $ Error_Expr_Type err ast) Fun.id $
192 type0_from (Proxy::Proxy ty) ast_ty_arg $ \ty_arg -> Right $
193 expr_from (Proxy::Proxy root) ast_body
194 (Lambda_Var name ty_arg `Lambda_Context_Next` ctx) $
195 \ty_res (Forall_Repr_with_Context res) ->
196 k (ty_arg `type_fun` ty_res) $ Forall_Repr_with_Context $
197 \c -> lam $ \arg -> res (arg `Lambda_Context_Next` c)
198
199 -- | Parse 'let_'.
200 let_from
201 :: forall ty ast root hs ret.
202 ( ty ~ Type_Root_of_Expr root
203 , root ~ Root_of_Expr root
204 , Type0_From ast ty
205 , Expr_From ast root
206 , Error_Expr_Lift (Error_Expr (Error_of_Type ast ty) ty ast)
207 (Error_of_Expr ast root)
208 ) => Text -> ast -> ast
209 -> ExprFrom ast (Expr_Lambda root) hs ret
210 let_from name ast_var ast_body _ex _ast ctx k =
211 expr_from (Proxy::Proxy root) ast_var ctx $
212 \ty_var (Forall_Repr_with_Context var) ->
213 expr_from (Proxy::Proxy root) ast_body
214 (Lambda_Var name ty_var `Lambda_Context_Next` ctx) $
215 \ty_res (Forall_Repr_with_Context res) ->
216 k ty_res $ Forall_Repr_with_Context $
217 \c -> let_ (var c) $ \arg -> res (arg `Lambda_Context_Next` c)
218
219 -- * Type 'Error_Expr_Lambda'
220 data Error_Expr_Lambda ast
221 = Error_Expr_Lambda_Var_unbound Lambda_Var_Name ast
222 deriving (Eq, Show)