Release coccinelle-0.1.11rc1
[bpt/coccinelle.git] / engine / pretty_print_engine.ml
CommitLineData
34e49164 1(*
951c7801
C
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 *)
34e49164
C
21
22
23open Common.Infix
24
25open Lib_engine
26
27
28let pp = Common.pp
29
30let pp_meta (_,x) = pp x
31
32let rec pp_binding_kind = function
33 | Ast_c.MetaIdVal s -> pp ("id " ^ s)
34 | Ast_c.MetaFuncVal s -> pp ("func " ^ s)
35 | Ast_c.MetaLocalFuncVal s -> pp ("localfunc " ^ s)
978fd7e5 36 | Ast_c.MetaExprVal expr -> Pretty_print_c.pp_expression_simple expr
34e49164 37 | Ast_c.MetaExprListVal expr_list -> pp "<<exprlist>>"
113803cf
C
38 | Ast_c.MetaInitVal ini ->
39 Pretty_print_c.pp_init_simple ini
34e49164
C
40 | Ast_c.MetaTypeVal typ ->
41 Pretty_print_c.pp_type_simple typ
42 | Ast_c.MetaStmtVal statement ->
43 Pretty_print_c.pp_statement_simple statement
44 | Ast_c.MetaParamVal params -> pp "<<param>>"
45 | Ast_c.MetaParamListVal params -> pp "<<paramlist>>"
46 | Ast_c.MetaListlenVal n -> pp (string_of_int n)
47 | Ast_c.MetaPosVal (pos1, pos2) ->
48 let print_pos = function
49 Ast_cocci.Real x -> string_of_int x
50 | Ast_cocci.Virt(x,off) -> Printf.sprintf "%d+%d" x off in
51 pp (Common.sprintf ("pos(%s,%s)") (print_pos pos1) (print_pos pos2))
52 | Ast_c.MetaPosValList l ->
53 pp (Common.sprintf ("poss[%s]")
54 (String.concat ", "
55 (List.map
485bce71
C
56 (function (fl,ce,(minl,minc),(maxl,maxc)) ->
57 Printf.sprintf "(%s,%s,(%d,%d),(%d,%d))"
58 fl ce minl minc maxl maxc)
34e49164
C
59 l)))
60
61and pp_binding subst =
62 begin
63 pp "[";
64 Common.print_between (fun () -> pp ";"; Format.print_cut() )
65 (fun ((_,s), kind) -> pp s; pp " --> "; pp_binding_kind kind)
66 subst;
67 pp "]";
68 end
69
70
71let pp_binding_kind2 = function
72 | ParenVal s -> pp "pv("; pp_meta s; pp ")"
73 | NormalMetaVal x -> pp_binding_kind x
74 | LabelVal xs ->
75 begin
76 pp "labelval";
77 pp "(";
78 Common.print_between (fun () -> pp ",") Format.print_int xs;
79 pp ")";
80 end
81 | GoodVal -> pp "goodval"
82 | BadVal -> pp "badval"
83
84
85let rec pp_predicate = function
86 | InLoop -> pp "InLoop"
87 | TrueBranch -> pp "TrueBranch"
88 | FalseBranch -> pp "FalseBranch"
89 | After -> pp "After"
90 | FallThrough -> pp "FallThrough"
951c7801 91 | LoopFallThrough -> pp "LoopFallThrough"
34e49164
C
92 | Return -> pp "Return"
93 | FunHeader -> pp "FunHeader"
94 | Top -> pp "Top"
95 | ErrorExit -> pp "ErrorExit"
96 | Exit -> pp "Exit"
97 | Goto -> pp "Goto"
98 | Paren s -> pp "Paren("; pp_meta s; pp ")"
99 | Match (re) -> Pretty_print_cocci.print_rule_elem re
100 | Label s -> pp "Label("; pp_meta s; pp ")"
101 | BCLabel s -> pp "BreakContinueLabel("; pp_meta s; pp ")"
102 | PrefixLabel s -> pp "PrefixLabel("; pp_meta s; pp ")"
103 | BindGood s -> pp "BindGood("; pp_meta s; pp ")"
104 | BindBad s -> pp "BindBad("; pp_meta s; pp ")"
105 | FakeBrace -> pp "FakeBrace"
106
107and pp_binding2 subst =
108 begin
109 pp "[";
110 Common.print_between (fun () -> pp ";";Format.print_cut(); )
111 (fun (s, kind) -> pp s; pp " --> "; pp_binding_kind2 kind)
112 subst;
113 pp "]";
114 end
115
116and pp_binding2_ctlsubst subst =
117 begin
118 pp "[";
119 Common.print_between (fun () -> pp ";"; Format.print_cut(); )
120 (function
121 Ast_ctl.Subst (s, kind) ->
122 pp_meta s; pp " --> "; pp_binding_kind2 kind;
123 | Ast_ctl.NegSubst (s, kind) ->
124 pp_meta s; pp " -/-> "; pp_binding_kind2 kind;
125 )
126 subst;
127 pp "]";
128 end
129
130let predicate_to_string pred =
131 Common.format_to_string (function _ -> pp_predicate pred)
132
133
134let pp_pred_smodif = fun (pred, smodif) ->
135 begin
136 pp_predicate pred;
137(*
138 (match smodif with
139 | Ast_ctl.Modif x | Ast_ctl.UnModif x -> pp " with <modifTODO>"
140 | Ast_ctl.Control -> ()
141 )
142*)
143 end
144
145
146let pp_ctlcocci show_plus inline_let_def ctl =
147 begin
148 if show_plus
149 then begin
150 Pretty_print_cocci.print_plus_flag := true;
151 Pretty_print_cocci.print_minus_flag := true;
152 end
153 else begin
154 Pretty_print_cocci.print_plus_flag := false;
155 Pretty_print_cocci.print_minus_flag := false;
156 end;
157 Common.pp_do_in_box (fun () ->
158 Pretty_print_ctl.pp_ctl (pp_pred_smodif,(fun s -> pp_meta s))
159 inline_let_def ctl;
160 );
161 end
162
163