forked from facebookarchive/pfff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_db_heavy.ml
243 lines (203 loc) · 7.55 KB
/
main_db_heavy.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
open Common
open Ast_php
module Ast = Ast_php
module Db = Database_php
module V = Visitor_php
(*****************************************************************************)
(* Purpose *)
(*****************************************************************************)
(* TODO: deprecated, use the interactive prolog db provided
* by codequery instead
*)
(*****************************************************************************)
(* Flags *)
(*****************************************************************************)
(* In addition to flags that can be tweaked via -xxx options (cf the
* full list of options in the "the options" section below), this
* program also depends on external files ?
*)
let metapath = ref "/tmp/pfff_db"
(* for build_db *)
let phase = ref Database_php_build.max_phase
let index_method = ref false
(* action mode *)
let action = ref ""
(*****************************************************************************)
(* Some debugging functions *)
(*****************************************************************************)
(*****************************************************************************)
(* Helpers *)
(*****************************************************************************)
(*****************************************************************************)
(* Main action, build the database *)
(*****************************************************************************)
let main_action xs =
match xs with
| [dir] ->
let dir =
(try Common.realpath dir
with exn ->
pr2 "note: could not find realpath";
dir
)
+> Common2.chop_dirsymbol
in
let db =
Database_php_build.create_db
~db_support:(Database_php.Disk !metapath)
~phase:!phase
~annotate_variables_program:
(Some Check_variables_php.check_and_annotate_program)
(Database_php.prj_of_dir dir)
in
if !index_method then
raise Todo;
(* Database_php_build2.index_db_method db; *)
Database_php.close_db db;
()
| x::y::ys ->
raise Todo
| [] -> raise Impossible
(* see also facebook/thrift/main_server.ml *)
let layers = [
"layer_deadcode.json", (fun dir db layerfile ->
let hooks = Deadcode_php.default_hooks in
Layer_deadcode_php.gen_layer ~hooks ~db ~output:layerfile;
);
"layer_bugs.json", (fun dir db layerfile ->
(* mostly copy paste of main_scheck_heavy.ml *)
let files = Lib_parsing_php.find_php_files_of_dir_or_files [dir] in
let errors = ref [] in
let find_entity = Some (Database_php_build.build_entity_finder db) in
let env = Env_php.mk_env dir in
files +> Common2.index_list_and_total +> List.iter (fun (file, i, total) ->
try
pr2 (spf "processing: %s (%d/%d)" file i total);
Check_all_php.check_file ~find_entity env file;
with
| (Timeout | UnixExit _) as exn -> raise exn
| exn ->
Common.push2 (spf "PB with %s, exn = %s" file
(Common.exn_to_s exn)) errors;
);
!errors +> List.iter pr2;
Layer_checker_php.gen_layer ~root:dir ~output:layerfile !Error_php._errors
);
]
let gen_layers metapath =
Db.with_db ~metapath (fun db ->
let dir = Db.path_of_project_in_database db in
pr2 (spf "generating layers for %s in %s" dir metapath);
layers +> List.iter (fun (layerfile, f) ->
f dir db (Filename.concat metapath layerfile);
);
)
(*****************************************************************************)
(* Extra actions *)
(*****************************************************************************)
let deadcode_analysis db =
let hooks = { Deadcode_php.default_hooks with
Deadcode_php.print_diff = false;
Deadcode_php.with_blame = false;
}
in
let dead_ids_func = Deadcode_php.finding_dead_functions hooks db in
let dead_ids_class = Deadcode_php.finding_dead_classes hooks db in
pr2 (spf "total dead functions = %d, total dead classes = %d"
(List.length dead_ids_func) (List.length dead_ids_class));
()
let pfff_extra_actions () = [
"-gen_layers", " <metapath>",
Common.mk_action_1_arg gen_layers;
"-deadcode_analysis", " <metapath>",
Common.mk_action_1_arg (fun metapath ->
Database_php.with_db ~metapath (fun db -> deadcode_analysis db));
"-gen_prolog_db", " <metapath> <file>",
Common.mk_action_2_arg (fun metapath file ->
Database_php.with_db ~metapath (fun db ->
Database_prolog_php.gen_prolog_db db file));
]
(*****************************************************************************)
(* The options *)
(*****************************************************************************)
let all_actions () =
pfff_extra_actions() ++
Database_php_build.actions() ++
(* Layer_checker is in main_scheck.ml *)
Layer_deadcode_php.actions () ++
Layer_coverage.actions () ++
Layer_xhprof.actions () ++
Layer_cyclomatic_php.actions () ++
Layer_vcs.actions () ++
[]
let options () =
[
"-metapath", Arg.Set_string metapath,
"<dir> (default=" ^ !metapath ^ ")";
"-phase", Arg.Set_int phase,
" <phase number>";
"-index_method", Arg.Set index_method,
" ";
] ++
Common.options_of_actions action (all_actions()) ++
Flag_parsing_php.cmdline_flags_verbose () ++
Flag_parsing_php.cmdline_flags_debugging () ++
Common2.cmdline_flags_devel () ++
Common2.cmdline_flags_verbose () ++
Common2.cmdline_flags_other () ++
[
"-version", Arg.Unit (fun () ->
pr2 (spf "pfff db (console) version: %s" Config_pfff.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 () =
Common_extra.set_link();
(* let argv = Features.Distribution.mpi_adjust_argv Sys.argv in *)
Database_php_storage.set_link();
Gc.set {(Gc.get ()) with Gc.stack_limit = 1000 * 1024 * 1024};
let usage_msg =
"Usage: " ^ Common2.basename Sys.argv.(0) ^
" [options] <file or dir> " ^ "\n" ^ "Options are:"
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 ();
)