forked from facebookarchive/pfff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_sgrep.ml
354 lines (296 loc) · 11 KB
/
main_sgrep.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
(*
* 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 Ast_php
module Ast = Ast_php
module V = Visitor_php
module S = Scope_code
open Ast_php
(*****************************************************************************)
(* Purpose *)
(*****************************************************************************)
(*
* A syntactical grep for PHP. https://github.com/facebook/pfff/wiki/Sgrep
*
* opti: git grep xxx | xargs sgrep_php
*)
(*****************************************************************************)
(* Flags *)
(*****************************************************************************)
let verbose = ref false
let pattern_file = ref ""
let pattern_string = ref ""
let match_format = ref Lib_parsing_php.Normal
let mvars = ref ([]: Metavars_php.mvar list)
let layer_file = ref (None: filename option)
(* action mode *)
let action = ref ""
(*****************************************************************************)
(* Helpers *)
(*****************************************************************************)
(* for -gen_layer *)
let _matching_tokens = ref []
(* TODO? could do slicing of function relative to the pattern, so
* would see where the parameters come from :)
*)
let print_match mvars mvar_binding tokens_matched_code =
(match mvars with
| [] ->
Lib_parsing_php.print_match ~format:!match_format tokens_matched_code
| [x] ->
(match Common.assoc_option x mvar_binding with
| Some any ->
let ii = Lib_parsing_php.ii_of_any any in
Lib_parsing_php.print_match ~format:Lib_parsing_php.OneLine ii
| None ->
failwith (spf "the metavariable '%s' was not binded" x)
)
| x::y::xs ->
failwith "multiple metavariables not yet handled. mailto:[email protected]"
);
tokens_matched_code +> List.iter (fun x -> Common.push2 x _matching_tokens)
let print_simple_match tokens_matched_code =
print_match [] [] tokens_matched_code
(* a layer need readable path, hence the ~root argument *)
let gen_layer ~root ~query file =
pr2 ("generating layer in " ^ file);
let root = Common.relative_to_absolute root in
let toks = !_matching_tokens in
let kinds = ["m" (* match *), "red"] in
(* todo: could now use Layer_code.simple_layer_of_parse_infos *)
let files_and_lines = toks +> List.map (fun tok ->
let file = Ast.file_of_info tok in
let line = Ast.line_of_info tok in
let file' = Common.relative_to_absolute file in
Common.filename_without_leading_path root file', line
)
in
let group = Common.group_assoc_bykey_eff files_and_lines in
let layer = { Layer_code.
title = "Sgrep";
description = "output of sgrep";
kinds = kinds;
files = group +> List.map (fun (file, lines) ->
let lines = Common.uniq lines in
(file, { Layer_code.
micro_level = (lines +> List.map (fun l -> l, "m"));
macro_level = if null lines then [] else ["m", 1.];
})
);
}
in
Layer_code.save_layer layer file;
()
(*****************************************************************************)
(* Main action *)
(*****************************************************************************)
let main_action xs =
let pattern, query_string =
Common.save_excursion Flag_parsing_php.sgrep_mode true (fun () ->
match !pattern_file, !pattern_string with
| "", "" ->
failwith "I need a pattern; use -f or -e";
| file, _ when file <> "" ->
Parse_php.parse_any file, Common.read_file file
| _, s when s <> ""->
Parse_php.any_of_string s, s
| _ -> raise Impossible
)
in
let files = Lib_parsing_php.find_php_files_of_dir_or_files xs in
files +> List.iter (fun file ->
if !verbose then pr2 (spf "processing: %s" file);
let (ast2) =
try
Parse_php.parse file +> fst
with Parse_php.Parse_error err ->
Common.pr2 (spf "warning: parsing problem in %s" file);
[]
in
let ast = Parse_php.program_of_program2 ast2 in
(* bugfix: if we have an ExprVar, then a pattern such as
* $foo->method() will not match expressions such as
* $foo->method()->method because the full ExprVar will not
* match. The pb is that we need not only a match_e_e but also
* a match_v_v with the same visitor
*)
let hook =
match pattern with
| Expr (Lv pattern_var, _t) ->
{ V.default_visitor with
V.klvalue = (fun (k, _) x ->
let matches_with_env =
Matching_php.match_v_v pattern_var x
in
if matches_with_env = []
then k x
else begin
(* could also recurse to find nested matching inside
* the matched code itself.
*)
let matched_tokens = Lib_parsing_php.ii_of_any (Lvalue x) in
matches_with_env +> List.iter (fun env ->
print_match !mvars env matched_tokens
)
end
);
}
| Expr pattern_expr ->
{ V.default_visitor with
V.kexpr = (fun (k, _) x ->
let matches_with_env =
Matching_php.match_e_e pattern_expr x
in
if matches_with_env = []
then k x
else begin
(* could also recurse to find nested matching inside
* the matched code itself.
*)
let matched_tokens = Lib_parsing_php.ii_of_any (Expr x) in
matches_with_env +> List.iter (fun env ->
print_match !mvars env matched_tokens
)
end
);
}
| Stmt2 pattern ->
{ V.default_visitor with
V.kstmt = (fun (k, _) x ->
let matches_with_env =
Matching_php.match_st_st pattern x
in
if matches_with_env = []
then k x
else begin
(* could also recurse to find nested matching inside
* the matched code itself.
*)
let matched_tokens = Lib_parsing_php.ii_of_any (Stmt2 x) in
matches_with_env +> List.iter (fun env ->
print_match !mvars env matched_tokens
)
end
);
}
| _ -> failwith (spf "pattern not yet supported:" ^
Export_ast_php.ml_pattern_string_of_any pattern)
in
(* opti ? dont analyze func if no constant in it ?*)
(V.mk_visitor hook) (Program ast)
);
!layer_file +> Common.do_option (fun file ->
let root = Common.common_prefix_of_files_or_dirs xs in
gen_layer ~root ~query:query_string file
);
()
(*****************************************************************************)
(* Extra actions *)
(*****************************************************************************)
let dump_sgrep_pattern file =
let any = Parse_php.parse_any file in
let s = Export_ast_php.ml_pattern_string_of_any any in
pr s
(*---------------------------------------------------------------------------*)
(* Regression testing *)
(*---------------------------------------------------------------------------*)
let test () =
let suite = Unit_matcher_php.sgrep_unittest in
OUnit.run_test_tt suite |> ignore;
()
(*---------------------------------------------------------------------------*)
(* the command line flags *)
(*---------------------------------------------------------------------------*)
let sgrep_extra_actions () = [
"-dump_pattern", " <file>",
Common.mk_action_1_arg dump_sgrep_pattern;
"-test", " ",
Common.mk_action_0_arg test;
]
(*****************************************************************************)
(* The options *)
(*****************************************************************************)
let all_actions () =
sgrep_extra_actions()++
[]
let options () =
[
"-e", Arg.Set_string pattern_string,
" <pattern> expression pattern";
"-f", Arg.Set_string pattern_file,
" <file> obtain pattern from file";
"-emacs", Arg.Unit (fun () -> match_format := Lib_parsing_php.Emacs ),
" print matches on the same line than the match position";
"-oneline", Arg.Unit (fun () -> match_format := Lib_parsing_php.OneLine),
" print matches on one line, in normalized form";
"-pvar", Arg.String (fun s -> mvars := Common.split "," s),
" <metavar> print the metavariable, not the matched code";
"-gen_layer", Arg.String (fun s -> layer_file := Some s),
" <file> save result in pfff layer file";
"-verbose", Arg.Set verbose,
" ";
] ++
(* old: Flag_parsing_php.cmdline_flags_pp () ++ *)
Common.options_of_actions action (all_actions()) ++
Common.cmdline_flags_devel () ++
Common.cmdline_flags_verbose () ++
Common.cmdline_flags_other () ++
[
"-version", Arg.Unit (fun () ->
pr2 (spf "sgrep_php version: %s" Config.version);
exit 0;
),
" guess what";
(* this can not be factorized in Common *)
"-date", Arg.Unit (fun () ->
pr2 "version: $Date: 2008/10/26 00:44:57 $";
raise (Common.UnixExit 0)
),
" guess what";
] ++
[]
(*****************************************************************************)
(* Main entry point *)
(*****************************************************************************)
let main () =
let usage_msg =
spf "Usage: %s [options] <file or dir> \nDoc: %s\nOptions:"
(Common.basename Sys.argv.(0))
"https://github.com/facebook/pfff/wiki/Sgrep"
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 ();
)