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
module Seq = struct
include Seq
let of_list l =
let rec aux l () =
match l with [] -> Seq.Nil | x :: tail -> Seq.Cons (x, aux tail)
in
aux l
let to_rev_list gen = fold_left (fun acc x -> x :: acc) [] gen
let to_list gen = List.rev (to_rev_list gen)
end
let map_3 f (x, y, z) = (x, y, f z)
(** {2 The various types} *)
type non_evaluable = [`NE | `E]
type evaluable = [`E]
module T = struct
type ('a, 'b) conv = {to_: 'a -> 'b; from_: 'b -> 'a}
type (+'evaluable, 'a) raw =
| Regexp : Re.t * Re.re Lazy.t -> ('e, string) raw
| Conv : ('e, 'a) raw * ('a, 'b) conv -> ('e, 'b) raw
| Map : (_, 'a) raw * ('a -> 'b) -> (_, 'b) raw
| Opt : ('e, 'a) raw -> ('e, 'a option) raw
| Either : ('e, 'a) raw * ('e, 'b) raw -> ('e, ('a, 'b) Either.t) raw
| Alt : (_, 'a) raw * (_, 'a) raw -> (_, 'a) raw
| Seq : ('e, 'a) raw * ('e, 'b) raw -> ('e, 'a * 'b) raw
| Prefix : (_, 'b) raw * ('e, 'a) raw -> ('e, 'a) raw
| Suffix : ('e, 'a) raw * (_, 'b) raw -> ('e, 'a) raw
| Rep : ('e, 'a) raw -> ('e, 'a Seq.t) raw
| Mod : (Re.t -> Re.t) * ('e, 'a) raw -> ('e, 'a) raw
| Lift : (_, 'a) raw * (Format.formatter -> 'a -> unit) -> (_, 'a) raw
type _ wit =
| Lit : int -> string wit
| Conv : 'a wit * ('a, 'b) conv -> 'b wit
| Map : 'a wit * ('a -> 'b) -> 'b wit
| Opt : Re.Mark.t * 'a wit -> 'a option wit
| Either : Re.Mark.t * 'a wit * 'b wit -> ('a, 'b) Either.t wit
| Alt : Re.Mark.t * 'a wit * 'a wit -> 'a wit
| Seq : 'a wit * 'b wit -> ('a * 'b) wit
| Rep : int * 'a wit * Re.re -> 'a Seq.t wit
end
type (+'e, 'a) t = ('e, 'a) T.raw
type 'a pattern = (non_evaluable, 'a) t
type 'a expression = (evaluable, 'a) t
let regex x : _ t =
let re = lazy Re.(compile @@ whole_string @@ no_group x) in
Regexp (x, re)
let pcre s = regex @@ Re.Pcre.re s
let conv to_ from_ x : _ t = Conv (x, {to_; from_})
let map f x : _ t = Map (x, f)
let unlift : type a. (evaluable, a) t -> (non_evaluable, a) t =
fun t -> (t :> a pattern)
let pstr = Format.pp_print_string
let lift f re : _ t = Lift (re, fun ppf v -> pstr ppf (f v))
let liftpp f re : _ t = Lift (re, f)
let const v x = conv (fun () -> v) (fun _ -> ()) x
let discard x = map ignore x
let seq a b : _ t = Seq (a, b)
let app f a = map (fun (f, a) -> f a) (seq f a)
let either a b : _ t = Either (a, b)
let alt tyre1 tyre2 : _ t = Alt (tyre1, tyre2)
let alt_eval : type e a.
(a -> [`Left | `Right]) -> (e, a) t -> (e, a) t -> (e, a) t =
fun from_ l r ->
conv
Either.(function Left a -> a | Right a -> a)
(fun a -> match from_ a with `Left -> Left a | `Right -> Right a)
(either l r)
let prefix x a : _ t = Prefix (x, a)
let suffix a x : _ t = Suffix (a, x)
let opt a : _ t = Opt a
module Infix = struct
let ( <|> ) = alt
let ( <&> ) = seq
let ( *> ) = prefix
let ( <* ) = suffix
let ( <||> ) = either
let ( <*> ) = app
let ( <$> ) = map
let ( let+ ) x f = map f x
let ( and+ ) x y = seq x y
end
include Infix
let rep x : _ t = Rep x
let rep1 x = x <&> rep x
let modifier f re : _ t = Mod (f, re)
let word re = modifier Re.word re
let whole_string re = modifier Re.whole_string re
let longest re = modifier Re.longest re
let shortest re = modifier Re.shortest re
let first re = modifier Re.first re
let greedy re = modifier Re.greedy re
let non_greedy re = modifier Re.non_greedy re
let nest re = modifier Re.nest re
module Regex = struct
open! Re
(** [0-9]+ *)
let pos_int = rep1 digit
(** -?[0-9]+ *)
let int = seq [opt (char '-'); pos_int]
(** -?[0-9]+( .[0-9]* )? *)
let float = seq [opt (char '-'); rep1 digit; opt (seq [char '.'; rep digit])]
(** true|false *)
let bool = alt [str "true"; str "false"]
end
let unit s re = conv (fun _ -> ()) (fun () -> s) (regex re)
let start = unit "" Re.start
let stop = unit "" Re.stop
let str s = unit s (Re.str s)
let char c =
let s = String.make 1 c in
unit s (Re.char c)
let blanks = unit "" (Re.rep Re.blank)
let pos_int = conv int_of_string string_of_int (regex Regex.pos_int)
let int = conv int_of_string string_of_int (regex Regex.int)
let float = conv float_of_string string_of_float (regex Regex.float)
let bool = conv bool_of_string string_of_bool (regex Regex.bool)
let list e = conv Seq.to_list Seq.of_list (rep e)
let terminated_list ~sep e = list (e <* sep)
let separated_list ~sep e =
let e = opt (e <&> list (sep *> e)) in
let to_ = function None -> [] | Some (h, t) -> h :: t
and from_ = function [] -> None | h :: t -> Some (h, t) in
conv to_ from_ e
module Charset = struct
type t = Re.t
let diff = Re.diff
let any = Re.any
let not s = diff Re.any s
let union = Re.alt
let inter = Re.inter
let compl = Re.compl
let ( || ) x y = union [x; y]
let ( && ) x y = inter [x; y]
let ( - ) = diff
let char = Re.char
let range = Re.rg
let set = Re.set
let notnl = Re.notnl
let wordc = Re.wordc
let alpha = Re.alpha
let alnum = Re.alnum
let ascii = Re.ascii
let blank = Re.blank
let cntrl = Re.cntrl
let digit = Re.digit
let graph = Re.graph
let lower = Re.lower
let print = Re.print
let punct = Re.punct
let space = Re.space
let upper = Re.upper
let xdigit = Re.xdigit
end
let charset (set : Charset.t) =
conv
(fun str ->
assert (String.length str = 1) ;
str.[0] )
(String.make 1) (regex set)
let rep_charset (set : Charset.t) = regex (Re.rep set)
let any = charset Charset.any
let rep_any = rep_charset Charset.any
let notnl = charset Charset.notnl
let wordc = charset Charset.wordc
let alpha = charset Charset.alpha
let alnum = charset Charset.alnum
let ascii = charset Charset.ascii
let blank = charset Charset.blank
let cntrl = charset Charset.cntrl
let digit = charset Charset.digit
let graph = charset Charset.graph
let lower = charset Charset.lower
let print = charset Charset.print
let punct = charset Charset.punct
let space = charset Charset.space
let upper = charset Charset.upper
let xdigit = charset Charset.xdigit
(** {2 Witness} *)
(** A witness is a string such that [exec (compile re) (witness re) = true].
The computation of the witness is deterministic and should result in
a small example.
It is used in [eval] for the part of the regex that are ignored.
*)
let rec witnesspp : type e a. Format.formatter -> (e, a) t -> unit =
fun ppf tre ->
let open T in
match tre with
| Regexp (re, _) ->
Format.pp_print_string ppf @@ Re.witness re
| Conv (tre, _) ->
witnesspp ppf tre
| Map (tre, _) ->
witnesspp ppf tre
| Opt _ ->
()
| Either (tre1, _) ->
witnesspp ppf tre1
| Alt (tre1, _) ->
witnesspp ppf tre1
| Seq (tre1, tre2) ->
witnesspp ppf tre1 ; witnesspp ppf tre2
| Prefix (tre1, tre2) ->
witnesspp ppf tre1 ; witnesspp ppf tre2
| Suffix (tre1, tre2) ->
witnesspp ppf tre1 ; witnesspp ppf tre2
| Rep _ ->
()
| Mod (_, tre) ->
witnesspp ppf tre
| Lift (tre, _) ->
witnesspp ppf tre
(** {2 Evaluation functions} *)
(** Evaluation is the act of filling the holes. *)
let rec pprep f ppf seq =
match seq () with Seq.Nil -> () | Cons (x, seq) -> f ppf x ; pprep f ppf seq
let rec evalpp : type a. a expression -> Format.formatter -> a -> unit =
fun tre ppf ->
let open T in
match tre with
| Regexp (_, (lazy cre)) -> begin
function
| v ->
if not @@ Re.execp cre v then
invalid_arg
@@ Printf.sprintf "Tyre.eval: regexp not respected by \"%s\"." v ;
pstr ppf v
end
| Conv (tre, conv) ->
fun v -> evalpp tre ppf (conv.from_ v)
| Opt p -> begin
function None -> pstr ppf "" | Some x -> evalpp p ppf x
end
| Seq (tre1, tre2) ->
fun (x1, x2) -> evalpp tre1 ppf x1 ; evalpp tre2 ppf x2
| Prefix (tre_l, tre) ->
fun v -> witnesspp ppf tre_l ; evalpp tre ppf v
| Suffix (tre, tre_g) ->
fun v -> evalpp tre ppf v ; witnesspp ppf tre_g
| Either (treL, treR) -> begin
function Left x -> evalpp treL ppf x | Right x -> evalpp treR ppf x
end
| Lift (_re, pp) ->
fun v -> pp ppf v
| Rep tre ->
pprep (evalpp tre) ppf
| Mod (_, tre) ->
evalpp tre ppf
| Alt _ ->
invalid_arg "Alt is not compatible with eval. This should never happen."
| Map _ ->
invalid_arg "Map is not compatible with eval. This should never happen."
let eval tre = Format.asprintf "%a" (evalpp tre)
(** {2 matching} *)
(** {3 Regexp construction}
In order to record how we constructed the regexp and how to later
extract information, we build a witness containing all the tools we need.
Each alternative is marked with {!Re.mark}. We store the markid in order
to be able to guess the branch matched.
*)
(** {3 Extraction.} *)
let rec build : type e a. int -> (e, a) t -> int * a T.wit * Re.t =
let open! Re in
let open T in
fun i -> function
| Regexp (re, _) ->
(i + 1, Lit i, group @@ no_group re)
| Conv (e, conv) ->
let i', w, re = build i e in
(i', Conv (w, conv), re)
| Map (e, conv) ->
let i', w, re = build i e in
(i', Map (w, conv), re)
| Opt e ->
let i', w, (id, re) = map_3 mark @@ build i e in
(i', Opt (id, w), opt re)
| Either (e1, e2) ->
let i', w1, (id1, re1) = map_3 mark @@ build i e1 in
let i'', w2, re2 = build i' e2 in
(i'', Either (id1, w1, w2), alt [re1; re2])
| Alt (e1, e2) ->
let i', w1, (id1, re1) = map_3 mark @@ build i e1 in
let i'', w2, re2 = build i' e2 in
(i'', Alt (id1, w1, w2), alt [re1; re2])
| Prefix (e_ign, e) ->
let i', w, re = build i e in
let _, _, re_ign = build 1 e_ign in
(i', w, seq [no_group re_ign; re])
| Suffix (e, e_ign) ->
let i', w, re = build i e in
let _, _, re_ign = build 1 e_ign in
(i', w, seq [re; no_group re_ign])
| Seq (e1, e2) ->
let i', w1, re1 = build i e1 in
let i'', w2, re2 = build i' e2 in
(i'', Seq (w1, w2), seq [re1; re2])
| Rep e ->
let _, w, re = build 1 e in
(i + 1, Rep (i, w, Re.compile re), group @@ rep @@ no_group re)
| Mod (f, e) ->
let i', w, re = build i e in
(i', w, f re)
| Lift (e, _conv) ->
let i', w, re = build i e in
(i', w, re)
(** Extracting is just a matter of following the witness.
We just need to take care of counting where we are in the matching groups.
To avoid copy, we pass around the original string (and we use positions).
*)
let[@specialize] rec : type a.
original:string -> a T.wit -> Re.Group.t -> a =
fun ~original rea s ->
let open T in
match rea with
| Lit i ->
Re.Group.get s i
| Conv (w, conv) ->
let v = extract ~original w s in
conv.to_ v
| Map (w, f) ->
let v = extract ~original w s in
f v
| Opt (id, w) ->
if not @@ Re.Mark.test s id then None else Some (extract ~original w s)
| Either (i1, w1, w2) ->
if Re.Mark.test s i1 then Either.Left (extract ~original w1 s)
else
Right (extract ~original w2 s)
| Alt (i1, w1, w2) ->
if Re.Mark.test s i1 then extract ~original w1 s
else
extract ~original w2 s
| Seq (e1, e2) ->
let v1 = extract ~original e1 s in
let v2 = extract ~original e2 s in
(v1, v2)
| Rep (i, e, re) ->
extract_list ~original e re i s
(** We need to re-match the string for lists, in order to extract
all the elements.
Re doesn't offer the possibility to keep the results when
grouping under a star (one could argue it's theoretically not
possible as it would be equivalent to counting in an automaton).
*)
and[@specialize] : type a.
original:string -> a T.wit -> Re.re -> int -> Re.Group.t -> a Seq.t =
fun ~original e re i s ->
let aux = extract ~original e in
let pos, pos' = Re.Group.offset s i in
let len = pos' - pos in
Seq.map aux @@ Re.Seq.all ~pos ~len re original
let matched_string tre : _ t =
let _, _, cre = build 1 tre in
regex cre
(** {4 Multiple match} *)
type +'r route = Route : ('e, 'a) t * ('a -> 'r) -> 'r route
let route re f = Route (re, f)
let ( --> ) = route
type 'r wit_route = WRoute : Re.Mark.t * 'a T.wit * ('a -> 'r) -> 'r wit_route
let rec build_route_aux i rel wl = function
| [] ->
(List.rev rel, List.rev wl)
| Route (tre, f) :: l ->
let i', wit, re = build i tre in
let id, re = Re.mark re in
let w = WRoute (id, wit, f) in
build_route_aux i' (re :: rel) (w :: wl) l
let build_route l = build_route_aux 1 [] [] l
let rec ~original wl subs =
match wl with
| [] ->
assert false
| WRoute (id, wit, f) :: wl ->
if Re.Mark.test subs id then f (extract ~original wit subs)
else extract_route ~original wl subs
(** {4 Compilation and execution} *)
type 'r info = One of 'r T.wit | Routes of 'r wit_route list
type 'a re = {info: 'a info; cre: Re.re}
let compile tre =
let _, wit, re = build 1 tre in
let cre = Re.compile re in
{info= One wit; cre}
let route l =
let rel, wl = build_route l in
let cre = Re.compile @@ Re.alt rel in
{info= Routes wl; cre}
type 'a error = [`NoMatch of 'a re * string | `ConverterFailure of exn]
let ~info ~original subs =
match info with
| One w ->
extract ~original w subs
| Routes wl ->
extract_route ~original wl subs
let[@inline] exec ?pos ?len ({info; cre} as tcre) original =
match Re.exec_opt ?pos ?len cre original with
| None ->
Result.Error (`NoMatch (tcre, original))
| Some subs -> (
try Result.Ok (extract_with_info ~info ~original subs)
with exn -> Result.Error (`ConverterFailure exn) )
let replace ?pos ?len ?all {info; cre} f original =
try
Ok
(Re.replace ?pos ?len ?all cre original ~f:(fun subs ->
f (extract_with_info ~info ~original subs) ) )
with exn -> Result.Error (`ConverterFailure exn)
let execp ?pos ?len {cre; _} original = Re.execp ?pos ?len cre original
let all_seq ?pos ?len {info; cre} original =
let seq = Re.Seq.all ?pos ?len cre original in
let get_res subs = extract_with_info ~info ~original subs in
Seq.map get_res seq
let all ?pos ?len tcre original =
try Result.Ok (Seq.to_list @@ all_seq ?pos ?len tcre original)
with exn -> Result.Error (`ConverterFailure exn)
(** Pretty printers *)
let sexp ppf s fmt = Format.fprintf ppf ("@[<3>(%s@ " ^^ fmt ^^ ")@]") s
let rec pp_list pp ppf = function
| [] ->
()
| [v] ->
pp ppf v
| v :: vs ->
pp ppf v ;
Format.pp_print_space ppf () ;
pp_list pp ppf vs
let rec pp : type e a. _ -> (e, a) t -> unit =
fun ppf ->
let open T in
function
| Regexp (re, _) ->
sexp ppf "Re" "%a" Re.pp re
| Conv (tre, _) ->
sexp ppf "Conv" "%a" pp tre
| Map (tre, _) ->
sexp ppf "Map" "%a" pp tre
| Opt tre ->
sexp ppf "Opt" "%a" pp tre
| Either (tre1, tre2) ->
sexp ppf "Either" "%a@ %a" pp tre1 pp tre2
| Alt (tre1, tre2) ->
sexp ppf "Alt" "%a@ %a" pp tre1 pp tre2
| Seq (tre1, tre2) ->
sexp ppf "Seq" "%a@ %a" pp tre1 pp tre2
| Prefix (tre1, tre2) ->
sexp ppf "Prefix" "%a@ %a" pp tre1 pp tre2
| Suffix (tre1, tre2) ->
sexp ppf "Suffix" "%a@ %a" pp tre1 pp tre2
| Rep tre ->
sexp ppf "Rep" "%a" pp tre
| Mod (_, tre) ->
sexp ppf "Mod" "%a" pp tre
| tre ->
sexp ppf "Matched_string" "%a" pp tre
let rec pp_wit : type a. _ -> a T.wit -> unit =
fun ppf ->
let open T in
function
| Lit i ->
sexp ppf "Lit" "%i" i
| Conv (tre, _) ->
sexp ppf "Conv" "%a" pp_wit tre
| Map (tre, _) ->
sexp ppf "Map" "%a" pp_wit tre
| Opt (_, tre) ->
sexp ppf "Opt" "%a" pp_wit tre
| Either (_, tre1, tre2) ->
sexp ppf "Alt" "%a@ %a" pp_wit tre1 pp_wit tre2
| Alt (_, tre1, tre2) ->
sexp ppf "Alt_flat" "%a@ %a" pp_wit tre1 pp_wit tre2
| Seq (tre1, tre2) ->
sexp ppf "Seq" "%a@ %a" pp_wit tre1 pp_wit tre2
| Rep (i, w, re) ->
sexp ppf "Rep" "%i@ %a@ %a" i pp_wit w Re.pp_re re
let pp_wit_route : type a. _ -> a wit_route -> unit =
fun ppf (WRoute (_, w, _)) -> pp_wit ppf w
let pp_re ppf = function
| {info= One w; cre} ->
sexp ppf "One" "%a@ %a" Re.pp_re cre pp_wit w
| {info= Routes wl; cre} ->
sexp ppf "Route" "%a@ %a" Re.pp_re cre (pp_list pp_wit_route) wl
let pp_error ppf : _ error -> unit = function
| `NoMatch (re, s) ->
Format.fprintf ppf "`NoMatch (%a, %s)" pp_re re s
| `ConverterFailure exn ->
Format.pp_print_string ppf @@ Printexc.to_string exn
module Internal = struct
include T
let to_t x = x
let from_t x = x
let build = build
let = extract
end