forked from coccinelle/coccinelle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testing.ml
712 lines (628 loc) · 23.2 KB
/
testing.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
(*
* This file is part of Coccinelle, licensed under the terms of the GPL v2.
* See copyright.txt in the Coccinelle source code for more information.
* The Coccinelle source code can be obtained at http://coccinelle.lip6.fr
*)
open Common
(*****************************************************************************)
(* Test framework *)
(*****************************************************************************)
type redirected_output = {
out_file: string;
out_channel: out_channel;
stdout_backup: Unix.file_descr;
show_diff_backup: bool;
}
let out_suffix = ".stdout"
let flush_scripts_output () =
flush stdout;
Pycocci.flush_stdout_and_stderr ()
let begin_redirect_output expected_out =
let has_expected_out = Sys.file_exists expected_out in
if has_expected_out then
let out_file = Common.new_temp_file "redirect" out_suffix in
let out_channel = open_out out_file in
let out_file_descr = Unix.descr_of_out_channel out_channel in
let stdout_backup = Unix.dup Unix.stdout in
let show_diff_backup = !Flag_cocci.show_diff in
flush_scripts_output ();
Unix.dup2 out_file_descr Unix.stdout;
Flag_cocci.show_diff := false;
Some { out_file; out_channel; stdout_backup; show_diff_backup }
else
None
let end_redirect_output = Common.map_option (
fun { out_file; out_channel; stdout_backup; show_diff_backup } ->
flush_scripts_output ();
Unix.dup2 stdout_backup Unix.stdout;
close_out out_channel;
Flag_cocci.show_diff := show_diff_backup;
out_file)
let rec test_loop previous_merges cocci_file cfiles =
let (cocci_infos,_) = Cocci.pre_engine (cocci_file, !Config.std_iso) in
let (res, merges) = Cocci.full_engine cocci_infos cfiles in
let merges = Cocci.union_merge_vars previous_merges merges in
let next_merges, pending_instance =
match Iteration.get_pending_instance () with
None ->
begin
Cocci.post_engine cocci_infos merges;
([], []), Iteration.get_pending_instance ()
end
| Some instances -> merges, Some instances in
match pending_instance with
None -> (cocci_infos, res)
| Some (cfiles', virt_rules, virt_ids) ->
(* don't support line ranges for iteration for now *)
let cfiles' = List.map (fun x -> (x,None)) cfiles' in
Flag.defined_virtual_rules := virt_rules;
Flag.defined_virtual_env := virt_ids;
Common.clear_pr2_once ();
test_loop next_merges cocci_file cfiles'
let test_with_output_redirected cocci_file cfiles expected_out =
Iteration.initialization_stack := [];
Postprocess_transinfo.reset_fresh_counter ();
let redirected_output = begin_redirect_output expected_out in
let (cocci_infos, res) =
try test_loop ([], []) cocci_file cfiles
with e ->
ignore (end_redirect_output redirected_output);
raise e in
let current_out = end_redirect_output redirected_output in
(res, current_out)
let adjust_extension extension =
if extension = ""
then extension
else if String.get extension 0 = '.'
then String.sub extension 1 (String.length extension - 1)
else extension
(* There can be multiple .c for the same cocci file. The convention
* is to have one base.cocci and a base.c and some optional
* base_vernn.[c,res].
*
* If want to test without iso, use -iso_file empty.iso option.
*)
let testone prefix x compare_with_expected =
let x = if x =~ "\\(.*\\)_ver0$" then matched1 x else x in
let base = if x =~ "\\(.*\\)_ver[0-9]+$" then matched1 x else x in
let cfile =
if !Flag.c_plus_plus <> Flag.Off
then prefix ^ x ^ ".cpp"
else prefix ^ x ^ ".c" in
let cocci_file = prefix ^ base ^ ".cocci" in
let expected_out = prefix ^ base ^ out_suffix in
begin
let (res, current_out) =
test_with_output_redirected cocci_file [(cfile,None)] expected_out in
let generated =
match Common.optionise (fun () -> List.assoc cfile res) with
| Some (Some outfile) ->
if List.length res > 1
then pr2 ("note that not just " ^ cfile ^ " was involved");
let tmpfile =
Printf.sprintf
"%s/%s" Config.get_temp_dir_name (Filename.basename cfile) in
pr2 (Printf.sprintf "One file modified. Result is here: %s" tmpfile);
Common.command2 ("mv "^outfile^" "^tmpfile);
tmpfile
| Some None ->
pr2 "no modification on the input file";
cfile
| None -> raise (Impossible 163)
in
match compare_with_expected with
None -> ()
| Some extension ->
let expected_res =
prefix ^ x ^ "." ^ (adjust_extension extension) in
Compare_c.compare_default generated expected_res
+> Compare_c.compare_result_to_string
+> pr2;
match current_out with
None -> ()
| Some current_out' ->
Compare_c.exact_compare current_out' expected_out
+> Compare_c.compare_result_to_string
+> pr2
end;
Common.erase_temp_files ()
let add_file_to_score score res correct diffxs =
(* I don't use Compare_c.compare_result_to_string because
* I want to indent a little more the messages.
*)
match correct with
Compare_c.Correct -> Hashtbl.add score res Common.Ok;
| Compare_c.Pb s ->
let s = Str.global_replace
(Str.regexp "\"/tmp/cocci-output.*\"") "<COCCIOUTPUTFILE>" s
in
(* on macos the temporary files are stored elsewhere *)
let s =
Str.global_replace
(Str.regexp "\"/var/folders/.*/cocci-output.*\"")
"<COCCIOUTPUTFILE>" s
in
let s =
"INCORRECT:" ^ s ^ "\n" ^
" diff (result(<) vs expected_result(>)) = \n" ^
(diffxs +>
List.map(fun s -> " "^s^"\n") +> String.concat "")
in
Hashtbl.add score res (Common.Pb s)
| Compare_c.PbOnlyInNotParsedCorrectly s ->
let s =
"seems incorrect, but only because of code that " ^
"was not parsable" ^ s
in
Hashtbl.add score res (Common.Pb s)
(* ------------------------------------------------------------------------ *)
(* note: if you get some weird results in -testall, and not in -test,
* it is possible that a test file work in -test but may not
* work while used inside a -testall. If we have some bugs in our
* parser that modify some global state and that those states
* are not reset between each test file, then having run previous
* test files may have an influence on another test file which mean
* than a test may work in isolation (via -test) but not otherwise
* (via -testall). Fortunately such bugs are rare.
*
*)
(* If extra test is provided, then all failing tests with the standard
comparison are considered ok, and only the correct result are subjected to
the extra test *)
let testall_bis setup extra_test expected_score_file update_score_file =
let score = empty_score () in
let expected_result_files =
Common.glob "tests/*.res"
+> List.filter (fun f -> Common.filesize f > 0)
+> List.map Filename.basename
+> List.sort compare
in
begin
expected_result_files +> List.iter (fun res ->
let x =
if res =~ "\\(.*\\).res"
then matched1 res
else raise (Impossible 164) in
let base = if x =~ "\\(.*\\)_ver[0-9]+" then matched1 x else x in
let cocci_file = "tests/" ^ base ^ ".cocci" in
setup cocci_file;
let cfile = "tests/" ^ x ^ ".c" in
let cfile =
let cppfile = "tests/" ^ x ^ ".cpp" in
if not (Sys.file_exists cfile) && Sys.file_exists cppfile
then
begin
Flag.c_plus_plus := Flag.On None;
cppfile
end
else
begin
Flag.c_plus_plus := Flag.Off;
cfile
end in
let expected = "tests/" ^ res in
let out = base ^ out_suffix in
let expected_out = "tests/" ^ out in
let timeout_testall = 60 in
try (
Common.timeout_function "testing" timeout_testall (fun () ->
pr2 res;
let (xs, current_out) =
test_with_output_redirected cocci_file [(cfile,None)]
expected_out in
let generated =
match List.assoc cfile xs with
| Some generated -> generated
| None -> cfile
in
let (correct, diffxs) =
Compare_c.compare_default generated expected in
let (correct, diffxs) =
match extra_test with
None -> (correct, diffxs)
| Some extra_test ->
(match correct with
Compare_c.Correct -> extra_test generated expected
| _ ->
(* if there is an extra test, we don't care about the
things that fail on the first test *)
(Compare_c.Correct,[])) in
add_file_to_score score res correct diffxs;
begin
match current_out with
None -> ()
| Some current_out' ->
let (correct, diffxs) =
Compare_c.exact_compare current_out' expected_out in
add_file_to_score score out correct diffxs
end;
Common.erase_temp_files ();
)
)
with exn ->
Common.reset_pr_indent();
Iteration.reset();
Flag.reset_virt();
let s = "PROBLEM\n" ^ (" exn = " ^ Printexc.to_string exn ^ "\n") in
(* clean up state *)
Flag.defined_virtual_rules := [];
Flag.defined_virtual_env := [];
Iteration.clear_pending_instance();
Hashtbl.add score res (Common.Pb s)
);
pr2 "--------------------------------";
pr2 "statistics";
pr2 "--------------------------------";
Common.hash_to_list score +> List.iter (fun (s, v) ->
pr_no_nl (Printf.sprintf "%-30s: " s);
pr_no_nl (
match v with
| Common.Ok -> "CORRECT\n"
| Common.Pb s -> s
)
);
flush stdout; flush stderr;
pr2 "--------------------------------";
pr2 "regression testing information";
pr2 "--------------------------------";
let expected_score_file_orig = "tests/SCORE_expected_orig.sexp" in
let best_of_both_file = "tests/SCORE_best_of_both.sexp" in
let actual_score_file = "tests/SCORE_actual.sexp" in
pr2 ("regression file: "^ expected_score_file);
let (expected_score : score) =
if Sys.file_exists expected_score_file
then
Common.load_score expected_score_file ()
else
if Sys.file_exists expected_score_file_orig
then begin
pr2 (spf "use expected orig file (%s)" expected_score_file_orig);
Common.command2 (spf "cp %s %s" expected_score_file_orig
expected_score_file);
Common.load_score expected_score_file ()
end
else
empty_score()
in
let new_bestscore = Common.regression_testing_vs score expected_score in
Common.save_score score actual_score_file;
Common.save_score new_bestscore best_of_both_file;
Common.print_total_score score;
let (good, total) = Common.total_scores score in
let (expected_good, expected_total) = Common.total_scores expected_score in
if good = expected_good
then begin
pr2 "Current score is equal to expected score; everything is fine";
raise (UnixExit 0);
end
else
if good < expected_good
then begin
pr2 "Current score is lower than expected :(";
pr2 (spf "(was expecting %d but got %d)" expected_good good);
pr2 "";
pr2 "If you think it's normal, then maybe you need to update the";
pr2 (spf "score file %s, copying info from %s."
expected_score_file actual_score_file);
raise (UnixExit 1);
end
else begin
pr2 "Current score is greater than expected :)";
pr2 (spf "(was expecting %d but got %d)" expected_good good);
if update_score_file then
begin
pr2 "Generating new expected score file and saving old one";
Common.command2_y_or_no_exit_if_no
(spf "mv %s %s" expected_score_file (expected_score_file ^ ".save"));
Common.command2_y_or_no_exit_if_no
(spf "mv %s %s" best_of_both_file expected_score_file);
end;
(* when there are sufficient number of tests, abort if a substantial
* amount of tests fail, which would indicate a broken build.
*)
if total > 40 && good < (total * 3) / 4
then begin
pr2 "Still, less 75% the tests passed. Returning a nonzero exist status.";
raise (UnixExit 1);
end;
raise (UnixExit 0);
end
end
let testall setup = testall_bis setup None
let test_spacing setup = testall_bis setup (Some Compare_c.exact_compare)
(* ------------------------------------------------------------------------ *)
type okfailed = Ok | SpatchOK | Failed
(* test_to_string *)
let t_to_s = function
| Ok -> ".ok"
| SpatchOK -> ".spatch_ok"
| Failed -> ".failed"
let delete_previous_result_files infile =
[Ok;SpatchOK;Failed] +> List.iter (fun kind ->
Common.remove_file (infile ^ t_to_s kind)
)
(* quite similar to compare_with_expected below *)
let test_okfailed cocci_file cfiles =
cfiles +> List.iter delete_previous_result_files;
(* final_files contain the name of an output file (a .ok or .failed
* or .spatch_ok), and also some additional strings to be printed in
* this output file in addition to the general error message of
* full_engine. *)
let final_files = ref [] in
let newout =
Common.new_temp_file "cocci" ".stdout"
in
let t = Unix.gettimeofday () in
let time_per_file_str () =
let t' = Unix.gettimeofday () in
let tdiff = t' -. t in
let tperfile = tdiff /. (float_of_int (List.length cfiles)) in
spf "time: %f" tperfile
in
let expected_out = Filename.chop_suffix cocci_file ".cocci" ^ out_suffix in
Common.redirect_stdout_stderr newout (fun () ->
try (
Common.timeout_function_opt "testing" !Flag_cocci.timeout (fun () ->
let cfiles = List.map (fun x -> (x,None)) cfiles in (* no range *)
let (outfiles, current_out) =
test_with_output_redirected cocci_file cfiles expected_out in
let time_str = time_per_file_str () in
outfiles +> List.iter (fun (infile, outopt) ->
let (dir, base, ext) = Common.dbe_of_filename infile in
let expected_suffix =
match ext with
| "c" -> "res"
| "h" -> "h.res"
| s -> pr2 ("WEIRD: not a .c or .h :" ^ base ^ "." ^ s);
"" (* no extension, will compare to same file *)
in
let expected_res =
Common.filename_of_dbe (dir, base, expected_suffix) in
let expected_res2 =
Common.filename_of_dbe (dir,"corrected_"^ base,expected_suffix)
in
(* can delete more than the first delete_previous_result_files
* because here we can have more files than in cfiles, for instance
* the header files
*)
delete_previous_result_files infile;
match outopt, Common.lfile_exists expected_res with
| None, false ->
()
| Some outfile, false ->
let s =
Printf.sprintf
"PB: input file %s modified but no %s" infile expected_res in
push2 (infile^t_to_s Failed, [s;time_str]) final_files
| x, true ->
let outfile =
match x with
| Some outfile -> outfile
| None -> infile
in
let diff = Compare_c.compare_default outfile expected_res in
let s1 = (Compare_c.compare_result_to_string diff) in
if fst diff = Compare_c.Correct
then push2 (infile ^ (t_to_s Ok), [s1;time_str]) final_files
else
if Common.lfile_exists expected_res2
then begin
let diff = Compare_c.compare_default outfile expected_res2 in
let s2 = Compare_c.compare_result_to_string diff in
if fst diff = Compare_c.Correct
then push2 (infile ^ (t_to_s SpatchOK),[s2;s1;time_str])
final_files
else push2 (infile ^ (t_to_s Failed), [s2;s1;time_str])
final_files
end
else push2 (infile ^ (t_to_s Failed), [s1;time_str]) final_files
);
begin
match current_out with
None -> ()
| Some current_out' ->
let diff = Compare_c.exact_compare current_out' expected_out in
let s = Compare_c.compare_result_to_string diff in
push2 (cocci_file ^ (t_to_s Failed), [s;time_str]) final_files
end;
);
)
with exn ->
let clean s =
Str.global_replace (Str.regexp "\\\\n") "\n"
(Str.global_replace (Str.regexp ("\\\\\"")) "\""
(Str.global_replace (Str.regexp "\\\\t") "\t" s)) in
let s = "PROBLEM\n"^(" exn = " ^ clean(Printexc.to_string exn) ^ "\n")
in
let time_str = time_per_file_str ()
in
(* we may miss some file because cfiles is shorter than outfiles.
* For instance the detected local headers are not in cfiles, so
* may have less failed. But at least have some failed.
*)
cfiles +> List.iter (fun infile ->
push2 (infile ^ (t_to_s Failed), [s;time_str]) final_files;
);
);
!final_files +> List.iter (fun (file, additional_strs) ->
Common.command2 ("cp " ^ newout ^ " " ^ file);
with_open_outfile file (fun (pr, chan) ->
additional_strs +> List.iter (fun s -> pr (s ^ "\n"))
);
)
let test_regression_okfailed () =
(* it's xxx.c.ok *)
let chop_ext f = f +> Filename.chop_extension in
let newscore = Common.empty_score () in
let oks =
Common.cmd_to_list ("find . -name \"*.ok\"")
@
Common.cmd_to_list ("find . -name \"*.spatch_ok\"")
in
let failed = Common.cmd_to_list ("find . -name \"*.failed\"") in
if (oks @ failed) = []
then failwith "no ok/failed file, you certainly did a make clean"
else begin
oks +> List.iter (fun s ->
Hashtbl.add newscore (chop_ext s) Common.Ok
);
failed +> List.iter (fun s ->
Hashtbl.add newscore (chop_ext s) (Common.Pb "fail")
);
pr2 "--------------------------------";
pr2 "regression testing information";
pr2 "--------------------------------";
Common.regression_testing newscore ("score_failed.marshalled")
end
(* ------------------------------------------------------------------------ *)
(* quite similar to test_ok_failed. Maybe could factorize code *)
let compare_with_expected outfiles extension =
let extension = adjust_extension extension in
pr2 "";
outfiles +> List.iter (fun (infile, outopt) ->
let (dir, base, ext) = Common.dbe_of_filename infile in
let expected_suffix =
match ext with
| "c" -> extension
| "h" -> "h."^extension
| s -> failwith ("weird C file, not a .c or .h :" ^ s)
in
let expected_res =
Common.filename_of_dbe (dir, base, expected_suffix) in
let expected_res2 =
Common.filename_of_dbe (dir,"corrected_"^ base,expected_suffix)
in
match outopt, Common.lfile_exists expected_res with
| None, false -> ()
| Some outfile, false ->
let s =
Printf.sprintf
"PB: input file %s modified but no %s" infile expected_res in
pr2 s
| x, true ->
let outfile =
match x with
| Some outfile -> outfile
| None -> infile
in
let diff = Compare_c.compare_default outfile expected_res in
let s1 = (Compare_c.compare_result_to_string diff) in
if fst diff = Compare_c.Correct
then pr2_no_nl (infile ^ " " ^ s1)
else
if Common.lfile_exists expected_res2
then begin
let diff = Compare_c.compare_default outfile expected_res2 in
let s2 = Compare_c.compare_result_to_string diff in
if fst diff = Compare_c.Correct
then pr2 (infile ^ " is spatchOK " ^ s2)
else pr2 (infile ^ " is failed " ^ s2)
end
else pr2 (infile ^ " is failed " ^ s1)
)
(*****************************************************************************)
(* Subsystem testing *)
(*****************************************************************************)
let test_parse_cocci file =
if not (file =~ ".*\\.cocci")
then pr2 "warning: seems not a .cocci file";
let (mvs,xs,_,_,_,_,_,query,_,_) =
Parse_cocci.process file (Some !Config.std_iso) false in
xs +> List.iter2 Pretty_print_cocci.unparse mvs;
Format.print_newline();
(* compile ocaml script code *)
(match Prepare_ocamlcocci.prepare file xs with
None -> ()
| Some ocaml_script_file ->
(* compile file *)
Prepare_ocamlcocci.load_file ocaml_script_file;
(* remove file *)
(if not !Common.save_tmp_files
then Prepare_ocamlcocci.clean_file ocaml_script_file);
(* Print the list of registered functions *)
Prepare_ocamlcocci.test ());
flush stdout; flush stderr;
match (!Flag.scanner,query) with
((Flag.CocciGrep|Flag.NoScanner|Flag.GitGrep
|Flag.PatchDiff|Flag.PatchDiffRange _),(query,_,_,_)) ->
(match query with
None -> pr "No grep query"
| Some x ->
Printf.printf "Grep query\n";
pr (String.concat " || " x))
| (Flag.Glimpse,(_,query,_,_)) ->
(match query with
None -> pr "No glimpse query"
| Some x ->
Printf.printf "Glimpse query\n";
pr (String.concat "\nor on glimpse failure\n" x))
| (Flag.IdUtils,(_,_,_,query)) ->
(match query with
None -> pr "No idutils query"
| Some x ->
Printf.printf "Idutils query\n";
pr (Get_constants2.dep2c x))
let print_link t a b =
if not (a = b)
then
(try Hashtbl.find t (a,b)
with Not_found ->
(Hashtbl.add t (a,b) ();
Printf.printf " \"%s\" -> \"%s\";\n" b a))
let print_dotted_link dst = function
"" -> ()
| src -> Printf.printf " \"%s\" -> \"%s\" [style = dotted];\n" src dst
let depto t from d =
let rec loop = function
Ast_cocci.Dep x | Ast_cocci.EverDep x | Ast_cocci.NeverDep x ->
print_link t from x
| Ast_cocci.AndDep(x,y) | Ast_cocci.OrDep(x,y) ->
loop x; loop y
| _ -> () in
match d with
Ast_cocci.NoDep | Ast_cocci.FailDep -> ()
| Ast_cocci.ExistsDep d | Ast_cocci.ForallDep d -> loop d
let test_rule_dependencies file =
let t = Hashtbl.create 101 in
if not (file =~ ".*\\.cocci")
then pr2 "warning: seems not a .cocci file";
Iso_pattern.verbose_iso := false;
let (_,xs,_,fvs,_,_,_,_,_,_) =
Parse_cocci.process file (Some !Config.std_iso) false in
Printf.printf "digraph {\n";
let prevrule = ref "" in
List.iter2
(fun def fvs ->
match def with
Ast_cocci.ScriptRule (nm,_,dep,script_vars,_,_,_) ->
print_dotted_link nm !prevrule;
prevrule := nm;
depto t nm dep;
List.iter (function (_,(parent,_),_,_) -> print_link t nm parent)
script_vars
| Ast_cocci.InitialScriptRule (_,_,_,_,_,_)
| Ast_cocci.FinalScriptRule (_,_,_,_,_,_) -> ()
| Ast_cocci.CocciRule (nm,(dep,_,_),_,_,_) ->
print_dotted_link nm !prevrule;
prevrule := nm;
depto t nm dep;
List.iter (function (parent,_) -> print_link t nm parent)
(List.concat fvs))
xs fvs;
Printf.printf "}\n";
Printf.printf
"// pipe to: ccomps -Cx | dot | gvpack -array_1 | neato -n2 -T pdf\n"
(*****************************************************************************)
(* to be called by ocaml toplevel, to test. *)
(*****************************************************************************)
(* no point to memoize this one *)
let sp_of_file file iso = Parse_cocci.process file iso false
(* TODO: Remove
*)
(*
let flows_of_ast astc =
astc +> Common.map_filter (fun e -> ast_to_flow_with_error_messages e)
let one_flow flows =
List.hd flows
let one_ctl ctls = List.hd (List.hd ctls)
*)