]> Git — Sourcephile - haskell/symantic.git/blob - Language/Symantic/Compiling/Integer.hs
Clarify names, and add commentaries.
[haskell/symantic.git] / Language / Symantic / Compiling / Integer.hs
1 {-# LANGUAGE UndecidableInstances #-}
2 {-# OPTIONS_GHC -fno-warn-orphans #-}
3 {-# OPTIONS_GHC -fconstraint-solver-iterations=6 #-}
4 -- | Symantic for 'Integer'.
5 module Language.Symantic.Compiling.Integer where
6
7 import Data.Proxy
8 import Data.Text (Text)
9 import qualified Data.Text as Text
10 import Data.Type.Equality ((:~:)(Refl))
11
12 import Language.Symantic.Parsing
13 import Language.Symantic.Typing
14 import Language.Symantic.Compiling.Term
15 import Language.Symantic.Interpreting
16 import Language.Symantic.Transforming.Trans
17
18 -- * Class 'Sym_Integer'
19 class Sym_Integer term where
20 integer :: Integer -> term Integer
21 default integer :: Trans t term => Integer -> t term Integer
22 integer = trans_lift . integer
23
24 type instance Sym_of_Iface (Proxy Integer) = Sym_Integer
25 type instance Consts_of_Iface (Proxy Integer) = Proxy Integer ': Consts_imported_by Integer
26 type instance Consts_imported_by Integer =
27 [ Proxy Enum
28 , Proxy Eq
29 , Proxy Integral
30 , Proxy Num
31 , Proxy Ord
32 , Proxy Real
33 , Proxy Show
34 ]
35
36 instance Sym_Integer HostI where
37 integer = HostI
38 instance Sym_Integer TextI where
39 integer a = TextI $ \_p _v ->
40 Text.pack (show a)
41 instance (Sym_Integer r1, Sym_Integer r2) => Sym_Integer (DupI r1 r2) where
42 integer x = integer x `DupI` integer x
43
44 instance Const_from Text cs => Const_from Text (Proxy Integer ': cs) where
45 const_from "Integer" k = k (ConstZ kind)
46 const_from s k = const_from s $ k . ConstS
47 instance Show_Const cs => Show_Const (Proxy Integer ': cs) where
48 show_const ConstZ{} = "Integer"
49 show_const (ConstS c) = show_const c
50
51 instance -- Proj_ConC
52 ( Proj_Const cs Integer
53 , Proj_Consts cs (Consts_imported_by Integer)
54 ) => Proj_ConC cs (Proxy Integer) where
55 proj_conC _ (TyConst q :$ TyConst c)
56 | Just Refl <- eq_skind (kind_of_const c) SKiType
57 , Just Refl <- proj_const c (Proxy::Proxy Integer)
58 = case () of
59 _ | Just Refl <- proj_const q (Proxy::Proxy Enum) -> Just Con
60 | Just Refl <- proj_const q (Proxy::Proxy Eq) -> Just Con
61 | Just Refl <- proj_const q (Proxy::Proxy Integral) -> Just Con
62 | Just Refl <- proj_const q (Proxy::Proxy Num) -> Just Con
63 | Just Refl <- proj_const q (Proxy::Proxy Ord) -> Just Con
64 | Just Refl <- proj_const q (Proxy::Proxy Real) -> Just Con
65 | Just Refl <- proj_const q (Proxy::Proxy Show) -> Just Con
66 _ -> Nothing
67 proj_conC _c _q = Nothing
68 data instance TokenT meta (ts::[*]) (Proxy Integer)
69 = Token_Term_Integer Integer
70 deriving instance Eq_Token meta ts => Eq (TokenT meta ts (Proxy Integer))
71 deriving instance Show_Token meta ts => Show (TokenT meta ts (Proxy Integer))
72 instance -- CompileI
73 Inj_Const (Consts_of_Ifaces is) Integer =>
74 CompileI is (Proxy Integer) where
75 compileI tok _ctx k =
76 case tok of
77 Token_Term_Integer i -> k (ty @Integer) $ TermO $ \_c -> integer i