Source file context_free.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
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
open! Import
open Common
open With_errors
module E = Extension
module EC = Extension.Context
module A = Attribute
module AC = Attribute.Context
module Rule = struct
module Attr_group_inline = struct
type ('a, 'b, 'c) unpacked = {
attribute : ('b, 'c) Attribute.t;
expect : bool;
expand :
ctxt:Expansion_context.Deriver.t ->
Asttypes.rec_flag ->
'b list ->
'c option list ->
'a list;
}
type ('a, 'b) t = T : ('a, 'b, _) unpacked -> ('a, 'b) t
let attr_name (T t) = Attribute.name t.attribute
let split_normal_and_expect l =
List.partition l ~f:(fun (T t) -> not t.expect)
end
module Attr_inline = struct
type ('a, 'b, 'c) unpacked = {
attribute : ('b, 'c) Attribute.t;
expect : bool;
expand : ctxt:Expansion_context.Deriver.t -> 'b -> 'c -> 'a list;
}
type ('a, 'b) t = T : ('a, 'b, _) unpacked -> ('a, 'b) t
let attr_name (T t) = Attribute.name t.attribute
let split_normal_and_expect l =
List.partition l ~f:(fun (T t) -> not t.expect)
end
module Special_function = struct
type t = {
name : string;
ident : Longident.t;
expand : Parsetree.expression -> Parsetree.expression option;
}
end
module Constant_kind = struct
type t = Float | Integer
end
module Constant = struct
type t = {
suffix : char;
kind : Constant_kind.t;
expand : Location.t -> string -> Parsetree.expression;
}
end
module Field = struct
type 'a t =
| Extension : Extension.t t
| Special_function : Special_function.t t
| Constant : Constant.t t
| Attr_str_type_decl
: (structure_item, type_declaration) Attr_group_inline.t t
| Attr_sig_type_decl
: (signature_item, type_declaration) Attr_group_inline.t t
| Attr_str_module_type_decl
: (structure_item, module_type_declaration) Attr_inline.t t
| Attr_sig_module_type_decl
: (signature_item, module_type_declaration) Attr_inline.t t
| Attr_str_type_ext : (structure_item, type_extension) Attr_inline.t t
| Attr_sig_type_ext : (signature_item, type_extension) Attr_inline.t t
| Attr_str_exception : (structure_item, type_exception) Attr_inline.t t
| Attr_sig_exception : (signature_item, type_exception) Attr_inline.t t
| Attr_str_class_type_decl
: (structure_item, class_type_declaration) Attr_group_inline.t t
| Attr_sig_class_type_decl
: (signature_item, class_type_declaration) Attr_group_inline.t t
type (_, _) equality = Eq : ('a, 'a) equality | Ne : (_, _) equality
let eq : type a b. a t -> b t -> (a, b) equality =
fun a b ->
match (a, b) with
| Extension, Extension -> Eq
| Special_function, Special_function -> Eq
| Constant, Constant -> Eq
| Attr_str_type_decl, Attr_str_type_decl -> Eq
| Attr_sig_type_decl, Attr_sig_type_decl -> Eq
| Attr_str_type_ext, Attr_str_type_ext -> Eq
| Attr_sig_type_ext, Attr_sig_type_ext -> Eq
| Attr_str_exception, Attr_str_exception -> Eq
| Attr_sig_exception, Attr_sig_exception -> Eq
| Attr_str_module_type_decl, Attr_str_module_type_decl -> Eq
| Attr_sig_module_type_decl, Attr_sig_module_type_decl -> Eq
| Attr_str_class_type_decl, Attr_str_class_type_decl -> Eq
| Attr_sig_class_type_decl, Attr_sig_class_type_decl -> Eq
| _ -> Ne
end
type t = T : 'a Field.t * 'a -> t
type ('a, 'b, 'c) attr_group_inline =
('b, 'c) Attribute.t ->
(ctxt:Expansion_context.Deriver.t ->
Asttypes.rec_flag ->
'b list ->
'c option list ->
'a list) ->
t
type ('a, 'b, 'c) attr_inline =
('b, 'c) Attribute.t ->
(ctxt:Expansion_context.Deriver.t -> 'b -> 'c -> 'a list) ->
t
let rec filter : type a. a Field.t -> t list -> a list =
fun field l ->
match l with
| [] -> []
| T (field', x) :: l -> (
match Field.eq field field' with
| Field.Eq -> x :: filter field l
| Field.Ne -> filter field l)
let extension ext = T (Extension, ext)
let special_function id f =
T (Special_function, { name = id; ident = Longident.parse id; expand = f })
let special_function' ident f =
T (Special_function, { name = Longident.name ident; ident; expand = f })
let constant kind suffix expand = T (Constant, { suffix; kind; expand })
let attr_str_type_decl attribute expand =
T (Attr_str_type_decl, T { attribute; expand; expect = false })
let attr_sig_type_decl attribute expand =
T (Attr_sig_type_decl, T { attribute; expand; expect = false })
let attr_str_module_type_decl attribute expand =
T (Attr_str_module_type_decl, T { attribute; expand; expect = false })
let attr_sig_module_type_decl attribute expand =
T (Attr_sig_module_type_decl, T { attribute; expand; expect = false })
let attr_str_type_ext attribute expand =
T (Attr_str_type_ext, T { attribute; expand; expect = false })
let attr_sig_type_ext attribute expand =
T (Attr_sig_type_ext, T { attribute; expand; expect = false })
let attr_str_exception attribute expand =
T (Attr_str_exception, T { attribute; expand; expect = false })
let attr_sig_exception attribute expand =
T (Attr_sig_exception, T { attribute; expand; expect = false })
let attr_str_class_type_decl attribute expand =
T (Attr_str_class_type_decl, T { attribute; expand; expect = false })
let attr_sig_class_type_decl attribute expand =
T (Attr_sig_class_type_decl, T { attribute; expand; expect = false })
let attr_str_type_decl_expect attribute expand =
T (Attr_str_type_decl, T { attribute; expand; expect = true })
let attr_sig_type_decl_expect attribute expand =
T (Attr_sig_type_decl, T { attribute; expand; expect = true })
let attr_str_module_type_decl_expect attribute expand =
T (Attr_str_module_type_decl, T { attribute; expand; expect = true })
let attr_sig_module_type_decl_expect attribute expand =
T (Attr_sig_module_type_decl, T { attribute; expand; expect = true })
let attr_str_type_ext_expect attribute expand =
T (Attr_str_type_ext, T { attribute; expand; expect = true })
let attr_sig_type_ext_expect attribute expand =
T (Attr_sig_type_ext, T { attribute; expand; expect = true })
let attr_str_exception_expect attribute expand =
T (Attr_str_exception, T { attribute; expand; expect = true })
let attr_sig_exception_expect attribute expand =
T (Attr_sig_exception, T { attribute; expand; expect = true })
let attr_str_class_type_decl_expect attribute expand =
T (Attr_str_class_type_decl, T { attribute; expand; expect = true })
let attr_sig_class_type_decl_expect attribute expand =
T (Attr_sig_class_type_decl, T { attribute; expand; expect = true })
end
module Generated_code_hook = struct
type 'a single_or_many = Single of 'a | Many of 'a list
type t = {
f : 'a. 'a Extension.Context.t -> Location.t -> 'a single_or_many -> unit;
}
let nop = { f = (fun _ _ _ -> ()) }
let replace t context loc x = t.f context loc x
let insert_after t context (loc : Location.t) x =
match x with
| Many [] -> ()
| _ -> t.f context { loc with loc_start = loc.loc_end } x
end
let wrap_extension : type a. loc:Location.t -> a EC.t -> a -> extension -> a =
fun ~loc t original_node extension ->
match t with
| EC.Class_expr -> Ast_builder.Default.pcl_extension ~loc extension
| EC.Class_field -> Ast_builder.Default.pcf_extension ~loc extension
| EC.Class_type -> Ast_builder.Default.pcty_extension ~loc extension
| EC.Class_type_field -> Ast_builder.Default.pctf_extension ~loc extension
| EC.Core_type -> Ast_builder.Default.ptyp_extension ~loc extension
| EC.Expression -> Ast_builder.Default.pexp_extension ~loc extension
| EC.Module_expr -> Ast_builder.Default.pmod_extension ~loc extension
| EC.Module_type -> Ast_builder.Default.pmty_extension ~loc extension
| EC.Pattern -> Ast_builder.Default.ppat_extension ~loc extension
| EC.Signature_item -> Ast_builder.Default.psig_extension ~loc extension []
| EC.Structure_item -> Ast_builder.Default.pstr_extension ~loc extension []
| EC.Ppx_import ->
let ptype_manifest =
Some (Ast_builder.Default.ptyp_extension ~loc extension)
in
{ original_node with ptype_manifest }
let exn_to_extension exn =
let error = exn_to_loc_error exn in
let loc = Location.Error.get_location error in
let extension = Location.Error.to_extension error in
(extension, loc)
let exn_to_error_extension context original_node exn =
let extension, loc = exn_to_extension exn in
wrap_extension ~loc context original_node extension
let exn_to_stri exn =
let extension, loc = exn_to_extension exn in
Ast_builder.Default.pstr_extension ~loc extension []
let exn_to_sigi exn =
let extension, loc = exn_to_extension exn in
Ast_builder.Default.psig_extension ~loc extension []
let rec map_node_rec context ts super_call loc base_ctxt x ~embed_errors =
let ctxt =
Expansion_context.Extension.make ~extension_point_loc:loc ~base:base_ctxt ()
in
match EC.get_extension context x with
| None -> super_call base_ctxt x
| Some (ext, attrs) -> (
(try
E.For_context.convert_res ts ~ctxt ext
|> With_errors.of_result ~default:None
with exn when embed_errors ->
With_errors.return (Some (exn_to_error_extension context x exn)))
>>= fun converted ->
match converted with
| None -> super_call base_ctxt x
| Some x ->
EC.merge_attributes_res context x attrs
|> With_errors.of_result ~default:x
>>= fun x ->
map_node_rec context ts super_call loc base_ctxt x ~embed_errors)
let map_node context ts super_call loc base_ctxt x ~hook ~embed_errors =
let ctxt =
Expansion_context.Extension.make ~extension_point_loc:loc ~base:base_ctxt ()
in
match EC.get_extension context x with
| None -> super_call base_ctxt x
| Some (ext, attrs) -> (
(try
E.For_context.convert_res ts ~ctxt ext
|> With_errors.of_result ~default:None
with exn when embed_errors ->
With_errors.return (Some (exn_to_error_extension context x exn)))
>>= fun converted ->
match converted with
| None -> super_call base_ctxt x
| Some x ->
map_node_rec context ts super_call loc base_ctxt
(EC.merge_attributes context x attrs)
~embed_errors
>>| fun generated_code ->
Generated_code_hook.replace hook context loc (Single generated_code);
generated_code)
let rec map_nodes context ts super_call get_loc base_ctxt l ~hook ~embed_errors
~in_generated_code =
match l with
| [] -> return []
| x :: l -> (
match EC.get_extension context x with
| None ->
super_call base_ctxt x >>= fun x ->
map_nodes context ts super_call get_loc base_ctxt l ~hook
~embed_errors ~in_generated_code
>>| fun l -> x :: l
| Some (ext, attrs) -> (
let extension_point_loc = get_loc x in
let ctxt =
Expansion_context.Extension.make ~extension_point_loc
~base:base_ctxt ()
in
(try
E.For_context.convert_inline_res ts ~ctxt ext
|> With_errors.of_result ~default:None
with exn when embed_errors ->
With_errors.return (Some [ exn_to_error_extension context x exn ]))
>>= function
| None ->
super_call base_ctxt x >>= fun x ->
map_nodes context ts super_call get_loc base_ctxt l ~hook
~embed_errors ~in_generated_code
>>| fun l -> x :: l
| Some converted ->
((), attributes_errors attrs) >>= fun () ->
map_nodes context ts super_call get_loc base_ctxt converted ~hook
~embed_errors ~in_generated_code:true
>>= fun generated_code ->
if not in_generated_code then
Generated_code_hook.replace hook context extension_point_loc
(Many generated_code);
map_nodes context ts super_call get_loc base_ctxt l ~hook
~embed_errors ~in_generated_code
>>| fun code -> generated_code @ code))
let map_nodes = map_nodes ~in_generated_code:false
let table_of_special_functions special_functions =
match
List.map special_functions
~f:(fun { Rule.Special_function.ident; expand; _ } -> (ident, expand))
|> Hashtbl.of_alist ~size:(max 1024 (List.length special_functions * 2))
with
| Ok table -> table
| Error ident ->
Printf.ksprintf invalid_arg
"Context_free.V1.map_top_down: %s present twice in list of special \
functions"
(List.find_map_exn special_functions ~f:(fun r ->
if Poly.equal r.ident ident then Some r.name else None))
let rec get_group attr l =
match l with
| [] -> return None
| x :: l -> (
get_group attr l >>= fun group ->
Attribute.get_res attr x |> of_result ~default:None >>| fun attr2 ->
match (attr2, group) with
| None, None -> None
| None, Some vals -> Some (None :: vals)
| Some value, None -> Some (Some value :: List.map l ~f:(fun _ -> None))
| Some value, Some vals -> Some (Some value :: vals))
let rev_concat = function
| [] -> []
| [ x ] -> x
| [ x; y ] -> y @ x
| l -> List.concat (List.rev l)
let sort_attr_group_inline l =
List.sort l ~cmp:(fun a b ->
String.compare
(Rule.Attr_group_inline.attr_name a)
(Rule.Attr_group_inline.attr_name b))
let sort_attr_inline l =
List.sort l ~cmp:(fun a b ->
String.compare
(Rule.Attr_inline.attr_name a)
(Rule.Attr_inline.attr_name b))
let context_free_attribute_modification ~loc =
Error
( Location.Error.createf ~loc
"A context-free rule deleted or added attribues of a str/sig item",
[] )
let handle_attr_group_inline attrs rf ~items ~expanded_items ~loc ~base_ctxt
~embed_errors ~convert_exn =
List.fold_left attrs ~init:(return [])
~f:(fun acc (Rule.Attr_group_inline.T group) ->
acc >>= fun acc ->
get_group group.attribute items >>= fun g1 ->
get_group group.attribute expanded_items >>= fun g2 ->
match (g1, g2) with
| None, None -> return acc
| None, Some _ | Some _, None ->
context_free_attribute_modification ~loc |> of_result ~default:acc
| Some values, Some _ -> (
let ctxt =
Expansion_context.Deriver.make ~derived_item_loc:loc
~inline:group.expect ~base:base_ctxt ()
in
try
let expect_items = group.expand ~ctxt rf expanded_items values in
return (expect_items :: acc)
with exn when embed_errors ->
let error_item = [ convert_exn exn ] in
return (error_item :: acc)))
let handle_attr_inline attrs ~convert_exn ~item ~expanded_item ~loc ~base_ctxt
~embed_errors =
List.fold_left attrs ~init:(return []) ~f:(fun acc (Rule.Attr_inline.T a) ->
acc >>= fun acc ->
Attribute.get_res a.attribute item |> of_result ~default:None
>>= fun g1 ->
Attribute.get_res a.attribute expanded_item |> of_result ~default:None
>>= fun g2 ->
match (g1, g2) with
| None, None -> return acc
| None, Some _ | Some _, None ->
context_free_attribute_modification ~loc |> of_result ~default:acc
| Some value, Some _ -> (
let ctxt =
Expansion_context.Deriver.make ~derived_item_loc:loc
~inline:a.expect ~base:base_ctxt ()
in
try
let expect_items = a.expand ~ctxt expanded_item value in
return (expect_items :: acc)
with exn when embed_errors ->
let error_item = [ convert_exn exn ] in
return (error_item :: acc)))
module Expect_mismatch_handler = struct
type t = {
f : 'a. 'a Attribute.Floating.Context.t -> Location.t -> 'a list -> unit;
}
let nop = { f = (fun _ _ _ -> ()) }
end
class map_top_down ?(expect_mismatch_handler = Expect_mismatch_handler.nop)
?(generated_code_hook = Generated_code_hook.nop) ?(embed_errors = false) rules
=
let hook = generated_code_hook in
let special_functions =
Rule.filter Special_function rules |> table_of_special_functions
in
let constants =
Rule.filter Constant rules
|> List.map ~f:(fun (c : Rule.Constant.t) -> ((c.suffix, c.kind), c.expand))
|> Hashtbl.of_alist_exn
in
let extensions = Rule.filter Extension rules in
let class_expr = E.filter_by_context EC.class_expr extensions
and class_field = E.filter_by_context EC.class_field extensions
and class_type = E.filter_by_context EC.class_type extensions
and class_type_field = E.filter_by_context EC.class_type_field extensions
and core_type = E.filter_by_context EC.core_type extensions
and expression = E.filter_by_context EC.expression extensions
and module_expr = E.filter_by_context EC.module_expr extensions
and module_type = E.filter_by_context EC.module_type extensions
and pattern = E.filter_by_context EC.pattern extensions
and signature_item = E.filter_by_context EC.signature_item extensions
and structure_item = E.filter_by_context EC.structure_item extensions
and ppx_import = E.filter_by_context EC.Ppx_import extensions in
let attr_str_type_decls, attr_str_type_decls_expect =
Rule.filter Attr_str_type_decl rules
|> sort_attr_group_inline |> Rule.Attr_group_inline.split_normal_and_expect
in
let attr_sig_type_decls, attr_sig_type_decls_expect =
Rule.filter Attr_sig_type_decl rules
|> sort_attr_group_inline |> Rule.Attr_group_inline.split_normal_and_expect
in
let attr_str_module_type_decls, attr_str_module_type_decls_expect =
Rule.filter Attr_str_module_type_decl rules
|> sort_attr_inline |> Rule.Attr_inline.split_normal_and_expect
in
let attr_sig_module_type_decls, attr_sig_module_type_decls_expect =
Rule.filter Attr_sig_module_type_decl rules
|> sort_attr_inline |> Rule.Attr_inline.split_normal_and_expect
in
let attr_str_type_exts, attr_str_type_exts_expect =
Rule.filter Attr_str_type_ext rules
|> sort_attr_inline |> Rule.Attr_inline.split_normal_and_expect
in
let attr_sig_type_exts, attr_sig_type_exts_expect =
Rule.filter Attr_sig_type_ext rules
|> sort_attr_inline |> Rule.Attr_inline.split_normal_and_expect
in
let attr_str_exceptions, attr_str_exceptions_expect =
Rule.filter Attr_str_exception rules
|> sort_attr_inline |> Rule.Attr_inline.split_normal_and_expect
in
let attr_sig_exceptions, attr_sig_exceptions_expect =
Rule.filter Attr_sig_exception rules
|> sort_attr_inline |> Rule.Attr_inline.split_normal_and_expect
in
let attr_str_class_decls, attr_str_class_decls_expect =
Rule.filter Attr_str_class_type_decl rules
|> sort_attr_group_inline |> Rule.Attr_group_inline.split_normal_and_expect
in
let attr_sig_class_decls, attr_sig_class_decls_expect =
Rule.filter Attr_sig_class_type_decl rules
|> sort_attr_group_inline |> Rule.Attr_group_inline.split_normal_and_expect
in
let map_node = map_node ~hook ~embed_errors in
let map_nodes = map_nodes ~hook ~embed_errors in
let handle_attr_group_inline = handle_attr_group_inline ~embed_errors in
let handle_attr_inline = handle_attr_inline ~embed_errors in
object (self)
inherit Ast_traverse.map_with_expansion_context_and_errors as super
method! location _ x = return x
method! core_type base_ctxt x =
map_node EC.core_type core_type super#core_type x.ptyp_loc base_ctxt x
method! pattern base_ctxt x =
map_node EC.pattern pattern super#pattern x.ppat_loc base_ctxt x
method! expression base_ctxt e =
let with_context =
Attribute.get_res Ast_traverse.enter_value e |> of_result ~default:None
>>= fun option ->
match option with
| None -> return (base_ctxt, e)
| Some { loc; txt } ->
Attribute.remove_seen_res Expression
[ T Ast_traverse.enter_value ]
e
|> of_result ~default:e
>>| fun e ->
(Expansion_context.Base.enter_value ~loc txt base_ctxt, e)
in
with_context >>= fun (base_ctxt, e) ->
let expanded =
match e.pexp_desc with
| Pexp_extension _ ->
map_node EC.expression expression
(fun _ e -> return e)
e.pexp_loc base_ctxt e
| _ -> return e
in
expanded >>= fun e ->
let expand_constant kind char text =
match Hashtbl.find_opt constants (char, kind) with
| None -> super#expression base_ctxt e
| Some expand -> self#expression base_ctxt (expand e.pexp_loc text)
in
match e.pexp_desc with
| Pexp_apply (({ pexp_desc = Pexp_ident id; _ } as func), args) -> (
match Hashtbl.find_opt special_functions id.txt with
| None ->
self#pexp_apply_without_traversing_function base_ctxt e func args
| Some pattern -> (
let generated_code =
try return (pattern e)
with exn when embed_errors ->
return (Some (exn_to_error_extension EC.expression e exn))
in
generated_code >>= fun expr ->
match expr with
| None ->
self#pexp_apply_without_traversing_function base_ctxt e func
args
| Some e -> self#expression base_ctxt e))
| Pexp_ident id -> (
match Hashtbl.find_opt special_functions id.txt with
| None -> super#expression base_ctxt e
| Some pattern -> (
let generated_code =
try return (pattern e)
with exn when embed_errors ->
return (Some (exn_to_error_extension EC.expression e exn))
in
generated_code >>= fun expr ->
match expr with
| None -> super#expression base_ctxt e
| Some e -> self#expression base_ctxt e))
| Pexp_constant (Pconst_integer (s, Some c)) -> (
try expand_constant Integer c s
with exn when embed_errors ->
return (exn_to_error_extension EC.expression e exn))
| Pexp_constant (Pconst_float (s, Some c)) -> (
try expand_constant Float c s
with exn when embed_errors ->
return (exn_to_error_extension EC.expression e exn))
| _ -> super#expression base_ctxt e
method private pexp_apply_without_traversing_function base_ctxt e func args
=
let { pexp_desc = _; pexp_loc; pexp_attributes; pexp_loc_stack } = e in
let func =
let { pexp_desc; pexp_loc; pexp_attributes; pexp_loc_stack } = func in
self#attributes base_ctxt pexp_attributes >>| fun pexp_attributes ->
{
pexp_desc;
pexp_loc ;
pexp_attributes;
pexp_loc_stack;
}
in
func >>= fun func ->
let args =
List.map args ~f:(fun (lab, exp) ->
self#expression base_ctxt exp >>| fun exp -> (lab, exp))
|> combine_errors
in
args >>= fun args ->
self#attributes base_ctxt pexp_attributes >>| fun pexp_attributes ->
{
pexp_loc;
pexp_attributes;
pexp_desc = Pexp_apply (func, args);
pexp_loc_stack;
}
method! class_type base_ctxt x =
map_node EC.class_type class_type super#class_type x.pcty_loc base_ctxt x
method! class_type_field base_ctxt x =
map_node EC.class_type_field class_type_field super#class_type_field
x.pctf_loc base_ctxt x
method! class_expr base_ctxt x =
map_node EC.class_expr class_expr super#class_expr x.pcl_loc base_ctxt x
method! class_field base_ctxt x =
map_node EC.class_field class_field super#class_field x.pcf_loc base_ctxt
x
method! module_type base_ctxt x =
map_node EC.module_type module_type super#module_type x.pmty_loc base_ctxt
x
method! module_expr base_ctxt x =
(
Attribute.get_res Ast_traverse.enter_module x |> of_result ~default:None
>>= function
| None -> return (base_ctxt, x)
| Some { loc; txt } ->
Attribute.remove_seen_res Module_expr
[ T Ast_traverse.enter_module ]
x
|> of_result ~default:x
>>| fun x ->
(Expansion_context.Base.enter_module ~loc txt base_ctxt, x))
>>= fun (base_ctxt, x) ->
map_node EC.module_expr module_expr super#module_expr x.pmod_loc base_ctxt
x
method! structure_item base_ctxt x =
map_node EC.structure_item structure_item super#structure_item x.pstr_loc
base_ctxt x
method! signature_item base_ctxt x =
map_node EC.signature_item signature_item super#signature_item x.psig_loc
base_ctxt x
method! class_structure base_ctxt { pcstr_self; pcstr_fields } =
self#pattern base_ctxt pcstr_self >>= fun pcstr_self ->
map_nodes EC.class_field class_field super#class_field
(fun x -> x.pcf_loc)
base_ctxt pcstr_fields
>>| fun pcstr_fields -> { pcstr_self; pcstr_fields }
method! type_declaration base_ctxt x =
map_node EC.Ppx_import ppx_import super#type_declaration x.ptype_loc
base_ctxt x
method! class_signature base_ctxt { pcsig_self; pcsig_fields } =
self#core_type base_ctxt pcsig_self >>= fun pcsig_self ->
map_nodes EC.class_type_field class_type_field super#class_type_field
(fun x -> x.pctf_loc)
base_ctxt pcsig_fields
>>| fun pcsig_fields -> { pcsig_self; pcsig_fields }
method! structure base_ctxt st =
let rec item ~ ~expect_items ~rest
~in_generated_code =
loop (rev_concat extra_items) ~in_generated_code:true
>>= fun ->
if not in_generated_code then
Generated_code_hook.insert_after hook Structure_item item.pstr_loc
(Many extra_items);
let original_rest = rest in
loop rest ~in_generated_code >>= fun rest ->
(match expect_items with
| [] -> return ()
| _ ->
let expected = rev_concat expect_items in
let pos = item.pstr_loc.loc_end in
Code_matcher.match_structure_res original_rest ~pos ~expected
~mismatch_handler:(fun loc repl ->
expect_mismatch_handler.f Structure_item loc repl)
|> of_result ~default:())
>>| fun () -> item :: (extra_items @ rest)
and loop st ~in_generated_code =
match st with
| [] -> return []
| item :: rest -> (
let loc = item.pstr_loc in
match item.pstr_desc with
| Pstr_extension (ext, attrs) -> (
let extension_point_loc = item.pstr_loc in
let ctxt =
Expansion_context.Extension.make ~extension_point_loc
~base:base_ctxt ()
in
E.For_context.convert_inline_res structure_item ~ctxt ext
|> of_result ~default:None
>>= function
| None ->
super#structure_item base_ctxt item >>= fun item ->
self#structure base_ctxt rest >>| fun rest -> item :: rest
| Some items ->
((), attributes_errors attrs) >>= fun () ->
loop items ~in_generated_code:true >>= fun items ->
if not in_generated_code then
Generated_code_hook.replace hook Structure_item
item.pstr_loc (Many items);
loop rest ~in_generated_code >>| fun rest -> items @ rest)
| _ -> (
super#structure_item base_ctxt item >>= fun expanded_item ->
let convert_exn = exn_to_stri in
match (item.pstr_desc, expanded_item.pstr_desc) with
| Pstr_type (rf, tds), Pstr_type (exp_rf, exp_tds) ->
assert (Poly.(rf = exp_rf));
handle_attr_group_inline attr_str_type_decls rf ~items:tds
~expanded_items:exp_tds ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_group_inline attr_str_type_decls_expect rf
~items:tds ~expanded_items:exp_tds ~loc ~base_ctxt
~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Pstr_modtype mtd, Pstr_modtype exp_mtd ->
handle_attr_inline attr_str_module_type_decls ~item:mtd
~expanded_item:exp_mtd ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_inline attr_str_module_type_decls_expect
~item:mtd ~expanded_item:exp_mtd ~loc ~base_ctxt
~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Pstr_typext te, Pstr_typext exp_te ->
handle_attr_inline attr_str_type_exts ~item:te
~expanded_item:exp_te ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_inline attr_str_type_exts_expect ~item:te
~expanded_item:exp_te ~loc ~base_ctxt ~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Pstr_exception ec, Pstr_exception exp_ec ->
handle_attr_inline attr_str_exceptions ~item:ec
~expanded_item:exp_ec ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_inline attr_str_exceptions_expect ~item:ec
~expanded_item:exp_ec ~loc ~base_ctxt ~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Pstr_class_type cds, Pstr_class_type exp_cds ->
handle_attr_group_inline attr_str_class_decls Nonrecursive
~items:cds ~expanded_items:exp_cds ~loc ~base_ctxt
~convert_exn
>>= fun ->
handle_attr_group_inline attr_str_class_decls_expect
Nonrecursive ~items:cds ~expanded_items:exp_cds ~loc
~base_ctxt ~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| _, _ ->
self#structure base_ctxt rest >>| fun rest ->
expanded_item :: rest))
in
loop st ~in_generated_code:false
method! signature base_ctxt sg =
let rec item ~ ~expect_items ~rest
~in_generated_code =
loop (rev_concat extra_items) ~in_generated_code:true
>>= fun ->
if not in_generated_code then
Generated_code_hook.insert_after hook Signature_item item.psig_loc
(Many extra_items);
let original_rest = rest in
loop rest ~in_generated_code >>= fun rest ->
(match expect_items with
| [] -> return ()
| _ ->
let expected = rev_concat expect_items in
let pos = item.psig_loc.loc_end in
Code_matcher.match_signature_res original_rest ~pos ~expected
~mismatch_handler:(fun loc repl ->
expect_mismatch_handler.f Signature_item loc repl)
|> of_result ~default:())
>>| fun () -> item :: (extra_items @ rest)
and loop sg ~in_generated_code =
match sg with
| [] -> return []
| item :: rest -> (
let loc = item.psig_loc in
match item.psig_desc with
| Psig_extension (ext, attrs) -> (
let extension_point_loc = item.psig_loc in
let ctxt =
Expansion_context.Extension.make ~extension_point_loc
~base:base_ctxt ()
in
E.For_context.convert_inline_res signature_item ~ctxt ext
|> of_result ~default:None
>>= function
| None ->
super#signature_item base_ctxt item >>= fun item ->
self#signature base_ctxt rest >>| fun rest -> item :: rest
| Some items ->
((), attributes_errors attrs) >>= fun () ->
loop items ~in_generated_code:true >>= fun items ->
if not in_generated_code then
Generated_code_hook.replace hook Signature_item
item.psig_loc (Many items);
loop rest ~in_generated_code >>| fun rest -> items @ rest)
| _ -> (
super#signature_item base_ctxt item >>= fun expanded_item ->
let convert_exn = exn_to_sigi in
match (item.psig_desc, expanded_item.psig_desc) with
| Psig_type (rf, tds), Psig_type (exp_rf, exp_tds) ->
assert (Poly.(rf = exp_rf));
handle_attr_group_inline attr_sig_type_decls rf ~items:tds
~expanded_items:exp_tds ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_group_inline attr_sig_type_decls_expect rf
~items:tds ~expanded_items:exp_tds ~loc ~base_ctxt
~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Psig_modtype mtd, Psig_modtype exp_mtd ->
handle_attr_inline attr_sig_module_type_decls ~item:mtd
~expanded_item:exp_mtd ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_inline attr_sig_module_type_decls_expect
~item:mtd ~expanded_item:exp_mtd ~loc ~base_ctxt
~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Psig_typext te, Psig_typext exp_te ->
handle_attr_inline attr_sig_type_exts ~item:te
~expanded_item:exp_te ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_inline attr_sig_type_exts_expect ~item:te
~expanded_item:exp_te ~loc ~base_ctxt ~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Psig_exception ec, Psig_exception exp_ec ->
handle_attr_inline attr_sig_exceptions ~item:ec
~expanded_item:exp_ec ~loc ~base_ctxt ~convert_exn
>>= fun ->
handle_attr_inline attr_sig_exceptions_expect ~item:ec
~expanded_item:exp_ec ~loc ~base_ctxt ~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| Psig_class_type cds, Psig_class_type exp_cds ->
handle_attr_group_inline attr_sig_class_decls Nonrecursive
~items:cds ~expanded_items:exp_cds ~loc ~base_ctxt
~convert_exn
>>= fun ->
handle_attr_group_inline attr_sig_class_decls_expect
Nonrecursive ~items:cds ~expanded_items:exp_cds ~loc
~base_ctxt ~convert_exn
>>= fun expect_items ->
with_extra_items expanded_item ~extra_items ~expect_items
~rest ~in_generated_code
| _, _ ->
self#signature base_ctxt rest >>| fun rest ->
expanded_item :: rest))
in
loop sg ~in_generated_code:false
end