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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
type bigstring =
(char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t
type input =
[ `String of string
| `Bigstring of bigstring ]
let input_length input =
match input with
| `String s -> String.length s
| `Bigstring b -> Bigarray.Array1.dim b
module Input = struct
type t =
{ mutable commit_pos : int
; initial_commit_pos : int
; input : input
}
let create initial_commit_pos input =
{ commit_pos = initial_commit_pos
; initial_commit_pos
; input
}
let length { initial_commit_pos; input} =
input_length input + initial_commit_pos
let committed_bytes { commit_pos; initial_commit_pos } =
commit_pos - initial_commit_pos
let initial_commit_pos t =
t.initial_commit_pos
let commit_pos t =
t.commit_pos
let uncommitted_bytes t =
input_length t.input - commit_pos t
let substring { initial_commit_pos; input } pos len =
let off = pos - initial_commit_pos in
match input with
| `String s -> String.sub s off len
| `Bigstring b -> Cstruct.to_string (Cstruct.of_bigarray ~off ~len b)
let get_char { initial_commit_pos; input } pos =
let pos = pos - initial_commit_pos in
match input with
| `String s -> String.unsafe_get s pos
| `Bigstring b -> Bigarray.Array1.unsafe_get b pos
let count_while { initial_commit_pos; input } pos f =
let i = ref (pos - initial_commit_pos) in
let len = input_length input in
begin match input with
| `String s ->
while !i < len && f (String.unsafe_get s !i) do incr i; done
| `Bigstring b ->
while !i < len && f (Bigarray.Array1.unsafe_get b !i) do incr i; done
end;
!i - (pos - initial_commit_pos)
let commit t pos =
t.commit_pos <- pos
end
type _unconsumed =
{ buffer : bigstring
; off : int
; len : int }
class buffer cstruct =
let internal = ref cstruct in
let _writable_space t =
let { Cstruct.buffer; len } = !internal in
Bigarray.Array1.dim buffer - len
in
let _trailing_space t =
let { Cstruct.buffer; off; len } = !internal in
Bigarray.Array1.dim buffer - (off + len)
in
let compress () =
let off, len = 0, Cstruct.len !internal in
let buffer = Cstruct.of_bigarray ~off ~len (!internal).Cstruct.buffer in
Cstruct.blit !internal 0 buffer 0 len;
internal := buffer
in
let grow to_copy =
let init_size = Bigarray.Array1.dim (!internal).Cstruct.buffer in
let size = ref init_size in
let space = _writable_space () in
while space + !size - init_size < to_copy do
size := (3 * !size) / 2
done;
let buffer = Cstruct.(set_len (create !size)) (!internal).Cstruct.len in
Cstruct.blit !internal 0 buffer 0 (!internal).Cstruct.len;
internal := buffer
in
let ensure_space len =
begin if _trailing_space () >= len then
()
else if _writable_space () >= len then
compress ()
else
grow len
end;
internal := Cstruct.add_len !internal len
in
object(self)
method feed (input:input) =
let len = input_length input in
ensure_space len;
let off = Cstruct.len !internal - len in
match input with
| `String s ->
let allocator _ = Cstruct.sub !internal off len in
ignore (Cstruct.of_string ~allocator s)
| `Bigstring b ->
Cstruct.blit (Cstruct.of_bigarray b) 0 !internal off len
method commit len =
internal := Cstruct.shift !internal len
method internal =
let { Cstruct.buffer; off; len } = !internal in
Bigarray.Array1.sub buffer off len
method uncommitted_with_shift n =
let { Cstruct.buffer; off; len } = Cstruct.shift !internal n in
{ buffer; off; len }
method uncommitted =
self#uncommitted_with_shift 0
end
let buffer_of_cstruct cstruct =
new buffer cstruct
let buffer_of_size size =
new buffer Cstruct.(set_len (create size) 0)
let buffer_of_bigstring ?(off=0) ?len bigstring =
buffer_of_cstruct (Cstruct.of_bigarray ~off ?len bigstring)
let buffer_of_unconsumed { buffer; off; len} =
buffer_of_bigstring ~off ~len buffer
module Unbuffered = struct
type more =
| Complete
| Incomplete
type 'a state =
| Partial of 'a partial
| Done of int * 'a
| Fail of int * string list * string
and 'a partial =
{ committed : int
; continue : input -> more -> 'a state }
type 'a with_input =
Input.t -> int -> more -> 'a
type 'a failure = (string list -> string -> 'a state) with_input
type ('a, 'r) success = ('a -> 'r state) with_input
let fail_k buf pos _ marks msg = Fail(pos - Input.initial_commit_pos buf, marks, msg)
let succeed_k buf pos _ v = Done(pos - Input.initial_commit_pos buf, v)
type +'a t =
{ run : 'r. ('r failure -> ('a, 'r) success -> 'r state) with_input }
let fail_to_string marks err =
String.concat " > " marks ^ ": " ^ err
let state_to_option = function
| Done(_, v) -> Some v
| _ -> None
let state_to_result = function
| Done(_, v) -> Result.Ok v
| Partial _ -> Result.Error "incomplete input"
| Fail(_, marks, err) -> Result.Error (fail_to_string marks err)
let parse ?(input=`String "") p =
p.run (Input.create 0 input) 0 Incomplete fail_k succeed_k
let parse_only p input =
state_to_result (p.run (Input.create 0 input) 0 Complete fail_k succeed_k)
end
type more = Unbuffered.more =
| Complete
| Incomplete
type 'a state = 'a Unbuffered.state =
| Partial of 'a partial
| Done of int * 'a
| Fail of int * string list * string
and 'a partial = 'a Unbuffered.partial =
{ committed : int
; continue : input -> more -> 'a state }
type 'a t = 'a Unbuffered.t =
{ run : 'r. ('r Unbuffered.failure -> ('a, 'r) Unbuffered.success -> 'r state) Unbuffered.with_input }
module Buffered = struct
type unconsumed = _unconsumed =
{ buffer : bigstring
; off : int
; len : int }
type 'a state =
| Partial of ([ input | `Eof ] -> 'a state)
| Done of unconsumed * 'a
| Fail of unconsumed * string list * string
let from_unbuffered_state ~f buffer = function
| Unbuffered.Partial p -> Partial (f p)
| Unbuffered.Done(consumed, v) ->
Done(buffer#uncommitted_with_shift consumed, v)
| Unbuffered.Fail(consumed, marks, msg) ->
Fail(buffer#uncommitted_with_shift consumed, marks, msg)
let parse ?(initial_buffer_size=0x1000) ?(input=`String "") p =
if initial_buffer_size < 1 then
failwith "parse: invalid argument, initial_buffer_size < 1";
let initial_buffer_size = max initial_buffer_size (input_length input) in
let buffer = buffer_of_size initial_buffer_size in
buffer#feed input;
let rec f p =
();
function
| `Eof -> from_unbuffered_state buffer ~f (p.continue (`Bigstring buffer#internal) Complete)
| #input as input ->
buffer#commit p.committed;
buffer#feed input;
from_unbuffered_state buffer ~f (p.continue (`Bigstring buffer#internal) Incomplete)
in
from_unbuffered_state buffer ~f (Unbuffered.parse ~input:(`Bigstring buffer#internal) p)
let feed state input =
match state with
| Partial k -> k input
| Fail(unconsumed, marks, msg) ->
begin match input with
| `Eof -> state
| #input as input ->
let buffer = buffer_of_unconsumed unconsumed in
buffer#feed input;
Fail(buffer#uncommitted, marks, msg)
end
| Done(unconsumed, v) ->
begin match input with
| `Eof -> state
| #input as input ->
let buffer = buffer_of_unconsumed unconsumed in
buffer#feed input;
Done(buffer#uncommitted, v)
end
let state_to_option = function
| Done(_, v) -> Some v
| _ -> None
let state_to_result = function
| Partial _ -> Result.Error "incomplete input"
| Done(_, v) -> Result.Ok v
| Fail(_, marks, msg) -> Result.Error (Unbuffered.fail_to_string marks msg)
let state_to_unconsumed = function
| Done(unconsumed, _)
| Fail(unconsumed, _, _) -> Some unconsumed
| _ -> None
end
let parse_only p input =
Unbuffered.parse_only p input
let return =
fun v ->
{ run = fun input pos more _fail succ ->
succ input pos more v }
let fail msg =
{ run = fun input pos more fail succ ->
fail input pos more [] msg
}
let (>>=) p f =
{ run = fun input pos more fail succ ->
let succ' input' pos' more' v = (f v).run input' pos' more' fail succ in
p.run input pos more fail succ'
}
let (>>|) p f =
{ run = fun input pos more fail succ ->
let succ' input' pos' more' v = succ input' pos' more' (f v) in
p.run input pos more fail succ'
}
let (<$>) f m =
m >>| f
let (<*>) f m =
{ run = fun input pos more fail succ ->
let succ0 input0 pos0 more0 f =
let succ1 input1 pos1 more1 m = succ input1 pos1 more1 (f m) in
m.run input0 pos0 more0 fail succ1
in
f.run input pos more fail succ0 }
let lift f m =
f <$> m
let lift2 f m1 m2 =
{ run = fun input pos more fail succ ->
let succ1 input1 pos1 more1 m1 =
let succ2 input2 pos2 more2 m2 = succ input2 pos2 more2 (f m1 m2) in
m2.run input1 pos1 more1 fail succ2
in
m1.run input pos more fail succ1 }
let lift3 f m1 m2 m3 =
{ run = fun input pos more fail succ ->
let succ1 input1 pos1 more1 m1 =
let succ2 input2 pos2 more2 m2 =
let succ3 input3 pos3 more3 m3 =
succ input3 pos3 more3 (f m1 m2 m3) in
m3.run input2 pos2 more2 fail succ3 in
m2.run input1 pos1 more1 fail succ2
in
m1.run input pos more fail succ1 }
let lift4 f m1 m2 m3 m4 =
{ run = fun input pos more fail succ ->
let succ1 input1 pos1 more1 m1 =
let succ2 input2 pos2 more2 m2 =
let succ3 input3 pos3 more3 m3 =
let succ4 input4 pos4 more4 m4 =
succ input4 pos4 more4 (f m1 m2 m3 m4) in
m4.run input3 pos3 more3 fail succ4 in
m3.run input2 pos2 more2 fail succ3 in
m2.run input1 pos1 more1 fail succ2
in
m1.run input pos more fail succ1 }
let ( *>) a b =
{ run = fun input pos more fail succ ->
let succ' input' pos' more' _ = b.run input' pos' more' fail succ in
a.run input pos more fail succ'
}
let (<* ) a b =
{ run = fun input pos more fail succ ->
let succ0 input0 pos0 more0 x =
let succ1 input1 pos1 more1 _ = succ input1 pos1 more1 x in
b.run input0 pos0 more0 fail succ1
in
a.run input pos more fail succ0 }
let (<?>) p mark =
{ run = fun input pos more fail succ ->
let fail' input' pos' more' marks msg =
fail input' pos' more' (mark::marks) msg in
p.run input pos more fail' succ
}
let (<|>) p q =
{ run = fun input pos more fail succ ->
let fail' input' pos' more' marks msg =
if pos < Input.commit_pos input' then
fail input' pos' more marks msg
else
q.run input' pos more' fail succ in
p.run input pos more fail' succ
}
(** BEGIN: getting input *)
let rec prompt input pos fail succ =
let uncommitted_bytes = Input.uncommitted_bytes input in
let commit_pos = Input.commit_pos input in
let continue input more =
let length = input_length input in
if length < uncommitted_bytes then
failwith "prompt: input shrunk!";
let input = Input.create commit_pos input in
if length = uncommitted_bytes then
if more = Complete then
fail input pos Complete
else
prompt input pos fail succ
else
succ input pos more
in
Partial { committed = Input.committed_bytes input; continue }
let demand_input =
{ run = fun input pos more fail succ ->
match more with
| Complete -> fail input pos more [] "not enough input"
| Incomplete ->
let succ' input' pos' more' = succ input' pos' more' ()
and fail' input' pos' more' = fail input' pos' more' [] "not enough input" in
prompt input pos fail' succ'
}
let ensure_suspended n input pos more fail succ =
let rec go =
{ run = fun input' pos' more' fail' succ' ->
if pos' + n <= Input.length input' then
succ' input' pos' more' ()
else
(demand_input *> go).run input' pos' more' fail' succ'
}
in
(demand_input *> go).run input pos more fail succ
let unsafe_substring n =
{ run = fun input pos more fail succ ->
succ input (pos + n) more (Input.substring input pos n)
}
let ensure n =
{ run = fun input pos more fail succ ->
if pos + n <= Input.length input then
succ input pos more ()
else
ensure_suspended n input pos more fail succ
}
*> unsafe_substring n
(** END: getting input *)
let at_end_of_input =
{ run = fun input pos more _ succ ->
if pos < Input.length input then
succ input pos more false
else match more with
| Complete -> succ input pos more true
| Incomplete ->
let succ' input' pos' more' = succ input' pos' more' false
and fail' input' pos' more' = succ input' pos' more' true in
prompt input pos fail' succ'
}
let end_of_input =
at_end_of_input
>>= function
| true -> return ()
| false -> fail "end_of_input"
let advance n =
{ run = fun input pos more _fail succ -> succ input (pos + n) more () }
let pos =
{ run = fun input pos more _fail succ -> succ input pos more pos }
let available =
{ run = fun input pos more _fail succ ->
succ input pos more (Input.length input - pos)
}
let get_buffer_and_pos =
{ run = fun input pos more _fail succ -> succ input pos more (input, pos) }
let commit =
{ run = fun input pos more _fail succ ->
Input.commit input pos;
succ input pos more () }
let unsafe_lookahead p =
{ run = fun input pos more fail succ ->
let succ' input' _ more' v = succ input' pos more' v in
p.run input pos more fail succ' }
let peek_char =
{ run = fun input pos more fail succ ->
if pos < Input.length input then
succ input pos more (Some (Input.get_char input pos))
else if more = Complete then
succ input pos more None
else
let succ' input' pos' more' =
succ input' pos' more' (Some (Input.get_char input' pos'))
and fail' input' pos' more' =
succ input' pos' more' None in
prompt input pos fail' succ'
}
let _char ~msg f =
{ run = fun input pos more fail succ ->
if pos < Input.length input then
match f (Input.get_char input pos) with
| None -> fail input pos more [] msg
| Some v -> succ input (pos + 1) more v
else
let succ' input' pos' more' () =
match f (Input.get_char input' pos') with
| None -> fail input' pos' more' [] msg
| Some v -> succ input' (pos' + 1) more' v
in
ensure_suspended 1 input pos more fail succ'
}
let peek_char_fail =
unsafe_lookahead (_char ~msg:"peek_char_fail" (fun c -> Some c))
let satisfy f =
_char ~msg:"satisfy" (fun c -> if f c then Some c else None)
let skip f =
_char ~msg:"skip" (fun c -> if f c then Some () else None)
let char c =
satisfy (fun c' -> c = c') <?> (String.make 1 c)
let not_char c =
satisfy (fun c' -> c <> c') <?> ("not " ^ String.make 1 c)
let any_char =
_char ~msg:"any_char" (fun c -> Some c)
let any_uint8 =
_char ~msg:"any_uint8" (fun c -> Some (Char.code c))
let any_int8 =
let s = Sys.word_size - 1 - 8 in
_char ~msg:"any_int8" (fun c -> Some ((Char.code c lsl s) asr s))
let count_while ?(init=0) f =
let rec go acc =
{ run = fun input pos more fail succ ->
let n = Input.count_while input (pos + acc) f in
let acc' = n + acc in
if pos + acc' < Input.length input || more = Complete then
succ input pos more acc'
else
let succ' input' pos' more' = (go acc').run input' pos' more' fail succ
and fail' input' pos' more' = succ input' pos' more' acc' in
prompt input pos fail' succ'
}
in
go init
let string_ f s =
let len = String.length s in
ensure len >>= fun s'->
if String.equal (f s) (f s')
then return s'
else fail "string"
let string s = string_ (fun x -> x) s
let string_ci s = string_ String.lowercase_ascii s
let skip_while f =
count_while f >>= advance
let take n =
ensure (max n 0)
let peek_string n =
unsafe_lookahead (take n)
let take_while f =
count_while f >>= unsafe_substring
let take_while1 f =
count_while f
>>= function
| 0 -> fail "take_while1"
| n -> unsafe_substring n
let take_till f =
take_while (fun c -> not (f c))
let choice ps =
List.fold_right (<|>) ps (fail "empty")
let fix f =
let rec p = lazy (f r)
and r = { run = fun buf pos more fail succ ->
Lazy.(force p).run buf pos more fail succ }
in
r
let option x p =
p <|> return x
let cons x xs = x :: xs
let rec list ps =
match ps with
| [] -> return []
| p::ps -> lift2 cons p (list ps)
let count n p =
if n < 0 then
failwith "count: invalid argument, n < 0";
let rec loop = function
| 0 -> return []
| n -> lift2 cons p (loop (n - 1))
in
loop n
let many p =
fix (fun m ->
(lift2 cons p m) <|> return [])
let many1 p =
lift2 cons p (many p)
let many_till p t =
fix (fun m ->
(t *> return []) <|> (lift2 cons p m))
let sep_by1 s p =
fix (fun m ->
lift2 cons p ((s *> m) <|> return []))
let sep_by s p =
(lift2 cons p ((s *> sep_by1 s p) <|> return [])) <|> return []
let skip_many p =
fix (fun m ->
(p *> m) <|> return ())
let skip_many1 p =
p *> skip_many p
let end_of_line =
(char '\n' *> return ()) <|> (string "\r\n" *> return ()) <?> "end_of_line"
let scan_ state f =
{ run = fun input pos more fail succ ->
let state = ref state in
let parser =
count_while (fun c ->
match f !state c with
| None -> false
| Some state' -> state := state'; true)
>>| fun n -> n, !state
in
parser.run input pos more fail succ }
let scan state f =
scan_ state f
>>= fun (n, state) -> unsafe_substring n
>>| fun string -> string, state
let scan_state state f =
scan_ state f >>= fun (n, state) -> advance n *> return state
let scan_string state f =
scan_ state f >>= fun (n, _) -> unsafe_substring n
module Make_endian(Es : EndianString.EndianStringSig) = struct
let get_float s = Es.get_float s 0
let get_double s = Es.get_double s 0
let get_int16 s = Es.get_int16 s 0
let get_int32 s = Es.get_int32 s 0
let get_int64 s = Es.get_int64 s 0
let get_uint16 s = Es.get_uint16 s 0
let get_uint32 s = Es.get_int32 s 0
let get_uint64 s = Es.get_int64 s 0
let int16 = take 2 >>| get_int16
let int32 = take 4 >>| get_int32
let int64 = take 8 >>| get_int64
let uint16 = take 2 >>| get_uint16
let uint32 = take 4 >>| get_uint32
let uint64 = take 8 >>| get_uint64
let float = take 4 >>| get_float
let double = take 8 >>| get_double
end
module BE = Make_endian(EndianString.BigEndian_unsafe)
module LE = Make_endian(EndianString.LittleEndian_unsafe)