Source file utils.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
module Exn = struct
let catch f a = match f a with
| exception e -> Error (`Exn e)
| x -> Ok x
let protect f fin =
match f () with
| exception e -> fin (); raise e
| x -> fin (); x
end
module Format = struct
include Format
type 'a t = formatter -> 'a -> unit
let string = pp_print_string
let rec list (sep : (unit, formatter, unit) format) p ppf = function
| [] -> ()
| [x] -> p ppf x
| x::xs ->
fprintf ppf "@[%a@]%t%a"
p x
(fun ppf -> fprintf ppf sep)
(list sep p) xs
let option p ppf = function
| None -> fprintf ppf "None"
| Some x -> fprintf ppf "Some (%a)" p x
end
module String = struct
include String
let find_char p s pos =
let len = String.length s in
let rec f pos =
if len <= pos then None
else if p @@ String.unsafe_get s pos then Some pos
else f (pos+1)
in
f pos
let split_by_char p s =
let len = String.length s in
let rec f rev_list start pos =
match find_char p s pos with
| None -> List.rev_map (fun (a,b) -> String.sub s a b) @@ (start, len - start) :: rev_list
| Some pos' ->
f ((start, pos' - start) :: rev_list) (pos'+1) (pos'+1)
in
f [] 0 0
let () =
assert (split_by_char (function '/' -> true | _ -> false) "/1/23//456/" = [""; "1"; "23"; ""; "456"; ""]);
assert (split_by_char (function '/' -> true | _ -> false) "/" = [""; ""]);
assert (split_by_char (function '/' -> true | _ -> false) "" = [""])
let for_all f s =
let len = String.length s in
let rec aux = function
| -1 -> true
| i ->
let c = String.unsafe_get s i in
if f c then aux (i-1) else false
in
aux (len - 1)
module Set = Set.Make(String)
module Map = Map.Make(String)
end
module List = struct
include List
let rec drop n xs = match n, xs with
| 0, xs -> xs
| n, _ when n < 0 -> assert false
| n, _::xs -> drop (n-1) xs
| _, [] -> []
let split_at n xs =
let rec split_at_ n st xs =
if n <= 0 then st, xs
else match xs with
| [] -> st, []
| x::xs -> split_at_ (n-1) (x::st) xs
in
let r, dropped = split_at_ n [] xs in
rev r, dropped
let take n xs = fst @@ split_at n xs
let () = assert (split_at 10 [1;2;3] = ([1;2;3], []))
let uniq_sorted eq xs =
let rec f = function
| [] -> []
| x::(y::_ as xs) when eq x y -> f xs
| x :: xs -> x :: f xs
in
f xs
let () =
assert (uniq_sorted (=) [1;2;3;4;5] = [1;2;3;4;5]);
assert (uniq_sorted (=) [1;1;2;3;3;4;5;5] = [1;2;3;4;5])
let rev_filter_map f lst = fold_left (fun st x -> match f x with
| Some v -> v :: st
| None -> st) [] lst
(** mapMaybe of Haskell *)
let filter_map f lst = rev @@ rev_filter_map f lst
(** Tail recursive verions *)
let (@) xs ys = rev_append (rev xs) ys
let rev_concat xs =
let rec f acc = function
| [] -> acc
| x::xs -> f (rev_append x acc) xs
in
f [] xs
let concat xs = rev @@ rev_concat xs
let map f xs =
let rec loop acc = function
| [] -> rev acc
| x::xs -> loop (f x :: acc) xs
in
loop [] xs
let map2 f xs ys =
let rec loop acc xs ys = match xs, ys with
| [], [] -> rev acc
| x::xs, y::ys -> loop (f x y :: acc) xs ys
| _ -> raise (Invalid_argument "List.map2")
in
loop [] xs ys
let combine xs ys =
let rec loop acc xs ys = match xs, ys with
| [], [] -> rev acc
| x::xs, y::ys -> loop ((x, y) :: acc) xs ys
| _ -> raise (Invalid_argument "List.map2")
in
loop [] xs ys
let mapi f xs =
let rec loop i acc = function
| [] -> rev acc
| x::xs -> loop (i+1) (f i x :: acc) xs
in
loop 0 [] xs
let rev_concat_map f xs =
let rec loop acc = function
| [] -> acc
| x::xs -> loop (rev_append (f x) acc) xs
in
loop [] xs
let concat_map f xs = rev @@ rev_concat_map f xs
let rec is_prefix xs ys = match xs, ys with
| [], _ -> Some ys
| x::xs, y::ys when x = y -> is_prefix xs ys
| _ -> None
let take_while_map p xs =
let rec loop st = function
| [] -> List.rev st, []
| x::xs ->
match p x with
| None -> List.rev st, x::xs
| Some y -> loop (y::st) xs
in
loop [] xs
let rev_split xys =
let rec f xs ys = function
| [] -> xs, ys
| (x,y)::xys -> f (x::xs) (y::ys) xys
in
f [] [] xys
let split xys =
let rxs, rys = rev_split xys in
List.rev rxs, List.rev rys
let partition_map f xs =
let ls, rs =
List.fold_left (fun (ls,rs) x ->
match f x with
| `Left x -> x::ls, rs
| `Right x -> ls, x::rs ) ([], []) xs
in
List.rev ls, List.rev rs
end
module Array = struct
include Array
module Syntax = struct
let (.!()) = unsafe_get
let (.!() <-) = unsafe_set
end
end
module Open = struct
let from_Some = Option.from_Some
let from_Ok = Result.from_Ok
let from_Ok_lwt = Result_lwt.from_Ok_lwt
let to_file ~file:fn s =
let oc = open_out fn in
output_string oc s;
close_out oc
let with_time f =
let t1 = Mtime_clock.now () in
let res = f () in
let t2 = Mtime_clock.now () in
res, (Mtime.span t1 t2)
let with_time_lwt f =
let open Lwt.Syntax in
let t1 = Mtime_clock.now () in
let* res = f () in
let t2 = Mtime_clock.now () in
Lwt.return (res, (Mtime.span t1 t2))
let (^/) = Filename.concat
let failwithf fmt = Format.kasprintf Stdlib.failwith fmt
let (@) = List.(@)
let reachable_words t = Obj.reachable_words (Obj.repr t)
let reachable_mbs t =
float (Obj.reachable_words (Obj.repr t) * (Sys.word_size / 8))
/. 1024. /. 1024.
let min = min
let max = max
module Int = struct
include Int
let min (x:int) (y:int) = if x <= y then x else y
let max (x:int) (y:int) = if x >= y then x else y
end
end
include Open