Version 1.0.0-rc17 has been released. Some changes are:
[bpt/coccinelle.git] / ctl / pretty_print_ctl.ml
CommitLineData
f537ebc4 1(*
17ba0788
C
2 * Copyright 2012, INRIA
3 * Julia Lawall, Gilles Muller
4 * Copyright 2010-2011, INRIA, University of Copenhagen
f537ebc4
C
5 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
6 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
7 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
8 * This file is part of Coccinelle.
9 *
10 * Coccinelle is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, according to version 2 of the License.
13 *
14 * Coccinelle is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
21 *
22 * The authors reserve the right to distribute this or future versions of
23 * Coccinelle under other licenses.
24 *)
25
26
feec80c3 27# 0 "./pretty_print_ctl.ml"
34e49164
C
28open Common
29open Format
30
31open Ast_ctl
32
33(* todo?: a txt_to_latex, that use Format to compute the good space but
34 * then generate latex to better output.
35 *)
36
37let char_and = "&"
38let char_and_any = "&+"
39let char_hack = "&h+"
40let char_or = "v"
41let char_seqor = "|"
42let char_not = "!"
43let char_back = "^"
44
45(*
46let char_and = "/\\"
47let char_or = "\\/"
48let char_not = "-|"
49*)
50
51(* need introduce the Val constructor, or use -rectype. *)
ae4735db
C
52type ('a,'b,'c) environment = (string, ('a,'b,'c) binding_val) Common.assoc
53and ('a, 'b, 'c) binding_val =
34e49164
C
54 Val of ('a,'b,'c) generic_ctl * ('a,'b,'c) environment
55
ae4735db
C
56let rec (pp_ctl:
57 ('pred -> unit) * ('mvar -> unit) -> bool ->
58 ('pred, 'mvar, 'info) generic_ctl ->
59 unit) =
60 fun (pp_pred, pp_mvar) inline_let_def ctl ->
34e49164
C
61
62 let rec pp_aux env = function
63 False -> pp "False"
64 | True -> pp "True"
65 | Pred(p) -> pp_pred p
66 | Not(phi) ->
67 pp char_not; Common.pp_do_in_box (fun () -> pp_aux env phi)
ae4735db 68 | Exists(keep,v,phi) ->
34e49164
C
69 pp "(";
70 if keep then pp ("Ex ") else pp ("Ex_ ");
71 pp_mvar v;
ae4735db 72 pp " . ";
34e49164 73 print_cut();
ae4735db 74 Common.pp_do_in_box (fun () -> pp_aux env phi);
34e49164
C
75 pp ")";
76 | AndAny(dir,s,phi1,phi2) ->
ae4735db 77 pp_2args env (char_and_any^(pp_dirc dir)^(pp_sc s)) phi1 phi2;
34e49164 78 | HackForStmt(dir,s,phi1,phi2) ->
ae4735db
C
79 pp_2args env (char_hack^(pp_dirc dir)^(pp_sc s)) phi1 phi2;
80 | And(s,phi1,phi2) -> pp_2args env (char_and^(pp_sc s)) phi1 phi2;
81 | Or(phi1,phi2) -> pp_2args env char_or phi1 phi2;
82 | SeqOr(phi1,phi2) -> pp_2args env char_seqor phi1 phi2;
34e49164 83 | Implies(phi1,phi2) -> pp_2args env "=>" phi1 phi2;
ae4735db
C
84 | AF(dir,s,phi1) -> pp "AF"; pp_dir dir; pp_s s; pp_arg_paren env phi1;
85 | AX(dir,s,phi1) -> pp "AX"; pp_dir dir; pp_s s; pp_arg_paren env phi1;
34e49164
C
86 | AG(dir,s,phi1) -> pp "AG"; pp_dir dir; pp_s s; pp_arg_paren env phi1;
87 | EF(dir,phi1) -> pp "EF"; pp_dir dir; pp_arg_paren env phi1;
ae4735db
C
88 | EX(dir,phi1) -> pp "EX"; pp_dir dir; pp_arg_paren env phi1;
89 | EG(dir,phi1) -> pp "EG"; pp_dir dir; pp_arg_paren env phi1;
34e49164 90 | AW(dir,s,phi1,phi2) ->
ae4735db
C
91 pp "A"; pp_dir dir; pp_s s; pp "[";
92 pp_2args_bis env "W" phi1 phi2;
93 pp "]"
34e49164 94 | AU(dir,s,phi1,phi2) ->
ae4735db
C
95 pp "A"; pp_dir dir; pp_s s; pp "[";
96 pp_2args_bis env "U" phi1 phi2;
97 pp "]"
34e49164 98 | EU(dir,phi1,phi2) ->
ae4735db
C
99 pp "E"; pp_dir dir; pp "[";
100 pp_2args_bis env "U" phi1 phi2;
101 pp "]"
102 | Let (x,phi1,phi2) ->
34e49164 103 let env' = (x, (Val (phi1,env)))::env in
ae4735db 104
34e49164
C
105 if not inline_let_def
106 then
107 begin
108 pp ("Let"^" "^x);
109 pp " = ";
110 print_cut();
111 Common.pp_do_in_box (fun () -> pp_aux env phi1);
112 print_space ();
ae4735db 113 pp "in";
34e49164
C
114 print_space ();
115 end;
116 pp_do_in_zero_box (fun () -> pp_aux env' phi2);
ae4735db 117 | LetR (dir,x,phi1,phi2) ->
34e49164 118 let env' = (x, (Val (phi1,env)))::env in
ae4735db 119
34e49164
C
120 if not inline_let_def
121 then
122 begin
123 pp ("LetR"^" "^x); pp_dir dir;
124 pp " = ";
125 print_cut();
126 Common.pp_do_in_box (fun () -> pp_aux env phi1);
127 print_space ();
ae4735db 128 pp "in";
34e49164
C
129 print_space ();
130 end;
131 pp_do_in_zero_box (fun () -> pp_aux env' phi2);
ae4735db 132 | Ref(s) ->
34e49164
C
133 if inline_let_def
134 then
135 let Val (phi1,env') = List.assoc s env in
136 pp_aux env' phi1
ae4735db 137 else
34e49164 138 (* pp "Ref("; *)
ae4735db 139 pp s
34e49164
C
140 (* pp ")" *)
141 | Uncheck(phi1) ->
142 pp "Uncheck"; pp_arg_paren env phi1
143 | InnerAnd(phi1) ->
144 pp "InnerAnd"; pp_arg_paren env phi1
145 | XX _ -> failwith "should be removed"
146
147 and pp_dir = function
148 FORWARD -> ()
149 | BACKWARD -> pp char_back
ae4735db 150
34e49164
C
151 and pp_dirc = function
152 FORWARD -> ""
153 | BACKWARD -> char_back
ae4735db 154
34e49164
C
155 and pp_s = function
156 STRICT -> if !Flag_ctl.partial_match then pp "," else ()
157 | NONSTRICT -> ()
ae4735db 158
34e49164
C
159 and pp_sc = function
160 STRICT -> ","
161 | NONSTRICT -> ""
ae4735db
C
162
163 and pp_2args env sym phi1 phi2 =
34e49164
C
164 begin
165 pp "(";
ae4735db 166 Common.pp_do_in_box (fun () -> pp_aux env phi1);
34e49164
C
167 print_space();
168 pp sym;
169 print_space ();
170 Common.pp_do_in_box (fun () -> pp_aux env phi2);
171 pp ")";
172 end
ae4735db 173 and pp_2args_bis env sym phi1 phi2 =
34e49164 174 begin
ae4735db 175 Common.pp_do_in_box (fun () -> pp_aux env phi1);
34e49164
C
176 print_space();
177 pp sym;
178 print_space();
179 Common.pp_do_in_box (fun () -> pp_aux env phi2);
180 end
ae4735db
C
181
182 and pp_arg_paren env phi = Common.pp_do_in_box (fun () ->
34e49164
C
183 pp "(";
184 pp_aux env phi;
185 pp ")";
ae4735db 186 )
34e49164
C
187 in
188 Common.pp_do_in_box (fun () -> pp_aux [] ctl;)