Source file util.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
let opt_colors = ref true
let opt_verbosity = ref 0
let rec last = function [x] -> x | _ :: xs -> last xs | [] -> raise (Failure "last")
let rec last_opt = function [x] -> Some x | _ :: xs -> last_opt xs | [] -> None
let rec butlast = function [_] -> [] | x :: xs -> x :: butlast xs | [] -> []
module Option_monad = struct
let ( let* ) = Option.bind
let ( let+ ) = Option.map
end
module State_monad (S : sig
type t
end) =
struct
type 'a monad = S.t -> 'a * S.t
let ( let* ) state f env =
let y, env' = state env in
f y env'
let return x env = (x, env)
let fmap f m =
let* x = m in
return (f x)
let ( let+ ) = fmap
let rec mapM f = function
| [] -> return []
| x :: xs ->
let* y = f x in
let* ys = mapM f xs in
return (y :: ys)
let get_state s = (s, s)
let put_state s _ = ((), s)
end
module Duplicate (S : Set.S) = struct
type dups = No_dups of S.t | Has_dups of S.elt
let duplicates (x : S.elt list) : dups =
let rec f x acc =
match x with [] -> No_dups acc | s :: rest -> if S.mem s acc then Has_dups s else f rest (S.add s acc)
in
f x S.empty
end
let remove_duplicates l =
let l' = List.sort Stdlib.compare l in
let rec aux acc l =
match (acc, l) with
| _, [] -> List.rev acc
| [], x :: xs -> aux [x] xs
| y :: ys, x :: xs -> if x = y then aux (y :: ys) xs else aux (x :: y :: ys) xs
in
aux [] l'
let remove_dups compare eq l =
let l' = List.sort compare l in
let rec aux acc l =
match (acc, l) with
| _, [] -> List.rev acc
| [], x :: xs -> aux [x] xs
| y :: ys, x :: xs -> if eq x y then aux (y :: ys) xs else aux (x :: y :: ys) xs
in
aux [] l'
let lex_ord_list comparison xs ys =
let rec lex_lists xs ys =
match (xs, ys) with
| x :: xs, y :: ys ->
let c = comparison x y in
if c = 0 then lex_lists xs ys else c
| [], [] -> 0
| _, _ -> assert false
in
let c = List.compare_lengths xs ys in
if c = 0 then lex_lists xs ys else c
let rec power i tothe = if tothe <= 0 then 1 else i * power i (tothe - 1)
let rec assoc_equal_opt eq k l =
match l with [] -> None | (k', v) :: l -> if eq k k' then Some v else assoc_equal_opt eq k l
let rec assoc_compare_opt cmp k l =
match l with [] -> None | (k', v) :: l -> if cmp k k' = 0 then Some v else assoc_compare_opt cmp k l
let rec compare_list f l1 l2 =
match (l1, l2) with
| [], [] -> 0
| _, [] -> 1
| [], _ -> -1
| x :: l1, y :: l2 ->
let c = f x y in
if c = 0 then compare_list f l1 l2 else c
let update_first f = function [] -> [] | x :: xs -> f x :: xs
let rec update_last f = function [] -> [] | [x] -> [f x] | x :: xs -> x :: update_last f xs
let rec map_last f = function [] -> [] | [x] -> [f true x] | x :: xs -> f false x :: map_last f xs
let rec iter_last f = function
| [] -> ()
| [x] -> f true x
| x :: xs ->
f false x;
iter_last f xs
let rec split_on_char sep str =
try
let sep_pos = String.index str sep in
String.sub str 0 sep_pos :: split_on_char sep (String.sub str (sep_pos + 1) (String.length str - (sep_pos + 1)))
with Not_found -> [str]
let map_changed_default d f l =
let rec g = function
| [] -> ([], false)
| x :: y -> (
let r, c = g y in
match f x with None -> (d x :: r, c) | Some x' -> (x' :: r, true)
)
in
let r, c = g l in
if c then Some r else None
let map_changed f l = map_changed_default (fun x -> x) f l
let rec map_split f = function
| [] -> ([], [])
| x :: xs -> (
match f x with
| Ok x' ->
let xs', ys' = map_split f xs in
(x' :: xs', ys')
| Error y' ->
let xs', ys' = map_split f xs in
(xs', y' :: ys')
)
let list_empty = function [] -> true | _ -> false
let list_index p l =
let rec aux i l = match l with [] -> None | x :: xs -> if p x then Some i else aux (i + 1) xs in
aux 0 l
let fold_left_map f acc xs =
let ys, result =
List.fold_left
(fun (ys, acc) x ->
let acc', y = f acc x in
(y :: ys, acc')
)
([], acc) xs
in
(result, List.rev ys)
let option_get_exn e = function Some o -> o | None -> raise e
let option_cases op f1 f2 = match op with Some o -> f1 o | None -> f2 ()
let option_binop f x y = match (x, y) with Some x, Some y -> Some (f x y) | _ -> None
let rec option_these = function Some x :: xs -> x :: option_these xs | None :: xs -> option_these xs | [] -> []
let rec option_all = function
| [] -> Some []
| None :: _ -> None
| Some x :: xs -> begin match option_all xs with None -> None | Some xs -> Some (x :: xs) end
let rec map_all (f : 'a -> 'b option) (l : 'a list) : 'b list option =
match l with
| [] -> Some []
| x :: xs -> (
match f x with None -> None | Some x' -> Option.map (fun xs' -> x' :: xs') (map_all f xs)
)
let rec option_first f xL =
match xL with
| [] -> None
| x :: xs -> (
match f x with None -> option_first f xs | Some s -> Some s
)
let delimit_list f xs =
let add x = function next :: rest -> (x :: next) :: rest | _ -> assert false in
let rec go acc = function
| x :: xs -> if not (f x) then go (add x acc) xs else go ([] :: acc) xs
| [] -> List.rev (List.map List.rev acc)
in
go [[]] xs
let list_to_front n l =
if n <= 0 then l
else (
let rec aux acc n l =
match (n, l) with
| 0, x :: xs -> x :: List.rev_append acc xs
| n, x :: xs -> aux (x :: acc) (n - 1) xs
| _, [] -> raise (Failure "list_to_front")
in
aux [] n l
)
let undo_list_to_front n l =
if n <= 0 then l
else (
let rec aux acc n y l =
match (n, l) with
| 0, xs -> List.rev_append acc (y :: xs)
| n, x :: xs -> aux (x :: acc) (n - 1) y xs
| _, [] -> List.rev_append acc [y]
in
match l with [] -> l | y :: xs -> aux [] n y xs
)
let split_after n l =
if n < 0 then raise (Failure "negative argument to split_after")
else (
let rec aux acc n ll =
match (n, ll) with
| 0, _ -> (List.rev acc, ll)
| n, x :: xs -> aux (x :: acc) (n - 1) xs
| _ -> raise (Failure "index too large")
in
aux [] n l
)
let rec split3 = function
| (x, y, z) :: xs ->
let xs, ys, zs = split3 xs in
(x :: xs, y :: ys, z :: zs)
| [] -> ([], [], [])
let rec list_iter_sep (sf : unit -> unit) (f : 'a -> unit) l : unit =
match l with
| [] -> ()
| [x0] -> f x0
| x0 :: x1 :: xs ->
f x0;
sf ();
list_iter_sep sf f (x1 :: xs)
let string_to_list s =
let rec aux i acc = if i < 0 then acc else aux (i - 1) (s.[i] :: acc) in
aux (String.length s - 1) []
module IntSet = Set.Make (Int)
module IntMap = Map.Make (Int)
module StringMap = Map.Make (String)
module IntIntSet = Set.Make (struct
let compare = Stdlib.compare
type t = int * int
end)
let copy_file src dst =
let len = 5096 in
let b = Bytes.make len ' ' in
let read_len = ref 0 in
let i = open_in_bin src in
let o = open_out_bin dst in
while
read_len := input i b 0 len;
!read_len <> 0
do
output o b 0 !read_len
done;
close_in i;
close_out o
let move_file src dst =
if Sys.file_exists dst then Sys.remove dst;
try
Sys.rename src dst
with Sys_error _ ->
copy_file src dst;
Sys.remove src
let input_byte_opt chan = try Some (input_byte chan) with End_of_file -> None
let same_content_files file1 file2 : bool =
Sys.file_exists file1 && Sys.file_exists file2
&& begin
let s1 = open_in_bin file1 in
let s2 = open_in_bin file2 in
let rec comp s1 s2 =
match (input_byte_opt s1, input_byte_opt s2) with
| None, None -> true
| Some b1, Some b2 -> if b1 = b2 then comp s1 s2 else false
| _, _ -> false
in
let result = comp s1 s2 in
close_in s1;
close_in s2;
result
end
let read_whole_file filename =
let ch = open_in_bin filename in
let s = really_input_string ch (in_channel_length ch) in
close_in ch;
s
let rec string_of_list sep string_of = function
| [] -> ""
| [x] -> string_of x
| x :: ls -> string_of x ^ sep ^ string_of_list sep string_of ls
let string_of_option string_of = function None -> "" | Some x -> string_of x
let rec take_drop f = function
| [] -> ([], [])
| x :: xs when not (f x) -> ([], x :: xs)
| x :: xs ->
let ys, zs = take_drop f xs in
(x :: ys, zs)
let rec find_rest_opt f = function [] -> None | x :: xs when f x -> Some (x, xs) | _ :: xs -> find_rest_opt f xs
let find_next f xs =
let rec find_next' f acc = function
| x :: xs when f x -> (List.rev acc, Some (x, xs))
| x :: xs -> find_next' f (x :: acc) xs
| [] -> (List.rev acc, None)
in
find_next' f [] xs
let find_index_opt f xs =
let rec find_index_opt' f i = function
| x :: _ when f x -> Some (i, x)
| _ :: xs -> find_index_opt' f (i + 1) xs
| [] -> None
in
find_index_opt' f 0 xs
let rec find_map f = function
| x :: xs -> begin match f x with Some y -> Some y | None -> find_map f xs end
| [] -> None
let fold_left_concat_map f acc xs =
let ys, acc =
List.fold_left
(fun (ys, acc) x ->
let acc, zs = f acc x in
(List.rev zs @ ys, acc)
)
([], acc) xs
in
(acc, List.rev ys)
let rec fold_left_last f acc = function
| [] -> acc
| [x] -> f true acc x
| x :: xs -> fold_left_last f (f false acc x) xs
let fold_left_index f init xs =
let rec go n acc = function [] -> acc | x :: xs -> go (n + 1) (f n acc x) xs in
go 0 init xs
let fold_left_index_last f init xs =
let rec go n acc = function [] -> acc | [x] -> f n true acc x | x :: xs -> go (n + 1) (f n false acc x) xs in
go 0 init xs
let map_if pred f xs =
let rec go acc = function
| x :: xs -> begin match pred x with true -> go (f x :: acc) xs | false -> go (x :: acc) xs end
| [] -> List.rev acc
in
go [] xs
let rec map_exists pred f = function x :: xs -> if pred (f x) then true else map_exists pred f xs | [] -> false
let rec take n xs = match (n, xs) with 0, _ -> [] | _, [] -> [] | n, x :: xs -> x :: take (n - 1) xs
let rec drop n xs = match (n, xs) with 0, xs -> xs | _, [] -> [] | n, _ :: xs -> drop (n - 1) xs
let list_init len f =
let rec list_init' len f acc = if acc >= len then [] else f acc :: list_init' len f (acc + 1) in
list_init' len f 0
let starts_with ~prefix s =
let prefix_len = String.length prefix in
prefix_len <= String.length s && String.sub s 0 prefix_len = prefix
let levenshtein_distance ?(osa = false) str1 str2 =
let dist = Array.make_matrix (String.length str1 + 1) (String.length str2 + 1) 0 in
for i = 1 to String.length str1 do
dist.(i).(0) <- i
done;
for j = 1 to String.length str2 do
dist.(0).(j) <- j
done;
for i = 1 to String.length str1 do
for j = 1 to String.length str2 do
let subst_cost = if str1.[i - 1] = str2.[j - 1] then 0 else 1 in
dist.(i).(j) <- min (min (dist.(i - 1).(j) + 1) (dist.(i).(j - 1) + 1)) (dist.(i - 1).(j - 1) + subst_cost);
if osa && i > 1 && j > 1 && str1.[i - 1] = str2.[j - 2] && str1.[i - 2] = str2.[j - 1] then
dist.(i).(j) <- min dist.(i).(j) (dist.(i - 2).(j - 2) + 1)
done
done;
dist.(String.length str1).(String.length str2)
let termcode n = if !opt_colors then "\x1B[" ^ string_of_int n ^ "m" else ""
let bold str = termcode 1 ^ str
let dim str = termcode 2 ^ str
let darkgray str = termcode 90 ^ str
let red str = termcode 91 ^ str
let green str = termcode 92 ^ str
let yellow str = termcode 93 ^ str
let blue str = termcode 94 ^ str
let magenta str = termcode 95 ^ str
let cyan str = termcode 96 ^ str
let red_bg str = termcode 41 ^ str
let clear str = str ^ termcode 0
let zchar c =
let zc c = "z" ^ String.make 1 c in
if Char.code c <= 41 then zc (Char.chr (Char.code c + 16))
else if Char.code c <= 47 then zc (Char.chr (Char.code c + 23))
else if Char.code c <= 57 then String.make 1 c
else if Char.code c <= 64 then zc (Char.chr (Char.code c + 13))
else if Char.code c <= 90 then String.make 1 c
else if Char.code c <= 94 then zc (Char.chr (Char.code c - 13))
else if Char.code c <= 95 then "_"
else if Char.code c <= 96 then zc (Char.chr (Char.code c - 13))
else if Char.code c <= 121 then String.make 1 c
else if Char.code c <= 122 then "zz"
else if Char.code c <= 126 then zc (Char.chr (Char.code c - 39))
else raise (Invalid_argument "zchar")
let zencode_string str = "z" ^ List.fold_left (fun s1 s2 -> s1 ^ s2) "" (List.map zchar (string_to_list str))
let zencode_upper_string str = "Z" ^ List.fold_left (fun s1 s2 -> s1 ^ s2) "" (List.map zchar (string_to_list str))
let file_encode_string str =
let zstr = zencode_string str in
let md5 = Digest.to_hex (Digest.string zstr) in
String.lowercase_ascii zstr ^ String.lowercase_ascii md5
let log_line str line msg = "\n[" ^ (str ^ ":" ^ string_of_int line |> blue |> clear) ^ "] " ^ msg
let str n = "\n" ^ str ^ "\n" ^ String.make (String.length str - (9 * n)) '='
let progress prefix msg n total =
if !opt_verbosity > 0 then (
let len = truncate (float n /. float total *. 50.0) in
let percent = truncate (float n /. float total *. 100.0) in
let msg =
if String.length msg <= 20 then msg ^ ")" ^ String.make (20 - String.length msg) ' '
else String.sub msg 0 17 ^ "...)"
in
let str =
prefix ^ "[" ^ String.make len '=' ^ String.make (50 - len) ' ' ^ "] " ^ string_of_int percent ^ "%" ^ " (" ^ msg
in
prerr_string str;
if n = total then prerr_char '\n' else prerr_string ("\x1B[" ^ string_of_int (String.length str) ^ "D");
flush stderr
)
else ()
let open_output_with_check opt_dir file_name =
let temp_file_name, o = Filename.open_temp_file "ll_temp" "" in
let o' = Format.formatter_of_out_channel o in
(o', (o, temp_file_name, opt_dir, file_name))
let open_output_with_check_unformatted opt_dir file_name =
let temp_file_name, o = Filename.open_temp_file "ll_temp" "" in
(o, temp_file_name, opt_dir, file_name)
let always_replace_files = ref true
let close_output_with_check (o, temp_file_name, opt_dir, file_name) =
let _ = close_out o in
let file_name =
match opt_dir with
| None -> file_name
| Some dir ->
if Sys.file_exists dir then () else Unix.mkdir dir 0o775;
Filename.concat dir file_name
in
let do_replace = !always_replace_files || not (same_content_files temp_file_name file_name) in
let _ = if not do_replace then Sys.remove temp_file_name else move_file temp_file_name file_name in
()