]> Git — Sourcephile - haskell/symantic.git/blob - Language/LOL/Symantic/Expr/Int.hs
init
[haskell/symantic.git] / Language / LOL / Symantic / Expr / Int.hs
1 {-# LANGUAGE DefaultSignatures #-}
2 {-# LANGUAGE FlexibleContexts #-}
3 {-# LANGUAGE FlexibleInstances #-}
4 {-# LANGUAGE GADTs #-}
5 {-# LANGUAGE MultiParamTypeClasses #-}
6 {-# LANGUAGE OverloadedStrings #-}
7 {-# LANGUAGE Rank2Types #-}
8 {-# LANGUAGE ScopedTypeVariables #-}
9 {-# LANGUAGE TypeFamilies #-}
10 {-# LANGUAGE UndecidableInstances #-}
11 -- | Expression for 'Int's.
12 module Language.LOL.Symantic.Expr.Int where
13
14 import Data.Proxy (Proxy(..))
15
16 import Language.LOL.Symantic.AST
17 import Language.LOL.Symantic.Type
18 import Language.LOL.Symantic.Expr.Common
19 import Language.LOL.Symantic.Expr.Lambda
20 import Language.LOL.Symantic.Repr.Dup
21 import Language.LOL.Symantic.Trans.Common
22
23 -- * Class 'Sym_Int'
24
25 -- | Symantic.
26 class Sym_Int repr where
27 int :: Int -> repr Int
28 neg :: repr Int -> repr Int
29 add :: repr Int -> repr Int -> repr Int
30
31 default int :: Trans t repr => Int -> t repr Int
32 default neg :: Trans t repr => t repr Int -> t repr Int
33 default add :: Trans t repr => t repr Int -> t repr Int -> t repr Int
34 int = trans_lift . int
35 neg = trans_map1 neg
36 add = trans_map2 add
37
38 instance -- Sym_Int Dup
39 ( Sym_Int r1
40 , Sym_Int r2
41 ) => Sym_Int (Dup r1 r2) where
42 int x = int x `Dup` int x
43 neg (x1 `Dup` x2) = neg x1 `Dup` neg x2
44 add (x1 `Dup` x2) (y1 `Dup` y2) = add x1 y1 `Dup` add x2 y2
45
46 -- * Type 'Expr_Int'
47 -- | Expression.
48 data Expr_Int (root:: *)
49 type instance Root_of_Expr (Expr_Int root) = root
50 type instance Type_of_Expr (Expr_Int root) = Type_Int
51 type instance Sym_of_Expr (Expr_Int root) repr = Sym_Int repr
52 type instance Error_of_Expr ast (Expr_Int root) = Error_Expr_Int ast
53
54 instance -- Expr_from AST Expr_Int
55 ( Type_from AST (Type_Root_of_Expr root)
56 , Expr_from AST root
57
58 , Type_Root_Lift Type_Int (Type_Root_of_Expr root)
59 , Error_Type_Lift (Error_Type_Fun AST)
60 (Error_of_Type AST (Type_Root_of_Expr root))
61 , Error_Expr_Lift (Error_Expr (Error_of_Type AST (Type_Root_of_Expr root))
62 ( Type_Root_of_Expr root)
63 AST)
64 (Error_of_Expr AST root)
65
66 , Type_Unlift Type_Int (Type_of_Expr root)
67
68 , Root_of_Expr root ~ root
69 -- , Root_of_Type (Type_Root_of_Expr root) ~ Type_Root_of_Expr root
70
71 , Implicit_HBool (Is_Last_Expr (Expr_Int root) root)
72 ) => Expr_from AST (Expr_Int root) where
73 expr_from _px_ex ctx ast k =
74 case ast of
75 AST "int" asts ->
76 case asts of
77 [AST ast_int []] ->
78 case read_safe ast_int of
79 Left err -> Left $ error_expr $ Error_Expr_Read err ast
80 Right (i::Int) ->
81 k type_int $ Forall_Repr_with_Context $
82 const $ int i
83 _ -> Left $ error_expr $
84 Error_Expr_Fun_Wrong_number_of_arguments 3 ast
85 AST "neg" asts -> unary_from asts neg
86 AST "add" asts -> binary_from asts add
87 _ -> Left $
88 case hbool :: HBool (Is_Last_Expr (Expr_Int root) root) of
89 HTrue -> error_expr $ Error_Expr_Unsupported ast
90 HFalse -> error_expr $ Error_Expr_Unsupported_here ast
91 where
92 unary_from asts
93 (op::forall repr. Sym_Int repr
94 => repr Int -> repr Int) =
95 case asts of
96 [ast_x] ->
97 expr_from (Proxy::Proxy root) ctx ast_x $
98 \(ty_x::Type_Root_of_Expr root h_x) (Forall_Repr_with_Context x) ->
99 case type_unlift $ unType_Root ty_x of
100 Just (Type_Int::Type_Int (Type_Root_of_Expr root) h_x) ->
101 k ty_x $ Forall_Repr_with_Context (op . x)
102 _ -> Left $ error_expr $
103 Error_Expr_Fun_Argument_mismatch
104 (Exists_Type type_int)
105 (Exists_Type ty_x) ast
106 _ -> Left $ error_expr $
107 Error_Expr_Fun_Wrong_number_of_arguments 1 ast
108 binary_from asts
109 (op::forall repr. Sym_Int repr
110 => repr Int -> repr Int -> repr Int) =
111 case asts of
112 [ast_x, ast_y] ->
113 expr_from (Proxy::Proxy root) ctx ast_x $
114 \(ty_x::Type_Root_of_Expr root h_x) (Forall_Repr_with_Context x) ->
115 expr_from (Proxy::Proxy root) ctx ast_y $
116 \(ty_y::Type_Root_of_Expr root h_y) (Forall_Repr_with_Context y) ->
117 case type_unlift $ unType_Root ty_x of
118 Just (Type_Int::Type_Int (Type_Root_of_Expr root) h_x) ->
119 case type_unlift $ unType_Root ty_y of
120 Just (Type_Int::Type_Int (Type_Root_of_Expr root) h_y) ->
121 k ty_x $ Forall_Repr_with_Context $
122 \c -> x c `op` y c
123 Nothing -> Left $ error_expr $
124 Error_Expr_Fun_Argument_mismatch
125 (Exists_Type type_int)
126 (Exists_Type ty_y) ast
127 Nothing -> Left $ error_expr $
128 Error_Expr_Fun_Argument_mismatch
129 (Exists_Type type_int)
130 (Exists_Type ty_x) ast
131 _ -> Left $ error_expr $
132 Error_Expr_Fun_Wrong_number_of_arguments 2 ast
133 error_expr
134 :: Error_Expr (Error_of_Type AST (Type_Root_of_Expr root)) (Type_Root_of_Expr root) AST
135 -> Error_of_Expr AST root
136 error_expr = error_expr_lift
137
138 -- ** Type 'Expr_Lambda_Int'
139 -- | Convenient alias.
140 type Expr_Lambda_Int lam = Expr_Root (Expr_Alt (Expr_Lambda lam) Expr_Int)
141
142 expr_lambda_int_from
143 :: forall lam ast.
144 Expr_from ast (Expr_Lambda_Int lam)
145 => Proxy lam
146 -> ast
147 -> Either (Error_of_Expr ast (Expr_Lambda_Int lam))
148 (Exists_Type_and_Repr (Type_Root_of_Expr (Expr_Lambda_Int lam))
149 (Forall_Repr (Expr_Lambda_Int lam)))
150 expr_lambda_int_from _px_lam ast =
151 expr_from
152 (Proxy::Proxy (Expr_Lambda_Int lam))
153 Context_Empty ast $ \ty (Forall_Repr_with_Context repr) ->
154 Right $ Exists_Type_and_Repr ty $
155 Forall_Repr $ repr Context_Empty
156
157 -- * Type 'Error_Expr_Int'
158 data Error_Expr_Int ast
159 = Error_Expr_Int
160 deriving (Eq, Show)
161