Source file netencoding.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
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
let hexdigit_uc =
[| '0'; '1'; '2'; '3'; '4'; '5'; '6'; '7';
'8'; '9'; 'A'; 'B'; 'C'; 'D'; 'E'; 'F'; |]
let hexdigit_lc =
[| '0'; '1'; '2'; '3'; '4'; '5'; '6'; '7';
'8'; '9'; 'a'; 'b'; 'c'; 'd'; 'e'; 'f'; |]
let to_hex ?(lc=false) s =
let hexdigit = if lc then hexdigit_lc else hexdigit_uc in
let l = String.length s in
let u = Bytes.create (2*l) in
for k = 0 to l-1 do
let c = String.unsafe_get s k in
let j = k lsl 1 in
Bytes.unsafe_set u j hexdigit.(Char.code c lsr 4);
Bytes.unsafe_set u (j+1) hexdigit.(Char.code c land 15);
done;
Bytes.unsafe_to_string u
module Base64 = struct
let alphabet =
[| 'A'; 'B'; 'C'; 'D'; 'E'; 'F'; 'G'; 'H'; 'I'; 'J'; 'K'; 'L'; 'M';
'N'; 'O'; 'P'; 'Q'; 'R'; 'S'; 'T'; 'U'; 'V'; 'W'; 'X'; 'Y'; 'Z';
'a'; 'b'; 'c'; 'd'; 'e'; 'f'; 'g'; 'h'; 'i'; 'j'; 'k'; 'l'; 'm';
'n'; 'o'; 'p'; 'q'; 'r'; 's'; 't'; 'u'; 'v'; 'w'; 'x'; 'y'; 'z';
'0'; '1'; '2'; '3'; '4'; '5'; '6'; '7'; '8'; '9'; '+'; '/' |];;
let mod_alphabet plus slash =
if plus <> '+' || slash <> '/' then (
let a = Array.copy alphabet in
a.(62) <- plus;
a.(63) <- slash;
a
) else
alphabet
let encode_with_options ops b64 equal s pos len
linelen first_linelen crlf =
let open Netstring_tstring in
assert (Array.length b64 = 64);
if len < 0 || pos < 0 || pos > ops.length s || linelen < 0 then
invalid_arg "Netencoding.Base64.encode";
if pos + len > ops.length s then
invalid_arg "Netencoding.Base64.encode";
let linelen = (linelen asr 2) lsl 2 in
let first_linelen = (first_linelen asr 2) lsl 2 in
let l_t = if len = 0 then 0 else ((len - 1) / 3 + 1) * 4 in
let factor = if crlf then 2 else 1 in
let l_t' =
if linelen < 4 then
l_t
else
if l_t <= first_linelen then
( if l_t = 0 then 0 else l_t + factor )
else
let n_lines = ((l_t - first_linelen - 1) / linelen) + 2 in
l_t + n_lines * factor
in
let t = Bytes.make l_t' equal in
let j = ref 0 in
let q = ref (linelen - first_linelen) in
for k = 0 to len / 3 - 1 do
let p = pos + 3*k in
let bits = ops.unsafe_get3 s p in
Obviously, 'bits' is a 24 bit entity (i.e. bits < 2**24) *)
assert(!j + 3 < l_t');
Bytes.unsafe_set t !j (Array.unsafe_get b64 ( bits lsr 18));
Bytes.unsafe_set t (!j+1) (Array.unsafe_get b64 ((bits lsr 12) land 63));
Bytes.unsafe_set t (!j+2) (Array.unsafe_get b64 ((bits lsr 6) land 63));
Bytes.unsafe_set t (!j+3) (Array.unsafe_get b64 ( bits land 63));
j := !j + 4;
if linelen > 3 then begin
q := !q + 4;
if !q + 4 > linelen then begin
if crlf then begin
Bytes.set t !j '\013';
Bytes.set t (!j+1) '\010';
j := !j + 2;
end
else begin
Bytes.set t !j '\010';
incr j
end;
q := 0;
end;
end;
done;
let m = len mod 3 in
begin
match m with
0 -> ()
| 1 ->
let bits = Char.code (ops.get s (pos + len - 1)) in
Bytes.set t !j b64.( bits lsr 2);
Bytes.set t (!j + 1) b64.( (bits land 0x03) lsl 4);
j := !j + 4;
q := !q + 4;
| 2 ->
let bits = (Char.code (ops.get s (pos + len - 2)) lsl 8) lor
(Char.code (ops.get s (pos + len - 1))) in
Bytes.set t !j b64.( bits lsr 10);
Bytes.set t (!j + 1) b64.((bits lsr 4) land 0x3f);
Bytes.set t (!j + 2) b64.((bits lsl 2) land 0x3f);
j := !j + 4;
q := !q + 4;
| _ -> assert false
end;
if linelen > 3 && !q > 0 && len > 0 then begin
if crlf then begin
Bytes.set t !j '\013';
Bytes.set t (!j+1) '\010';
j := !j + 2;
end
else begin
Bytes.set t !j '\010';
incr j;
end;
end;
(t, !q) ;;
let encode_poly ?(pos=0) ?len ?(linelength=0) ?(crlf=false) ?(plus='+')
?(slash='/') ops s =
let open Netstring_tstring in
let alpha = mod_alphabet plus slash in
let l = match len with None -> ops.length s - pos | Some x -> x in
let s,_ =
encode_with_options
ops alpha '=' s pos l linelength linelength crlf in
s
;;
let encode ?pos ?len ?linelength ?crlf ?plus ?slash s =
let ops = Netstring_tstring.string_ops in
let s = encode_poly ?pos ?len ?linelength ?crlf ?plus ?slash ops s in
Bytes.unsafe_to_string s
let encode_tstring ?pos ?len ?linelength ?crlf ?plus ?slash ts =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun ops s ->
encode_poly ?pos ?len ?linelength ?crlf ?plus ?slash ops s
)
}
ts
let encoding_pipe_conv ?(linelength = 0) ?(crlf = false) ~plus ~slash
alpha lastlen
incoming incoming_eof outgoing =
let ops = Netstring_tstring.bytes_ops in
let linelength = (linelength asr 2) lsl 2 in
let len = Netbuffer.length incoming in
let len' =
if incoming_eof then
len
else
len - (len mod 3) * only process a multiple of three characters *)
in
let (s,ll) =
encode_with_options
ops alpha '=' (Netbuffer.unsafe_buffer incoming) 0 len'
linelength (linelength - !lastlen) crlf
in
Netbuffer.delete incoming 0 len';
nless s = "", s ends with a LF/CRLF. This is only right
* if ll = 0 or at EOF. In the other cases, this additional LF/CRLF
* must not be added to [outgoing].
*)
if linelength < 3 || ll=0 || Bytes.length s = 0 then begin
Netbuffer.add_bytes outgoing s;
end
else begin
let sl = Bytes.length s in
assert(Bytes.get s (sl-1) = '\n');
let sl' = if crlf then sl-2 else sl-1 in
Netbuffer.add_subbytes outgoing s 0 sl';
end;
lastlen := ll;
* Ensure there is a LF/CRLF at the end: *)
if incoming_eof && linelength > 3 && ll > 0 then
Netbuffer.add_string outgoing (if crlf then "\r\n" else "\n");
TODO: Can be improved by using Netbuffer.add_inplace
*)
class encoding_pipe ?linelength ?crlf ?(plus='+') ?(slash='/') () =
let alpha = mod_alphabet plus slash in
let lastlen = ref 0 in
let conv =
encoding_pipe_conv ?linelength ?crlf ~plus ~slash alpha lastlen in
Netchannels.pipe ~conv ()
let decode_prefix ops t pos len plus slash p_spaces p_full p_null =
let open Netstring_tstring in
if len < 0 || pos < 0 || pos > ops.length t then
invalid_arg "Netencoding.Base64.decode";
if pos + len > ops.length t then
invalid_arg "Netencoding.Base64.decode";
let l_t, pad_chars =
if p_spaces then begin
Count all non-whitespace characters: *)
let c = ref 0 in
let p = ref 0 in
for i = pos to pos + len - 1 do
match ops.unsafe_get t i with
(' '|'\t'|'\r'|'\n'|'>') -> ()
| '=' ->
incr c;
incr p;
if !p > 2 then
invalid_arg "Netencoding.Base64.decode";
for j = i+1 to pos + len - 1 do
match ops.unsafe_get t j with
(' '|'\t'|'\r'|'\n'|'=') -> ()
| _ ->
invalid_arg "Netencoding.Base64.decode";
done
| _ -> incr c
done;
!c, !p
end
else
len,
( if len > 0 then (
if ops.substring t (len - 2) 2 = "==" then 2
else
if ops.substring t (len - 1) 1 = "=" then 1
else
0
)
else 0
)
in
if p_null && l_t <> 0 then invalid_arg "Netencoding.Base64.decode";
let l_t, pad_chars =
let m = l_t mod 4 in
if m = 0 then (
(l_t, pad_chars)
) else (
if p_full then invalid_arg "Netencoding.Base64.decode";
(l_t - m, 0)
)
in
let l_s = (l_t / 4) * 3 - pad_chars in
let s = Bytes.create l_s in
let decode_char c =
match c with
'A' .. 'Z' -> Char.code(c) - 65
| 'a' .. 'z' -> Char.code(c) - 71
| '0' .. '9' -> Char.code(c) + 4
| _ ->
if c = plus then 62
else if c = slash then 63
else invalid_arg "Netencoding.Base64.decode";
in
let cursor = ref pos in
let rec next_char() =
match ops.get t !cursor with
(' '|'\t'|'\r'|'\n'|'>') ->
if p_spaces then (incr cursor; next_char())
else invalid_arg "Netencoding.Base64.decode"
| c ->
incr cursor; c
in
if p_spaces then begin
for k = 0 to l_t / 4 - 2 do
let q = 3*k in
let c0 = next_char() in
let c1 = next_char() in
let c2 = next_char() in
let c3 = next_char() in
let n0 = decode_char c0 in
let n1 = decode_char c1 in
let n2 = decode_char c2 in
let n3 = decode_char c3 in
let x0 = (n0 lsl 2) lor (n1 lsr 4) in
let x1 = ((n1 lsl 4) land 0xf0) lor (n2 lsr 2) in
let x2 = ((n2 lsl 6) land 0xc0) lor n3 in
Bytes.unsafe_set s q (Char.chr x0);
Bytes.unsafe_set s (q+1) (Char.chr x1);
Bytes.unsafe_set s (q+2) (Char.chr x2);
done;
end
else begin
for k = 0 to l_t / 4 - 2 do
let p = pos + 4*k in
let q = 3*k in
let c012 = ops.unsafe_get3 t p in
let c0 = c012 lsr 16 in
let c1 = (c012 lsr 8) land 0xff in
let c2 = c012 land 0xff in
let c3 = ops.unsafe_get t (p + 3) in
let n0 = decode_char (Char.unsafe_chr c0) in
let n1 = decode_char (Char.unsafe_chr c1) in
let n2 = decode_char (Char.unsafe_chr c2) in
let n3 = decode_char c3 in
let x0 = (n0 lsl 2) lor (n1 lsr 4) in
let x1 = ((n1 lsl 4) land 0xf0) lor (n2 lsr 2) in
let x2 = ((n2 lsl 6) land 0xc0) lor n3 in
Bytes.unsafe_set s q (Char.chr x0);
Bytes.unsafe_set s (q+1) (Char.chr x1);
Bytes.unsafe_set s (q+2) (Char.chr x2);
done;
cursor := pos + l_t - 4;
end;
Decode the last quartet: *)
if l_t > 0 then begin
let q = 3*(l_t / 4 - 1) in
let c0 = next_char() in
let c1 = next_char() in
let c2 = next_char() in
let c3 = next_char() in
if (c2 = '=' && c3 = '=') then begin
let n0 = decode_char c0 in
let n1 = decode_char c1 in
let x0 = (n0 lsl 2) lor (n1 lsr 4) in
Bytes.set s q (Char.chr x0);
end
else
if (c3 = '=') then begin
let n0 = decode_char c0 in
let n1 = decode_char c1 in
let n2 = decode_char c2 in
let x0 = (n0 lsl 2) lor (n1 lsr 4) in
let x1 = ((n1 lsl 4) land 0xf0) lor (n2 lsr 2) in
Bytes.set s q (Char.chr x0);
Bytes.set s (q+1) (Char.chr x1);
end
else begin
let n0 = decode_char c0 in
let n1 = decode_char c1 in
let n2 = decode_char c2 in
let n3 = decode_char c3 in
let x0 = (n0 lsl 2) lor (n1 lsr 4) in
let x1 = ((n1 lsl 4) land 0xf0) lor (n2 lsr 2) in
let x2 = ((n2 lsl 6) land 0xc0) lor n3 in
Bytes.set s q (Char.chr x0);
Bytes.set s (q+1) (Char.chr x1);
Bytes.set s (q+2) (Char.chr x2);
end
end
else cursor := 0;
(s, !cursor - pos, pad_chars > 0)
;;
let decode_poly ?(pos=0) ?len ?(accept_spaces=false) ?(plus='+') ?(slash='/')
ops s =
let open Netstring_tstring in
let l = match len with None -> ops.length s - pos | Some x -> x in
let (s,_,_) =
decode_prefix ops s pos l plus slash accept_spaces true false in
s
let decode ?pos ?len ?accept_spaces ?plus ?slash s =
let ops = Netstring_tstring.string_ops in
let s' = decode_poly ?pos ?len ?accept_spaces ?plus ?slash ops s in
Bytes.unsafe_to_string s'
let decode_tstring ?pos ?len ?accept_spaces ?plus ?slash ts =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun ops s ->
decode_poly ?pos ?len ?accept_spaces ?plus ?slash ops s
)
}
ts
let decoding_pipe_conv plus slash accept_spaces padding_seen
incoming incoming_eof outgoing =
let ops = Netstring_tstring.bytes_ops in
let len = Netbuffer.length incoming in
let t = Netbuffer.unsafe_buffer incoming in
if !padding_seen then begin
let _,_,_ =
decode_prefix ops t 0 len plus slash accept_spaces false true in
Netbuffer.clear incoming
end
else begin
let (s,n,ps) =
decode_prefix ops t 0 len plus slash accept_spaces incoming_eof false in
padding_seen := ps;
if incoming_eof then
Netbuffer.clear incoming
else
Netbuffer.delete incoming 0 n;
Netbuffer.add_bytes outgoing s
end;
class decoding_pipe ?(accept_spaces=false) ?(plus='+') ?(slash='/') () =
let padding_seen = ref false in
let conv =
decoding_pipe_conv plus slash accept_spaces padding_seen in
Netchannels.pipe ~conv ()
end
module QuotedPrintable = struct
let encode_sub ?(crlf = true) ?(eot = false) ?(line_length = ref 0) ~pos ~len
ops s =
let open Netstring_tstring in
if len < 0 || pos < 0 || pos > ops.length s then
invalid_arg "Netencoding.QuotedPrintable.encode";
if pos + len > ops.length s then
invalid_arg "Netencoding.QuotedPrintable.encode";
let eol_len = if crlf then 2 else 1 in ength of eol *)
let rec count l n i =
if i < len then
match ops.unsafe_get s (pos+i) with
'\r' ->
count l n (i+1)
| '\n' ->
count 0 (n+eol_len) (i+1)
| ('\000'..'\031'|'\127'..'\255'|
'!'|'"'|'#'|'$'|'@'|'['|']'|'^'|'\''|'{'|'|'|'}'|'~'|'=') ->
if l <= 69 then
count (l+3) (n+3) (i+1)
else
Add soft line break after the encoded char: *)
count 0 (n+4+eol_len) (i+1)
| 'F' when l=0 ->
count (l+3) (n+3) (i+1)
| ' ' when (i=len-1 && eot) ||
l>69 ||
(i<len-1 && (ops.get s (pos+i+1) = '\r' ||
ops.get s (pos+i+1) = '\n'))
->
if l <= 69 then
count (l+3) (n+3) (i+1)
else
Add soft line after the encoded space: *)
count 0 (n+4+eol_len) (i+1)
| _ ->
if l>71 then
count 0 (n+2+eol_len) (i+1)
else
count (l+1) (n+1) (i+1)
else
n
in
let t_len = count !line_length 0 0 in
let t = Bytes.create t_len in
let k = ref 0 in
let add_quoted c =
Bytes.set t !k '=';
Bytes.set t (!k+1) (hexdigit_uc.( Char.code c lsr 4 ));
Bytes.set t (!k+2) (hexdigit_uc.( Char.code c land 15 ))
in
let add_soft_break() =
Bytes.set t !k '=';
if crlf then (
Bytes.set t (!k+1) '\r';
Bytes.set t (!k+2) '\n';
)
else
Bytes.set t (!k+1) '\n';
in
he following, the soft break criterion is [!l > 72]. Why?
* We need to be able to add at least an encoded char (3 bytes)
* plus the "=" sign for the soft break. So we are on the safe side
* when there are four bytes space on the line. Lines must not be
* longer than 76 chars (w/o CRLF), so 76-4=72.
*)
let l = ref !line_length in
for i = 0 to len - 1 do
match ops.unsafe_get s i with
'\r' -> * CR is deleted *)
()
| '\n' ->
if crlf then (
Bytes.set t !k '\r';
Bytes.set t (!k+1) '\n';
k := !k + 2;
) else (
Bytes.set t !k '\n';
k := !k + 1;
);
l := 0
| ('\000'..'\031'|'\127'..'\255'|
'!'|'"'|'#'|'$'|'@'|'['|']'|'^'|'\''|'{'|'|'|'}'|'~'|'=') as c ->
add_quoted c;
k := !k + 3;
l := !l + 3;
if !l > 72 then (
add_soft_break();
k := !k + 1 + eol_len;
l := 0
)
| 'F' when !l = 0 ->
add_quoted 'F';
k := !k + 3;
l := !l + 3;
| ' ' when ((i=len-1 && eot) ||
!l > 69 ||
(i<len-1 && (ops.get s (pos+i+1) = '\r' ||
ops.get s (pos+i+1) = '\n'))) ->
add_quoted ' ';
k := !k + 3;
l := !l + 3;
if !l > 72 then (
add_soft_break();
k := !k + 1 + eol_len;
l := 0;
)
| c ->
Bytes.unsafe_set t !k c;
incr k;
incr l;
if !l > 72 then (
add_soft_break();
k := !k + 1 + eol_len;
l := 0;
)
done;
assert(!k == t_len);
line_length := !l;
t ;;
let encode_poly ?crlf ?(pos=0) ?len ops s =
let open Netstring_tstring in
let l = match len with None -> ops.length s - pos | Some x -> x in
encode_sub ?crlf ~eot:true ~pos ~len:l ops s;;
let encode ?crlf ?pos ?len s =
let ops = Netstring_tstring.string_ops in
let s' = encode_poly ?crlf ?pos ?len ops s in
Bytes.unsafe_to_string s'
let encode_tstring ?crlf ?pos ?len ts =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun ops s ->
encode_poly ?crlf ?pos ?len ops s
)
}
ts
let encoding_pipe_conv ?crlf line_length incoming incoming_eof outgoing =
blematic case: the incoming buffer ends with a space, but we are
* not at EOF. It is possible that a LF immediately follows, and that
* the space needs to be quoted.
* Solution: Do not convert such spaces, they remain in the buffer.
*)
let open Netstring_tstring in
let ops = Netstring_tstring.bytes_ops in
let s = Netbuffer.unsafe_buffer incoming in
let len = Netbuffer.length incoming in
let (len',eot) =
if not incoming_eof && len > 0 && ops.get s (len-1) = ' ' then
(len-1, false)
else
(len, true)
in
let s' = encode_sub ?crlf ~eot ~line_length ~pos:0 ~len:len' ops s in
Netbuffer.add_bytes outgoing s';
Netbuffer.delete incoming 0 len'
;;
class encoding_pipe ?crlf () =
let line_length = ref 0 in
Netchannels.pipe ~conv:(encoding_pipe_conv ?crlf line_length) ()
let decode_sub ~pos ~len ops s =
let open Netstring_tstring in
if len < 0 || pos < 0 || pos > ops.length s then
invalid_arg "Netencoding.QuotedPrintable.decode";
if pos + len > ops.length s then
invalid_arg "Netencoding.QuotedPrintable.decode";
let decode_hex c =
match c with
'0'..'9' -> Char.code c - 48
| 'A'..'F' -> Char.code c - 55
| 'a'..'f' -> Char.code c - 87
| _ ->
invalid_arg "Netencoding.QuotedPrintable.decode";
in
let rec count n i =
if i < len then
match ops.unsafe_get s (pos+i) with
'=' ->
if i+1 = len then
count n (i+1)
else
if i+1 < len then
match ops.get s (pos+i+1) with
'\r' ->
if i+2 < len && ops.get s (pos+i+2) = '\n' then
count n (i+3)
else
count n (i+2)
| '\n' ->
count n (i+2)
| _ ->
if i+2 >= len then
invalid_arg
"Netencoding.QuotedPrintable.decode";
let _ = decode_hex (ops.get s (pos+i+1)) in
let _ = decode_hex (ops.get s (pos+i+2)) in
count (n+1) (i+3)
else
invalid_arg "Netencoding.QuotedPrintable.decode"
| _ ->
count (n+1) (i+1)
else
n
in
let l = count 0 0 in
let t = Bytes.create l in
let k = ref pos in
let e = pos + len in
let i = ref 0 in
while !i < l do
match ops.unsafe_get s !k with
'=' ->
if !k+1 = e then
()
else
if !k+1 < e then
match ops.get s (!k+1) with
'\r' ->
if !k+2 < e && ops.get s (!k+2) = '\n' then
k := !k + 3
else
k := !k + 2
| '\n' ->
k := !k + 2
| _ ->
if !k+2 >= e then
invalid_arg
"Netencoding.QuotedPrintable.decode_substring";
let x1 = decode_hex (ops.get s (!k+1)) in
let x2 = decode_hex (ops.get s (!k+2)) in
Bytes.set t !i (Char.chr ((x1 lsl 4) lor x2));
k := !k + 3;
incr i
else
invalid_arg "Netencoding.QuotedPrintable.decode_substring"
| c ->
Bytes.unsafe_set t !i c;
incr k;
incr i
done;
t ;;
let decode_poly ?(pos=0) ?len ops s =
let open Netstring_tstring in
let l = match len with None -> ops.length s - pos | Some x -> x in
decode_sub ~pos ~len:l ops s;;
let decode ?pos ?len s =
let ops = Netstring_tstring.string_ops in
let s' = decode_poly ?pos ?len ops s in
Bytes.unsafe_to_string s'
let decode_tstring ?pos ?len ts =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun ops s ->
decode_poly ?pos ?len ops s
)
}
ts
let decoding_pipe_conv incoming incoming_eof outgoing =
blematic case: The incoming buffer ends with '=' or '=X'. In this
* case these characters remain in the buffer, because they will be
* completed to a full hex sequence by the next conversion call.
*)
let open Netstring_tstring in
let ops = Netstring_tstring.bytes_ops in
let s = Netbuffer.unsafe_buffer incoming in
let len = Netbuffer.length incoming in
let len' =
if not incoming_eof then begin
if len > 0 && ops.get s (len-1) = '=' then
len - 1
else
if len > 1 && ops.get s (len-2) = '=' then
len - 2
else
len
end
else
len
in
let s' = decode_poly ~len:len' ops s in
Netbuffer.add_bytes outgoing s';
Netbuffer.delete incoming 0 len'
;;
class decoding_pipe () =
Netchannels.pipe ~conv:decoding_pipe_conv ()
end
module Q = struct
let encode_sub ~pos ~len ops s =
let open Netstring_tstring in
if len < 0 || pos < 0 || pos > ops.length s then
invalid_arg "Netencoding.Q.encode_substring";
if pos + len > ops.length s then
invalid_arg "Netencoding.Q.encode_substring";
let rec count n i =
if i < len then
match ops.unsafe_get s (pos+i) with
| ('A'..'Z'|'a'..'z'|'0'..'9') ->
count (n+1) (i+1)
| _ ->
count (n+3) (i+1)
else
n
in
let l = count 0 0 in
let t = Bytes.create l in
let k = ref 0 in
let add_quoted c =
Bytes.set t !k '=';
Bytes.set t (!k+1) (hexdigit_uc.( Char.code c lsr 4 ));
Bytes.set t (!k+2) (hexdigit_uc.( Char.code c land 15 ))
in
for i = 0 to len - 1 do
match ops.unsafe_get s i with
| ('A'..'Z'|'a'..'z'|'0'..'9') as c ->
Bytes.unsafe_set t !k c;
incr k
| c ->
add_quoted c;
k := !k + 3
done;
t ;;
let encode_poly ?(pos=0) ?len ops s =
let open Netstring_tstring in
let l = match len with None -> ops.length s - pos | Some x -> x in
encode_sub ~pos ~len:l ops s;;
let encode ?pos ?len s =
let ops = Netstring_tstring.string_ops in
let s' = encode_poly ?pos ?len ops s in
Bytes.unsafe_to_string s'
let encode_tstring ?pos ?len ts =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun ops s ->
encode_poly ?pos ?len ops s
)
}
ts
let decode_sub ~pos ~len ops s =
let open Netstring_tstring in
if len < 0 || pos < 0 || pos > ops.length s then
invalid_arg "Netencoding.Q.decode_substring";
if pos + len > ops.length s then
invalid_arg "Netencoding.Q.decode_substring";
let decode_hex c =
match c with
'0'..'9' -> Char.code c - 48
| 'A'..'F' -> Char.code c - 55
| 'a'..'f' -> Char.code c - 87
| _ ->
invalid_arg "Netencoding.Q.decode_substring";
in
let rec count n i =
if i < len then
match ops.unsafe_get s (pos+i) with
'=' ->
if i+2 >= len then
invalid_arg "Netencoding.Q.decode_substring";
let _ = decode_hex (ops.get s (pos+i+1)) in
let _ = decode_hex (ops.get s (pos+i+2)) in
count (n+1) (i+3)
| _ ->
count (n+1) (i+1)
else
n
in
let l = count 0 0 in
let t = Bytes.create l in
let k = ref pos in
let e = pos + len in
let i = ref 0 in
while !i < l do
match ops.unsafe_get s !k with
'=' ->
if !k+2 >= e then
invalid_arg "Netencoding.Q.decode_substring";
let x1 = decode_hex (ops.get s (!k+1)) in
let x2 = decode_hex (ops.get s (!k+2)) in
Bytes.set t !i (Char.chr ((x1 lsl 4) lor x2));
k := !k + 3;
incr i
| '_' ->
Bytes.unsafe_set t !i ' ';
incr k;
incr i
| c ->
Bytes.unsafe_set t !i c;
incr k;
incr i
done;
t ;;
let decode_poly ?(pos=0) ?len ops s =
let open Netstring_tstring in
let l = match len with None -> ops.length s - pos | Some x -> x in
decode_sub ~pos ~len:l ops s;;
let decode ?pos ?len s =
let ops = Netstring_tstring.string_ops in
let s' = decode_poly ?pos ?len ops s in
Bytes.unsafe_to_string s'
let decode_tstring ?pos ?len ts =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun ops s ->
decode_poly ?pos ?len ops s
)
}
ts
end
module Url = struct
let hex_digits =
[| '0'; '1'; '2'; '3'; '4'; '5'; '6'; '7';
'8'; '9'; 'A'; 'B'; 'C'; 'D'; 'E'; 'F' |];;
let to_hex2 k =
let s = Bytes.create 2 in
Bytes.set s 0 (hex_digits.( (k lsr 4) land 15 ));
Bytes.set s 1 (hex_digits.( k land 15 ));
Bytes.unsafe_to_string s ;;
let of_hex1 c =
match c with
('0'..'9') -> Char.code c - Char.code '0'
| ('A'..'F') -> Char.code c - Char.code 'A' + 10
| ('a'..'f') -> Char.code c - Char.code 'a' + 10
| _ ->
raise Not_found ;;
let url_encoding_re =
Netstring_str.regexp "[^A-Za-z0-9_.!*-]";;
let url_decoding_re =
Netstring_str.regexp "\\+\\|%..\\|%.\\|%";;
let encode ?(plus = true) s =
Netstring_str.global_substitute
url_encoding_re
(fun r _ ->
match Netstring_str.matched_string r s with
" " when plus -> "+"
| x ->
let k = Char.code(x.[0]) in
"%" ^ to_hex2 k
)
s ;;
let decode ?(plus = true) ?(pos=0) ?len s =
let s_l = String.length s in
let s1 =
if pos = 0 && len=None then s else
let len = match len with Some n -> n | None -> s_l in
String.sub s pos len in
let l = String.length s1 in
Netstring_str.global_substitute
url_decoding_re
(fun r _ ->
match Netstring_str.matched_string r s1 with
| "+" -> if plus then " " else "+"
| _ ->
let i = Netstring_str.match_beginning r in
= '%' *)
if i+2 >= l then failwith "Netencoding.Url.decode";
let c1 = s1.[i+1] in
let c2 = s1.[i+2] in
begin
try
let k1 = of_hex1 c1 in
let k2 = of_hex1 c2 in
String.make 1 (Char.chr((k1 lsl 4) lor k2))
with
Not_found ->
failwith "Netencoding.Url.decode"
end
)
s1 ;;
let url_split_re =
Netstring_str.regexp "[&=]";;
let mk_url_encoded_parameters nv_pairs =
String.concat "&"
(List.map
(fun (name,value) ->
let name_encoded = encode name in
let value_encoded = encode value in
name_encoded ^ "=" ^ value_encoded
)
nv_pairs
)
;;
let dest_url_encoded_parameters parstr =
let rec parse_after_amp tl =
match tl with
Netstring_str.Text name :: Netstring_str.Delim "=" :: Netstring_str.Text value :: tl' ->
(decode name, decode value) :: parse_next tl'
| Netstring_str.Text name :: Netstring_str.Delim "=" :: Netstring_str.Delim "&" :: tl' ->
(decode name, "") :: parse_after_amp tl'
| Netstring_str.Text name :: Netstring_str.Delim "=" :: [] ->
[decode name, ""]
| _ ->
failwith "Netencoding.Url.dest_url_encoded_parameters"
and parse_next tl =
match tl with
[] -> []
| Netstring_str.Delim "&" :: tl' ->
parse_after_amp tl'
| _ ->
failwith "Netencoding.Url.dest_url_encoded_parameters"
in
let toklist = Netstring_str.full_split url_split_re parstr in
match toklist with
[] -> []
| _ -> parse_after_amp toklist
;;
let mk_url_encoded_parameters params =
String.concat "&"
(List.map (fun (name, value) -> encode name ^ "=" ^ encode value) params)
end
module Html = struct
let etable =
[ "lt", 60;
"gt", 62;
"amp", 38;
"quot", 34;
"apos", 39;
"nbsp", 160;
"iexcl", 161;
"cent", 162;
"pound", 163;
"curren", 164;
"yen", 165;
"brvbar", 166;
"sect", 167;
"uml", 168;
"copy", 169;
"ordf", 170;
"laquo", 171;
"not", 172;
"shy", 173;
"reg", 174;
"macr", 175;
"deg", 176;
"plusmn", 177;
"sup2", 178;
"sup3", 179;
"acute", 180;
"micro", 181;
"para", 182;
"middot", 183;
"cedil", 184;
"sup1", 185;
"ordm", 186;
"raquo", 187;
"frac14", 188;
"frac12", 189;
"frac34", 190;
"iquest", 191;
"Agrave", 192;
"Aacute", 193;
"Acirc", 194;
"Atilde", 195;
"Auml", 196;
"Aring", 197;
"AElig", 198;
"Ccedil", 199;
"Egrave", 200;
"Eacute", 201;
"Ecirc", 202;
"Euml", 203;
"Igrave", 204;
"Iacute", 205;
"Icirc", 206;
"Iuml", 207;
"ETH", 208;
"Ntilde", 209;
"Ograve", 210;
"Oacute", 211;
"Ocirc", 212;
"Otilde", 213;
"Ouml", 214;
"times", 215;
"Oslash", 216;
"Ugrave", 217;
"Uacute", 218;
"Ucirc", 219;
"Uuml", 220;
"Yacute", 221;
"THORN", 222;
"szlig", 223;
"agrave", 224;
"aacute", 225;
"acirc", 226;
"atilde", 227;
"auml", 228;
"aring", 229;
"aelig", 230;
"ccedil", 231;
"egrave", 232;
"eacute", 233;
"ecirc", 234;
"euml", 235;
"igrave", 236;
"iacute", 237;
"icirc", 238;
"iuml", 239;
"eth", 240;
"ntilde", 241;
"ograve", 242;
"oacute", 243;
"ocirc", 244;
"otilde", 245;
"ouml", 246;
"divide", 247;
"oslash", 248;
"ugrave", 249;
"uacute", 250;
"ucirc", 251;
"uuml", 252;
"yacute", 253;
"thorn", 254;
"yuml", 255;
"fnof", 402;
"Alpha", 913;
"Beta", 914;
"Gamma", 915;
"Delta", 916;
"Epsilon", 917;
"Zeta", 918;
"Eta", 919;
"Theta", 920;
"Iota", 921;
"Kappa", 922;
"Lambda", 923;
"Mu", 924;
"Nu", 925;
"Xi", 926;
"Omicron", 927;
"Pi", 928;
"Rho", 929;
"Sigma", 931;
"Tau", 932;
"Upsilon", 933;
"Phi", 934;
"Chi", 935;
"Psi", 936;
"Omega", 937;
"alpha", 945;
"beta", 946;
"gamma", 947;
"delta", 948;
"epsilon", 949;
"zeta", 950;
"eta", 951;
"theta", 952;
"iota", 953;
"kappa", 954;
"lambda", 955;
"mu", 956;
"nu", 957;
"xi", 958;
"omicron", 959;
"pi", 960;
"rho", 961;
"sigmaf", 962;
"sigma", 963;
"tau", 964;
"upsilon", 965;
"phi", 966;
"chi", 967;
"psi", 968;
"omega", 969;
"thetasym", 977;
"upsih", 978;
"piv", 982;
"bull", 8226;
"hellip", 8230;
"prime", 8242;
"Prime", 8243;
"oline", 8254;
"frasl", 8260;
"weierp", 8472;
"image", 8465;
"real", 8476;
"trade", 8482;
"alefsym", 8501;
"larr", 8592;
"uarr", 8593;
"rarr", 8594;
"darr", 8595;
"harr", 8596;
"crarr", 8629;
"lArr", 8656;
"uArr", 8657;
"rArr", 8658;
"dArr", 8659;
"hArr", 8660;
"forall", 8704;
"part", 8706;
"exist", 8707;
"empty", 8709;
"nabla", 8711;
"isin", 8712;
"notin", 8713;
"ni", 8715;
"prod", 8719;
"sum", 8721;
"minus", 8722;
"lowast", 8727;
"radic", 8730;
"prop", 8733;
"infin", 8734;
"ang", 8736;
"and", 8743;
"or", 8744;
"cap", 8745;
"cup", 8746;
"int", 8747;
"there4", 8756;
"sim", 8764;
"cong", 8773;
"asymp", 8776;
"ne", 8800;
"equiv", 8801;
"le", 8804;
"ge", 8805;
"sub", 8834;
"sup", 8835;
"nsub", 8836;
"sube", 8838;
"supe", 8839;
"oplus", 8853;
"otimes", 8855;
"perp", 8869;
"sdot", 8901;
"lceil", 8968;
"rceil", 8969;
"lfloor", 8970;
"rfloor", 8971;
"lang", 9001;
"rang", 9002;
"loz", 9674;
"spades", 9824;
"clubs", 9827;
"hearts", 9829;
"diams", 9830;
"OElig", 338;
"oelig", 339;
"Scaron", 352;
"scaron", 353;
"Yuml", 376;
"circ", 710;
"tilde", 732;
"ensp", 8194;
"emsp", 8195;
"thinsp", 8201;
"zwnj", 8204;
"zwj", 8205;
"lrm", 8206;
"rlm", 8207;
"ndash", 8211;
"mdash", 8212;
"lsquo", 8216;
"rsquo", 8217;
"sbquo", 8218;
"ldquo", 8220;
"rdquo", 8221;
"bdquo", 8222;
"dagger", 8224;
"Dagger", 8225;
"permil", 8240;
"lsaquo", 8249;
"rsaquo", 8250;
"euro", 8364;
] ;;
let quick_etable_html =
let ht = Hashtbl.create 50 in
List.iter (fun (name,value) ->
Hashtbl.add ht name value
)
etable;
ht ;;
let quick_etable_xml =
let ht = Hashtbl.create 5 in
List.iter (fun name ->
let value = List.assoc name etable in
Hashtbl.add ht name value
)
[ "lt"; "gt"; "amp"; "quot"; "apos"];
ht ;;
let rev_etable =
let a = Array.make 256 "" in
List.iter (fun (name,value) ->
if value <= 255 then
a.(value) <- "&" ^ name ^ ";"
) etable;
a ;;
let rev_etable_rest =
let ht = Hashtbl.create 150 in
List.iter (fun (name,value) ->
if value >= 256 then
Hashtbl.add ht value ("&" ^ name ^ ";")
) etable;
ht ;;
let unsafe_chars_html4 = "<>\"&\000\001\002\003\004\005\006\007\008\011\012\014\015\016\017\018\019\020\021\022\023\024\025\026\027\028\029\030\031\127" ;;
let regexp_ht = Hashtbl.create 7
let regexp_ht_mutex = !Netsys_oothr.provider # create_mutex()
let regexp_set s =
Netsys_oothr.serialize
regexp_ht_mutex
(fun () ->
try
Hashtbl.find regexp_ht s
with
| Not_found ->
let re = Netstring_str.regexp (Netstring_str.quote_set s) in
if Hashtbl.length regexp_ht < 100 then k *)
Hashtbl.replace regexp_ht s re;
re
)
()
* The functions [encode_quickly] and [encode_ascii] are special cases of
* [encode] that can be implemented by regular expressions.
*)
let encode_quickly ~prefer_name ~unsafe_chars () =
if unsafe_chars = "" then
(fun s -> s)
else
let unsafe_re =
regexp_set unsafe_chars in
Netstring_str.global_substitute
unsafe_re
(fun r s ->
let t = Netstring_str.matched_string r s in
let p = Char.code (t.[0]) in
let name = rev_etable.(p) in
if prefer_name && name <> "" then
name
else
"&#" ^ string_of_int p ^ ";"
)
;;
let encode_quickly_poly ~prefer_name ~unsafe_chars ~ops ~out_kind () =
Netstring_tstring.polymorph_string_transformation
(encode_quickly ~prefer_name ~unsafe_chars ())
ops
out_kind
let msb_set = (
let s = Bytes.create 128 in
for k = 0 to 127 do Bytes.set s k (Char.chr (128+k)) done;
Bytes.unsafe_to_string s
)
let encode_ascii ~in_enc ~prefer_name ~unsafe_chars () =
let unsafe_chars1 = unsafe_chars ^ msb_set in
let unsafe_re =
regexp_set unsafe_chars1 in
let unicode_of = Array.make 128 (-1) in
for i = 0 to 127 do
try
let s = String.make 1 (Char.chr (i+128)) in
let u = Netconversion.uarray_of_ustring in_enc s in
match u with
[| u0 |] -> unicode_of.(i) <- u0
| _ -> assert false
with
Netconversion.Malformed_code ->
unicode_of.(i) <- (-1)
done;
Netstring_str.global_substitute
unsafe_re
(fun r s ->
let t = Netstring_str.matched_string r s in
the encoding ~in_enc; p' is the Unicode
* code point:
*)
let p = Char.code (t.[0]) in
let p' = if p < 128 then p else unicode_of.(p - 128) in
if p' < 0 then raise Netconversion.Malformed_code;
let name =
if prefer_name then begin
if p' <= 255 then rev_etable.(p') else
try
Hashtbl.find rev_etable_rest p'
with
Not_found -> ""
end
else "" in
if name = "" then
"&#" ^ string_of_int p' ^ ";"
else
name
)
;;
let encode_ascii_poly ~in_enc ~prefer_name ~unsafe_chars ~ops ~out_kind () =
Netstring_tstring.polymorph_string_transformation
(encode_ascii ~in_enc ~prefer_name ~unsafe_chars ())
ops
out_kind
let encode_from_latin1 =
encode_ascii
~in_enc:`Enc_iso88591 ~prefer_name:true ~unsafe_chars:unsafe_chars_html4
()
;;
let encode_poly
~in_enc
~in_ops
~out_kind
?(out_enc = `Enc_usascii)
?(prefer_name = true)
?(unsafe_chars = unsafe_chars_html4)
() =
This function implements the general case *)
if not (Netconversion.is_ascii_compatible out_enc) then
invalid_arg "Netencoding.Html.encode: out_enc not ASCII-compatible";
for i = 0 to String.length unsafe_chars - 1 do
if Char.code(unsafe_chars.[i]) >= 128 then
invalid_arg "Netencoding.Html.encode: non-ASCII character in unsafe_chars";
done;
let in_single = Netconversion.is_single_byte in_enc in
let in_subset = match in_enc with `Enc_subset(_,_) -> true | _ -> false in
if not in_subset && in_enc=out_enc && in_single then
encode_quickly_poly
~prefer_name ~unsafe_chars ~ops:in_ops ~out_kind ()
else if not in_subset && out_enc=`Enc_usascii && in_single then
encode_ascii_poly
~in_enc ~prefer_name ~unsafe_chars ~ops:in_ops ~out_kind ()
else begin
let dom_array = Array.make 128 true in
let dom p = p >= 128 || dom_array.(p) in
for i = 0 to String.length unsafe_chars - 1 do
let c = Char.code(unsafe_chars.[i]) in
dom_array.(c) <- false
done;
Create the substitution function: *)
let subst p =
let name =
if prefer_name then begin
if p <= 255 then rev_etable.(p) else
try
Hashtbl.find rev_etable_rest p
with
Not_found -> ""
end
else "" in
if name = "" then
"&#" ^ string_of_int p ^ ";"
else
name
in
(fun s ->
Netconversion.convert_poly
~in_ops ~out_kind ~subst ~in_enc ~out_enc:(`Enc_subset(out_enc,dom))
s
)
end
;;
let encode ~in_enc ?out_enc ?prefer_name ?unsafe_chars () =
let in_ops = Netstring_tstring.string_ops in
let out_kind = Netstring_tstring.String_kind in
encode_poly ~in_enc ~in_ops ~out_kind ?out_enc ?prefer_name ?unsafe_chars ()
let encode_tstring ~in_enc ~out_kind ?out_enc ?prefer_name ?unsafe_chars () =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun in_ops s ->
encode_poly
~in_enc ~in_ops ~out_kind ?out_enc ?prefer_name ?unsafe_chars ()
s
)
}
type entity_set = [ `Html | `Xml | `Empty ];;
let eref_re =
Netstring_str.regexp "&\\(\
#\\([0-9]+\\);\\|\
#[xX]\\([0-9a-fA-F]+\\);\\|\
\\([a-zA-Z]+\\);\
\\)" ;;
let total_enc =
function
`Enc_iso88591
| `Enc_iso88592
| `Enc_iso88593
| `Enc_iso88594
| `Enc_iso88595
| `Enc_iso88599
| `Enc_iso885910
| `Enc_iso885913
| `Enc_iso885914
| `Enc_iso885915
| `Enc_iso885916 -> true
| _ -> false
;;
let hex_digit_of_char c =
match c with
'0'..'9' -> Char.code c - 48
| 'A'..'F' -> Char.code c - 55
| 'a'..'f' -> Char.code c - 87
| _ -> assert false
let hex_of_string s =
let n = ref 0 in
for i = 0 to String.length s - 1 do
let d = hex_digit_of_char s.[i] in
n := (!n lsl 4) lor d
done;
!n
let search_all re s pos =
let rec search p acc =
match
try Some(Netstring_str.search_forward re s p) with Not_found -> None
with
| Some (k,r) ->
search (k+1) ( (k,r) :: acc )
| None ->
List.rev acc in
search pos []
let decode_half_poly
~in_enc
~out_kind
~out_enc
?(lookup=fun name ->
failwith ("Netencoding.Html.decode: Unknown entity `" ^ name ^ "'"))
?(subst=fun p ->
failwith ("Netencoding.Html.decode: Character cannot be represented: " ^ string_of_int p))
?(entity_base = (`Html : entity_set))
() =
if not (Netconversion.is_ascii_compatible in_enc) then
invalid_arg "Netencoding.Html.decode: in_enc not ASCII-compatible";
let raw_makechar = Netconversion.makechar out_enc in
let makechar p =
try raw_makechar p
with Not_found -> subst p
in
let lookup_entity =
match entity_base with
`Html
| `Xml ->
let ht =
if entity_base = `Html
then quick_etable_html
else quick_etable_xml in
( fun name ->
try
makechar(Hashtbl.find ht name)
with
Not_found -> lookup name
)
| `Empty ->
lookup
in
let recode_str =
if total_enc in_enc && in_enc = out_enc then
(fun s pos len ->
if pos=0 && len=(String.length s) then
s
else
String.sub s pos len
)
else
(fun s range_pos range_len ->
Netconversion.convert
~in_enc ~out_enc ~subst ~range_pos ~range_len s)
in
(fun s ->
Find all occurrences of &name; or &#num; or &#xnum; *)
let occurrences = search_all eref_re s 0 in
let buf = Netbuffer.create 250 in
let n = ref 0 in
List.iter
(fun (n0,r) ->
let n1 = Netstring_str.match_end r in
if n0 > !n then
Netbuffer.add_string buf (recode_str s !n (n0 - !n));
let replacement =
let num =
try Netstring_str.matched_group r 2 s with Not_found -> "" in
if num <> "" then begin
let n = int_of_string num in
makechar n
end
else begin
let xnum =
try Netstring_str.matched_group r 3 s with Not_found -> "" in
if xnum <> "" then begin
let n = hex_of_string xnum in
makechar n
end
else begin
let name =
try Netstring_str.matched_group r 4 s with Not_found -> "" in
assert(name <> "");
lookup_entity name
end
end
in
Netbuffer.add_string buf replacement;
n := n1;
)
occurrences;
let n0 = String.length s in
if n0 > !n then
Netbuffer.add_string buf (recode_str s !n (n0 - !n));
Netbuffer.to_tstring_poly buf out_kind
)
;;
let decode_poly
~in_enc ~in_ops ~out_kind ~out_enc ?lookup ?subst ?entity_base () s =
let open Netstring_tstring in
decode_half_poly
~in_enc ~out_kind ~out_enc ?lookup ?subst ?entity_base ()
(in_ops.string s)
let decode ~in_enc ~out_enc ?lookup ?subst ?entity_base () =
let out_kind = Netstring_tstring.String_kind in
decode_half_poly
~in_enc ~out_kind ~out_enc ?lookup ?subst ?entity_base ()
let decode_tstring ~in_enc ~out_kind ~out_enc ?lookup ?subst ?entity_base () =
Netstring_tstring.with_tstring
{ Netstring_tstring.with_fun =
(fun in_ops s ->
decode_poly
~in_enc ~in_ops ~out_kind ~out_enc ?lookup ?subst ?entity_base ()
s
)
}
let decode_to_latin1 =
decode ~in_enc:`Enc_iso88591 ~out_enc:`Enc_iso88591
~lookup:(fun s -> "&" ^ s ^ ";")
~subst:(fun p -> "&#" ^ string_of_int p ^ ";")
()
end