Source file zed_string.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
let pervasives_compare= compare
open CamomileLibraryDefault.Camomile
open Result
exception Invalid of string * string
exception Out_of_bounds
(** Exception raised when trying to access a character which is
outside the bounds of a string. *)
let fail str pos msg = raise (Invalid(Printf.sprintf "at position %d: %s" pos msg, str))
module Zed_string0 = struct
type seg_width= {
start: int;
len: int;
width: int;
}
type all_width= {
len: int;
width: int;
}
type width= (all_width, seg_width) result
type t= Zed_utf8.t
let aval_width= function
| Ok {len=_;width}-> width
| Error {start=_;len=_;width}-> width
let bytes str= String.length str
let size str= Zed_utf8.length str
let copy t= t
let unsafe_next str ofs=
let str_len= String.length str in
let rec skip str ofs=
if ofs >= str_len then
str_len
else
let chr, next= Zed_utf8.unsafe_extract_next str ofs in
if Zed_char.is_combining_mark chr then
skip str next
else
ofs
in
if ofs < 0 || ofs >= String.length str then
raise Out_of_bounds
else
let chr, next= Zed_utf8.unsafe_extract_next str ofs in
if Zed_char.is_printable chr then
skip str next
else
next
let next_ofs str ofs=
let str_len= String.length str in
let rec skip str ofs=
if ofs >= str_len then
str_len
else
let chr, next= Zed_utf8.unsafe_extract_next str ofs in
if Zed_char.is_combining_mark chr then
skip str next
else
ofs
in
if ofs < 0 || ofs >= String.length str then
raise Out_of_bounds
else
let chr, next= Zed_utf8.unsafe_extract_next str ofs in
if Zed_char.is_printable_core chr then
skip str next
else if Zed_char.is_combining_mark chr then
fail str ofs "individual combining marks encountered"
else
next
let length str=
let eos= String.length str in
let rec length len ofs=
if ofs < eos then
length (len + 1) (unsafe_next str ofs)
else
len
in
length 0 0
let unsafe_prev str ofs=
let rec skip str ofs=
if ofs = 0 then
ofs
else
let chr, prev= Zed_utf8.unsafe_extract_prev str ofs in
if Zed_char.is_combining_mark chr then
skip str prev
else
prev
in
if ofs <= 0 || ofs > String.length str then
raise Out_of_bounds
else
let chr, prev= Zed_utf8.extract_prev str ofs in
if Zed_char.is_combining_mark chr then
skip str prev
else
prev
let prev_ofs str ofs=
let rec skip str ofs=
if ofs = 0 then
ofs
else
let chr, prev= Zed_utf8.unsafe_extract_prev str ofs in
if Zed_char.is_combining_mark chr then
skip str prev
else
prev
in
if ofs <= 0 || ofs > String.length str then
raise Out_of_bounds
else
let chr, prev= Zed_utf8.extract_prev str ofs in
if Zed_char.is_combining_mark chr then
let prev= skip str prev in
if prev = 0 then
if Zed_char.is_printable_core (Zed_utf8.unsafe_extract str 0) then
prev
else
fail str 0 "individual combining marks encountered"
else
let chr, next= Zed_utf8.unsafe_extract_next str prev in
match Zed_char.prop_uChar chr with
| Printable 0
| Other
| Null -> fail str next "individual combining marks encountered"
| _-> prev
else
prev
let rec move_l str ofs len=
if len = 0 then
ofs
else if ofs >= String.length str then
raise Out_of_bounds
else
move_l str (unsafe_next str ofs) (len - 1)
let move_b str ofs len=
let rec move str ofs len=
if len = 0 then
ofs
else if ofs < 0 then
raise Out_of_bounds
else
move str (unsafe_prev str ofs) (len - 1)
in
if ofs < 0 || ofs > String.length str then
raise Out_of_bounds
else
move str ofs len
let rec move_l_raw str ofs len=
if len = 0 then
ofs
else if ofs >= String.length str then
raise Out_of_bounds
else
move_l_raw str (Zed_utf8.unsafe_next str ofs) (len - 1)
let move_b_raw str ofs len=
let rec move str ofs len=
if len = 0 then
ofs
else if ofs < 0 then
raise Out_of_bounds
else
move str (Zed_utf8.unsafe_prev str ofs) (len - 1)
in
if ofs < 0 || ofs > String.length str then
raise Out_of_bounds
else
move str ofs len
let str ofs=
let next= next_ofs str ofs in
Zed_char.unsafe_of_utf8 (String.sub str ofs (next - ofs))
let str ofs=
let next= next_ofs str ofs in
(Zed_char.unsafe_of_utf8 (String.sub str ofs (next - ofs)), next)
let str ofs=
let prev= prev_ofs str ofs in
(Zed_char.unsafe_of_utf8 (String.sub str prev (ofs - prev)), prev)
let to_raw_list str= Zed_utf8.explode str
let to_raw_array str= Array.of_list (to_raw_list str)
type index= int
let get str idx =
if idx < 0 then
raise Out_of_bounds
else
extract str (move_l str 0 idx)
let get_raw= Zed_utf8.get
let empty ()= ""
let width_ofs ?(start=0) ?num str=
let str_len= String.length str in
let rec calc w idx ofs=
if ofs < str_len then
let chr, next= extract_next str ofs in
let chr_width= Zed_char.width chr in
if chr_width > 0 then
calc (w + chr_width) (idx+1) next
else
Error { start; len= idx - start; width= w }
else Ok {len= idx - start; width= w }
in
let calc_num num w idx ofs=
let rec calc n w idx ofs=
if ofs < str_len && n > 0 then
let chr, next= extract_next str ofs in
let chr_width= Zed_char.width chr in
if chr_width > 0 then
calc (n-1) (w + chr_width) (idx+1) next
else
Error { start; len= idx - start; width= w }
else Ok {len= idx - start; width= w }
in
calc num w idx ofs
in
match num with
| Some num-> calc_num num 0 start start
| None-> calc 0 start start
let width ?(start=0) ?num str=
let ofs= move_l str 0 start in
width_ofs ~start:ofs ?num str
let explode str=
let str_len= String.length str in
let rec aux acc str ofs=
if ofs > 0 then
let chr, prev= extract_prev str ofs in
aux (chr::acc) str prev
else
acc
in
if str_len > 0 then
aux [] str str_len
else
[]
let rev_explode str=
let str_len= String.length str in
let rec aux acc ofs=
if ofs < str_len then
let chr, next= extract_next str ofs in
aux (chr::acc) next
else
[]
in
if str_len > 0 then
aux [] 0
else
[]
let unsafe_explode str=
let str_len= String.length str in
let rec aux acc str ofs=
if ofs > 0 then
let chr, prev= extract_prev str ofs in
aux (chr::acc) str prev
else
acc
in
if str_len > 0 then
aux [] str str_len
else
[]
let unsafe_rev_explode str=
let str_len= String.length str in
let rec aux acc ofs=
if ofs < str_len then
let chr, next= extract_next str ofs in
aux (chr::acc) next
else
[]
in
if str_len > 0 then
aux [] 0
else
[]
let implode chars=
String.concat "" (List.map Zed_char.to_utf8 chars)
let init len (f: int -> Zed_char.t)=
let rec create acc n=
if n > 0 then
create ((f (n-1))::acc) (n-1)
else acc
in
implode (create [] len)
let init_from_uChars len f=
match len with
| 0-> empty ()
| len when len > 0 ->
let rec create acc n=
if n > 0 then
create ((f (n-1))::acc) (n-1)
else acc
in
let uChars= create [] len in
let zChars, _= Zed_char.zChars_of_uChars uChars in
implode zChars
| _-> raise (Invalid_argument "Zed_string0.init_from_uChars")
let unsafe_of_uChars uChars=
match uChars with
| []-> ""
| _-> String.concat "" (List.map Zed_utf8.singleton uChars)
let of_uChars uChars=
match uChars with
| []-> "", []
| fst::_->
if Zed_char.is_combining_mark fst then
("", uChars)
else
(uChars |> List.map Zed_utf8.singleton |> String.concat "", [])
let unsafe_append s1 s2=
s1 ^ s2
let append s1 s2=
let validate_s2 ()=
let s2_first= Zed_utf8.unsafe_extract s2 0 in
if Zed_char.is_combining_mark s2_first then
fail s2 0 "individual combining marks encountered"
else
s2
in
if s1 = "" then
validate_s2 ()
else if s2 = "" then
s1
else
let (s1_last, _)= extract_prev s1 (bytes s1) in
if Zed_char.(is_printable_core (core s1_last)) then
unsafe_append s1 s2
else
unsafe_append s1 (validate_s2 ())
external id : 'a -> 'a = "%identity"
let unsafe_of_utf8 : string -> t= id
let of_utf8 : string -> t= fun str->
if String.length str = 0 then ""
else if Zed_char.is_combining_mark (Zed_utf8.extract str 0) then
fail str 0 "individual combining marks encountered"
else
unsafe_of_utf8 str
let to_utf8 : t -> string= id
let for_all p str= List.for_all p (explode str)
let check_range t n= n >= 0 && n <= length t
let look str ofs= Zed_utf8.extract str ofs
let nth t n= if check_range t n
then n
else raise (Invalid_argument "Zed_string.nth")
let next t n=
let n= n + 1 in
if check_range t n
then n
else raise (Invalid_argument "Zed_string.next")
let prev t n=
let n= n - 1 in
if check_range t n
then n
else raise (Invalid_argument "Zed_string.prev")
let out_of_range t n= n < 0 || n >= length t
let iter f str= List.iter f (explode str)
let rev_iter f str= List.iter f (rev_explode str)
let fold f str acc=
let rec aux f chars acc=
match chars with
| []-> acc
| chr::tl-> aux f tl (f chr acc)
in
aux f (explode str) acc
let rev_fold f str acc=
let rec aux f chars acc=
match chars with
| []-> acc
| chr::tl-> aux f tl (f chr acc)
in
aux f (rev_explode str) acc
let map f str=
implode (List.map f (explode str))
let rev_map f str=
implode (List.map f (rev_explode str))
let compare str1 str2= Zed_utils.list_compare
~compare:Zed_char.compare_raw
(explode str1) (explode str2)
let first (_:t)= 0
let last t= max (length t - 1) 0
let move t i n=
if n >= 0 then move_l t i n
else move_b t i n
let move_raw t i n=
if n >= 0 then move_l_raw t i n
else move_b_raw t i n
let compare_index (_:t) i j= pervasives_compare i j
let sub_ofs ~ofs ~len s=
if ofs < 0 || len < 0 || ofs > bytes s - len then
invalid_arg "Zed_string.sub"
else
String.sub s ofs len
let sub ~pos ~len s=
if pos < 0 || len < 0 || pos > length s - len then
invalid_arg "Zed_string.sub"
else
let ofs_start= move_l s 0 pos in
let ofs_end= move_l s ofs_start len in
String.sub s ofs_start (ofs_end - ofs_start)
let after s i=
let len= length s in
if i < len then
sub ~pos:i ~len:(len-i) s
else
empty ()
let rec unsafe_sub_equal str ofs sub ofs_sub=
if ofs_sub = String.length sub then
true
else
(String.unsafe_get str ofs = String.unsafe_get sub ofs_sub)
&& unsafe_sub_equal str (ofs + 1) sub (ofs_sub + 1)
let starts_with ~prefix str=
if String.length prefix > String.length str then
false
else
unsafe_sub_equal str 0 prefix 0
let make len c=
implode (Array.to_list (Array.make len c))
let ends_with ~suffix str=
Zed_utf8.ends_with str suffix
module Buf0 = struct
type buf= Buffer.t
let create n= Buffer.create n
let contents b= Buffer.contents b
let clear b= Buffer.clear b
let reset b= Buffer.reset b
let length b= length (contents b)
let add_zChar b zChar=
Buffer.add_string b (Zed_char.to_utf8 zChar)
let add_uChar b uChar=
Buffer.add_string b (Zed_utf8.singleton uChar)
let add_string b s= Buffer.add_string b s
let add_buffer b1 b2= Buffer.add_buffer b1 b2
end
module US0(US:UnicodeString.Type) = struct
module Convert = Zed_utils.Convert(US)
let of_t t= Zed_utf8.explode t|> Convert.of_list
let to_t us=
let first= US.first us
and last= US.last us in
let length= US.length us in
let rec create acc i=
if US.compare_index us i first >= 0
then create (US.look us i :: acc) (US.prev us i)
else acc
in
let uChars=
if length > 0 then
create [] last
else
[]
in
of_uChars uChars
let to_t_exn us= let t,_= to_t us in t
end
end
module US_Core = struct
include Zed_string0
let get str i= Zed_char.core (get str i)
let init= init_from_uChars
let iter f str= iter (fun zChar-> f (Zed_char.core zChar)) str
let compare str1 str2= Zed_utils.list_compare
~compare:Zed_char.compare_core
(explode str1) (explode str2)
let to_list str= explode str
|> List.map Zed_char.core
let to_array str= to_list str |> Array.of_list
module US(US:UnicodeString.Type) = struct
module Convert = Zed_utils.Convert(US)
let of_t t= (explode t)
|> List.map Zed_char.core
|> Convert.of_list
end
module Buf = struct
include Buf0
let add_char= add_uChar
end
end
module US_Raw = struct
type t= Zed_string0.t
let get= Zed_string0.get_raw
let init= Zed_string0.init_from_uChars
let length= Zed_utf8.length
type index= int
let check_range t n= n >= 0 && n < Zed_string0.size t
let out_of_range str ofs=
ofs < 0 || ofs >= String.length str
let look str ofs= Zed_utf8.extract str ofs
let nth str idx= Zed_string0.move_l str 0 idx
let next= Zed_utf8.next
let prev= Zed_utf8.prev
let first _= 0
let last str= Zed_utf8.prev str (String.length str)
let move= Zed_string0.move_raw
let compare_index _str= pervasives_compare
let iter f str= List.iter f (Zed_utf8.explode str)
let compare str1 str2=
Zed_utils.list_compare
~compare:UChar.compare
(Zed_utf8.explode str1) (Zed_utf8.explode str2)
module US = Zed_string0.US0
module Buf = struct
include Zed_string0.Buf0
let add_char= add_uChar
end
end
include Zed_string0
module US = US0
module Buf = Buf0