Release coccinelle-0.2.0
[bpt/coccinelle.git] / popl / pretty_print_popl.ml
CommitLineData
9f8e26f4
C
1(*
2 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
3 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
4 * This file is part of Coccinelle.
5 *
6 * Coccinelle is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, according to version 2 of the License.
9 *
10 * Coccinelle is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * The authors reserve the right to distribute this or future versions of
19 * Coccinelle under other licenses.
20 *)
21
22
951c7801
C
23open Format
24module Past = Ast_popl
25
26let start_block str =
27 force_newline(); print_string " "; open_box 0
28
29let end_block str =
30 close_box(); force_newline ()
31
32(* --------------------------------------------------------------------- *)
33
34let rec print_sequence = function
35 Past.Seq(e,seq) -> print_element e; force_newline(); print_sequence seq
36 | Past.Empty -> ()
37 | Past.SExists((_,v),seq) -> print_string "exists "; print_string v;
38 print_string " ."; force_newline(); print_sequence seq
39
40and print_element = function
41 Past.Term(term) -> Pretty_print_cocci.rule_elem "" term
42 | Past.Or(seq1,seq2) ->
43 force_newline(); print_string "("; force_newline(); print_sequence seq1;
44 print_string "|"; force_newline(); print_sequence seq2; print_string ")"
45 | Past.DInfo(dots,bef,aft) ->
46 start_block();
47 List.iter
48 (function b -> print_string ">>>"; print_element b; force_newline())
49 bef;
50 print_dots dots;
51 List.iter
52 (function b -> force_newline(); print_string "<<<"; print_element b)
53 aft;
54 end_block()
55 | Past.EExists((_,v),elem) -> print_string "exists "; print_string v;
56 print_string " ."; force_newline(); print_element elem
57
58and print_dots = function
59 Past.Dots -> print_string "..."
60 | Past.Nest(seq)-> print_string "<..."; start_block(); print_sequence seq;
61 end_block(); print_string "...>"
62 | Past.When(dots,seq) -> print_dots dots; print_string " when != ";
63 open_box 0; print_sequence seq; close_box()
64 | Past.DExists((_,v),dots) -> print_string "exists "; print_string v;
65 print_string " ."; force_newline(); print_dots dots
66
67(* --------------------------------------------------------------------- *)
68
69let pretty_print_e e =
70 print_element e;
71 print_newline()
72
73let pretty_print sl =
74 print_sequence sl;
75 print_newline()
76