Source file omega.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
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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
open Core_kernel
open Angstrom
open Parser
open Types
type omega_match_production =
{ offset : int
; identifier : string
; text : string
}
[@@deriving yojson]
type production =
| Unit
| String of string
| Template_string of string
| Hole of hole
| Match of omega_match_production
let configuration_ref = ref (Configuration.create ())
let matches_ref : Match.t list ref = ref []
let source_ref : string ref = ref ""
let current_environment_ref : Match.Environment.t ref = ref (Match.Environment.create ())
let (|>>) p f =
p >>= fun x -> return (f x)
let debug =
match Sys.getenv "DEBUG_COMBY" with
| exception Not_found -> false
| _ -> true
let rewrite =
match Sys.getenv "REWRITE" with
| exception Not_found -> false
| _ -> true
let actual = Buffer.create 10
let rewrite_template = ref ""
let substitute template env =
let substitution_formats =
[ ":[ ", "]"
; ":[", ".]"
; ":[", "\\n]"
; ":[[", "]]"
; ":[", "]"
; ":[? ", "]"
; ":[ ?", "]"
; ":[?", ".]"
; ":[?", "\\n]"
; ":[[?", "]]"
; ":[?", "]"
]
in
Match.Environment.vars env
|> List.fold ~init:(template, []) ~f:(fun (acc, vars) variable ->
match Match.Environment.lookup env variable with
| Some value ->
List.find_map substitution_formats ~f:(fun (left,right) ->
let pattern = left^variable^right in
if Option.is_some (String.substr_index template ~pattern) then
Some (String.substr_replace_all acc ~pattern ~with_:value, variable::vars)
else
None)
|> Option.value ~default:(acc,vars)
| None -> acc, vars)
let record_match_context pos_before pos_after =
let open Match.Location in
if debug then Format.printf "match context start pos: %d@." pos_before;
if debug then Format.printf "match context end pos %d@." pos_after;
let source { offset = match_start; _ } { offset = match_end; _ } =
String.slice source match_start match_end
in
let match_context =
let match_start = { offset = pos_before; line = 1; column = pos_before + 1 } in
let match_end = { offset = pos_after; line = 1; column = pos_after + 1 } in
let text = extract_matched_text !source_ref match_start match_end in
Match.
{ range = { match_start; match_end }
; environment = !current_environment_ref
; matched = text
}
in
if debug then Format.printf "Curr env: %s@." @@ Match.Environment.to_string !current_environment_ref;
let result, _ = substitute !rewrite_template !current_environment_ref in
if rewrite then Buffer.add_string actual result;
matches_ref := match_context :: !matches_ref
module Make (Language : Language.S) (Unimplemented : Metasyntax.S) = struct
include Language.Info
module Syntax = Language.Syntax
let acc = ""
let f acc (production : production) =
match production with
| String s ->
if rewrite then Buffer.add_string actual s;
acc
| Template_string _ -> acc
| Unit -> if debug then Format.printf "Unit@."; acc
| Hole _ -> if debug then Format.printf "Hole@."; acc
| Match _ ->
if debug then Format.printf "Match@.";
acc
let r acc production : (production * 'a) t =
let open Match in
let open Location in
let open Range in
let acc = f acc production in
match production with
| String s ->
if debug then Format.printf "Matched String: %S@." s;
return (Unit, acc)
| Match { offset = pos_begin; identifier; text = content } ->
if debug then Format.printf "Match: %S @@ %d for %s@." content pos_begin identifier;
let before = { offset = pos_begin; line = 1; column = pos_begin + 1 } in
let pos_after_offset = pos_begin + String.length content in
let after = { offset = pos_after_offset; line = 1; column = pos_after_offset + 1 } in
let range = { match_start = before; match_end = after } in
let add identifier = Environment.add ~range !current_environment_ref identifier content in
let environment =
match Environment.exists !current_environment_ref identifier && String.(identifier <> "_") with
| true ->
let fresh_hole_id =
Format.sprintf "%s_%s_equal" (!configuration_ref.fresh ()) identifier
in
add fresh_hole_id
| false -> add identifier
in
current_environment_ref := environment;
return (Unit, acc)
| _ -> return (Unit, acc)
let multiline left right =
let open Parsers.Comments.Omega.Multiline in
let module M = Make(struct let left = left let right = right end) in
M.comment
let until_newline start =
let open Parsers.Comments.Omega.Until_newline in
let module M = Make(struct let start = start end) in
M.comment
let =
match Syntax.comments with
| [] -> zero
| syntax ->
let parsers =
List.map syntax ~f:(function
| Multiline (left, right) -> multiline left right
| Until_newline start -> until_newline start
| Nested_multiline (_, _) -> zero)
in
choice parsers
type 'a literal_parser_callback = contents:string -> left_delimiter:string -> right_delimiter:string -> 'a
let escapable delimiter escape_character =
let open Parsers.String_literals.Omega.Escapable in
let module M = Make(struct let delimiter = delimiter let escape = escape_character end) in
M.base_string_literal
let raw left_delimiter right_delimiter =
let open Parsers.String_literals.Omega.Raw in
let module M = Make(struct let left_delimiter = left_delimiter let right_delimiter = right_delimiter end) in
M.base_string_literal
let escapable_string_literal_parser (f : 'a literal_parser_callback) =
choice @@
match Syntax.escapable_string_literals with
| None -> []
| Some { delimiters; escape_character } ->
List.map delimiters ~f:(fun delimiter ->
escapable delimiter escape_character >>= fun contents ->
return (f ~contents ~left_delimiter:delimiter ~right_delimiter:delimiter))
let raw_string_literal_parser (f : 'a literal_parser_callback) =
choice @@
List.map Syntax.raw_string_literals ~f:(fun (left_delimiter, right_delimiter) ->
raw left_delimiter right_delimiter >>= fun contents ->
return (f ~contents ~left_delimiter ~right_delimiter))
let until_of_from from =
Syntax.user_defined_delimiters
|> List.find_map ~f:(fun (from', until) -> if String.equal from from' then Some until else None)
|> function
| Some until -> until
| None -> assert false
module Deprecate = struct
let reserved_delimiters =
List.concat_map Syntax.user_defined_delimiters ~f:(fun (from, until) -> [from; until])
|> List.append [":["; "]"]
|> List.append [":[["; "]]"]
let reserved =
reserved_delimiters @ [" "; "\n"; "\t"; "\r"]
|> List.sort ~compare:(fun v2 v1 ->
String.length v1 - String.length v2)
end
let reserved_parsers =
let user_defined_delimiters = List.concat_map Syntax.user_defined_delimiters ~f:(fun (from, until) -> [from; until]) in
let user_defined_escapable_strings =
match Syntax.escapable_string_literals with
| Some { delimiters; _ } ->
List.concat_map delimiters ~f:(fun delimiter -> [delimiter])
| None -> []
in
let user_defined_raw_strings =
List.concat_map Syntax.raw_string_literals ~f:(fun (from, until) -> [from; until])
in
let hole_syntax = [ ":["; "]"; ":[["; ":]]" ] in
let spaces = [ " "; "\n"; "\t"; "\r" ] in
let reserved =
user_defined_delimiters
@ user_defined_escapable_strings
@ user_defined_raw_strings
@ hole_syntax
@ spaces
in
choice @@ List.map reserved ~f:string
let generate_single_hole_parser () =
(alphanum <|> char '_') |>> String.of_char
let generate_everything_hole_parser
?priority_left_delimiter:left_delimiter
?priority_right_delimiter:right_delimiter
() =
let between_nested_delims p from =
let until = until_of_from from in
between (string from) (string until) p
>>= fun result -> return (String.concat @@ [from] @ result @ [until])
in
let between_nested_delims p =
let parsers =
match left_delimiter, right_delimiter with
| Some left_delimiter, Some right_delimiter -> [ (left_delimiter, right_delimiter) ]
| _ -> Syntax.user_defined_delimiters
in
parsers
|> List.map ~f:fst
|> List.map ~f:(between_nested_delims p)
|> choice
in
let reserved =
let parsers =
match left_delimiter, right_delimiter with
| Some left_delimiter, Some right_delimiter -> [ (left_delimiter, right_delimiter) ]
| _ -> Syntax.user_defined_delimiters
in
List.concat_map parsers ~f:(fun (from, until) -> [from; until])
in
fix (fun grammar ->
let delimsx = between_nested_delims (many grammar) in
let other = Parser.Deprecate.any_char_except ~reserved |>> String.of_char in
choice
[ comment_parser
; raw_string_literal_parser (fun ~contents ~left_delimiter:_ ~right_delimiter:_ -> contents)
; escapable_string_literal_parser (fun ~contents ~left_delimiter:_ ~right_delimiter:_ -> contents)
; spaces1
; delimsx
; other
])
let generate_delimited_hole_parser
?priority_left_delimiter:left_delimiter
?priority_right_delimiter:right_delimiter
() =
let between_nested_delims p from =
let until = until_of_from from in
between (string from) (string until) p
>>= fun result -> return (String.concat @@ [from] @ result @ [until])
in
let between_nested_delims p =
let parsers =
match left_delimiter, right_delimiter with
| Some left_delimiter, Some right_delimiter -> [ (left_delimiter, right_delimiter) ]
| _ -> Syntax.user_defined_delimiters
in
parsers
|> List.map ~f:fst
|> List.map ~f:(between_nested_delims p)
|> choice
in
let reserved =
let parsers =
match left_delimiter, right_delimiter with
| Some left_delimiter, Some right_delimiter -> [ (left_delimiter, right_delimiter) ]
| _ -> Syntax.user_defined_delimiters
in
List.concat_map parsers ~f:(fun (from, until) -> [from; until])
in
let inner =
fix (fun grammar ->
let delimsx = between_nested_delims (many grammar) in
let other = Parser.Deprecate.any_char_except ~reserved |>> String.of_char in
choice
[ comment_parser
; raw_string_literal_parser (fun ~contents ~left_delimiter:_ ~right_delimiter:_ -> contents)
; escapable_string_literal_parser (fun ~contents ~left_delimiter:_ ~right_delimiter:_ -> contents)
; spaces1
; delimsx
; other
])
in
between_nested_delims (many inner)
let escapable_literal_grammar ~right_delimiter =
match Syntax.escapable_string_literals with
| None -> zero
| Some { escape_character; _ } ->
choice
[ (string (Format.sprintf "%c%s" escape_character right_delimiter))
; (string (Format.sprintf "%c%c" escape_character escape_character))
; (Parser.Deprecate.any_char_except ~reserved:[right_delimiter] |>> String.of_char)
]
let raw_literal_grammar ~right_delimiter =
(Parser.Deprecate.any_char_except ~reserved:[right_delimiter] |>> String.of_char)
let sequence_chain ?left_delimiter ?right_delimiter (p_list : (production * 'a) t list) =
if debug then Format.printf "Sequence chain p_list size: %d@." @@ List.length p_list;
let i = ref 0 in
List.fold_right p_list ~init:(return (Unit, acc)) ~f:(fun p acc ->
let result =
if debug then Format.printf "iterate fold_right %d@." !i;
match parse_string ~consume:All p "_signal_hole" with
| Error s ->
if debug then Format.printf "Composing p with terminating parser, error %s@." s;
p *> acc
| Ok (Hole { sort; identifier; dimension; _ }, user_state) ->
begin
match sort with
| Regex -> failwith "Not supported (seq chain)"
| Alphanum ->
pos >>= fun offset ->
many1 (generate_single_hole_parser ())
>>= fun value ->
acc >>= fun _ ->
let m =
{ offset
; identifier
; text = String.concat value
}
in
r user_state (Match m)
| Non_space ->
if debug then Format.printf "Doing non_space@.";
let first_pos = ref (-1) in
let set_pos v = first_pos := v in
let get_pos () = !first_pos in
let rest =
if !i = 0 then
(if debug then Format.printf "hole until: match to the end of this level@.";
end_of_input)
else
(if debug then Format.printf "hole until: append suffix@.";
skip_unit acc)
in
(
pos >>= fun pos ->
if get_pos () = (-1) then set_pos pos;
let stop_at = choice [ rest; skip_unit reserved_parsers ] in
many1_till_stop any_char stop_at
)
>>= fun value ->
acc >>= fun _ ->
let offset =
match get_pos () with
| -1 -> failwith "Did not expect unset offset"
| offset ->
if debug then Format.printf "Offset: %d@." offset;
set_pos (-1);
offset
in
let m =
{ offset
; identifier
; text = String.of_char_list value
}
in
r user_state (Match m)
| Line ->
pos >>= fun offset ->
let allowed =
many (Parser.Deprecate.any_char_except ~reserved:["\n"])
|>> fun x -> [(String.of_char_list x)^"\n"]
in
allowed <* char '\n' >>= fun value ->
acc >>= fun _ ->
let m =
{ offset
; identifier
; text = String.concat value
}
in
r user_state (Match m)
| Expression ->
let first_pos = ref (-1) in
let set_pos v = first_pos := v in
let get_pos () = !first_pos in
let _non_space : string t =
let rest =
if !i = 0 then end_of_input
else skip_unit acc
in
(
pos >>= fun pos ->
if get_pos () = (-1) then set_pos pos;
let stop_at = choice [ rest; skip_unit reserved_parsers ] in
many1_till_stop any_char stop_at
) |>> String.of_char_list
in
let non_space =
many1 (Parser.Deprecate.any_char_except ~reserved:([" "]@Deprecate.reserved_delimiters)) |>> String.of_char_list
in
let delimited =
let rest = skip_unit acc in
(many1_till
(pos >>= fun pos ->
if debug then Format.printf "Pos is %d@." pos;
if get_pos () = (-1) then set_pos pos;
(match dimension with
| Code ->
generate_delimited_hole_parser
?priority_left_delimiter:left_delimiter
?priority_right_delimiter:right_delimiter
()
| Escapable_string_literal ->
let right_delimiter = Option.value_exn right_delimiter in
escapable_literal_grammar ~right_delimiter
| Raw_string_literal ->
let right_delimiter = Option.value_exn right_delimiter in
escapable_literal_grammar ~right_delimiter
| _ -> failwith "Unimplemented for comment"
)
)
(pos >>= fun pos ->
if get_pos () = (-1) then set_pos pos;
if debug then Format.printf "Pos is %d@." pos;
rest)
) >>| String.concat
in
(many1 @@ choice [non_space; delimited])
>>= fun value ->
acc >>= fun _ ->
let offset =
match get_pos () with
| -1 -> failwith "Did not expect unset offset"
| offset ->
if debug then Format.printf "Offset: %d@." offset;
set_pos (-1);
offset
in
let m =
{ offset
; identifier
; text = String.concat value
}
in
r user_state (Match m)
| Blank ->
pos >>= fun offset ->
many1 blank >>= fun value ->
acc >>= fun _ ->
let m =
{ offset
; identifier
; text = String.of_char_list value
}
in
r user_state (Match m)
| Everything ->
if debug then Format.printf "do hole %s@." identifier;
let rest =
if !i = 0 then
(if debug then Format.printf "hole until: match to the end of this level@.";
end_of_input)
else
(if debug then Format.printf "hole until: append suffix@.";
skip_unit acc)
in
let first_pos = ref (-1) in
let set_pos v = first_pos := v in
let get_pos () = !first_pos in
let hole_matcher =
(many_till
(pos >>= fun pos ->
if debug then Format.printf "Pos is %d@." pos;
if get_pos () = (-1) then set_pos pos;
(match dimension with
| Code -> generate_everything_hole_parser ()
| Escapable_string_literal ->
let right_delimiter = Option.value_exn right_delimiter in
escapable_literal_grammar ~right_delimiter
| Raw_string_literal ->
let right_delimiter = Option.value_exn right_delimiter in
escapable_literal_grammar ~right_delimiter
| _ -> failwith "Unimplemented for comment"
)
)
(pos >>= fun pos ->
if get_pos () = (-1) then set_pos pos;
if debug then Format.printf "Pos is %d@." pos;
rest)
) >>| String.concat
in
hole_matcher >>= fun text ->
let offset =
match get_pos () with
| -1 -> failwith "Did not expect unset offset"
| offset ->
if debug then Format.printf "Offset: %d@." offset;
set_pos (-1);
offset
in
let m =
{ offset
; identifier
; text
}
in
r user_state (Match m)
end
| Ok (_, _user_state) -> failwith "unreachable: _signal_hole parsed but not handled by Hole variant"
in
i := !i + 1;
result)
let generate_pure_spaces_parser _ignored =
spaces1 >>= fun s1 -> r acc (Template_string s1)
let generate_spaces_parser _ignored =
if debug then Format.printf "Template_spaces(%s)@." _ignored;
many1 @@
choice
[ comment_parser
; spaces1
] >>= fun result ->
r acc (Template_string (String.concat result))
(** All code can have comments interpolated *)
let generate_string_token_parser str =
if debug then Format.printf "Template_string(%s)@." str;
many comment_parser
>>= fun s1 ->
string str >>= fun result ->
r acc (Template_string (String.concat s1 ^ result))
let single_hole_parser () =
string ":[[" *> identifier_parser () <* string "]]"
let everything_hole_parser () =
string ":[" *> identifier_parser () <* string "]"
let expression_hole_parser () =
string ":[" *> identifier_parser () <* string ":e" <* string "]"
let non_space_hole_parser () =
string ":[" *> identifier_parser () <* string ".]"
let line_hole_parser () =
string ":[" *> identifier_parser () <* string "\\n]"
let blank_hole_parser () =
string ":["
*> many1 blank
*> identifier_parser ()
<* string "]"
let hole_parser sort dimension : (production * 'a) t t =
let open Hole in
let hole_parser =
match sort with
| Alphanum -> single_hole_parser ()
| Everything -> everything_hole_parser ()
| Blank -> blank_hole_parser ()
| Line -> line_hole_parser ()
| Non_space -> non_space_hole_parser ()
| Expression -> expression_hole_parser ()
| Regex -> single_hole_parser ()
in
let skip_signal hole = skip_unit (string "_signal_hole") |>> fun () -> (Hole hole, acc) in
hole_parser |>> fun identifier -> skip_signal { sort; identifier; dimension; optional = false; at_depth = None }
let reserved_holes () =
[ single_hole_parser ()
; everything_hole_parser ()
; non_space_hole_parser ()
; line_hole_parser ()
; blank_hole_parser ()
; expression_hole_parser ()
]
let generate_hole_for_literal sort ~contents ~left_delimiter ~right_delimiter () =
let literal_holes =
Hole.sorts ()
|> List.map ~f:(fun kind -> hole_parser kind sort)
|> choice
in
let _reserved_holes =
reserved_holes ()
|> List.map ~f:skip_unit
|> choice
in
let parser =
many @@
choice
[ literal_holes
; (spaces1 |>> generate_pure_spaces_parser)
; ((many1 (Parser.Deprecate.any_char_except ~reserved:[":["; " "; "\n"; "\t"; "\r"])
|>> String.of_char_list)
|>> generate_string_token_parser)
]
in
match parse_string ~consume:All parser contents with
| Ok parsers -> sequence_chain ~left_delimiter ~right_delimiter parsers
| Error _ ->
failwith "If this failure happens it is a bug: Converting a \
quoted string in the template to a parser list should \
not fail here"
let general_parser_generator : (production * 'a) t t =
let spaces : (production * 'a) t t =
many1 (comment_parser <|> spaces1) |>> fun result -> generate_spaces_parser (String.concat result)
in
let other =
(many1 (Parser.Deprecate.any_char_except ~reserved:Deprecate.reserved) |>> String.of_char_list)
|>> generate_string_token_parser
in
let code_holes =
Hole.sorts ()
|> List.map ~f:(fun kind -> hole_parser kind Code)
|> choice
in
fix (fun (generator : (production * 'a) t list t) ->
if debug then Format.printf "Descends@.";
let nested =
if debug then Format.printf "Nested@.";
choice @@
List.map Syntax.user_defined_delimiters ~f:(fun (left_delimiter, right_delimiter) ->
(string left_delimiter *> generator <* string right_delimiter)
>>= fun (g: (production * 'a) t list) ->
if debug then Format.printf "G size: %d; delim %s@." (List.length g) left_delimiter;
return @@
sequence_chain @@
[string left_delimiter >>= fun result -> r acc (Template_string result)]
@ g
@ [ string right_delimiter >>= fun result -> r acc (Template_string result)])
in
many @@ choice
[ code_holes
; raw_string_literal_parser (generate_hole_for_literal Raw_string_literal ())
; escapable_string_literal_parser (generate_hole_for_literal Escapable_string_literal ())
; spaces
; nested
; other
]
>>= fun x ->
if debug then Format.printf "Produced %d parsers in main generator@." @@ List.length x;
return x
)
|>> fun p_list ->
match p_list with
| [] ->
r acc Unit
| p_list ->
p_list
|> sequence_chain
|> fun matcher ->
match !configuration_ref.match_kind with
| Exact ->
pos >>= fun start_pos ->
if debug then Format.printf "Yes exact@.";
matcher >>= fun _access_last_production_here ->
pos >>= fun end_pos ->
end_of_input >>= fun _ ->
record_match_context start_pos end_pos;
current_environment_ref := Match.Environment.create ();
r acc Unit
| Fuzzy ->
let prefix =
choice
[ comment_parser
; (raw_string_literal_parser (fun ~contents ~left_delimiter:_ ~right_delimiter:_ -> contents))
; (escapable_string_literal_parser (fun ~contents ~left_delimiter:_ ~right_delimiter:_ -> contents))
; any_char |>> Char.to_string
]
in
let matches =
many @@
many_till (prefix >>= fun s -> r acc (String s))
begin
at_end_of_input >>= fun at_end ->
if debug then Format.printf "We are at the end? %b.@." at_end;
if at_end then fail "end"
else
pos >>= fun start_pos ->
let matched =
matcher >>= fun production ->
if debug then Format.printf "Full match context result@.";
pos >>= fun end_pos ->
record_match_context start_pos end_pos;
current_environment_ref := Match.Environment.create ();
return production
in
let no_match =
if debug then Format.printf "Failed to match and not at end.@.";
current_environment_ref := Match.Environment.create ();
fail "no match, try something else"
in
choice [ matched; no_match ]
end
in
matches >>= fun _result ->
r acc Unit
let to_template template =
let state = Buffered.parse general_parser_generator in
let state = Buffered.feed state (`String template) in
Buffered.feed state `Eof
|> function
| Buffered.Done ({ len; _ }, p) ->
if len <> 0 then failwith @@ Format.sprintf "Input left over in template where not expected: %d" len;
Ok p
| _ -> Or_error.error_string "Template could not be parsed."
let run_the_parser_for_first p source : Match.t Or_error.t =
source_ref := source;
let state = Buffered.parse p in
let state = Buffered.feed state (`String source) in
let state = Buffered.feed state `Eof in
match state with
| Buffered.Done ({ len; off; _ }, (_, _result_string)) ->
if rewrite then Format.eprintf "Result string:@.---@.%s---@." @@ Buffer.contents actual;
if len <> 0 then
(if debug then Format.eprintf "Input left over in parse where not expected: off(%d) len(%d)" off len;
Or_error.error_string "Does not match template")
else
Ok (Match.create ())
| _ -> Or_error.error_string "No matches"
let first_is_broken ?configuration:_ ?shift:_ template source : Match.t Or_error.t =
match to_template template with
| Error e -> Error e
| Ok p ->
begin match run_the_parser_for_first p source with
| Ok _ ->
begin
match !matches_ref with
| [] -> Or_error.error_string "Empty matches"
| hd::_ -> Ok hd
end
| Error e ->
Error e
end
let set_rewrite_template rewrite_template' =
rewrite_template := rewrite_template'
(** Hardcoded case when template and source are empty string. The parser logic
is too tricky for this right now. *)
let trivial =
let open Match in
let open Location in
let open Range in
let location =
{ offset = 0
; line = 1
; column = 1
}
in
let range =
{ match_start = location
; match_end = location
}
in
Match.create ~range ()
let all ?configuration ?(nested = false) ~template ~source:original_source () : Match.t list =
configuration_ref := Option.value configuration ~default:!configuration_ref;
let rec aux_all ?configuration ?(nested = false) ~template ~source () =
matches_ref := [];
if String.is_empty template && String.is_empty source then [trivial]
else match first_is_broken template source with
| Ok _
| Error _ ->
let matches = List.rev !matches_ref in
if nested then
(compute_nested_matches ?configuration ~nested template matches) @ matches
else
matches
and compute_nested_matches ?configuration ?nested template matches =
let open Match in
let open Range in
let rec aux acc matches =
match (matches : Match.t list) with
| [] -> acc
| { environment; _ }::rest ->
List.fold ~init:acc (Environment.vars environment) ~f:(fun acc v ->
let source_opt = Environment.lookup environment v in
match source_opt with
| Some source ->
let nested_matches =
let matches = aux_all ?configuration ?nested ~template ~source () in
let { match_start = ms; _ } = Option.value_exn (Environment.lookup_range environment v) in
List.map matches ~f:(fun m ->
let environment =
List.fold (Environment.vars m.environment) ~init:m.environment ~f:(fun env var ->
let open Option in
let updated : environment option =
Environment.lookup_range env var
>>| fun r ->
let range = {
match_start =
{ r.match_start with offset = ms.offset + r.match_start.offset } ;
match_end =
{ r.match_end with offset = ms.offset + r.match_end.offset }
}
in
Environment.update_range env var range
in
match updated with
| None -> env
| Some env -> env)
in
let range = {
match_start =
{ m.range.match_start with offset = ms.offset + m.range.match_start.offset } ;
match_end =
{ m.range.match_end with offset = ms.offset + m.range.match_end.offset }
}
in
{ m with range; environment })
in
acc @ nested_matches
| _ -> acc)
@ aux acc rest
in
aux [] matches
in
if nested then
let open Match in
aux_all ?configuration ~nested ~template ~source:original_source ()
|> List.sort ~compare:(fun left right -> left.range.match_start.offset - right.range.match_start.offset)
else
aux_all ?configuration ~nested ~template ~source:original_source ()
let first ?configuration ?shift:_ template source : Match.t Or_error.t =
configuration_ref := Option.value configuration ~default:!configuration_ref;
matches_ref := [];
match all ?configuration ~template ~source () with
| [] -> Or_error.error_string "No result"
| (hd::_) -> Ok hd
end