Source file piqirun.ml
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
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
exception Error of int * string
let string_of_loc pos =
string_of_int pos
let strerr loc s =
string_of_loc loc ^ ": " ^ s
let buf_error loc s =
raise (Error (loc, s))
let error obj s =
let loc = -1 in
buf_error loc s
type string_slice =
{
s : string;
start_pos : int;
len :int;
mutable pos : int;
}
let list_map_slow f l = List.rev (List.rev_map f l)
let rec list_count_map f l ctr =
match l with
| [] -> []
| [x1] ->
let f1 = f x1 in
[f1]
| [x1; x2] ->
let f1 = f x1 in
let f2 = f x2 in
[f1; f2]
| [x1; x2; x3] ->
let f1 = f x1 in
let f2 = f x2 in
let f3 = f x3 in
[f1; f2; f3]
| [x1; x2; x3; x4] ->
let f1 = f x1 in
let f2 = f x2 in
let f3 = f x3 in
let f4 = f x4 in
[f1; f2; f3; f4]
| x1 :: x2 :: x3 :: x4 :: x5 :: tl ->
let f1 = f x1 in
let f2 = f x2 in
let f3 = f x3 in
let f4 = f x4 in
let f5 = f x5 in
f1 :: f2 :: f3 :: f4 :: f5 ::
(if ctr > 1000
then list_map_slow f tl
else list_count_map f tl (ctr + 1))
let list_map f l = list_count_map f l 0
module List =
struct
include List
let map = list_map
end
module IBuf =
struct
type t =
| String of string_slice
| Channel of in_channel
let of_channel x = Channel x
let of_string x start_pos =
String
{ s = x; len = String.length x;
start_pos = start_pos; pos = 0;
}
let to_string buf =
match buf with
| String x ->
String.sub x.s x.pos (x.len - x.pos)
| Channel x ->
let res = Buffer.create 20 in
try
while true
do
Buffer.add_char res (input_char x)
done; ""
with End_of_file ->
Buffer.contents res
let pos buf =
match buf with
| String x -> x.pos + x.start_pos
| Channel x -> pos_in x
let size buf =
match buf with
| String x -> x.len - x.pos
| Channel x ->
assert false
let error buf s =
let loc = pos buf in
buf_error loc s
exception End_of_buffer
let next_byte buf =
match buf with
| String x ->
if x.pos >= x.len
then
raise End_of_buffer
else
let res = x.s.[x.pos] in
x.pos <- x.pos + 1;
Char.code res
| Channel x ->
(try input_byte x
with End_of_file -> raise End_of_buffer)
let next_block buf length =
match buf with
| String x ->
if x.pos + length > x.len
then
(x.pos <- x.len; raise End_of_buffer)
else
let res = String { x with len = x.pos + length } in
x.pos <- x.pos + length;
res
| Channel x ->
let start_pos = pos_in x in
let s = Bytes.create length in
(try Stdlib.really_input x s 0 length
with End_of_file -> raise End_of_buffer
);
of_string (Bytes.unsafe_to_string s) start_pos
let of_string x =
of_string x 0
end
type t =
| Varint of int
| Varint64 of int64
| Int32 of int32
| Int64 of int64
| Block of IBuf.t
| Top_block of IBuf.t
let init_from_channel ch =
Top_block (IBuf.of_channel ch)
let init_from_string s =
Top_block (IBuf.of_string s)
let error_variant obj code =
error obj ("unknown variant: " ^ string_of_int code)
let error_missing obj code =
error obj ("missing field: " ^ string_of_int code)
let error_enum_const obj = error obj "unknown enum constant"
let check_unparsed_fields l =
()
let next_varint_byte buf =
let x = IBuf.next_byte buf in
let msb = x land 0x80 in
let x = x land 0x7f in
msb, x
let parse_varint64 i buf msb x partial_res =
let rec aux i msb x res =
let x = Int64.of_int x in
let y = Int64.shift_left x (i*7) in
if (Int64.shift_right_logical y (i*7)) <> x
then
IBuf.error buf "integer overflow while reading varint"
else
let res = Int64.logor res y in
if msb = 0
then Varint64 res
else
let msb, x = next_varint_byte buf in
aux (i+1) msb x res
in aux i msb x (Int64.of_int partial_res)
let parse_varint_common buf i res =
let rec aux i res =
let msb, x = next_varint_byte buf in
let y = x lsl (i*7) in
if y asr (i*7) <> x
then
parse_varint64 i buf msb x res
else
let res = res lor y in
if msb = 0
then Varint res
else aux (i+1) res
in
try aux i res
with IBuf.End_of_buffer ->
IBuf.error buf "unexpected end of buffer while reading varint"
let parse_varint buf =
parse_varint_common buf 0 0
let try_parse_varint buf =
let msb, x = next_varint_byte buf in
if msb = 0
then Varint x
else parse_varint_common buf 1 x
let parse_fixed32 buf =
try
let res = ref 0l in
for i = 0 to 3
do
let x = IBuf.next_byte buf in
let x = Int32.of_int x in
let x = Int32.shift_left x (i*8) in
res := Int32.logor !res x
done;
!res
with IBuf.End_of_buffer ->
IBuf.error buf "unexpected end of buffer while reading fixed32"
let parse_fixed64 buf =
try
let res = ref 0L in
for i = 0 to 7
do
let x = IBuf.next_byte buf in
let x = Int64.of_int x in
let x = Int64.shift_left x (i*8) in
res := Int64.logor !res x
done;
!res
with IBuf.End_of_buffer ->
IBuf.error buf "unexpected end of buffer while reading fixed64"
let try_parse_fixed32 buf =
let b1 = IBuf.next_byte buf in
let res = ref (Int32.of_int b1) in
try
for i = 1 to 3
do
let x = IBuf.next_byte buf in
let x = Int32.of_int x in
let x = Int32.shift_left x (i*8) in
res := Int32.logor !res x
done;
!res
with IBuf.End_of_buffer ->
IBuf.error buf "unexpected end of buffer while reading fixed32"
let try_parse_fixed64 buf =
let b1 = IBuf.next_byte buf in
let res = ref (Int64.of_int b1) in
try
for i = 1 to 7
do
let x = IBuf.next_byte buf in
let x = Int64.of_int x in
let x = Int64.shift_left x (i*8) in
res := Int64.logor !res x
done;
!res
with IBuf.End_of_buffer ->
IBuf.error buf "unexpected end of buffer while reading fixed64"
let parse_block buf =
match parse_varint buf with
| Varint length when length >= 0 ->
(try IBuf.next_block buf length
with IBuf.End_of_buffer -> error buf "unexpected end of block")
| Varint _ | Varint64 _ ->
IBuf.error buf "block length is too long"
| _ -> assert false
let buf =
match try_parse_varint buf with
| Varint key ->
let wire_type = key land 7 in
let field_code = key lsr 3 in
wire_type, field_code
| Varint64 key when Int64.logand key 0xffff_ffff_0000_0000L <> 0L ->
IBuf.error buf "field code is too big"
| Varint64 key ->
let wire_type = Int64.to_int (Int64.logand key 7L) in
let field_code = Int64.to_int (Int64.shift_right_logical key 3) in
wire_type, field_code
| _ -> assert false
let parse_field buf =
try
let wire_type, field_code = parse_field_header buf in
let field_value =
match wire_type with
| 0 -> parse_varint buf
| 1 -> Int64 (parse_fixed64 buf)
| 2 -> Block (parse_block buf)
| 5 -> Int32 (parse_fixed32 buf)
| 3 | 4 -> IBuf.error buf "groups are not supported"
| _ -> IBuf.error buf ("unknown wire type " ^ string_of_int wire_type)
in
Some (field_code, field_value)
with
IBuf.End_of_buffer -> None
let buf =
match parse_field buf with
| None ->
error buf "unexpected end of buffer when reading top-level header"
| Some (field_code, field_value) ->
if field_code = 1
then field_value
else error buf "invalid top-level header for a primitive type"
let rec expect_int32 = function
| Int32 i -> i
| Top_block buf -> expect_int32 (parse_toplevel_header buf)
| obj -> error obj "fixed32 expected"
let rec expect_int64 = function
| Int64 i -> i
| Top_block buf -> expect_int64 (parse_toplevel_header buf)
| obj -> error obj "fixed64 expected"
let rec zigzag_varint_of_varint = function
| Varint x ->
let sign = - (x land 1) in
let res = (x lsr 1) lxor sign in
Varint res
| Varint64 x ->
let sign = Int64.neg (Int64.logand x 1L) in
let res = Int64.logxor (Int64.shift_right_logical x 1) sign in
Varint64 res
| Top_block buf -> zigzag_varint_of_varint (parse_toplevel_header buf)
| obj -> error obj "varint expected"
let max_uint =
match Sys.word_size with
| 32 -> 0x0000_0000_7fff_ffffL
| 64 -> 0x7fff_ffff_ffff_ffffL
| _ -> assert false
let int64_of_uint x =
Int64.logand (Int64.of_int x) max_uint
let int64_of_uint32 x =
Int64.logand (Int64.of_int32 x) 0x0000_0000_ffff_ffffL
let rec int_of_varint obj =
match obj with
| Varint x -> x
| Varint64 x ->
let res = Int64.to_int x in
if int64_of_uint res <> x
then error obj "int overflow in 'int_of_varint'";
res
| Top_block buf -> int_of_varint (parse_toplevel_header buf)
| _ ->
error obj "varint expected"
let rec int_of_signed_varint obj =
match obj with
| Varint x -> x
| Varint64 x ->
let res = Int64.to_int x in
if Int64.of_int res <> x
then error obj "int overflow in 'int_of_signed_varint'";
res
| Top_block buf -> int_of_signed_varint (parse_toplevel_header buf)
| _ ->
error obj "varint expected"
let int_of_zigzag_varint x =
int_of_signed_varint (zigzag_varint_of_varint x)
let int_of_fixed32 x =
Int32.to_int (expect_int32 x)
let int_of_fixed64 x =
Int64.to_int (expect_int64 x)
let rec int64_of_varint = function
| Varint x -> int64_of_uint x
| Varint64 x -> x
| Top_block buf -> int64_of_varint (parse_toplevel_header buf)
| obj -> error obj "varint expected"
let rec int64_of_signed_varint = function
| Varint x -> Int64.of_int x
| Varint64 x -> x
| Top_block buf -> int64_of_signed_varint (parse_toplevel_header buf)
| obj -> error obj "varint expected"
let int64_of_zigzag_varint x =
int64_of_signed_varint (zigzag_varint_of_varint x)
let int64_of_fixed32 x =
let x = expect_int32 x in
int64_of_uint32 x
let int64_of_fixed64 = expect_int64
let int64_of_signed_fixed32 x = Int64.of_int32 (expect_int32 x)
let int64_of_signed_fixed64 = int64_of_fixed64
let rec int32_of_varint obj =
match obj with
| Varint x ->
int32_of_varint (Varint64 (int64_of_uint x))
| Varint64 x ->
let res = Int64.to_int32 x in
if int64_of_uint32 res <> x
then error obj "int32 overflow in 'int32_of_varint'";
res
| Top_block buf -> int32_of_varint (parse_toplevel_header buf)
| obj ->
error obj "varint expected"
let rec int32_of_signed_varint obj =
match obj with
| Varint x ->
int32_of_signed_varint (Varint64 (Int64.of_int x))
| Varint64 x ->
let res = Int64.to_int32 x in
if Int64.of_int32 res <> x
then error obj "int32 overflow in 'int32_of_signed_varint'";
res
| Top_block buf -> int32_of_signed_varint (parse_toplevel_header buf)
| obj ->
error obj "varint expected"
let int32_of_zigzag_varint x =
int32_of_signed_varint (zigzag_varint_of_varint x)
let int32_of_fixed32 = expect_int32
let int32_of_signed_fixed32 = int32_of_fixed32
let float_of_int32 x =
Int32.float_of_bits x
let float_of_int64 x =
Int64.float_of_bits x
let float_of_fixed64 buf =
float_of_int64 (expect_int64 buf)
let float_of_fixed32 buf =
float_of_int32 (expect_int32 buf)
let bool_of_varint obj =
match int_of_varint obj with
| 0 -> false
| 1 -> true
| _ -> error obj "invalid boolean constant"
let parse_bool_field = bool_of_varint
let rec parse_binary_field obj =
match obj with
| Block buf -> IBuf.to_string buf
| Top_block buf -> parse_binary_field (parse_toplevel_header buf)
| obj -> error obj "block expected"
let validate_string s = s
let parse_string_field obj =
validate_string (parse_binary_field obj)
let string_of_block = parse_string_field
let word_of_block = parse_string_field
let text_of_block = parse_string_field
let int_of_packed_varint buf =
int_of_varint (try_parse_varint buf)
let int_of_packed_signed_varint buf =
int_of_signed_varint (try_parse_varint buf)
let int_of_packed_zigzag_varint buf =
int_of_zigzag_varint (try_parse_varint buf)
let int_of_packed_fixed32 buf =
Int32.to_int (try_parse_fixed32 buf)
let int_of_packed_fixed64 buf =
Int64.to_int (try_parse_fixed64 buf)
let int64_of_packed_varint buf =
int64_of_varint (try_parse_varint buf)
let int64_of_packed_signed_varint buf =
int64_of_signed_varint (try_parse_varint buf)
let int64_of_packed_zigzag_varint buf =
int64_of_zigzag_varint (try_parse_varint buf)
let int64_of_packed_fixed64 buf =
try_parse_fixed64 buf
let int64_of_packed_fixed32 buf =
let x = try_parse_fixed32 buf in
int64_of_uint32 x
let int64_of_packed_signed_fixed64 = int64_of_packed_fixed64
let int64_of_packed_signed_fixed32 buf =
Int64.of_int32 (try_parse_fixed32 buf)
let int32_of_packed_varint buf =
int32_of_varint (try_parse_varint buf)
let int32_of_packed_signed_varint buf =
int32_of_signed_varint (try_parse_varint buf)
let int32_of_packed_zigzag_varint buf =
int32_of_zigzag_varint (try_parse_varint buf)
let int32_of_packed_fixed32 buf =
try_parse_fixed32 buf
let int32_of_packed_signed_fixed32 = int32_of_packed_fixed32
let float_of_packed_fixed32 buf =
float_of_int32 (try_parse_fixed32 buf)
let float_of_packed_fixed64 buf =
float_of_int64 (try_parse_fixed64 buf)
let bool_of_packed_varint buf =
bool_of_varint (try_parse_varint buf)
let parse_record_buf buf =
let rec parse_unordered accu =
match parse_field buf with
| Some field ->
parse_unordered (field::accu)
| None ->
let res = List.rev accu in
List.stable_sort (fun (a, _) (b, _) -> a - b) res
in
let rec parse_ordered accu =
match parse_field buf with
| Some ((code, _value) as field) ->
(match accu with
| (prev_code, _)::_ when prev_code > code ->
parse_unordered (field::accu)
| _ ->
parse_ordered (field::accu)
)
| None ->
List.rev accu
in
parse_ordered []
let parse_record obj =
match obj with
| Block buf
| Top_block buf -> parse_record_buf buf
| obj -> error obj "block expected"
let parse_variant obj =
match parse_record obj with
| [x] -> x
| [] -> error obj "empty variant"
| _ -> error obj "variant contains more than one option"
let find_fields code l =
let rec aux accu unknown_accu = function
| (code', obj)::t when code' = code ->
aux (obj::accu) unknown_accu t
| ((code', _) as h)::t when code' < code ->
aux accu (h::unknown_accu) t
| rem ->
List.rev accu, List.rev_append unknown_accu rem
in
aux [] [] l
let find_field code l =
let rec try_find_next_field prev_value = function
| (code', value)::t when code' = code ->
try_find_next_field value t
| rem ->
Some prev_value, rem
in
let rec find_first_field unknown_accu = function
| (code', value)::t when code' = code ->
let res, rem = try_find_next_field value t in
res, List.rev_append unknown_accu rem
| ((code', _) as h)::t when code' < code ->
find_first_field (h::unknown_accu) t
| rem ->
None, rem
in
match find_first_field [] l with
| None, rem ->
None, l
| res ->
res
let parse_binobj parse_fun binobj =
let buf = init_from_string binobj in
parse_fun buf
let parse_default binobj =
let buf = init_from_string binobj in
buf
let parse_required_field code parse_value ?default l =
let res, rem = find_field code l in
match res with
| None ->
(match default with
| Some x -> parse_value (parse_default x), l
| None -> error_missing l code)
| Some x ->
parse_value x, rem
let parse_optional_field code parse_value ?default l =
let res, rem = find_field code l in
match res with
| None ->
(match default with
| Some x -> Some (parse_value (parse_default x)), l
| None -> None, l)
| Some x ->
Some (parse_value x), rem
let parse_repeated_field code parse_value l =
let res, rem = find_fields code l in
List.map parse_value res, rem
let map_l2a f l =
let len = List.length l in
let a = Array.make len (Obj.magic 1) in
let rec aux i = function
| [] -> ()
| h::t ->
a.(i) <- f h;
aux (i+1) t
in
aux 0 l; a
let parse_repeated_array_field code parse_value l =
let res, rem = find_fields code l in
map_l2a parse_value res, rem
let parse_packed_fields parse_packed_value buf =
let rec aux accu =
try
let value = parse_packed_value buf in
aux (value :: accu)
with IBuf.End_of_buffer ->
accu
in
aux []
let parse_packed_field parse_packed_value parse_value obj =
match obj with
| Block buf ->
parse_packed_fields parse_packed_value buf
| _ ->
[parse_value obj]
let parse_packed_array_field elem_size parse_packed_value buf =
let size = IBuf.size buf in
let elem_count = size / elem_size in
if size mod elem_size <> 0
then IBuf.error buf "invalid packed fixed-width field";
let a = Array.make elem_count (Obj.magic 1) in
for i = 0 to elem_count - 1
do
a.(i) <- parse_packed_value buf
done;
a
let rev_flatmap f l =
let l = List.rev_map f l in
List.fold_left (fun accu x -> List.rev_append x accu) [] l
let parse_packed_repeated_field code parse_packed_value parse_value l =
let fields, rem = find_fields code l in
let res = rev_flatmap (parse_packed_field parse_packed_value parse_value) fields in
res, rem
let parse_packed_repeated_array_field code parse_packed_value parse_value l =
let res, rem = parse_packed_repeated_field code parse_packed_value parse_value l in
Array.of_list res, rem
let parse_packed_repeated_array_fixed_field elem_size code parse_packed_value parse_value l =
let fields, rem = find_fields code l in
match fields with
| [Block buf] ->
let res = parse_packed_array_field elem_size parse_packed_value buf in
res, rem
| _ ->
parse_packed_repeated_array_field code parse_packed_value parse_value l
let parse_packed_repeated_array32_field code parse_packed_value parse_value l =
parse_packed_repeated_array_fixed_field 4 code parse_packed_value parse_value l
let parse_packed_repeated_array64_field code parse_packed_value parse_value l =
parse_packed_repeated_array_fixed_field 8 code parse_packed_value parse_value l
let parse_list_elem parse_value (code, x) =
if code = 1
then parse_value x
else error x "invalid list element code"
let parse_list parse_value obj =
let l = parse_record obj in
List.map (parse_list_elem parse_value) l
let parse_array parse_value obj =
let l = parse_record obj in
map_l2a (parse_list_elem parse_value) l
let parse_packed_list_1 parse_packed_value parse_value fields =
rev_flatmap (parse_list_elem (parse_packed_field parse_packed_value parse_value)) fields
let parse_packed_list parse_packed_value parse_value obj =
let fields = parse_record obj in
parse_packed_list_1 parse_packed_value parse_value fields
let parse_packed_array parse_packed_value parse_value obj =
let res = parse_packed_list parse_packed_value parse_value obj in
Array.of_list res
let parse_packed_array_fixed elem_size parse_packed_value parse_value obj =
let l = parse_record obj in
match l with
| [1, Block buf] ->
parse_packed_array_field elem_size parse_packed_value buf
| _ ->
let res = parse_packed_list_1 parse_packed_value parse_value l in
Array.of_list res
let parse_packed_array32 parse_packed_value parse_value obj =
parse_packed_array_fixed 4 parse_packed_value parse_value obj
let parse_packed_array64 parse_packed_value parse_value obj =
parse_packed_array_fixed 8 parse_packed_value parse_value obj
module OBuf =
struct
type t =
Ios of string
| Iol of t list
| Iol_size of int * (t list)
| Iob of char
| IBuf of IBuf.t
let ios x = Ios x
let iol l = Iol l
let iob b = Iob b
let to_buffer0 buf l =
let rec aux = function
| Ios s -> Buffer.add_string buf s
| Iol l | Iol_size (_, l) -> List.iter aux l
| Iob b -> Buffer.add_char buf b
| IBuf (IBuf.String x) -> Buffer.add_substring buf x.s x.pos (x.len - x.pos)
| IBuf (IBuf.Channel x) -> assert false
in aux l
let rec size = function
| Ios s -> String.length s
| Iol l -> List.fold_left (fun accu x -> accu + (size x)) 0 l
| Iol_size (size, _) -> size
| Iob _ -> 1
| IBuf x -> IBuf.size x
let iol_size l =
let n = size (Iol l) in
Iol_size (n, l)
let iol_known_size n l =
Iol_size (n, l)
let to_string l =
let buf = Buffer.create (size l) in
to_buffer0 buf l;
Buffer.contents buf
let to_buffer l =
let buf = Buffer.create 80 in
to_buffer0 buf l;
buf
let to_channel ch code =
let buf = to_buffer code in
Buffer.output_buffer ch buf
end
open OBuf
let to_string = OBuf.to_string
let to_buffer = OBuf.to_buffer
let to_channel = OBuf.to_channel
let iob i =
iob (Char.chr i)
let gen_varint64_value x =
let rec aux x =
let b = Int64.to_int (Int64.logand x 0x7FL) in
let rem = Int64.shift_right_logical x 7 in
if rem = 0L
then [iob b]
else
begin
let b = b lor 0x80 in
(iob b) :: (aux rem)
end
in iol (aux x)
let gen_unsigned_varint_value x =
let rec aux x =
let b = x land 0x7F in
let rem = x lsr 7 in
if rem = 0
then [iob b]
else
begin
let b = b lor 0x80 in
(iob b) :: (aux rem)
end
in iol (aux x)
let gen_signed_varint_value x =
if x < 0
then gen_varint64_value (Int64.of_int x)
else gen_unsigned_varint_value x
let gen_unsigned_varint32_value x =
let rec aux x =
let b = Int32.to_int (Int32.logand x 0x7Fl) in
let rem = Int32.shift_right_logical x 7 in
if rem = 0l
then [iob b]
else
begin
let b = b lor 0x80 in
(iob b) :: (aux rem)
end
in iol (aux x)
let gen_signed_varint32_value x =
if Int32.compare x 0l < 0
then gen_varint64_value (Int64.of_int32 x)
else gen_unsigned_varint32_value x
let gen_key ktype code =
assert (code < 1 lsl 29 && code >= 1);
if code land (1 lsl 28) <> 0 && Sys.word_size == 32
then
let ktype = Int32.of_int ktype in
let code = Int32.of_int code in
let x = Int32.logor ktype (Int32.shift_left code 3) in
gen_unsigned_varint32_value x
else
gen_unsigned_varint_value (ktype lor (code lsl 3))
let gen_primitive_key ktype code =
gen_key ktype (abs code)
let gen_signed_varint_field code x =
iol [
gen_primitive_key 0 code;
gen_signed_varint_value x;
]
let gen_varint_field code x =
iol [
gen_primitive_key 0 code;
gen_unsigned_varint_value x;
]
let gen_signed_varint32_field code x =
iol [
gen_primitive_key 0 code;
gen_signed_varint32_value x;
]
let gen_varint32_field code x =
iol [
gen_primitive_key 0 code;
gen_unsigned_varint32_value x;
]
let gen_varint64_field code x =
iol [
gen_primitive_key 0 code;
gen_varint64_value x;
]
let gen_fixed32_value x =
let s = Bytes.create 4 in
let x = ref x in
for i = 0 to 3
do
let b = Char.chr (Int32.to_int (Int32.logand !x 0xFFl)) in
Bytes.set s i b;
x := Int32.shift_right_logical !x 8
done;
ios (Bytes.unsafe_to_string s)
let gen_fixed64_value x =
let s = Bytes.create 8 in
let x = ref x in
for i = 0 to 7
do
let b = Char.chr (Int64.to_int (Int64.logand !x 0xFFL)) in
Bytes.set s i b;
x := Int64.shift_right_logical !x 8
done;
ios (Bytes.unsafe_to_string s)
let gen_fixed32_field code x =
iol [
gen_primitive_key 5 code;
gen_fixed32_value x;
]
let gen_fixed64_field code x =
iol [
gen_primitive_key 1 code;
gen_fixed64_value x;
]
let zigzag_of_int x =
(x lsl 1) lxor (x asr 62)
let zigzag_of_int32 x =
Int32.logxor (Int32.shift_left x 1) (Int32.shift_right x 31)
let zigzag_of_int64 x =
Int64.logxor (Int64.shift_left x 1) (Int64.shift_right x 63)
let int_to_varint code x =
gen_varint_field code x
let int_to_signed_varint code x =
gen_signed_varint_field code x
let int_to_zigzag_varint code x =
gen_varint_field code (zigzag_of_int x)
let int64_to_varint code x =
gen_varint64_field code x
let int64_to_signed_varint = int64_to_varint
let int64_to_zigzag_varint code x =
int64_to_varint code (zigzag_of_int64 x)
let int64_to_fixed64 code x =
gen_fixed64_field code x
let int64_to_fixed32 code x =
gen_fixed32_field code (Int64.to_int32 x)
let int64_to_signed_fixed64 = int64_to_fixed64
let int64_to_signed_fixed32 = int64_to_fixed32
let int32_to_varint code x =
gen_varint32_field code x
let int32_to_signed_varint code x =
gen_signed_varint32_field code x
let int32_to_zigzag_varint code x =
gen_varint32_field code (zigzag_of_int32 x)
let int32_to_fixed32 code x =
gen_fixed32_field code x
let int32_to_signed_fixed32 = int32_to_fixed32
let int32_of_float x =
Int32.bits_of_float x
let int64_of_float x =
Int64.bits_of_float x
let float_to_fixed32 code x =
gen_fixed32_field code (int32_of_float x)
let float_to_fixed64 code x =
gen_fixed64_field code (int64_of_float x)
let int_of_bool = function
| true -> 1
| false -> 0
let bool_to_varint code x =
gen_varint_field code (int_of_bool x)
let gen_bool_field = bool_to_varint
let gen_string_field code s =
let contents = ios s in
iol [
gen_primitive_key 2 code;
gen_unsigned_varint_value (String.length s);
contents;
]
let string_to_block = gen_string_field
let binary_to_block = gen_string_field
let word_to_block = gen_string_field
let text_to_block = gen_string_field
let gen_parsed_field (code, value) =
match value with
| Varint x ->
gen_varint_field code x
| Varint64 x ->
gen_varint64_field code x
| Int32 x ->
gen_fixed32_field code x
| Int64 x ->
gen_fixed64_field code x
| Block x ->
iol [
gen_primitive_key 2 code;
gen_unsigned_varint_value (IBuf.size x);
IBuf x
]
| Top_block x ->
assert false
let gen_parsed_field_list l =
List.map gen_parsed_field l
let int_to_packed_varint x =
gen_unsigned_varint_value x
let int_to_packed_signed_varint x =
gen_signed_varint_value x
let int_to_packed_zigzag_varint x =
gen_unsigned_varint_value (zigzag_of_int x)
let int64_to_packed_varint x =
gen_varint64_value x
let int64_to_packed_signed_varint x =
gen_varint64_value x
let int64_to_packed_zigzag_varint x =
gen_varint64_value (zigzag_of_int64 x)
let int64_to_packed_fixed64 x =
gen_fixed64_value x
let int64_to_packed_fixed32 x =
gen_fixed32_value (Int64.to_int32 x)
let int64_to_packed_signed_fixed64 = int64_to_packed_fixed64
let int64_to_packed_signed_fixed32 = int64_to_packed_fixed32
let int32_to_packed_varint x =
gen_unsigned_varint32_value x
let int32_to_packed_signed_varint x =
gen_signed_varint32_value x
let int32_to_packed_zigzag_varint x =
gen_unsigned_varint32_value (zigzag_of_int32 x)
let int32_to_packed_fixed32 x =
gen_fixed32_value x
let int32_to_packed_signed_fixed32 = int32_to_packed_fixed32
let float_to_packed_fixed32 x =
gen_fixed32_value (int32_of_float x)
let float_to_packed_fixed64 x =
gen_fixed64_value (int64_of_float x)
let bool_to_packed_varint x =
gen_unsigned_varint_value (int_of_bool x)
let gen_required_field code f x = f code x
let gen_optional_field code f = function
| Some x -> f code x
| None -> iol []
let gen_repeated_field code f l =
iol (List.map (f code) l)
let map_a2l f a =
let rec aux i accu =
if i < 0
then accu
else
let res = f a.(i) in
aux (i-1) (res::accu)
in
aux ((Array.length a) - 1) []
let gen_repeated_array_field code f l =
iol (map_a2l (f code) l)
let gen_packed_repeated_field_common code contents =
let size = OBuf.size contents in
if size = 0
then contents
else
iol [
gen_key 2 code;
gen_unsigned_varint_value size;
contents;
]
let gen_packed_repeated_field code f l =
let contents = iol_size (List.map f l) in
gen_packed_repeated_field_common code contents
let gen_packed_repeated_array_field code f l =
let contents = iol_size (map_a2l f l) in
gen_packed_repeated_field_common code contents
let gen_packed_repeated_array32_field code f l =
let size = 4 * Array.length l in
let contents = iol_known_size size (map_a2l f l) in
gen_packed_repeated_field_common code contents
let gen_packed_repeated_array64_field code f l =
let size = 8 * Array.length l in
let contents = iol_known_size size (map_a2l f l) in
gen_packed_repeated_field_common code contents
let gen_record code contents =
let contents = iol_size contents in
if code = -1
then contents
else
iol [
gen_key 2 code;
gen_unsigned_varint_value (OBuf.size contents);
contents;
]
let gen_list f code l =
let contents = List.map (f 1) l in
gen_record code contents
let gen_array f code l =
let contents = map_a2l (f 1) l in
gen_record code contents
let gen_packed_list f code l =
let field = gen_packed_repeated_field 1 f l in
gen_record code [field]
let gen_packed_array f code l =
let field = gen_packed_repeated_array_field 1 f l in
gen_record code [field]
let gen_packed_array32 f code l =
let field = gen_packed_repeated_array32_field 1 f l in
gen_record code [field]
let gen_packed_array64 f code l =
let field = gen_packed_repeated_array64_field 1 f l in
gen_record code [field]
let gen_binobj gen_obj x =
let obuf = gen_obj (-1) x in
OBuf.to_string obuf
let gen_block iodata =
iol [
gen_unsigned_varint_value (OBuf.size iodata);
iodata;
]
let parse_block buf =
Top_block (parse_block buf)