aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/target/jvm/class.lux
blob: 516dec1fcb3dde76abadebdcb962af88e30407a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
(.module:
  [lux #*
   [abstract
    [monoid (#+)]
    ["." equivalence (#+ Equivalence)]
    ["." monad (#+ do)]]
   [control
    ["<>" parser
     ["<2>" binary (#+ Parser)]]
    ["." state (#+ State)]]
   [data
    [number (#+)
     [i64 (#+)]]
    [format
     [".F" binary (#+ Writer) ("#@." monoid)]]
    [collection
     ["." row (#+ Row)]]]
   [type
    [abstract (#+)]]]
  ["." // #_
   ["#." modifier (#+ Modifier modifiers:)]
   ["#." version (#+ Version Minor Major)]
   ["#." magic (#+ Magic)]
   ["#." index (#+ Index)]
   ["#." attribute (#+ Attribute)]
   ["#." field (#+ Field)]
   ["#." method (#+ Method)]
   [encoding
    ["#." unsigned (#+)]
    ["#." name (#+ Internal)]]
   ["#." constant (#+ Constant)
    ["#/." pool (#+ Pool)]]])

(type: #export #rec Class
  {#magic Magic
   #minor-version Minor
   #major-version Major
   #constant-pool Pool
   #modifier (Modifier Class)
   #this (Index //constant.Class)
   #super (Index //constant.Class)
   #interfaces (Row (Index //constant.Class))
   #fields (Row Field)
   #methods (Row Method)
   #attributes (Row Attribute)})

(modifiers: Class
  ["0001" public]
  ["0010" final]
  ["0020" super]
  ["0200" interface]
  ["0400" abstract]
  ["1000" synthetic]
  ["2000" annotation]
  ["4000" enum]
  )

(def: #export equivalence
  (Equivalence Class)
  ($_ equivalence.product
      //unsigned.equivalence
      //unsigned.equivalence
      //unsigned.equivalence
      //constant/pool.equivalence
      //modifier.equivalence
      //index.equivalence
      //index.equivalence
      (row.equivalence //index.equivalence)
      (row.equivalence //field.equivalence)
      (row.equivalence //method.equivalence)
      (row.equivalence //attribute.equivalence)))

(def: (install-classes this super interfaces)
  (-> Internal Internal (List Internal)
      (State Pool [(Index //constant.Class) (Index //constant.Class) (Row (Index //constant.Class))]))
  (do state.monad
    [@this (//constant/pool.class (//name.read this))
     @super (//constant/pool.class (//name.read super))
     @interfaces (: (State Pool (Row (Index //constant.Class)))
                    (monad.fold @ (function (_ interface @interfaces)
                                    (do @
                                      [@interface (//constant/pool.class (//name.read interface))]
                                      (wrap (row.add @interface @interfaces))))
                                row.empty
                                interfaces))]
    (wrap [@this @super @interfaces])))

(def: #export (class version modifier
                     this super interfaces
                     fields methods attributes)
  (-> Major (Modifier Class)
      Internal Internal (List Internal)
      (List (State Pool Field))
      (Row Method)
      (Row Attribute)
      Class)
  (let [[pool [@this @super @interfaces] =fields]
        (state.run //constant/pool.empty
                   (do state.monad
                     [classes (install-classes this super interfaces)
                      =fields (monad.seq state.monad fields)]
                     (wrap [classes =fields])))]
    {#magic //magic.code
     #minor-version //version.default-minor
     #major-version version
     #constant-pool pool
     #modifier modifier
     #this @this
     #super @super
     #interfaces @interfaces
     #fields (row.from-list =fields)
     #methods methods
     #attributes attributes}))

(def: #export parser
  (Parser Class)
  (do <>.monad
    [magic //magic.parser
     minor-version //version.parser
     major-version //version.parser
     constant-pool //constant/pool.parser
     modifier //modifier.parser
     this //index.parser
     super //index.parser
     interfaces (<2>.row/16 //index.parser)
     fields (<2>.row/16 (//field.parser constant-pool))
     methods (<2>.row/16 (//method.parser constant-pool))
     attributes (<2>.row/16 (//attribute.parser constant-pool))]
    (wrap {#magic magic
           #minor-version minor-version
           #major-version major-version
           #constant-pool constant-pool
           #modifier modifier
           #this this
           #super super
           #interfaces interfaces
           #fields fields
           #methods methods
           #attributes attributes})))

(def: #export (writer class)
  (Writer Class)
  (`` ($_ binaryF@compose
          (~~ (template [<writer> <slot>]
                [(<writer> (get@ <slot> class))]

                [//magic.writer #magic]
                [//version.writer #minor-version]
                [//version.writer #major-version]
                [//constant/pool.writer #constant-pool]
                [//modifier.writer #modifier]
                [//index.writer #this]
                [//index.writer #super]))
          (~~ (template [<writer> <slot>]
                [((binaryF.row/16 <writer>) (get@ <slot> class))]

                [//index.writer #interfaces]
                [//field.writer #fields]
                [//method.writer #methods]
                [//attribute.writer #attributes]
                ))
          )))