Source file opamStd.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
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
module type SET = sig
include Set.S
val map: (elt -> elt) -> t -> t
val is_singleton: t -> bool
val choose_one : t -> elt
val choose_opt : t -> elt option
val of_list: elt list -> t
val to_list_map: (elt -> 'b) -> t -> 'b list
val to_string: t -> string
val to_json: t OpamJson.encoder
val of_json: t OpamJson.decoder
val find: (elt -> bool) -> t -> elt
val find_opt: (elt -> bool) -> t -> elt option
val safe_add: elt -> t -> t
val fixpoint: (elt -> t) -> t -> t
val map_reduce: ?default:'a -> (elt -> 'a) -> ('a -> 'a -> 'a) -> t -> 'a
module Op : sig
val (++): t -> t -> t
val (--): t -> t -> t
val (%%): t -> t -> t
end
end
module type MAP = sig
include Map.S
val to_string: ('a -> string) -> 'a t -> string
val to_json: 'a OpamJson.encoder -> 'a t OpamJson.encoder
val of_json: 'a OpamJson.decoder -> 'a t OpamJson.decoder
val keys: 'a t -> key list
val values: 'a t -> 'a list
val find_opt: key -> 'a t -> 'a option
val choose_opt: 'a t -> (key * 'a) option
val union: ('a -> 'a -> 'a) -> 'a t -> 'a t -> 'a t
val is_singleton: 'a t -> bool
val of_list: (key * 'a) list -> 'a t
val safe_add: key -> 'a -> 'a t -> 'a t
val update: key -> ('a -> 'a) -> 'a -> 'a t -> 'a t
val map_reduce:
?default:'b -> (key -> 'a -> 'b) -> ('b -> 'b -> 'b) -> 'a t -> 'b
val filter_map: (key -> 'a -> 'b option) -> 'a t -> 'b t
end
module type ABSTRACT = sig
type t
val compare: t -> t -> int
val equal: t -> t -> bool
val of_string: string -> t
val to_string: t -> string
val to_json: t OpamJson.encoder
val of_json: t OpamJson.decoder
module Set: SET with type elt = t
module Map: MAP with type key = t
end
module type OrderedType = sig
include Set.OrderedType
val to_string: t -> string
val to_json: t OpamJson.encoder
val of_json: t OpamJson.decoder
end
module OpamCompare = struct
external compare : 't -> 't -> int = "%compare"
external equal : 't -> 't -> bool = "%equal"
external (=) : 't -> 't -> bool = "%equal"
external (<>) : 't -> 't -> bool = "%notequal"
external (<) : 't -> 't -> bool = "%lessthan"
external (>) : 't -> 't -> bool = "%greaterthan"
external (<=) : 't -> 't -> bool = "%lessequal"
external (>=) : 't -> 't -> bool = "%greaterequal"
end
let max_print = 100
module OpamList = struct
let cons x xs = x :: xs
let concat_map ?(left="") ?(right="") ?nil ?last_sep sep f =
let last_sep = match last_sep with None -> sep | Some sep -> sep in
function
| [] -> (match nil with Some s -> s | None -> left^right)
| l ->
let seplen = String.length sep in
let strs,len =
List.fold_left (fun (strs,len) x ->
let s = f x in s::strs, String.length s + seplen + len)
([], String.length left + String.length right - seplen)
l
in
let len = match l with
| _::_::_ -> len + String.length last_sep - seplen
| _ -> len
in
let buf = Bytes.create len in
let prepend i s =
let slen = String.length s in
Bytes.blit_string s 0 buf (i - slen) slen;
i - slen
in
let pos = prepend len right in
let pos = prepend pos (List.hd strs) in
let pos =
List.fold_left (fun (pos, cur_sep) s -> (prepend (prepend pos cur_sep) s, sep))
(pos, last_sep) (List.tl strs) |> fst
in
let pos = prepend pos left in
assert (pos = 0);
Bytes.to_string buf
let rec find_opt f = function
| [] -> None
| x::r -> if f x then Some x else find_opt f r
let to_string f =
concat_map ~left:"{ " ~right:" }" ~nil:"{}" ", " f
let rec remove_duplicates eq = function
| a::(b::_ as r) when eq a b -> remove_duplicates eq r
| a::r -> a::remove_duplicates eq r
| [] -> []
let sort_nodup cmp l =
remove_duplicates (fun a b -> cmp a b = 0) (List.sort cmp l)
let filter_map f l =
let rec loop accu = function
| [] -> List.rev accu
| h :: t ->
match f h with
| None -> loop accu t
| Some x -> loop (x::accu) t in
loop [] l
let filter_some l = filter_map (fun x -> x) l
let rec find_map f = function
| [] -> raise Not_found
| x::r -> match f x with
| Some r -> r
| None -> find_map f r
let rec find_map_opt f = function
| [] -> None
| x::r -> match f x with
| Some r -> Some r
| None -> find_map_opt f r
let insert comp x l =
let rec aux = function
| [] -> [x]
| h::t when comp h x < 0 -> h::aux t
| l -> x :: l in
aux l
let rec insert_at index value = function
| [] -> [value]
| l when index <= 0 -> value :: l
| x::l -> x :: insert_at (index - 1) value l
let rec assoc eq x = function
| [] -> raise Not_found
| (a,b)::r -> if eq a x then b else assoc eq x r
let rec assoc_opt eq x = function
| [] -> None
| (a,b)::l -> if eq a x then Some b else assoc_opt eq x l
let pick f l =
let rec aux acc = function
| [] -> None, l
| x::l ->
if f x then Some x, List.rev_append acc l
else aux (x::acc) l
in
aux [] l
let pick_assoc eq x l =
let rec aux acc = function
| [] -> None, l
| (k,v) as b::r ->
if eq k x then Some v, List.rev_append acc r
else aux (b::acc) r
in
aux [] l
let rec mem_assoc eq x = function
| [] -> false
| (a,_)::r -> eq a x || mem_assoc eq x r
let update_assoc eq k v l =
let rec aux acc = function
| [] -> List.rev ((k,v)::acc)
| (k1,_) as b::r ->
if eq k1 k then List.rev_append acc ((k,v)::r)
else aux (b::acc) r
in
aux [] l
let remove_assoc eq k l =
let rec aux acc = function
| [] -> List.rev acc
| (k1,_) as b::r ->
if eq k1 k then List.rev_append acc r
else aux (b::acc) r
in
aux [] l
let fold_left_map f s l =
let s, l_rev =
List.fold_left (fun (s, l_rev) x ->
let s, y = f s x in
s, y :: l_rev)
(s, []) l
in
s, List.rev l_rev
end
module Set = struct
module Make (O : OrderedType) = struct
module S = Set.Make(O)
include S
let fold f set i =
let r = ref i in
S.iter (fun elt ->
r := f elt !r
) set;
!r
let is_singleton s =
not (is_empty s) &&
min_elt s == max_elt s
let choose_one s =
if is_empty s then raise Not_found
else if is_singleton s then choose s
else failwith "choose_one"
let choose_opt s =
try Some (choose s) with Not_found -> None
let of_list l =
List.fold_left (fun set e -> add e set) empty l
let to_list_map f set =
fold (fun x acc -> f x :: acc) set []
let to_string s =
if S.cardinal s > max_print then
Printf.sprintf "%d elements" (S.cardinal s)
else
let l = S.fold (fun nv l -> O.to_string nv :: l) s [] in
OpamList.to_string (fun x -> x) (List.rev l)
let map f t =
S.fold (fun e set -> S.add (f e) set) t S.empty
exception Found of elt
let find_opt fn t =
try iter (fun x -> if fn x then raise (Found x)) t; None
with Found x -> Some x
let find fn t =
match find_opt fn t with
| Some x -> x
| None -> raise Not_found
let to_json t =
let elements = S.elements t in
let jsons = List.map O.to_json elements in
`A jsons
let of_json = function
| `A jsons ->
begin try
let get = function
| None -> raise Not_found
| Some v -> v in
let elems = List.map get (List.map O.of_json jsons) in
Some (S.of_list elems)
with Not_found -> None
end
| _ -> None
module Op = struct
let (++) = union
let (--) = diff
let (%%) = inter
end
let safe_add elt t =
if mem elt t
then failwith (Printf.sprintf "duplicate entry %s" (O.to_string elt))
else add elt t
let fixpoint f =
let open Op in
let rec aux fullset curset =
if is_empty curset then fullset else
let newset = fold (fun nv set -> set ++ f nv) curset empty in
let fullset = fullset ++ curset in
aux fullset (newset -- fullset)
in
aux empty
let map_reduce ?default f op t =
match choose_opt t with
| Some x ->
fold (fun x acc -> op acc (f x)) (remove x t) (f x)
| None ->
match default with
| Some d -> d
| None -> invalid_arg "Set.map_reduce"
end
end
module Map = struct
module Make (O : OrderedType) = struct
module M = Map.Make(O)
include M
let fold f map i =
let r = ref i in
M.iter (fun key value->
r:= f key value !r
) map;
!r
let map f map =
fold (fun key value map ->
add key (f value) map
) map empty
let mapi f map =
fold (fun key value map ->
add key (f key value) map
) map empty
let filter_map f map =
fold (fun key value map ->
match f key value with
| Some value -> add key value map
| None -> map
) map empty
let values map =
List.rev (M.fold (fun _ v acc -> v :: acc) map [])
let keys map =
List.rev (M.fold (fun k _ acc -> k :: acc) map [])
let union f m1 m2 =
M.merge (fun _ a b -> match a, b with
| Some _ as s, None | None, (Some _ as s) -> s
| Some v1, Some v2 -> Some (f v1 v2)
| None, None -> assert false)
m1 m2
let is_singleton s =
not (is_empty s) &&
fst (min_binding s) == fst (max_binding s)
let to_string string_of_value m =
if M.cardinal m > max_print then
Printf.sprintf "%d elements" (M.cardinal m)
else
let s (k,v) = Printf.sprintf "%s:%s" (O.to_string k) (string_of_value v) in
let l = fold (fun k v l -> s (k,v)::l) m [] in
OpamList.to_string (fun x -> x) l
let of_list l =
List.fold_left (fun map (k,v) -> add k v map) empty l
let to_json json_of_value t =
let bindings = M.bindings t in
let jsons = List.map (fun (k,v) ->
`O [ ("key" , O.to_json k);
("value", json_of_value v) ]
) bindings in
`A jsons
let of_json value_of_json = function
| `A jsons ->
begin try
let get_pair = function
| `O binding ->
begin match
O.of_json (OpamList.assoc String.equal "key" binding),
value_of_json (OpamList.assoc String.equal "value" binding)
with
| Some key, Some value -> (key, value)
| _ -> raise Not_found
end
| _ -> raise Not_found in
let pairs = List.map get_pair jsons in
Some (of_list pairs)
with Not_found -> None
end
| _ -> None
let find_opt k map = try Some (find k map) with Not_found -> None
let choose_opt m =
try Some (choose m) with Not_found -> None
let safe_add k v map =
if mem k map
then failwith (Printf.sprintf "duplicate entry %s" (O.to_string k))
else add k v map
let update k f zero map =
let v = try find k map with Not_found -> zero in
add k (f v) map
let map_reduce ?default f op t =
match choose_opt t with
| Some (k, v) ->
fold (fun k v acc -> op acc (f k v)) (remove k t) (f k v)
| None ->
match default with
| Some d -> d
| None -> invalid_arg "Map.map_reduce"
end
end
module AbstractString = struct
type t = string
let compare = String.compare
let equal = String.equal
let of_string x = x
let to_string x = x
let to_json x = `String x
let of_json = function
| `String x -> Some x
| _ -> None
module O = struct
type t = string
let to_string = to_string
let compare = compare
let to_json = to_json
let of_json = of_json
end
module Set = Set.Make(O)
module Map = Map.Make(O)
end
module OInt = struct
type t = int
let compare = Int.compare
let to_string = string_of_int
let to_json i = `String (string_of_int i)
let of_json = function
| `String s -> (try Some (int_of_string s) with _ -> None)
| _ -> None
end
module IntMap = Map.Make(OInt)
module IntSet = Set.Make(OInt)
module Option = struct
let map f = function
| None -> None
| Some x -> Some (f x)
let iter f = function
| None -> ()
| Some x -> f x
let default dft = function
| None -> dft
| Some x -> x
let default_map dft = function
| None -> dft
| some -> some
let replace f = function
| None -> None
| Some x -> f x
let map_default f dft = function
| None -> dft
| Some x -> f x
let compare cmp o1 o2 =
match o1,o2 with
| None, None -> 0
| Some _, None -> 1
| None, Some _ -> -1
| Some x1, Some x2 -> cmp x1 x2
let equal f o1 o2 =
match o1, o2 with
| Some o1, Some o2 -> f o1 o2
| None, None -> true
| _ , _ -> false
let equal_some f v1 = function
| None -> false
| Some v2 -> f v1 v2
let to_string ?(none="") f = function
| Some x -> f x
| None -> none
let to_list = function
| None -> []
| Some x -> [x]
let some x = Some x
let none _ = None
let of_Not_found f x =
try Some (f x) with Not_found -> None
module Op = struct
let (>>=) = function
| None -> fun _ -> None
| Some x -> fun f -> f x
let (>>|) opt f = map f opt
let (>>+) opt f = match opt with
| None -> f ()
| some -> some
let (+!) opt dft = default dft opt
let (++) = function
| None -> fun opt -> opt
| some -> fun _ -> some
end
end
module OpamString = struct
module OString = struct
type t = string
let compare = String.compare
let to_string x = x
let to_json x = `String x
let of_json = function
| `String s -> Some s
| _ -> None
end
module StringSet = Set.Make(OString)
module StringMap = Map.Make(OString)
module SetSet = Set.Make(StringSet)
module SetMap = Map.Make(StringSet)
module Set = StringSet
module Map = StringMap
let starts_with ~prefix s =
let x = String.length prefix in
let n = String.length s in
n >= x &&
let rec chk i = i >= x || prefix.[i] = s.[i] && chk (i+1) in
chk 0
let ends_with ~suffix s =
let x = String.length suffix in
let n = String.length s in
n >= x &&
let rec chk i = i >= x || suffix.[i] = s.[i+n-x] && chk (i+1) in
chk 0
let for_all f s =
let len = String.length s in
let rec aux i = i >= len || f s.[i] && aux (i+1) in
aux 0
let contains_char s c =
try let _ = String.index s c in true
with Not_found -> false
let contains ~sub =
Re.(execp (compile (str sub)))
let exact_match re s =
try
let subs = Re.exec re s in
let subs = Array.to_list (Re.Group.all_offset subs) in
let n = String.length s in
let subs = List.filter (fun (s,e) -> s=0 && e=n) subs in
List.length subs > 0
with Not_found ->
false
let find_from f s i =
let l = String.length s in
if i < 0 || i > l then
invalid_arg "find_from"
else
let rec g i =
if i < l then
if f s.[i] then
i
else
g (succ i)
else
raise Not_found in
g i
let map f s =
let len = String.length s in
let b = Bytes.create len in
for i = 0 to len - 1 do Bytes.set b i (f s.[i]) done;
Bytes.to_string b
let is_whitespace = function
| ' ' | '\t' | '\r' | '\n' -> true
| _ -> false
let strip str =
let p = ref 0 in
let l = String.length str in
while !p < l && is_whitespace (String.unsafe_get str !p) do
incr p;
done;
let p = !p in
let l = ref (l - 1) in
while !l >= p && is_whitespace (String.unsafe_get str !l) do
decr l;
done;
String.sub str p (!l - p + 1)
let strip_right str =
let rec aux i =
if i < 0 || not (is_whitespace str.[i]) then i else aux (i-1)
in
let l = String.length str in
let i = aux (l-1) in
if i = l - 1 then str
else String.sub str 0 (i+1)
let sub_at n s =
if String.length s <= n then
s
else
String.sub s 0 n
let remove_prefix ~prefix s =
if starts_with ~prefix s then
let x = String.length prefix in
let n = String.length s in
String.sub s x (n - x)
else
s
let remove_suffix ~suffix s =
if ends_with ~suffix s then
let x = String.length suffix in
let n = String.length s in
String.sub s 0 (n - x)
else
s
let cut_at_aux fn s sep =
try
let i = fn s sep in
let name = String.sub s 0 i in
let version = String.sub s (i+1) (String.length s - i - 1) in
Some (name, version)
with Invalid_argument _ | Not_found ->
None
let cut_at = cut_at_aux String.index
let rcut_at = cut_at_aux String.rindex
let split s c =
let rec loop acc i slice_start len s c =
if (i : int) < (len : int) then
if s.[i] = (c : char) then
let acc =
if (slice_start : int) < (i : int) then
String.sub s slice_start (i - slice_start) :: acc
else
acc
in
let i = i+1 in
loop acc i i len s c
else
loop acc (i+1) slice_start len s c
else if (i : int) = (slice_start : int) then
acc
else
String.sub s slice_start (len - slice_start) :: acc
in
List.rev (loop [] 0 0 (String.length s) s c)
let split_delim s c =
let tokens = Re.(split_full (compile (char c)) s) in
let rec aux acc = function
| [] -> acc
| (`Delim _)::[] -> ""::acc
| (`Text s)::tl -> aux (s::acc) tl
| (`Delim _)::tl -> aux acc tl
in
let acc0 =
match tokens with
| (`Delim _)::_ -> [""]
|_ -> []
in List.rev (aux acc0 tokens)
let split_quoted path sep =
let length = String.length path in
let rec f acc index current last normal =
if (index : int) = length then
let current = current ^ String.sub path last (index - last) in
List.rev (if current <> "" then current::acc else acc)
else
let c = path.[index]
and next = succ index in
if (c : char) = sep && normal || c = '"' then
let current = current ^ String.sub path last (index - last) in
if c = '"' then
f acc next current next (not normal)
else
let acc = if current = "" then acc else current::acc in
f acc next "" next true
else
f acc next current last normal in
f [] 0 "" 0 true
let fold_left f acc s =
let acc = ref acc in
for i = 0 to String.length s - 1 do acc := f !acc s.[i] done;
!acc
let compare_case s1 s2 =
let l1 = String.length s1 and l2 = String.length s2 in
let len = min l1 l2 in
let rec aux i =
if i < len then
let c1 = s1.[i] and c2 = s2.[i] in
match Char.compare (Char.lowercase_ascii c1) (Char.lowercase_ascii c2)
with
| 0 ->
(match Char.compare c1 c2 with
| 0 -> aux (i+1)
| c -> c)
| c -> c
else
if l1 < l2 then -1
else if l1 > l2 then 1
else 0
in
aux 0
let is_prefix_of ~from ~full s =
let length_s = String.length s in
let length_full = String.length full in
if from < 0 || from > length_full then
invalid_arg "is_prefix_of"
else
length_s <= length_full
&& length_s > from
&& String.sub full 0 length_s = s
let is_hex s =
try
String.iter (function
| '0'..'9' | 'A'..'F' | 'a'..'f' -> ()
| _ -> raise Exit)
s;
true
with Exit -> false
end
type warning_printer =
{mutable warning : 'a . ('a, unit, string, unit) format4 -> 'a}
let console = ref {warning = fun fmt -> Printf.ksprintf prerr_string fmt}
module Env = struct
let reset_value ~prefix c v =
let v = OpamString.split v c in
List.filter (fun v -> not (OpamString.starts_with ~prefix v)) v
let cut_value ~prefix c v =
let v = OpamString.split v c in
let rec aux before =
function
| [] -> [], List.rev before
| curr::after when OpamString.starts_with ~prefix curr ->
before, after
| curr::after -> aux (curr::before) after
in aux [] v
let escape_single_quotes ?(using_backslashes=false) =
if using_backslashes then
Re.(replace (compile (set "\\\'")) ~f:(fun g -> "\\"^Group.get g 0))
else
Re.(replace_string (compile (char '\'')) ~by:"'\"'\"'")
let escape_powershell =
Re.(replace_string (compile (char '\'')) ~by:"''")
module Name = struct
module M = struct
include AbstractString
let compare =
if Sys.win32 then
fun l r ->
String.(compare (lowercase_ascii l) (lowercase_ascii r))
else
String.compare
end
type t = string
let of_string = M.of_string
let to_string = M.to_string
let of_json = M.of_json
let to_json = M.to_json
let compare = M.compare
let equal =
if Sys.win32 then
fun l r ->
String.(equal (lowercase_ascii l) (lowercase_ascii r))
else
String.equal
let equal_string = equal
module Set = Set.Make(M)
module Map = Map.Make(M)
end
let to_list env =
List.rev_map (fun s ->
match OpamString.cut_at s '=' with
| None -> s, ""
| Some p -> p)
(Array.to_list env)
let raw_env = Unix.environment
let list =
let lazy_env = lazy (to_list (raw_env ())) in
fun () -> Lazy.force lazy_env
let cyg_env ~env ~cygbin ~git_location =
let f v =
match OpamString.cut_at v '=' with
| Some (path, c) when Name.equal_string path "path" ->
(match git_location with
| None ->
Printf.sprintf "%s=%s;%s" path cygbin c
| Some git_location ->
if String.equal git_location cygbin then
Printf.sprintf "%s=%s;%s" path cygbin c
else
Printf.sprintf "%s=%s;%s;%s" path git_location cygbin c)
| _ -> v
in
Array.map f env
let get_full n = List.find (fun (k,_) -> Name.equal k n) (list ())
let get n = snd (get_full n)
let getopt = Option.of_Not_found get
let getopt_full n =
try let (n, v) = get_full n in (n, Some v)
with Not_found -> (n, None)
end
(** To use when catching default exceptions: ensures we don't catch fatal errors
like C-c *)
let fatal e = match e with
| Sys.Break -> prerr_newline (); raise e
| Assert_failure _ | Match_failure _ -> raise e
| _ -> ()
module OpamSys = struct
let path_sep = if Sys.win32 then ';' else ':'
let split_path_variable ?(clean=true) =
if Sys.win32 then
fun path -> OpamString.split_quoted path ';'
else fun path ->
let split = if clean then OpamString.split else OpamString.split_delim in
split path path_sep
let process_in cmd args =
if Sys.win32 then
assert false;
let env = Env.raw_env () in
try
let path = split_path_variable (Env.get "PATH") in
let cmd =
List.find OpamStubs.is_executable
(List.map (fun d -> Filename.concat d cmd) path)
in
let args = Array.of_list (cmd :: args) in
let (ic, _, _) as p = Unix.open_process_args_full cmd args env in
let r = input_line ic in
match Unix.close_process_full p with
| Unix.WEXITED 0 -> Some r
| WEXITED _ | WSIGNALED _ | WSTOPPED _ -> None
with Unix.Unix_error _ | Sys_error _ | End_of_file | Not_found -> None
let tty_out = Unix.isatty Unix.stdout
let tty_in = Unix.isatty Unix.stdin
let default_columns = lazy (
let default = 16_000_000 in
let cols =
try int_of_string (Env.get "COLUMNS") with
| Not_found
| Failure _ -> default
in
if cols > 0 then cols else default
)
let get_terminal_columns () =
try int_of_string (Env.get "COLUMNS") with
| Not_found | Failure _ ->
let fallback = 80 in
let cols =
if tty_out then
OpamStubs.get_stdout_ws_col ()
else
fallback
in
if cols > 0 then cols else fallback
let win32_get_console_width default_columns =
try
let hConsoleOutput = OpamStubs.(getStdHandle STD_OUTPUT_HANDLE) in
let {OpamStubs.size = (width, _); _} =
OpamStubs.getConsoleScreenBufferInfo hConsoleOutput
in
width
with Not_found ->
Lazy.force default_columns
let terminal_columns =
let v = ref (lazy (get_terminal_columns ())) in
let () =
try Sys.set_signal 28
(Sys.Signal_handle
(fun _ -> v := lazy (get_terminal_columns ())))
with Invalid_argument _ -> ()
in
if Sys.win32 then
fun () ->
win32_get_console_width default_columns
else
fun () ->
if tty_out
then Lazy.force !v
else Lazy.force default_columns
let home =
let home = lazy (
try Unix.getenv "HOME"
with Not_found ->
if Sys.win32 then
OpamStubs.getPathToHome ()
else
Sys.getcwd ()
) in
fun () -> Lazy.force home
let etc () = "/etc"
let uname =
let uname = lazy (OpamStubs.uname ()) in
fun () ->
Lazy.force uname
let get_freebsd_version () = process_in "uname" ["-U"]
let get_long_bit () = process_in "getconf" ["LONG_BIT"]
let system =
let system = Lazy.from_fun OpamStubs.getPathToSystem in
fun () -> Lazy.force system
type os =
| Darwin
| Linux
| FreeBSD
| OpenBSD
| NetBSD
| DragonFly
| Cygwin
| Win32
| Unix
| Other of string
let os =
let os = lazy (
match Sys.os_type with
| "Unix" -> begin
match (uname ()).sysname with
| "Darwin" -> Darwin
| "Linux" -> Linux
| "FreeBSD" -> FreeBSD
| "OpenBSD" -> OpenBSD
| "NetBSD" -> NetBSD
| "DragonFly" -> DragonFly
| _ -> Unix
end
| "Win32" -> Win32
| "Cygwin" -> Cygwin
| s -> Other s
) in
fun () -> Lazy.force os
type powershell_host = Powershell_pwsh | Powershell
type shell = SH_sh | SH_bash | SH_zsh | SH_csh | SH_fish
| SH_pwsh of powershell_host | SH_cmd
let all_shells =
[SH_sh; SH_bash;
SH_zsh;
SH_csh;
SH_fish;
SH_pwsh Powershell_pwsh;
SH_pwsh Powershell;
SH_cmd]
let windows_default_shell = SH_cmd
let unix_default_shell = SH_sh
let shell_of_string = function
| "tcsh"
| "bsd-csh"
| "csh" -> Some SH_csh
| "zsh" -> Some SH_zsh
| "bash" -> Some SH_bash
| "fish" -> Some SH_fish
| "pwsh" -> Some (SH_pwsh Powershell_pwsh)
| "dash"
| "sh" -> Some SH_sh
| _ -> None
let executable_name =
if Sys.win32 then
fun name ->
if Filename.check_suffix name ".exe" then
name
else
name ^ ".exe"
else
fun x -> x
let chop_exe_suffix name =
Option.default name (Filename.chop_suffix_opt name ~suffix:".exe")
let windows_process_ancestry = Lazy.from_fun OpamStubs.getProcessAncestry
type shell_choice = Accept of shell
let windows_get_shell =
let categorize_process (_, image) =
match String.lowercase_ascii (Filename.basename image) with
| "powershell.exe" | "powershell_ise.exe" ->
Some (Accept (SH_pwsh Powershell))
| "pwsh.exe" -> Some (Accept (SH_pwsh Powershell_pwsh))
| "cmd.exe" -> Some (Accept SH_cmd)
| "" -> None
| name ->
Option.map
(fun shell -> Accept shell)
(shell_of_string (chop_exe_suffix name))
in
lazy (
let lazy ancestors = windows_process_ancestry in
match OpamList.filter_map categorize_process ancestors with
| [] -> None
| Accept most_relevant_shell :: _ -> Some most_relevant_shell
)
let guess_shell_compat () =
let parent_guess () =
let ppid = Unix.getppid () in
let dir = Filename.concat "/proc" (string_of_int ppid) in
try
Some (Unix.readlink (Filename.concat dir "exe"))
with e ->
fatal e;
match
process_in "ps" ["-p"; string_of_int ppid; "-o"; "comm="]
with
| Some _ as x -> x
| None ->
try
let c = open_in_bin ("/proc/" ^ string_of_int ppid ^ "/cmdline") in
begin try
let s = input_line c in
close_in c;
Some (String.sub s 0 (String.index s '\000'))
with
| Not_found ->
None
| e ->
close_in c;
fatal e; None
end
with e ->
fatal e; None
in
let test shell = shell_of_string (Filename.basename shell) in
if Sys.win32 then
let shell =
match Lazy.force windows_get_shell with
| None ->
Option.of_Not_found Env.get "SHELL" |> Option.replace test
| some ->
some
in
Option.default windows_default_shell shell
else
let shell =
match Option.replace test (parent_guess ()) with
| None ->
Option.of_Not_found Env.get "SHELL" |> Option.replace test
| some ->
some
in
Option.default unix_default_shell shell
let guess_dot_profile shell =
let home f =
try Filename.concat (home ()) f
with Not_found -> f in
match shell with
| SH_fish ->
Some (List.fold_left Filename.concat (home ".config") ["fish"; "config.fish"])
| SH_zsh ->
let zsh_home f =
try Filename.concat (Env.get "ZDOTDIR") f
with Not_found -> home f in
Some (zsh_home ".zshrc")
| SH_bash ->
let shell =
(try
List.find Sys.file_exists [
home ".bash_profile";
home ".bash_login";
home ".profile";
]
with Not_found ->
home ".bash_profile")
in
Some shell
| SH_csh ->
let cshrc = home ".cshrc" in
let tcshrc = home ".tcshrc" in
Some (if Sys.file_exists cshrc then cshrc else tcshrc)
| SH_pwsh _ ->
None
| SH_sh -> Some (home ".profile")
| SH_cmd ->
None
let registered_at_exit = ref []
let at_exit f =
Stdlib.at_exit f;
registered_at_exit := f :: !registered_at_exit
let exec_at_exit () =
List.iter
(fun f -> try f () with _ -> ())
!registered_at_exit
let env_var env var =
let len = Array.length env in
let f = if Sys.win32 then String.uppercase_ascii else fun x -> x in
let prefix = f var^"=" in
let pfxlen = String.length prefix in
let rec aux i =
if (i : int) >= len then "" else
let s = env.(i) in
if OpamString.starts_with ~prefix (f s) then
String.sub s pfxlen (String.length s - pfxlen)
else aux (i+1)
in
aux 0
let is_external_cmd name =
let forward_to_back =
if Sys.win32 then
String.map (function '/' -> '\\' | c -> c)
else
fun x -> x
in
let name = forward_to_back name in
OpamString.contains_char name Filename.dir_sep.[0]
let resolve_in_path_t env name =
if not (Filename.is_relative name) || is_external_cmd name then
invalid_arg "OpamStd.Sys.resolve_in_path: bare command expected"
else
let path = split_path_variable (env_var env "PATH") in
List.filter_map (fun path ->
let candidate = Filename.concat path name in
match Sys.is_directory candidate with
| false -> Some candidate
| true | exception (Sys_error _) -> None)
path
let resolve_command =
let resolve ?dir env name =
if not (Filename.is_relative name) then begin
if not (Sys.file_exists name) then `Not_found
else if not (OpamStubs.is_executable name) then `Denied
else `Cmd name
end else if is_external_cmd name then begin
let cmd = match dir with
| None -> name
| Some d -> Filename.concat d name
in
if not (Sys.file_exists cmd) then `Not_found
else if not (OpamStubs.is_executable cmd) then `Denied
else `Cmd cmd
end else
let name =
if Sys.win32 && not (Filename.check_suffix name ".exe") then
name ^ ".exe"
else name
in
let possibles = resolve_in_path_t env name in
match List.find OpamStubs.is_executable possibles with
| cmdname -> `Cmd cmdname
| exception Not_found ->
if possibles = [] then
`Not_found
else
`Denied
in
fun ?env ?dir name ->
let env = match env with None -> Env.raw_env () | Some e -> e in
resolve env ?dir name
let resolve_in_path ?env name =
let env = match env with None -> Env.raw_env () | Some e -> e in
match resolve_in_path_t env name with
| result::_ -> Some result
| [] -> None
let get_windows_executable_variant =
if Sys.win32 then
let results = Hashtbl.create 17 in
let requires_cygwin cygcheck name =
let env =
Env.cyg_env ~env:(Env.raw_env ()) ~cygbin:(Filename.dirname cygcheck)
~git_location:None
in
let cmd = OpamCompat.Filename.quote_command cygcheck [name] in
let ((c, _, _) as process) = Unix.open_process_full cmd env in
let rec check_dll platform =
match input_line c with
| dll ->
let tdll = String.trim dll in
if OpamString.ends_with ~suffix:"cygwin1.dll" tdll then
if OpamString.starts_with ~prefix:" " dll then
check_dll `Cygwin
else if platform = `Native then
check_dll (`Tainted `Cygwin)
else
check_dll platform
else if OpamString.ends_with ~suffix:"msys-2.0.dll" tdll then
if OpamString.starts_with ~prefix:" " dll then
check_dll `Msys2
else if platform = `Native then
check_dll (`Tainted `Msys2)
else
check_dll platform
else
check_dll platform
| exception e ->
Unix.close_process_full process |> ignore;
fatal e;
platform
in
check_dll `Native
in
fun ?search_in_first name ->
let cygcheck =
let open Option.Op in
let contains_cygcheck dir =
let cygcheck = Filename.concat dir "cygcheck.exe" in
if Sys.file_exists cygcheck then
Some cygcheck
else
None
in
search_in_first >>= contains_cygcheck
>>+ fun () ->
match resolve_command "cygcheck.exe" with
| `Cmd cmd -> Some cmd
| `Not_found | `Denied -> None
in
match cygcheck with
| None -> `Native
| Some cygcheck ->
if Filename.is_relative name then
requires_cygwin cygcheck name
else
try Hashtbl.find results (cygcheck, name)
with Not_found ->
let result = requires_cygwin cygcheck name in
Hashtbl.add results (cygcheck, name) result;
result
else
fun ?search_in_first:_ _ -> `Native
let get_cygwin_variant ?search_in_first cmd =
match get_windows_executable_variant ?search_in_first cmd with
| `Native -> `Native
| `Cygwin
| `Msys2 -> `Cygwin
| `Tainted _ -> `CygLinked
let is_cygwin_variant ?search_in_first cmd =
get_cygwin_variant ?search_in_first cmd = `Cygwin
exception Exit of int
exception Exec of string * string array * string array
let exit i = raise (Exit i)
type exit_reason =
[ `Success | `False | `Bad_arguments | `Not_found | `Aborted | `Locked
| `No_solution | `File_error | `Package_operation_error | `Sync_error
| `Configuration_error | `Solver_failure | `Internal_error
| `User_interrupt ]
let exit_codes : (exit_reason * int) list = [
`Success, 0;
`False, 1;
`Bad_arguments, 2;
`Not_found, 5;
`Aborted, 10;
`Locked, 15;
`No_solution, 20;
`File_error, 30;
`Package_operation_error, 31;
`Sync_error, 40;
`Configuration_error, 50;
`Solver_failure, 60;
`Internal_error, 99;
`User_interrupt, 130;
]
let get_exit_code reason = OpamList.assoc OpamCompare.equal reason exit_codes
let exit_because reason = exit (get_exit_code reason)
type nonrec warning_printer = warning_printer =
{mutable warning : 'a . ('a, unit, string, unit) format4 -> 'a}
let set_warning_printer =
let called = ref false in
fun printer ->
if !called then invalid_arg "Just what do you think you're doing, Dave?";
called := true;
console := printer
let is_valid_basename_char =
if Sys.win32 then
function
| '\000'..'\031'
| '<' | '>' | ':' | '"' | '/' | '\\' | '|' | '?' | '*' -> false
| _ -> true
else
fun c -> c <> '\000' && c <> '/'
end
module Win32 = struct
module RegistryHive = struct
let to_string = function
| OpamStubs.HKEY_CLASSES_ROOT -> "HKEY_CLASSES_ROOT"
| OpamStubs.HKEY_CURRENT_CONFIG -> "HKEY_CURRENT_CONFIG"
| OpamStubs.HKEY_CURRENT_USER -> "HKEY_CURRENT_USER"
| OpamStubs.HKEY_LOCAL_MACHINE -> "HKEY_LOCAL_MACHINE"
| OpamStubs.HKEY_USERS -> "HKEY_USERS"
let of_string = function
| "HKCR"
| "HKEY_CLASSES_ROOT" -> OpamStubs.HKEY_CLASSES_ROOT
| "HKCC"
| "HKEY_CURRENT_CONFIG" -> OpamStubs.HKEY_CURRENT_CONFIG
| "HKCU"
| "HKEY_CURRENT_USER" -> OpamStubs.HKEY_CURRENT_USER
| "HKLM"
| "HKEY_LOCAL_MACHINE" -> OpamStubs.HKEY_LOCAL_MACHINE
| "HKU"
| "HKEY_USERS" -> OpamStubs.HKEY_USERS
| _ -> failwith "RegistryHive.of_string"
end
let (set_parent_pid, parent_putenv) =
let ppid = ref (OpamCompat.Lazy.map (function (_::(pid, _)::_) -> pid | _ -> 0l) OpamSys.windows_process_ancestry) in
let parent_putenv = lazy (
let {contents = lazy ppid} = ppid in
let our_architecture = OpamStubs.getProcessArchitecture None in
let their_architecture = OpamStubs.getProcessArchitecture (Some ppid) in
let no_opam_putenv =
let warning = lazy (
!console.warning "opam-putenv was not found - \
OPAM is unable to alter environment variables";
false)
in
fun _ _ -> Lazy.force warning
in
if our_architecture <> their_architecture then
match their_architecture with
| OpamStubs.ARM | ARM64 | IA64 | Unknown ->
no_opam_putenv
| AMD64 | Intel ->
let putenv_exe =
Filename.(concat (dirname Sys.executable_name) "opam-putenv.exe")
in
let ctrl = ref stdout in
let quit_putenv () =
if !ctrl <> stdout then
let () = Printf.fprintf !ctrl "::QUIT\n%!" in
ctrl := stdout
in
at_exit quit_putenv;
if Sys.file_exists putenv_exe then
fun key value ->
if !ctrl = stdout then begin
let (inCh, outCh) = Unix.pipe () in
let _ =
Unix.create_process putenv_exe
[| putenv_exe; Int32.to_string ppid |]
inCh Unix.stdout Unix.stderr
in
ctrl := (Unix.out_channel_of_descr outCh);
set_binary_mode_out !ctrl true;
end;
Printf.fprintf !ctrl "%s\n%s\n%!" key value;
if key = "::QUIT" then ctrl := stdout;
true
else
no_opam_putenv
else
function "::QUIT" -> fun _ -> true
| key -> OpamStubs.process_putenv ppid key)
in
((fun pid ->
if Lazy.is_val parent_putenv then
failwith "Target parent already known";
ppid := Lazy.from_val pid),
(fun key -> (Lazy.force parent_putenv) key))
let persistHomeDirectory dir =
Unix.putenv "HOME" dir;
ignore (parent_putenv "HOME" dir);
OpamStubs.(writeRegistry HKEY_CURRENT_USER "Environment" "HOME" REG_SZ dir);
let hWND_BROADCAST = 0xffffn in
let sMTO_ABORTIFHUNG = 0x2 in
OpamStubs.(sendMessageTimeout hWND_BROADCAST 5000 sMTO_ABORTIFHUNG
WM_SETTINGCHANGE 0 "Environment") |> ignore
end
module OpamFormat = struct
let visual_length_substring s ofs len =
let rec aux acc i =
if i >= len then acc
else match s.[ofs + i] with
| '\xc2'..'\xdf' -> aux (acc - min 1 (len - i)) (i + 2)
| '\xe0'..'\xef' -> aux (acc - min 2 (len - i)) (i + 3)
| '\xf0'..'\xf4' -> aux (acc - min 3 (len - i)) (i + 4)
| '\027' ->
(try
let j = String.index_from s (ofs+i+1) 'm' - ofs in
if j > len then acc - (len - i) else
aux (acc - (j - i + 1)) (j + 1)
with Not_found | Invalid_argument _ ->
acc - (len - i))
| _ -> aux acc (i + 1)
in
aux len 0
let visual_length s = visual_length_substring s 0 (String.length s)
let visual_width s =
List.fold_left max 0 (List.map visual_length (OpamString.split s '\n'))
let cut_at_visual s width =
let rec aux i =
try
let j = String.index_from s i '\027' in
let k = String.index_from s (j+1) 'm' in
if j - extra > width then width + extra
else aux (extra + k - j + 1) (k + 1)
with Not_found -> min (String.length s) (width + extra)
| Invalid_argument _ -> String.length s
in
let cut_at = aux 0 0 in
if cut_at = String.length s then s else
let sub = String.sub s 0 cut_at in
let rec rem_escapes i =
try
let j = String.index_from s i '\027' in
let k = String.index_from s (j+1) 'm' in
String.sub s j (k - j + 1) :: rem_escapes (k+1)
with Not_found | Invalid_argument _ -> []
in
String.concat "" (sub :: rem_escapes cut_at)
let indent_left s ?(visual=s) nb =
let nb = nb - String.length visual in
if nb <= 0 then
s
else
s ^ String.make nb ' '
let indent_right s ?(visual=s) nb =
let nb = nb - String.length visual in
if nb <= 0 then
s
else
String.make nb ' ' ^ s
let align_table ll =
let rec transpose ll =
if List.for_all ((=) []) ll then [] else
let col, rest =
List.fold_left (fun (col,rest) -> function
| hd::tl -> hd::col, tl::rest
| [] -> ""::col, []::rest)
([],[]) ll
in
List.rev col::transpose (List.rev rest)
in
let columns = transpose ll in
let pad n s =
let sn = visual_length s in
if sn >= n then s
else s ^ (String.make (n - sn) ' ')
in
let pad_multi n s =
match OpamString.split s '\n' with
| [] | [_] -> pad n s ^"\n"
| ls -> String.concat "\n" (List.map (pad n) ls)
in
let align sl =
let (len, multiline) =
List.fold_left (fun (len,ml) s ->
if String.contains s '\n' then max len (visual_width s), true
else max len (visual_length s), ml)
(0, false) sl
in
List.map (if multiline then pad_multi len else pad len) sl
in
let rec map_but_last f = function
| ([] | [_]) as l -> l
| x::r -> f x :: map_but_last f r
in
transpose (map_but_last align columns)
let reformat
?(start_column=0) ?(indent=0) ?(width=OpamSys.terminal_columns ()) s =
let slen = String.length s in
let buf = Buffer.create 1024 in
let rec find_nonsp i =
if i >= slen then i else
match s.[i] with ' ' -> find_nonsp (i+1) | _ -> i
in
let rec find_split i =
if i >= slen then i else
match s.[i] with ' ' | '\n' -> i | _ -> find_split (i+1)
in
let newline i =
Buffer.add_char buf '\n';
if i+1 < slen && s.[i+1] <> '\n' then
for _i = 1 to indent do Buffer.add_char buf ' ' done
in
let rec print i col =
if i >= slen then () else
if s.[i] = '\n' then (newline i; print (i+1) indent) else
let j = find_nonsp i in
let k = find_split j in
let len_visual = visual_length_substring s i (k - i) in
if col + len_visual >= width && col > indent then
(newline i;
Buffer.add_substring buf s j (k - j);
print k (indent + len_visual - j + i))
else
(Buffer.add_substring buf s i (k - i);
print k (col + len_visual))
in
print 0 start_column;
Buffer.contents buf
let itemize ?(bullet=" - ") f =
let indent = visual_length bullet in
OpamList.concat_map ~left:bullet ~right:"\n" ~nil:"" ("\n"^bullet)
(fun s -> reformat ~start_column:indent ~indent (f s))
let rec pretty_list ?(last="and") = function
| [] -> ""
| [a] -> a
| [a;b] -> Printf.sprintf "%s %s %s" a last b
| h::t -> Printf.sprintf "%s, %s" h (pretty_list ~last t)
let as_aligned_table ?(width=OpamSys.terminal_columns ()) l =
let itlen =
List.fold_left (fun acc s -> max acc (visual_length s))
0 l
in
let by_line = (width + 1) / (itlen + 1) in
if by_line <= 1 then
List.map (fun x -> [x]) l
else
let rec aux rline n = function
| [] -> [List.rev rline]
| x::r as line ->
if n = 0 then List.rev rline :: aux [] by_line line
else aux (x :: rline) (n-1) r
in
align_table (aux [] by_line l)
end
module Exn = struct
let fatal = fatal
let register_backtrace, get_backtrace =
let registered_backtrace = ref None in
(fun e ->
registered_backtrace :=
match !registered_backtrace with
| Some (e1, _) as reg when e1 == e -> reg
| _ -> Some (e, Printexc.get_backtrace ())),
(fun e ->
match !registered_backtrace with
| Some(e1,bt) when e1 == e -> bt
| _ -> Printexc.get_backtrace ())
let pretty_backtrace e =
match get_backtrace e with
| "" -> ""
| b ->
let b =
OpamFormat.itemize ~bullet:" " (fun x -> x) (OpamString.split b '\n')
in
Printf.sprintf "Backtrace:\n%s" b
let finalise e f =
let bt = Printexc.get_raw_backtrace () in
f ();
Printexc.raise_with_backtrace e bt
let finally f k =
match k () with
| r -> f (); r
| exception e -> finalise e f
end
module Op = struct
let (@@) f x = f x
let (|>) x f = f x
let (@*) g f x = g (f x)
let (@>) f g x = g (f x)
end
module Config = struct
module type Sig = sig
type t
type 'a options_fun
val default: t
val set: t -> (unit -> t) options_fun
val setk: (t -> 'a) -> t -> 'a options_fun
val r: t ref
val update: ?noop:_ -> (unit -> unit) options_fun
val init: ?noop:_ -> (unit -> unit) options_fun
val initk: 'a -> 'a options_fun
end
type env_var = string
type when_ = [ `Always | `Never | `Auto ]
type when_ext = [ `Extended | when_ ]
type answer = [ `unsafe_yes | `all_yes | `all_no | `ask ]
type yes_answer = [ `unsafe_yes | `all_yes ]
let env conv var =
try Option.map conv (Env.getopt ("OPAM"^var))
with Failure _ ->
flush stdout;
!console.warning
"Invalid value for environment variable OPAM%s, ignored." var;
None
let bool_of_string s =
match String.lowercase_ascii s with
| "" | "0" | "no" | "false" -> Some false
| "1" | "yes" | "true" -> Some true
| _ -> None
let bool s =
match bool_of_string s with
| Some s -> s
| None -> failwith "env_bool"
let env_bool var = env bool var
let env_int var = env int_of_string var
type level = int
let env_level var =
env (function s ->
if s = "" then 0 else
match bool_of_string s with
| Some true -> 1
| Some false -> 0
| None -> int_of_string s)
var
type sections = int option OpamString.Map.t
let env_sections var =
env (fun s ->
let f map elt =
let parse_value (section, value) =
try
(section, Some (int_of_string value))
with Failure _ ->
(section, None)
in
let (section, level) =
Option.map_default parse_value (elt, None) (OpamString.cut_at elt ':')
in
OpamString.Map.add section level map
in
List.fold_left f OpamString.Map.empty (OpamString.split s ' ')) var
let env_string var =
env (fun s -> s) var
let env_string_list var =
env (fun s -> OpamString.split s ',') var
let env_float var =
env float_of_string var
let when_ext s =
match String.lowercase_ascii s with
| "extended" -> `Extended
| "always" -> `Always
| "never" -> `Never
| "auto" -> `Auto
| _ -> failwith "env_when"
let env_when_ext var = env when_ext var
let env_when var =
env (fun v -> match when_ext v with
| (`Always | `Never | `Auto) as w -> w
| `Extended -> failwith "env_when")
var
let resolve_when ~auto = function
| `Always -> true
| `Never -> false
| `Auto -> Lazy.force auto
let answer s =
match String.lowercase_ascii s with
| "ask" -> `ask
| "yes" -> `all_yes
| "no" -> `all_no
| "unsafe-yes" -> `unsafe_yes
| _ -> failwith "env_answer"
let env_answer =
env (fun s ->
try if bool s then `all_yes else `all_no
with Failure _ -> answer s)
module E = struct
type t = ..
type t += REMOVED
let (r : t list ref) = ref []
let update v = r := v :: !r
let updates l = r := l @ !r
let find var = OpamList.find_map var !r
let value_t var = try Some (find var) with Not_found -> None
let value var =
let l = lazy (value_t var) in
fun () -> Lazy.force l
end
end
module List = OpamList
module String = OpamString
module Sys = OpamSys
module Format = OpamFormat
module Compare = OpamCompare