aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/binary.lux
blob: 58ea7eb05fc56a35a36eba24c2430175dc221a00 (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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
(.module:
  [lux (#- and or nat int rev list type)
   [type (#+ :share)]
   [abstract
    [monoid (#+ Monoid)]
    ["." fold]
    [monad (#+ Monad do)]
    [equivalence (#+ Equivalence)]]
   [control
    ["." try (#+ Try)]
    ["<>" parser ("#@." monad)
     ["/" binary (#+ Offset Size Parser)]]
    ["." function]
    ["ex" exception (#+ exception:)]]
   [data
    ["." product]
    ["." binary (#+ Binary)]
    [number
     ["." i64]
     ["." frac]]
    [text
     ["." encoding]
     ["%" format]]
    [collection
     ["." list]
     ["." row (#+ Row) ("#@." functor)]]]])

(def: mask
  (-> Size (I64 Any))
  (|>> (n/* i64.bits-per-byte) i64.mask))

(type: #export Mutation
  (-> [Offset Binary] [Offset Binary]))

(type: #export Specification
  [Size Mutation])

(def: #export no-op
  Specification
  [0 function.identity])

(def: #export (instance [size mutation])
  (-> Specification Binary)
  (|> size binary.create [0] mutation product.right))

(structure: #export monoid (Monoid Specification)
  
  (def: identity
    ..no-op)
  
  (def: (compose [sizeL mutL] [sizeR mutR])
    [(n/+ sizeL sizeR)
     (|>> mutL mutR)]))

(type: #export (Writer a)
  (-> a Specification))

(def: #export (run writer value)
  (All [a] (-> (Writer a) a Binary))
  (instance (writer value)))

(template [<name> <size> <write>]
  [(def: #export <name>
     (Writer (I64 Any))
     (function (_ value)
       [<size>
        (function (_ [offset binary])
          [(n/+ <size> offset)
           (|> binary
               (<write> offset value)
               try.assume)])]))]

  [bits/8  /.size/8  binary.write/8]
  [bits/16 /.size/16 binary.write/16]
  [bits/32 /.size/32 binary.write/32]
  [bits/64 /.size/64 binary.write/64]
  )

(def: #export (or left right)
  (All [l r] (-> (Writer l) (Writer r) (Writer (| l r))))
  (function (_ altV)
    (case altV
      (#.Left leftV)
      (let [[leftS leftT] (left leftV)]
        [(.inc leftS)
         (function (_ [offset binary])
           (|> binary
               (binary.write/8 offset 0)
               try.assume
               [(.inc offset)]
               leftT))])
      
      (#.Right rightV)
      (let [[rightS rightT] (right rightV)]
        [(.inc rightS)
         (function (_ [offset binary])
           (|> binary
               (binary.write/8 offset 1)
               try.assume
               [(.inc offset)]
               rightT))])
      )))

(def: #export (and pre post)
  (All [a b] (-> (Writer a) (Writer b) (Writer [a b])))
  (function (_ [preV postV])
    (:: ..monoid compose (pre preV) (post postV))))

(def: #export (rec body)
  (All [a] (-> (-> (Writer a) (Writer a)) (Writer a)))
  (function (_ value)
    (let [writer (body (rec body))]
      (writer value))))

(def: #export any
  (Writer Any)
  (function.constant ..no-op))

(def: #export bit
  (Writer Bit)
  (function (_ value)
    [1
     (function (_ [offset binary])
       [(n/+ 1 offset)
        (|> binary
            (binary.write/8 offset (if value 1 0))
            try.assume)])]))

(template [<name> <type>]
  [(def: #export <name> (Writer <type>) ..bits/64)]

  [nat Nat]
  [int Int]
  [rev Rev]
  )

(def: #export frac
  (Writer Frac)
  (|>> frac.to-bits ..bits/64))

(template [<name> <bits> <size> <write>]
  [(def: #export <name>
     (Writer Binary)
     (let [mask (..mask <size>)]
       (function (_ value)
         (let [size (|> value binary.size (i64.and mask))
               size' (n/+ <size> size)]
           [size'
            (function (_ [offset binary])
              [(n/+ size' offset)
               (try.assume
                (do try.monad
                  [_ (<write> offset size binary)]
                  (binary.copy size 0 value (n/+ <size> offset) binary)))])]))))]

  [binary/8  ..bits/8  /.size/8  binary.write/8]
  [binary/16 ..bits/16 /.size/16 binary.write/16]
  [binary/32 ..bits/32 /.size/32 binary.write/32]
  [binary/64 ..bits/64 /.size/64 binary.write/64]
  )

(template [<name> <binary>]
  [(def: #export <name>
     (Writer Text)
     (|>> encoding.to-utf8 <binary>))]

  [utf8/8  ..binary/8]
  [utf8/16 ..binary/16]
  [utf8/32 ..binary/32]
  [utf8/64 ..binary/64]
  )

(def: #export text ..utf8/64)

(template [<name> <size> <write>]
  [(def: #export (<name> valueW)
     (All [v] (-> (Writer v) (Writer (Row v))))
     (function (_ value)
       (let [original-count (row.size value)
             capped-count (i64.and (..mask <size>)
                                   original-count)
             value (if (n/= original-count capped-count)
                     value
                     (|> value row.to-list (list.take capped-count) row.from-list))
             (^open "specification@.") ..monoid
             [size mutation] (|> value
                                 (row@map valueW)
                                 (:: row.fold fold
                                     (function (_ post pre)
                                       (specification@compose pre post))
                                     specification@identity))]
         [(n/+ <size> size)
          (function (_ [offset binary])
            (try.assume
             (do try.monad
               [_ (<write> offset capped-count binary)]
               (wrap (mutation [(n/+ <size> offset) binary])))))])))]

  [row/8  /.size/8  binary.write/8]
  [row/16 /.size/16 binary.write/16]
  [row/32 /.size/32 binary.write/32]
  [row/64 /.size/64 binary.write/64]
  )

(def: #export maybe
  (All [a] (-> (Writer a) (Writer (Maybe a))))
  (..or ..any))

(def: #export (list value)
  (All [a] (-> (Writer a) (Writer (List a))))
  (..rec
   (function (_ recur)
     (..or ..any
           (..and value recur)))))

(def: #export name
  (Writer Name)
  (..and ..text ..text))

(def: #export type
  (Writer Type)
  (..rec
   (function (_ type)
     (let [pair (..and type type)
           indexed ..nat
           quantified (..and (..list type) type)]
       ($_ ..or
           ## #Primitive
           (..and ..text (..list type))
           ## #Sum
           pair
           ## #Product
           pair
           ## #Function
           pair
           ## #Parameter
           indexed
           ## #Var
           indexed
           ## #Ex
           indexed
           ## #UnivQ
           quantified
           ## #ExQ
           quantified
           ## #Apply
           pair
           ## #Named
           (..and ..name type)
           )))))

(def: #export cursor
  (Writer Cursor)
  ($_ ..and ..text ..nat ..nat))

(def: #export code
  (Writer Code)
  (..rec
   (function (_ code)
     (let [sequence (..list code)
           code' ($_ ..or
                     ## #Bit
                     ..bit
                     ## #Nat
                     ..nat
                     ## #Int
                     ..int
                     ## #Rev
                     ..rev
                     ## #Frac
                     ..frac
                     ## #Text
                     ..text
                     ## #Identifier
                     ..name
                     ## #Tag
                     ..name
                     ## #Form
                     sequence
                     ## #Tuple
                     sequence
                     ## #Record
                     (..list (..and code code)))]
       (..and ..cursor code')))))