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
(** {1 Interface to 1-dimension Bigarrays of bytes (char)} *)
type 'a gen = unit -> 'a option
type 'a sequence = ('a -> unit) -> unit
type 'a printer = Format.formatter -> 'a -> unit
module B = Bigarray.Array1
type t = (char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t
let create size = B.create Bigarray.char Bigarray.c_layout size
let empty = create 0
let make sz c =
let buf = create sz in
B.fill buf c;
buf
let init size f =
let a = create size in
for i = 0 to size-1 do
B.unsafe_set a i (f i)
done;
a
let fill = B.fill
let fill_slice s c i len = fill (B.sub s i len) c
let get = B.get
let unsafe_get = B.unsafe_get
let set = B.set
let unsafe_set = B.unsafe_set
let size = B.dim
let length = B.dim
let sub = B.sub
let blit a i b j len =
let a' = sub a i len in
let b' = sub b j len in
B.blit a' b'
let copy a =
let b = create (size a) in
B.blit a b;
b
let fold f acc a =
let rec aux f acc a i len =
if i = len then acc
else
let acc = f acc (get a i) in
aux f acc a (i+1) len
in
aux f acc a 0 (size a)
let foldi f acc a =
let rec aux f acc a i len =
if i = len then acc
else
let acc = f acc i (get a i) in
aux f acc a (i+1) len
in
aux f acc a 0 (size a)
let iter f a =
let n = size a in
for i = 0 to n-1 do
f (B.unsafe_get a i)
done
let iteri f a =
let n = size a in
for i = 0 to n-1 do
f i (B.unsafe_get a i)
done
let rec equal_rec a b i len =
i = len
||
( get a i = get b i && equal_rec a b (i+1) len)
let equal a b =
size a = size b
&&
equal_rec a b 0 (size a)
let rec compare_rec a b i len_a len_b =
if i=len_a && i=len_b then 0
else if i=len_a then -1
else if i=len_b then 1
else
match Char.compare (get a i) (get b i) with
| 0 -> compare_rec a b (i+1) len_a len_b
| n -> n
let compare a b =
compare_rec a b 0 (size a) (size b)
(** {2 Conversions} *)
let to_bytes a =
Bytes.init (size a) (fun i -> B.unsafe_get a i)
let of_bytes b =
init (Bytes.length b) (fun i -> Bytes.get b i)
let of_bytes_slice b i len =
if i < 0 || i+len > Bytes.length b then invalid_arg "Bigstring.of_bytes";
init len (fun j -> Bytes.get b (i+j))
let sub_bytes a i len =
if i < 0 || i+len > size a then invalid_arg "Bigstring.sub_bytes";
Bytes.init len (fun j -> B.get a (i+j))
let blit_to_bytes a i b j len =
if i < 0 || j < 0 || i+len > size a || j+len > Bytes.length b
then invalid_arg "Bigstring.blit_to_bytes";
for x=0 to len-1 do
Bytes.set b (j+x) (B.get a (i+x))
done
let blit_of_bytes a i b j len =
if i < 0 || j < 0 || i+len > Bytes.length a || j+len > size b
then invalid_arg "Bigstring.blit_of_bytes";
for x=0 to len-1 do
B.set b (j+x) (Bytes.get a (i+x))
done
let str_init_ n f =
let bytes = Bytes.init n f in
Bytes.unsafe_to_string bytes
let to_string a =
str_init_ (size a) (fun i -> B.unsafe_get a i)
let of_string s =
init (String.length s) (fun i -> String.get s i)
let of_string_slice s i len =
if i < 0 || i+len > String.length s then invalid_arg "Bigstring.of_string_slice";
init len (fun j -> String.get s (i+j))
let of_buffer b =
let len = Buffer.length b in
init len (Buffer.nth b)
let of_gen g =
let rec aux_ b g = match g() with
| None -> ()
| Some c -> Buffer.add_char b c; aux_ b g
in
let b = Buffer.create 64 in
aux_ b g;
of_buffer b
let sub_string a i len =
if i < 0 || i+len > size a then invalid_arg "Bigstring.sub_string";
str_init_ len (fun j -> B.get a (i+j))
let blit_of_string a i b j len =
if i < 0 || j < 0 || i+len > String.length a || j+len > size b
then invalid_arg "Bigstring.blit_of_string";
for x=0 to len-1 do
B.set b (j+x) (String.get a (i+x))
done
let blit_of_buffer buf i s j len =
if i < 0 || j < 0 || i+len > Buffer.length buf || j+len > size s
then invalid_arg "Bigstring.blit_of_buffer";
for x=0 to len-1 do
B.set s (j+x) (Buffer.nth buf (i+x))
done
let to_seq a k = iter k a
let to_gen a =
let i = ref 0 in
let n = size a in
fun () ->
if !i = n then None
else (
let x = get a !i in
incr i;
Some x
)
let to_seq_slice a i len =
to_seq (sub a i len)
let to_gen_slice a i len =
to_gen (sub a i len)
let to_buffer s buf = iter (Buffer.add_char buf) s
let print out s =
Format.pp_print_char out '"';
iter
(function
| '\n' -> Format.pp_print_string out "\\n"
| '\t' -> Format.pp_print_string out "\\t"
| '\\' -> Format.pp_print_string out "\\\\"
| '\000' -> Format.pp_print_string out "\\000"
| c -> Format.pp_print_char out c)
s;
Format.pp_print_char out '"'
(** {2 Utils} *)
let concat sep l =
let len_sep = String.length sep in
let len =
List.fold_left
(fun n s ->
let n = if n>0 then n+len_sep else n in
n + length s)
0 l
in
let res = create len in
let i = ref 0 in
let j = ref 0 in
List.iter
(fun s ->
if !j > 0 then (
blit_of_string sep 0 res !i len_sep;
i := !i + len_sep
);
incr j;
blit s 0 res !i (length s);
i := !i + length s)
l;
assert (!i = len);
res
let map ~f s = init (length s) (fun i -> f (unsafe_get s i))
let mapi ~f s = init (length s) (fun i -> f i (unsafe_get s i))
let lowercase s = map ~f:Char.lowercase_ascii s
let uppercase s = map ~f:Char.uppercase_ascii s
let index_pred ~f s =
let rec aux f s i =
if i=size s then raise Not_found
else if f (unsafe_get s i) then i
else aux f s (i+1)
in
aux f s 0
let rindex_pred ~f s =
let rec aux f s i =
if i= ~-1 then raise Not_found
else if f (unsafe_get s i) then i
else aux f s (i-1)
in
aux f s (size s-1)
let index s ~c = index_pred s ~f:(fun c' -> c=c')
let rindex s ~c = rindex_pred s ~f:(fun c' -> c=c')
let contains s ~c =
try ignore (index s ~c); true
with Not_found -> false
let is_not_white_ = function ' ' | '\t' | '\r' | '\n' | '\012' -> false | _ -> true
let trim s =
try
let i = index_pred s ~f:is_not_white_ in
let j = rindex_pred s ~f:is_not_white_ in
assert (i<j);
let len = j+1-i in
sub s i len
with Not_found -> empty
let for_all ~f s =
try ignore (index_pred s ~f:(fun c -> not (f c))); false
with Not_found -> true
let exists ~f s =
try ignore (index_pred s ~f); true
with Not_found -> false
let split_gen ~by s =
let stop = ref false in
let cur_sub = ref s in
let g() =
if !stop then None
else
try
let i = index ~c:by !cur_sub in
let slice = B.sub !cur_sub 0 i in
cur_sub := B.sub !cur_sub (i+1) (size !cur_sub - i-1);
Some slice
with Not_found ->
stop := true;
if size !cur_sub > 0 then Some !cur_sub else None
in
g
let split ~by s =
let rec gen_to_list acc g = match g() with
| None -> List.rev acc
| Some x -> gen_to_list (x::acc) g
in
gen_to_list [] (split_gen ~by s)
let lines_gen s = split_gen ~by:'\n' s
let lines s = split ~by:'\n' s