-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_spatch.ml
922 lines (812 loc) · 29.5 KB
/
main_spatch.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
(*
* The author disclaims copyright to this source code. In place of
* a legal notice, here is a blessing:
*
* May you do good and not evil.
* May you find forgiveness for yourself and forgive others.
* May you share freely, never taking more than you give.
*)
open Common
open Parse_info
module PI = Parse_info
module R = Refactoring_code
(*****************************************************************************)
(* Purpose *)
(*****************************************************************************)
(*
* A syntactical patch. https://github.com/facebook/pfff/wiki/Spatch
* Right now there is support for PHP, C/C++/ObjectiveC, OCaml, Java, and
* Javascript.
*
* opti: git grep xxx | xargs spatch -e 's/foo()/bar()/'
*
*
* Alternatives:
* - you could also just write a sgrep that put a special mark to the
* place where it matched and then do the transformation using an
* emacs macro leveraging those marks.
*
* related:
* - http://www.jetbrains.com/idea/documentation/ssr.html
*)
(*****************************************************************************)
(* Flags *)
(*****************************************************************************)
let verbose = ref false
let spatch_file = ref ""
let sed_string = ref ""
(* todo: infer from basename argv(0) ? *)
let lang = ref "php"
let apply_patch = ref false
(* too experimental for now *)
let pretty_printer = ref false
let case_sensitive = ref false
(* action mode *)
let action = ref ""
(*****************************************************************************)
(* Wrappers *)
(*****************************************************************************)
let pr2 s =
if !verbose then Common.pr2 s
(*****************************************************************************)
(* Language specific *)
(*****************************************************************************)
let parse_pattern file =
match !lang with
| "php" ->
Left (Spatch_php.parse file)
| "c++" | "ml" | "js" | "java" | "phpfuzzy" ->
let parse str =
Common2.with_tmp_file ~str ~ext:"cpp" (fun tmpfile ->
(* for now we abuse the fuzzy parser of C++ for other languages
* as the pattern should be the same in all those languages
* (the main difference between those languages from the
* fuzzy parser point of view is the syntax for comments).
*)
Parse_cpp.parse_fuzzy tmpfile +> fst
)
in
Right (Spatch_fuzzy.parse
~pattern_of_string:parse
~ii_of_pattern:Ast_fuzzy.ii_of_trees
file)
| _ -> failwith ("unsupported language: " ^ !lang)
(* less: factorize with main_sgrep *)
let find_source_files_of_dir_or_files xs =
let xs = List.map Common.realpath xs in
(match !lang with
| "php" | "phpfuzzy" -> Lib_parsing_php.find_php_files_of_dir_or_files xs
| "c++" -> Lib_parsing_cpp.find_source_files_of_dir_or_files xs
| "ml" -> Lib_parsing_ml.find_ml_files_of_dir_or_files xs
| "java" -> Lib_parsing_java.find_source_files_of_dir_or_files xs
| "js" -> Lib_parsing_js.find_source_files_of_dir_or_files xs
| _ -> failwith ("unsupported language: " ^ !lang)
) +> Skip_code.filter_files_if_skip_list ~verbose:!verbose
let spatch pattern file =
match !lang, pattern with
| "php", Left pattern ->
(try
Spatch_php.spatch ~case_sensitive:!case_sensitive pattern file
with Parse_php.Parse_error tok ->
failwith ("PARSING PB: " ^ Parse_info.error_message_info tok);
)
| "c++", Right pattern ->
let trees, toks =
try
Common.save_excursion Flag_parsing_cpp.verbose_lexing false (fun () ->
Parse_cpp.parse_fuzzy file
)
with exn ->
pr2 (spf "PB with %s, exn = %s" file (Common.exn_to_s exn));
[], []
in
let was_modified = Spatch_fuzzy.spatch pattern trees in
let elt_and_info_of_tok tok =
Token_helpers_cpp.elt_of_tok tok, Token_helpers_cpp.info_of_tok tok
in
let unparse toks =
Lib_unparser.string_of_toks_using_transfo ~elt_and_info_of_tok toks
in
if was_modified
then Some (unparse toks)
else None
| "ml", Right pattern ->
let trees, toks =
try
Parse_ml.parse_fuzzy file
with exn ->
pr2 (spf "PB with %s, exn = %s" file (Common.exn_to_s exn));
[], []
in
let was_modified = Spatch_fuzzy.spatch pattern trees in
let elt_and_info_of_tok tok =
Token_helpers_ml.elt_of_tok tok, Token_helpers_ml.info_of_tok tok
in
let unparse toks =
Lib_unparser.string_of_toks_using_transfo ~elt_and_info_of_tok toks
in
if was_modified
then Some (unparse toks)
else None
| "phpfuzzy", Right pattern ->
let trees, toks =
try
Parse_php.parse_fuzzy file
with exn ->
pr2 (spf "PB with %s, exn = %s" file (Common.exn_to_s exn));
[], []
in
let was_modified = Spatch_fuzzy.spatch pattern trees in
let elt_and_info_of_tok tok =
Token_helpers_php.elt_of_tok tok, Token_helpers_php.info_of_tok tok
in
let unparse toks =
Lib_unparser.string_of_toks_using_transfo ~elt_and_info_of_tok toks
in
if was_modified
then Some (unparse toks)
else None
| "java", Right pattern ->
let trees, toks =
try
Parse_java.parse_fuzzy file
with exn ->
pr2 (spf "PB with %s, exn = %s" file (Common.exn_to_s exn));
[], []
in
let was_modified = Spatch_fuzzy.spatch pattern trees in
let elt_and_info_of_tok tok =
Token_helpers_java.elt_of_tok tok, Token_helpers_java.info_of_tok tok
in
let unparse toks =
Lib_unparser.string_of_toks_using_transfo ~elt_and_info_of_tok toks
in
if was_modified
then Some (unparse toks)
else None
| "js", Right pattern ->
let trees, toks =
try
Parse_js.parse_fuzzy file
with exn ->
pr2 (spf "PB with %s, exn = %s" file (Common.exn_to_s exn));
[], []
in
let was_modified = Spatch_fuzzy.spatch pattern trees in
let elt_and_info_of_tok tok =
Token_helpers_js.elt_of_tok tok, Token_helpers_js.info_of_tok tok
in
let unparse toks =
Lib_unparser.string_of_toks_using_transfo ~elt_and_info_of_tok toks
in
if was_modified
then Some (unparse toks)
else None
| _ -> failwith ("unsupported language: " ^ !lang)
(*****************************************************************************)
(* Main action *)
(*****************************************************************************)
let main_action xs =
let spatch_file =
match !spatch_file, !sed_string with
| "", "" ->
failwith "I need a semantic patch file; use -f"
| "", s ->
(* does not handle nested /, does not handle s# alternate
* syntax as in perl, does not handle much ...
*)
if s =~ "s/\\(.*\\)/\\(.*\\)/"
then begin
let (before, after) = Common.matched2 s in
let tmpfile = Common.new_temp_file "spatch" ".spatch" in
Common.with_open_outfile tmpfile (fun (pr, _chan) ->
pr (spf "- %s\n" before);
if after <> ""
then pr (spf "+ %s\n" after);
);
tmpfile
end
else failwith ("wrong format, use s/.../.../ not: " ^ s)
| s, "" ->
!spatch_file
| s1, s2 ->
failwith "Can't use -f and -e at the same time"
in
Logger.log Config_pfff.logger "spatch" (Some (Common.read_file spatch_file));
let pattern = parse_pattern spatch_file in
let files = find_source_files_of_dir_or_files xs in
files +> Common_extra.progress ~show:!verbose (fun k ->
List.iter (fun file->
k();
let resopt = spatch pattern file in
resopt +> Common.do_option (fun (s) ->
pr2 (spf "transforming: %s" file);
let tmpfile = Common.new_temp_file "trans" ".spatch" in
Common.write_file ~file:tmpfile s;
if !pretty_printer && !lang =$= "php"
then Unparse_pretty_print_mix.pretty_print_when_need_it
~oldfile:file ~newfile:tmpfile;
let diff = Common2.unix_diff file tmpfile in
diff +> List.iter pr;
if !apply_patch
then Common.write_file ~file:file (Common.read_file tmpfile);
)
))
(*****************************************************************************)
(* Helpers for PHP *)
(*****************************************************************************)
(* Some helper functions when using the low-level transformation API of pfff.
* You should use the spatch DSL if you can.
*)
type transformation = {
(* Works by side effect on the tokens in the AST, see the transfo field.
* It returns a boolean indicating whether any transformation was done.
*)
trans_func: Ast_php.program -> bool;
(* optimisation; if a file does not contain certain keywords we don't
* even have to parse it
*)
grep_keywords: string list option;
}
let apply_transfo transfo xs =
let files = Lib_parsing_php.find_php_files_of_dir_or_files xs in
let pbs = ref [] in
(* xhp and transformation was not mixing well, but now it's better
* thanks to builtin xhp support
*)
Flag_parsing_php.show_parsing_error := false;
Flag_parsing_php.verbose_lexing := false;
files +> Common_extra.progress (fun k -> List.iter (fun file ->
let file = Common2.relative_to_absolute file in
pr2 (spf "processing: %s" file);
k();
let worth_trying =
match transfo.grep_keywords with
| None -> true
| Some xs -> Common2.contain_any_token_with_egrep xs file
in
if not worth_trying then ()
else
try (
let (ast, toks) =
try
Parse_php.ast_and_tokens file
with Parse_php.Parse_error err ->
Common.pr2 (spf "warning: parsing problem in %s" file);
[], []
in
let was_modified = transfo.trans_func ast in
(* old:
* let patch = Patch.generate_patch !edition_cmds
* ~filename_in_project:file file in
* patch +> List.iter pr
*)
if was_modified then begin
let s =
Unparse_php.string_of_program_with_comments_using_transfo (ast, toks)
in
let tmpfile = Common.new_temp_file "trans" ".php" in
Common.write_file ~file:tmpfile s;
let diff = Common2.unix_diff file tmpfile in
diff +> List.iter pr;
if !apply_patch
then Common.write_file ~file:file s;
end
) with exn ->
Common.push2 (spf "PB with %s, exn = %s" file (Common.exn_to_s exn)) pbs;
));
!pbs +> List.iter Common.pr2
let apply_refactoring refactoring file =
let ast_and_toks = Parse_php.ast_and_tokens file in
let s = Refactoring_code_php.refactor [refactoring] ast_and_toks in
let tmpfile = Common.new_temp_file "trans" ".spatch" in
Common.write_file ~file:tmpfile s;
let diff = Common2.unix_diff file tmpfile in
diff +> List.iter pr;
if !apply_patch
then Common.write_file ~file:file (Common.read_file tmpfile);
()
(*****************************************************************************)
(* Extra actions *)
(*****************************************************************************)
open Ast_php
module V = Visitor_php
(* -------------------------------------------------------------------------*)
(* to test *)
(* -------------------------------------------------------------------------*)
(* see also demos/simple_refactoring.ml *)
let simple_transfo xs =
let files = Lib_parsing_php.find_php_files_of_dir_or_files xs in
Flag_parsing_php.show_parsing_error := false;
Flag_parsing_php.verbose_lexing := false;
files +> List.iter (fun file ->
pr2 (spf "processing: %s" file);
let (ast, toks) = Parse_php.ast_and_tokens file in
let hook = { Visitor_php.default_visitor with
Visitor_php.kexpr = (fun (k, _) x ->
match x with
| Call(Id(XName[QI (Name ("foo", info_foo))]), (lp, args, rp)) ->
pr2 "found match";
let ii = Lib_parsing_php.ii_of_any (Expr x) in
ii +> List.iter (fun info ->
info.transfo <- Remove
);
info_foo.transfo <- Replace (AddStr "1");
()
| _ -> k x
);
}
in
(Visitor_php.mk_visitor hook) (Program ast);
let s =
Unparse_php.string_of_program_with_comments_using_transfo (ast, toks) in
let tmpfile = Common.new_temp_file "trans" ".php" in
Common.write_file ~file:tmpfile s;
let diff = Common2.unix_diff file tmpfile in
diff +> List.iter pr;
);
()
(* -------------------------------------------------------------------------*)
(* Trailing comma transformation *)
(* -------------------------------------------------------------------------*)
let all_different xs =
List.length xs = (xs +> Common.sort +> Common2.uniq +> List.length)
(* todo:
* - julien thinks we should transform even if some commas
* are on the same line, as long as the last ')' is on a different line.
* - we should also transform function decl and use() lists.
*)
let add_trailing_comma_multiline_funcalls ast =
let was_modified = ref false in
let visitor = V.mk_visitor { V.default_visitor with
V.karguments = (fun (k, _) (lp, args, rp) ->
if List.length args >= 1 then begin
let (args, commas) = Common.partition_either (fun x -> x) args in
let lines_commas =
commas +> List.map Parse_info.line_of_info
in
let line_rp = Parse_info.line_of_info rp in
let last_expr = Common2.list_last args in
let ii = Lib_parsing_php.ii_of_any (Argument last_expr) in
let (_min, max) =
Parse_info.min_max_ii_by_pos ii in
let line_last_expr = Parse_info.line_of_info max in
if List.length args > 2 &&
all_different (line_last_expr::line_rp::lines_commas) then
begin
max.transfo <- AddAfter (AddStr ",");
was_modified := true;
end;
end;
k (lp, args, rp)
);
}
in
visitor (Program ast);
!was_modified
let trailing_comma_transfo = {
trans_func = add_trailing_comma_multiline_funcalls;
grep_keywords = None;
}
(* -------------------------------------------------------------------------*)
(* An example of an XHP transformation *)
(* -------------------------------------------------------------------------*)
(*
* The transformation below can be encoded via this syntactical patch:
*
* <ui:section-header
* - border=X
* ></ui:section-header>
*
* There are nevertheless currenty a few limitations in spatch which
* will cause this syntactical patch to fail to transform all the
* relevant code (e.g. because of some XHP isomorphisms not yet
* handled by spatch). In the mean time the code below uses the low-level
* transformation API of pfff to express the same transformation;
* it can be used as a reference for spatch to compare with.
*)
let remove_border_attribute ast =
let was_modified = ref false in
(* $ ./pfff -dump_php_ml tests/php/spatch/border_var.php
*
* [StmtList(
* [ExprStmt(
* (Assign((Var(DName(("a", i_1)), Ref(NoScope)), tlval_2), i_3,
* (XhpHtml(
* Xhp((["ui"; "section-header"], i_4),
* [(("href", i_5), i_6,
* XhpAttrString(i_7, [EncapsString(("foo", i_8))], i_9));
* (("border", i_10), i_11,
* XhpAttrString(i_12, [EncapsString(("1", i_13))], i_14))],
* i_15, [XhpText(("
* This is nuts
* ", i_16))],
* (Some(["ui"; "section-header"]), i_17))),
* t_18)),
* t_19), i_20)]); FinalDef(i_21)]
*)
let visitor = V.mk_visitor { V.default_visitor with
V.kxhp_html = (fun (k, _) x ->
match x with
| Xhp ( (["ui"; "section-header"], _), attributes, _, _, _)
| XhpSingleton ( (["ui"; "section-header"], _), attributes, _) ->
attributes +> List.iter (fun attr ->
match attr with
| (("border", _tok_border), _tok_equal, _xhp_attr_value) ->
was_modified := true;
let tokens = Lib_parsing_php.ii_of_any (XhpAttribute attr) in
tokens +> List.iter (fun tok ->
tok.transfo <- Remove;
);
| _ -> ()
);
(* recurse *)
k x
(* recurse *)
| _ -> k x
);
}
in
visitor (Program ast);
!was_modified
let remove_border_attribute_transfo = {
trans_func = remove_border_attribute;
grep_keywords = Some ["border"];
}
(* -------------------------------------------------------------------------*)
(* Add action attribute to <ui:form> *)
(* -------------------------------------------------------------------------*)
(*
* Here is the spatch (disjunction are currently not supported in spatch
* so have to do things manually):
*
* <ui:form
* (
* action=...
* |
* + action="#"
* )
* >
*
* todo: maybe we could generalize this transformation and add to
* spatch some command lines like:
* * -add_xhp_attribute_if_not_there "ui:form" "action='#'"
* * -remove_xhp_attribute "ui:form" "border"
* a la lex-pass. Or maybe it's better to add support in the DSL directly
* so one can write the syntactical patch above.
*)
let add_action_ui_form_transfo_func ast =
let was_modified = ref false in
let visitor = V.mk_visitor { V.default_visitor with
V.kxhp_html = (fun (k, _) xhp ->
(* mostly copy paste of: pfff -dump_php tests/.../ui_form.php *)
match xhp with
| XhpSingleton((["ui"; "form"], info_tag), attributes, _)
| Xhp ((["ui"; "form"], info_tag), attributes, _, _, _)
->
if not (attributes +>
List.exists (fun ((attr_name,_), _tok, attr_val) ->
attr_name = "action"
))
then begin
was_modified := true;
info_tag.PI.transfo <- PI.AddAfter (PI.AddStr " action=\"#\"");
end;
k xhp
| _ -> k xhp (* call the continuation *)
);
}
in
visitor (Program ast);
!was_modified
let add_action_ui_form_transfo = {
trans_func = add_action_ui_form_transfo_func;
grep_keywords = Some ["ui:form"];
}
(*---------------------------------------------------------------------------*)
(* pretty printer testing *)
(*---------------------------------------------------------------------------*)
let test_pp file =
let tokens = Parse_php.tokens file in
let ast = Parse_php.parse_program file in
let ast = Ast_pp_build.program_with_comments tokens ast in
let buf = Buffer.create 256 in
let env = Pretty_print_code.empty (Buffer.add_string buf) in
Pretty_print.program_env env ast;
let s = Buffer.contents buf in
let tmp_file = Common.new_temp_file "pp" ".php" in
Common.write_file ~file:tmp_file s;
let xs = Common2.unix_diff file tmp_file in
xs +> List.iter pr2
(*---------------------------------------------------------------------------*)
(* juju refactorings *)
(*---------------------------------------------------------------------------*)
let juju_refactoring spec_file =
let xs = Refactoring_code.load spec_file in
(* Group by file because we need to do all the transfo on a file
* before unparsing as the refactoring spec use line/col position
* that refers to the original file
*)
let xxs =
xs +> List.map (fun x ->
match x with
| (a, Some pos) ->
pos.Refactoring_code.file, x
| _ -> failwith "no file position"
)
+> Common.group_assoc_bykey_eff
in
xxs +> List.iter (fun (file, refactorings) ->
let (ast2, _stat) = Parse_php.parse file in
let s = Refactoring_code_php.refactor refactorings ast2 in
let tmpfile = Common.new_temp_file "trans" ".php" in
Common.write_file ~file:tmpfile s;
if !pretty_printer
then Unparse_pretty_print_mix.pretty_print_when_need_it
~oldfile:file ~newfile:tmpfile;
let diff = Common2.unix_diff file tmpfile in
diff +> List.iter pr;
if !apply_patch
then Common.write_file ~file:file (Common.read_file tmpfile);
);
()
(*---------------------------------------------------------------------------*)
(* case refactorings *)
(*---------------------------------------------------------------------------*)
(* todo: handke Xxx.$yyy
* Also avoid false positive change like s/TIME/Time/ where
* in some files you must do it only selectively, when on
* TIME::sec_day, but not on TimelineProfile::TIME
*)
let case_refactoring pfff_log =
let xs = Common.cat pfff_log in
let simple_rename =
xs +> Common.map_filter (fun s ->
(*ex: CASE SENSITIVITY: SmsConst instead of SMSConst at /path/file:176:18 *)
if s =~
("CASE SENSITIVITY: \\([A-Za-z_0-9\\.]+\\) " ^
"instead of \\([A-Za-z_0-9\\.]+\\) " ^
"at \\([^:]+\\):\\([0-9]+\\):\\([0-9]+\\)")
then
let (actual, expected, file, line, col) = Common.matched5 s in
if file =~
(match 0 with
| 0 -> ".*/www-git/"
| 1 -> ".*/www-git/\\(lib\\|scripts\\|tests\\)/*"
| 2 -> ".*/www-git/flib/[a-f].*"
| 3 -> ".*/www-git/flib/[g-m].*"
| 4 -> ".*/www-git/flib/[n-r].*"
| 5 -> ".*/www-git/flib/[s-z].*"
| _ -> raise Impossible
)
then
Some (actual, expected, file, s_to_i line, s_to_i col)
else None
else None
)
in
simple_rename +> List.iter (fun (actual, expected, file, _, _) ->
let xs = Common.split "\\." actual in
let ys = Common.split "\\." expected in
(match xs, ys with
| [a1], [b1] ->
pr2_gen actual;
Common.command2 (spf
"%s/spatch -lang phpfuzzy --apply-patch -e 's/%s/%s/' %s"
Config_pfff.path
a1 b1 file);
| [a1;a2], [b1;b2] when a1 <> b1 ->
(* old:
* Common.command2 (spf "perl -p -i -e 's/\\b%s\\b/%s/g' %s" a1 b1 file);
* but got some FPs when s/crud/Crud/ on certain files because it also
* uppercased a URL (see D867035). So use spatch, safer.
*)
pr2_gen actual;
Common.command2 (spf
"%s/spatch -lang phpfuzzy --apply-patch -e 's/%s/%s/' %s"
Config_pfff.path
a1 b1 file);
()
| [a1;a2], [b1;b2] when a1 = b1 && a2 <> b2 ->
Common.command2 (spf
"%s/spatch -lang phpfuzzy --apply-patch -e 's/%s/%s/' %s"
Config_pfff.path
a2 b2 file);
| _ ->
()
)
)
(*---------------------------------------------------------------------------*)
(* remove undefined xhp field *)
(*---------------------------------------------------------------------------*)
let remove_undefined_xhp_field (xhp_class_str, field) ast=
let was_modified = ref false in
let string_of_xhp_tag xs = "<" ^ Common.join ":" xs ^ ">" in
let visitor = Visitor_php.mk_visitor {Visitor_php.default_visitor with
Visitor_php.kxhp_html = (fun (k, _) x ->
match x with
| XhpSingleton ( (xhp_class, _), attributes, _)
| Xhp ( (xhp_class, _), attributes, _, _, _)
when (xhp_class_str = string_of_xhp_tag xhp_class) ->
attributes +> List.iter (fun attr ->
match attr with
| ((s, _), _, _) when (s = field) ->
let ii = Lib_parsing_php.ii_of_any (XhpAttribute attr) in
ii +> List.iter (fun info ->
info.transfo <- Remove
);
was_modified := true;
| _ -> ()
); k x
| _ -> k x
);
}
in
visitor (Program ast);
!was_modified
let read_log_undefined_xhp_field pfff_log =
let xs = Common.cat pfff_log in
let undefined_xhp_field =
xs +> Common.map_filter (fun s ->
(* PB: lookup fail on Field:<x:misc>.xnosuchstr= (at xhp_use.php:9) *)
if s =~
("PB: lookup fail on Field:\\(<[A-Za-z_0-9:-]+>\\)\\." ^
"\\([A-Za-z_0-9-]+\\)= " ^
"(at \\([^:]+\\):\\([0-9]+\\))")
then
let (xhp_class_str, field, filename, line) = Common.matched4 s in
Some (xhp_class_str, field, filename, s_to_i line)
else None
)
in
undefined_xhp_field +> List.iter
(fun (xhp_class_str, field, filename, _) ->
let transfo ={
trans_func = remove_undefined_xhp_field (xhp_class_str, field);
grep_keywords = None;
} in
apply_transfo transfo [filename]
)
(*---------------------------------------------------------------------------*)
(* regression testing *)
(*---------------------------------------------------------------------------*)
open OUnit
let test () =
let suite = "spatch" >::: (
(* ugly: todo: use a toy fuzzy parser instead of the one in lang_cpp/ *)
Unit_matcher.spatch_unittest
~ast_fuzzy_of_string:(fun str ->
Common2.with_tmp_file ~str ~ext:"cpp" (fun tmpfile ->
Parse_cpp.parse_fuzzy tmpfile +> fst
))
~parse_file:(fun file ->
Common.save_excursion Flag_parsing_cpp.verbose_lexing false (fun () ->
Parse_cpp.parse_fuzzy file
))
~elt_and_info_of_tok:(fun tok ->
Token_helpers_cpp.elt_of_tok tok, Token_helpers_cpp.info_of_tok tok
)
++
Unit_matcher_php.spatch_unittest ++
Unit_matcher_php.refactoring_unittest ++
[]
) in
OUnit.run_test_tt suite +> ignore;
()
(*---------------------------------------------------------------------------*)
(* the command line flags *)
(*---------------------------------------------------------------------------*)
let spatch_extra_actions () = [
(* see also demos/simple_refactoring.ml *)
"-simple_transfo", " <files_or_dirs>",
Common.mk_action_n_arg (simple_transfo);
"-remove_border_attribute", " <files_or_dirs>",
Common.mk_action_n_arg (apply_transfo remove_border_attribute_transfo);
"-add_action_ui_form", " <files_or_dirs>",
Common.mk_action_n_arg (apply_transfo add_action_ui_form_transfo);
"-add_trailing_comma", " <files_or_dirs>",
Common.mk_action_n_arg (apply_transfo trailing_comma_transfo);
"-juju_refactoring", " <file>",
Common.mk_action_1_arg juju_refactoring;
"-case_refactoring", " <file>",
Common.mk_action_1_arg case_refactoring;
"-remove_undefined_xhp_field", " <file>",
Common.mk_action_1_arg read_log_undefined_xhp_field;
"-add_interface", " <class>:<interface> <file>",
Common.mk_action_2_arg (fun str file ->
if str =~ "\\(.*\\):\\(.*\\)"
then
let (classname, interface) = Common.matched2 str in
let refactoring = R.AddInterface (Some classname, interface), None in
apply_refactoring refactoring file
else failwith "use the CLASS:INTERFACE format for -add_interface"
);
"-remove_interface", " <class>:<interface> <file>",
Common.mk_action_2_arg (fun str file ->
if str =~ "\\(.*\\):\\(.*\\)"
then
let (classname, interface) = Common.matched2 str in
let refactoring = R.RemoveInterface (Some classname, interface), None in
apply_refactoring refactoring file;
else failwith "use the CLASS:INTERFACE format for -remove_interface"
);
"-test", " run regression tests",
Common.mk_action_0_arg test;
"-pp", "",
Common.mk_action_1_arg test_pp;
]
(*****************************************************************************)
(* The options *)
(*****************************************************************************)
let all_actions () =
spatch_extra_actions()++
[]
let options () =
[
"-f", Arg.Set_string spatch_file,
" <spatch_file>";
"-e", Arg.Set_string sed_string,
" <s/before/after/>, sed mode";
"--apply-patch", Arg.Set apply_patch,
" ";
"--pretty-printer", Arg.Set pretty_printer,
" reindent the modified code (fragile)";
"--case-sensitive", Arg.Set case_sensitive,
" match code in a case sensitive manner";
"--verbose", Arg.Set verbose,
" ";
"-lang", Arg.Set_string lang,
(spf " <str> choose language (default = %s)" !lang);
"-v", Arg.Set verbose,
" shortcut for --verbose";
] ++
(* Flag_parsing_php.cmdline_flags_pp () ++ *)
Common.options_of_actions action (all_actions()) ++
Common2.cmdline_flags_devel () ++
[
"-version", Arg.Unit (fun () ->
Common.pr2 (spf "spatch version: %s" Config_pfff.version);
exit 0;
),
" guess what";
]
(*****************************************************************************)
(* Main entry point *)
(*****************************************************************************)
let main () =
Common_extra.set_link ();
let usage_msg =
spf "Usage: %s [options] <file or dir> \nDoc: %s\nOptions:"
(Common2.basename Sys.argv.(0))
"https://github.com/facebook/pfff/wiki/Spatch"
in
(* does side effect on many global flags *)
let args = Common.parse_options (options()) usage_msg Sys.argv in
(* must be done after Arg.parse, because Common.profile is set by it *)
Common.profile_code "Main total" (fun () ->
(match args with
(* --------------------------------------------------------- *)
(* actions, useful to debug subpart *)
(* --------------------------------------------------------- *)
| xs when List.mem !action (Common.action_list (all_actions())) ->
Common.do_action !action xs (all_actions())
| _ when not (Common.null_string !action) ->
failwith ("unrecognized action or wrong params: " ^ !action)
(* --------------------------------------------------------- *)
(* main entry *)
(* --------------------------------------------------------- *)
| x::xs ->
main_action (x::xs)
(* --------------------------------------------------------- *)
(* empty entry *)
(* --------------------------------------------------------- *)
| [] ->
Common.usage usage_msg (options());
failwith "too few arguments"
)
)
(*****************************************************************************)
let _ =
Common.main_boilerplate (fun () ->
main ();
)