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
open OpamCompat
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_string: t -> string
val to_json: t -> OpamJson.t
val of_json: OpamJson.t -> t option
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.t) -> 'a t -> OpamJson.t
val of_json: (OpamJson.t -> 'a option) -> OpamJson.t -> 'a t option
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
end
module type ABSTRACT = sig
type t
val of_string: string -> t
val to_string: t -> string
val to_json: t -> OpamJson.t
val of_json: OpamJson.t -> t option
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.t
val of_json: OpamJson.t -> t option
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 eq = function
| a::(b::_ as r) when eq a b -> remove_duplicates_eq eq r
| a::r -> a::remove_duplicates_eq eq r
| [] -> []
let remove_duplicates l = remove_duplicates_eq ( = ) l
let sort_nodup cmp l =
remove_duplicates_eq (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 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_opt x = function
[] -> None
| (a,b)::l -> if compare a x = 0 then Some b else assoc_opt x l
let pick_assoc x l =
let rec aux acc = function
| [] -> None, l
| (k,v) as b::r ->
if k = x then Some v, List.rev_append acc r
else aux (b::acc) r
in
aux [] l
let update_assoc k v l =
let rec aux acc = function
| [] -> List.rev ((k,v)::acc)
| (k1,_) as b::r ->
if k1 = k then List.rev_append acc ((k,v)::r)
else aux (b::acc) r
in
aux [] l
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_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 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 (List.assoc "key" binding),
value_of_json (List.assoc "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 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 = 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 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 = 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 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 =
Re.(split (compile (rep1 (char c)))) s
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 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
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 list =
let lazy_env = lazy (
let e = Unix.environment () in
List.rev_map (fun s ->
match OpamString.cut_at s '=' with
| None -> s, ""
| Some p -> p
) (Array.to_list e)
) in
fun () -> Lazy.force lazy_env
let get =
if Sys.win32 then
fun n ->
let n = String.uppercase_ascii n in
snd (List.find (fun (k,_) -> String.uppercase_ascii k = n) (list ()))
else
fun n -> List.assoc n (list ())
let getopt n = try Some (get n) with Not_found -> None
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:"'\"'\"'")
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 ->
let length = String.length path in
let rec f acc index current last normal =
if index = 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 = ';' && 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
else fun path ->
let split = if clean then OpamString.split else OpamString.split_delim in
split path path_sep
let with_process_in cmd args f =
if Sys.win32 then
assert false;
let path = split_path_variable (Env.get "PATH") in
let cmd =
List.find Sys.file_exists (List.map (fun d -> Filename.concat d cmd) path)
in
let ic = Unix.open_process_in (cmd^" "^args) in
try
let r = f ic in
ignore (Unix.close_process_in ic) ; r
with exn ->
ignore (Unix.close_process_in ic) ; raise exn
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 () =
let fallback = 80 in
let cols =
try
with_process_in "tput" "cols"
(fun ic -> int_of_string (input_line ic))
with
| Unix.Unix_error _ | Sys_error _ | Failure _ | End_of_file | Not_found ->
try
with_process_in "stty" "size"
(fun ic ->
match OpamString.split (input_line ic) ' ' with
| [_ ; v] -> int_of_string v
| _ -> failwith "stty")
with
| Unix.Unix_error _ | Sys_error _ | Failure _
| End_of_file | Not_found -> 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 -> Sys.getcwd ()) in
fun () -> Lazy.force home
let etc () = "/etc"
let uname =
let memo = Hashtbl.create 7 in
fun arg ->
try Hashtbl.find memo arg with Not_found ->
let r =
try
with_process_in "uname" arg
(fun ic -> Some (OpamString.strip (input_line ic)))
with Unix.Unix_error _ | Sys_error _ | Not_found -> None
in
Hashtbl.add memo arg r;
r
let system () =
OpamStubs.(shGetFolderPath 0x25 SHGFP_TYPE_CURRENT)
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 "-s" with
| Some "Darwin" -> Darwin
| Some "Linux" -> Linux
| Some "FreeBSD" -> FreeBSD
| Some "OpenBSD" -> OpenBSD
| Some "NetBSD" -> NetBSD
| Some "DragonFly" -> DragonFly
| _ -> Unix
end
| "Win32" -> Win32
| "Cygwin" -> Cygwin
| s -> Other s
) in
fun () -> Lazy.force os
type shell = SH_sh | SH_bash | SH_zsh | SH_csh | SH_fish
let shell_of_string = function
| "tcsh"
| "bsd-csh"
| "csh" -> Some SH_csh
| "zsh" -> Some SH_zsh
| "bash" -> Some SH_bash
| "fish" -> Some SH_fish
| "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 guess_shell_compat () =
let parent_guess =
if Sys.win32 then
None
else
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;
try
with_process_in "ps"
(Printf.sprintf "-p %d -o comm= 2>/dev/null" ppid)
(fun ic -> Some (input_line ic))
with
| Unix.Unix_error _ | Sys_error _ | Failure _ | End_of_file | Not_found ->
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
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 SH_sh shell
let guess_dot_profile shell =
let home f =
try Filename.concat (home ()) f
with Not_found -> f in
match shell with
| SH_fish ->
List.fold_left Filename.concat (home ".config") ["fish"; "config.fish"]
| SH_zsh -> home ".zshrc"
| SH_bash ->
(try
List.find Sys.file_exists [
home ".bash_profile";
home ".bash_login";
home ".profile";
]
with Not_found ->
home ".bash_profile")
| SH_csh ->
let cshrc = home ".cshrc" in
let tcshrc = home ".tcshrc" in
if Sys.file_exists cshrc then cshrc else tcshrc
| SH_sh -> home ".profile"
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 is_cygwin_variant =
if Sys.win32 then
let results = Hashtbl.create 17 in
let requires_cygwin name =
let cmd = Printf.sprintf "cygcheck \"%s\"" name in
let ((c, _, _) as process) = Unix.open_process_full cmd (Unix.environment ()) in
let rec f a =
match input_line c with
| x ->
if OpamString.ends_with ~suffix:"cygwin1.dll" (String.trim x) then
if OpamString.starts_with ~prefix:" " x then
f `Cygwin
else if a <> `Cygwin then
f `CygLinked
else
f a
else
f a
| exception e ->
Unix.close_process_full process |> ignore;
fatal e;
a
in
f `Native
in
fun name ->
if Filename.is_relative name then
requires_cygwin name
else
try
Hashtbl.find results name
with Not_found ->
let result = requires_cygwin name
in
Hashtbl.add results name result;
result
else
fun _ -> `Native
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 = List.assoc 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
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 (lazy (OpamStubs.(getCurrentProcessID () |> getParentProcessID))) in
let parent_putenv = lazy (
let ppid = Lazy.force !ppid in
if OpamStubs.isWoW64 () <> OpamStubs.isWoW64Process ppid then
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
let warning = lazy (
!console.warning "opam-putenv was not found - \
OPAM is unable to alter environment variables";
false)
in
fun _ _ -> Lazy.force warning
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 ]
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 -> 0
| Some false -> 1
| 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_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 = ..
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 var =
let l = lazy (try Some (find var); with Not_found -> None) in
fun () -> Lazy.force l
end
end
module List = OpamList
module String = OpamString
module Sys = OpamSys
module Format = OpamFormat