Release coccinelle-0.1.6
[bpt/coccinelle.git] / parsing_cocci / .#pretty_print_cocci.ml.1.135
CommitLineData
0708f913
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
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
23open Format
24module Ast = Ast_cocci
25
26let print_plus_flag = ref true
27let print_minus_flag = ref true
28let print_newlines_disj = ref true
29
30let start_block str =
31 force_newline(); print_string " "; open_box 0
32
33let end_block str =
34 close_box(); force_newline ()
35
36let print_string_box s = print_string s; open_box 0
37
38
39let print_option = Common.do_option
40let print_between = Common.print_between
41
42(* --------------------------------------------------------------------- *)
43(* Modified code *)
44
45(* avoid polyvariance problems *)
46let anything : (Ast.anything -> unit) ref = ref (function _ -> ())
47
48let rec print_anything str = function
49 [] -> ()
50 | stream ->
51 start_block();
52 print_between force_newline
53 (function x ->
54 print_string str; open_box 0; print_anything_list x; close_box())
55 stream;
56 end_block()
57
58and print_anything_list = function
59 [] -> ()
60 | [x] -> !anything x
61 | bef::((aft::_) as rest) ->
62 !anything bef;
63 let space =
64 (match bef with
65 Ast.Rule_elemTag(_) | Ast.AssignOpTag(_) | Ast.BinaryOpTag(_)
66 | Ast.ArithOpTag(_) | Ast.LogicalOpTag(_)
67 | Ast.Token("if",_) | Ast.Token("while",_) -> true | _ -> false) or
68 (match aft with
69 Ast.Rule_elemTag(_) | Ast.AssignOpTag(_) | Ast.BinaryOpTag(_)
70 | Ast.ArithOpTag(_) | Ast.LogicalOpTag(_) | Ast.Token("{",_) -> true
71 | _ -> false) in
72 if space then print_string " ";
73 print_anything_list rest
74
75let print_around printer term = function
76 Ast.NOTHING -> printer term
77 | Ast.BEFORE(bef) -> print_anything "<<< " bef; printer term
78 | Ast.AFTER(aft) -> printer term; print_anything ">>> " aft
79 | Ast.BEFOREAFTER(bef,aft) ->
80 print_anything "<<< " bef; printer term; print_anything ">>> " aft
81
82let print_string_befaft fn x info =
83 List.iter (function s -> print_string s; force_newline())
84 info.Ast.strbef;
85 fn x;
86 List.iter (function s -> force_newline(); print_string s)
87 info.Ast.straft
88
89let print_meta (r,x) = print_string r; print_string ":"; print_string x
90
91let print_pos = function
92 Ast.MetaPos(name,_,_,_,_) ->
93 let name = Ast.unwrap_mcode name in
94 print_string "@"; print_meta name
95 | _ -> ()
96
97let mcode fn = function
98 (x, _, Ast.MINUS(_,plus_stream), pos) ->
99 if !print_minus_flag
100 then print_string (if !Flag.sgrep_mode2 then "*" else "-");
101 fn x; print_pos pos;
102 if !print_plus_flag
103 then print_anything ">>> " plus_stream
104 | (x, _, Ast.CONTEXT(_,plus_streams), pos) ->
105 if !print_plus_flag
106 then
107 let fn x = fn x; print_pos pos in
108 print_around fn x plus_streams
109 else (fn x; print_pos pos)
110 | (x, info, Ast.PLUS, pos) ->
111 let fn x = fn x; print_pos pos in
112 print_string_befaft fn x info
113
114let print_mcodekind = function
115 Ast.MINUS(_,plus_stream) ->
116 print_string "MINUS";
117 print_anything ">>> " plus_stream
118 | Ast.CONTEXT(_,plus_streams) ->
119 print_around (function _ -> print_string "CONTEXT") () plus_streams
120 | Ast.PLUS -> print_string "PLUS"
121
122(* --------------------------------------------------------------------- *)
123(* --------------------------------------------------------------------- *)
124(* Dots *)
125
126let dots between fn d =
127 match Ast.unwrap d with
128 Ast.DOTS(l) -> print_between between fn l
129 | Ast.CIRCLES(l) -> print_between between fn l
130 | Ast.STARS(l) -> print_between between fn l
131
132let nest_dots multi fn f d =
133 let mo s = if multi then "<+"^s else "<"^s in
134 let mc s = if multi then s^"+>" else s^">" in
135 match Ast.unwrap d with
136 Ast.DOTS(l) ->
137 print_string (mo "..."); f(); start_block();
138 print_between force_newline fn l;
139 end_block(); print_string (mc "...")
140 | Ast.CIRCLES(l) ->
141 print_string (mo "ooo"); f(); start_block();
142 print_between force_newline fn l;
143 end_block(); print_string (mc "ooo")
144 | Ast.STARS(l) ->
145 print_string (mo "***"); f(); start_block();
146 print_between force_newline fn l;
147 end_block(); print_string (mc "***")
148
149(* --------------------------------------------------------------------- *)
150
151let print_type keep info = function
152 None -> ()
153 (* print_string "/* ";
154 print_string "keep:"; print_unitary keep;
155 print_string " inherited:"; print_bool inherited;
156 print_string " */"*)
157 | Some ty -> ()
158 (*;
159 print_string "/* ";
160 print_between (function _ -> print_string ", ") Type_cocci.typeC ty;(*
161 print_string "keep:"; print_unitary keep;
162 print_string " inherited:"; print_bool inherited;*)
163 print_string " */"*)
164
165(* --------------------------------------------------------------------- *)
166(* Identifier *)
167
168let rec ident i =
169 match Ast.unwrap i with
170 Ast.Id(name) -> mcode print_string name
171 | Ast.MetaId(name,_,keep,inherited) -> mcode print_meta name
172 | Ast.MetaFunc(name,_,_,_) -> mcode print_meta name
173 | Ast.MetaLocalFunc(name,_,_,_) -> mcode print_meta name
174 | Ast.OptIdent(id) -> print_string "?"; ident id
175 | Ast.UniqueIdent(id) -> print_string "!"; ident id
176
177and print_unitary = function
178 Type_cocci.Unitary -> print_string "unitary"
179 | Type_cocci.Nonunitary -> print_string "nonunitary"
180 | Type_cocci.Saved -> print_string "saved"
181
182(* --------------------------------------------------------------------- *)
183(* Expression *)
184
185let print_disj_list fn l =
186 if !print_newlines_disj
187 then (force_newline(); print_string "("; force_newline())
188 else print_string "(";
189 print_between
190 (function _ ->
191 if !print_newlines_disj
192 then (force_newline(); print_string "|"; force_newline())
193 else print_string " | ")
194 fn l;
195 if !print_newlines_disj
196 then (force_newline(); print_string ")"; force_newline())
197 else print_string ")"
198
199let rec expression e =
200 match Ast.unwrap e with
201 Ast.Ident(id) -> ident id
202 | Ast.Constant(const) -> mcode constant const
203 | Ast.FunCall(fn,lp,args,rp) ->
204 expression fn; mcode print_string_box lp;
205 dots (function _ -> ()) expression args;
206 close_box(); mcode print_string rp
207 | Ast.Assignment(left,op,right,simple) ->
208 expression left; print_string " "; mcode assignOp op;
209 print_string " "; expression right
210 | Ast.CondExpr(exp1,why,exp2,colon,exp3) ->
211 expression exp1; print_string " "; mcode print_string why;
212 print_option (function e -> print_string " "; expression e) exp2;
213 print_string " "; mcode print_string colon; expression exp3
214 | Ast.Postfix(exp,op) -> expression exp; mcode fixOp op
215 | Ast.Infix(exp,op) -> mcode fixOp op; expression exp
216 | Ast.Unary(exp,op) -> mcode unaryOp op; expression exp
217 | Ast.Binary(left,op,right) ->
218 expression left; print_string " "; mcode binaryOp op; print_string " ";
219 expression right
220 | Ast.Nested(left,op,right) ->
221 expression left; print_string " "; mcode binaryOp op; print_string " ";
222 expression right
223 | Ast.Paren(lp,exp,rp) ->
224 mcode print_string_box lp; expression exp; close_box();
225 mcode print_string rp
226 | Ast.ArrayAccess(exp1,lb,exp2,rb) ->
227 expression exp1; mcode print_string_box lb; expression exp2; close_box();
228 mcode print_string rb
229 | Ast.RecordAccess(exp,pt,field) ->
230 expression exp; mcode print_string pt; ident field
231 | Ast.RecordPtAccess(exp,ar,field) ->
232 expression exp; mcode print_string ar; ident field
233 | Ast.Cast(lp,ty,rp,exp) ->
234 mcode print_string_box lp; fullType ty; close_box();
235 mcode print_string rp; expression exp
236 | Ast.SizeOfExpr(sizeof,exp) ->
237 mcode print_string sizeof; expression exp
238 | Ast.SizeOfType(sizeof,lp,ty,rp) ->
239 mcode print_string sizeof;
240 mcode print_string_box lp; fullType ty; close_box();
241 mcode print_string rp
242 | Ast.TypeExp(ty) -> fullType ty
243
244 | Ast.MetaErr(name,_,_,_) -> mcode print_meta name
245 | Ast.MetaExpr(name,_,keep,ty,form,inherited) ->
246 mcode print_meta name; print_type keep inherited ty
247 | Ast.MetaExprList(name,_,_,_) -> mcode print_meta name
248 | Ast.EComma(cm) -> mcode print_string cm; print_space()
249 | Ast.DisjExpr(exp_list) -> print_disj_list expression exp_list
250 | Ast.NestExpr(expr_dots,Some whencode,multi) ->
251 nest_dots multi expression
252 (function _ -> print_string " when != "; expression whencode)
253 expr_dots
254 | Ast.NestExpr(expr_dots,None,multi) ->
255 nest_dots multi expression (function _ -> ()) expr_dots
256 | Ast.Edots(dots,Some whencode)
257 | Ast.Ecircles(dots,Some whencode)
258 | Ast.Estars(dots,Some whencode) ->
259 mcode print_string dots; print_string " when != "; expression whencode
260 | Ast.Edots(dots,None)
261 | Ast.Ecircles(dots,None)
262 | Ast.Estars(dots,None) -> mcode print_string dots
263 | Ast.OptExp(exp) -> print_string "?"; expression exp
264 | Ast.UniqueExp(exp) -> print_string "!"; expression exp
265
266and unaryOp = function
267 Ast.GetRef -> print_string "&"
268 | Ast.DeRef -> print_string "*"
269 | Ast.UnPlus -> print_string "+"
270 | Ast.UnMinus -> print_string "-"
271 | Ast.Tilde -> print_string "~"
272 | Ast.Not -> print_string "!"
273
274and assignOp = function
275 Ast.SimpleAssign -> print_string "="
276 | Ast.OpAssign(aop) -> arithOp aop; print_string "="
277
278and fixOp = function
279 Ast.Dec -> print_string "--"
280 | Ast.Inc -> print_string "++"
281
282and binaryOp = function
283 Ast.Arith(aop) -> arithOp aop
284 | Ast.Logical(lop) -> logicalOp lop
285
286and arithOp = function
287 Ast.Plus -> print_string "+"
288 | Ast.Minus -> print_string "-"
289 | Ast.Mul -> print_string "*"
290 | Ast.Div -> print_string "/"
291 | Ast.Mod -> print_string "%"
292 | Ast.DecLeft -> print_string "<<"
293 | Ast.DecRight -> print_string ">>"
294 | Ast.And -> print_string "&"
295 | Ast.Or -> print_string "|"
296 | Ast.Xor -> print_string "^"
297
298and logicalOp = function
299 Ast.Inf -> print_string "<"
300 | Ast.Sup -> print_string ">"
301 | Ast.InfEq -> print_string "<="
302 | Ast.SupEq -> print_string ">="
303 | Ast.Eq -> print_string "=="
304 | Ast.NotEq -> print_string "!="
305 | Ast.AndLog -> print_string "&&"
306 | Ast.OrLog -> print_string "||"
307
308and constant = function
309 Ast.String(s) -> print_string "\""; print_string s; print_string "\""
310 | Ast.Char(s) -> print_string "'"; print_string s; print_string "'"
311 | Ast.Int(s) -> print_string s
312 | Ast.Float(s) -> print_string s
313
314(* --------------------------------------------------------------------- *)
315(* Declarations *)
316
317and storage = function
318 Ast.Static -> print_string "static "
319 | Ast.Auto -> print_string "auto "
320 | Ast.Register -> print_string "register "
321 | Ast.Extern -> print_string "extern "
322
323(* --------------------------------------------------------------------- *)
324(* Types *)
325
326and fullType ft =
327 match Ast.unwrap ft with
328 Ast.Type(cv,ty) ->
329 print_option (function x -> mcode const_vol x; print_string " ") cv;
330 typeC ty
331 | Ast.DisjType(decls) -> print_disj_list fullType decls
332 | Ast.OptType(ty) -> print_string "?"; fullType ty
333 | Ast.UniqueType(ty) -> print_string "!"; fullType ty
334
335and print_function_pointer (ty,lp1,star,rp1,lp2,params,rp2) fn =
336 fullType ty; mcode print_string lp1; mcode print_string star; fn();
337 mcode print_string rp1; mcode print_string lp1;
338 parameter_list params; mcode print_string rp2
339
340and print_function_type (ty,lp1,params,rp1) fn =
341 print_option fullType ty; fn(); mcode print_string lp1;
342 parameter_list params; mcode print_string rp1
343
344and print_fninfo = function
345 Ast.FStorage(stg) -> mcode storage stg
346 | Ast.FType(ty) -> fullType ty
347 | Ast.FInline(inline) -> mcode print_string inline; print_string " "
348 | Ast.FAttr(attr) -> mcode print_string attr; print_string " "
349
350and typeC ty =
351 match Ast.unwrap ty with
352 Ast.BaseType(ty,strings) ->
353 List.iter (function s -> mcode print_string s; print_string " ") strings
354 | Ast.SignedT(sgn,ty) -> mcode sign sgn; print_option typeC ty
355 | Ast.Pointer(ty,star) -> fullType ty; mcode print_string star
356 | Ast.FunctionPointer(ty,lp1,star,rp1,lp2,params,rp2) ->
357 print_function_pointer (ty,lp1,star,rp1,lp2,params,rp2)
358 (function _ -> ())
359 | Ast.FunctionType (_,ty,lp1,params,rp1) ->
360 print_function_type (ty,lp1,params,rp1) (function _ -> ())
361 | Ast.Array(ty,lb,size,rb) ->
362 fullType ty; mcode print_string lb; print_option expression size;
363 mcode print_string rb
364 | Ast.EnumName(kind,name) -> mcode print_string kind; print_string " ";
365 ident name
366 | Ast.StructUnionName(kind,name) ->
367 mcode structUnion kind;
368 print_option (function x -> ident x; print_string " ") name
369 | Ast.StructUnionDef(ty,lb,decls,rb) ->
370 fullType ty; mcode print_string lb;
371 dots force_newline declaration decls;
372 mcode print_string rb
373 | Ast.TypeName(name) -> mcode print_string name; print_string " "
374 | Ast.MetaType(name,_,_) ->
375 mcode print_meta name; print_string " "
376
377and baseType = function
378 Ast.VoidType -> print_string "void "
379 | Ast.CharType -> print_string "char "
380 | Ast.ShortType -> print_string "short "
381 | Ast.IntType -> print_string "int "
382 | Ast.DoubleType -> print_string "double "
383 | Ast.FloatType -> print_string "float "
384 | Ast.LongType -> print_string "long "
385 | Ast.LongLongType -> print_string "long long "
386
387and structUnion = function
388 Ast.Struct -> print_string "struct "
389 | Ast.Union -> print_string "union "
390
391and sign = function
392 Ast.Signed -> print_string "signed "
393 | Ast.Unsigned -> print_string "unsigned "
394
395and const_vol = function
396 Ast.Const -> print_string "const"
397 | Ast.Volatile -> print_string "volatile"
398
399(* --------------------------------------------------------------------- *)
400(* Variable declaration *)
401(* Even if the Cocci program specifies a list of declarations, they are
402 split out into multiple declarations of a single variable each. *)
403
404and print_named_type ty id =
405 match Ast.unwrap ty with
406 Ast.Type(None,ty1) ->
407 (match Ast.unwrap ty1 with
408 Ast.FunctionPointer(ty,lp1,star,rp1,lp2,params,rp2) ->
409 print_function_pointer (ty,lp1,star,rp1,lp2,params,rp2)
410 (function _ -> print_string " "; ident id)
411 | Ast.FunctionType(_,ty,lp1,params,rp1) ->
412 print_function_type (ty,lp1,params,rp1)
413 (function _ -> print_string " "; ident id)
414 | Ast.Array(ty,lb,size,rb) ->
415 let rec loop ty k =
416 match Ast.unwrap ty with
417 Ast.Array(ty,lb,size,rb) ->
418 (match Ast.unwrap ty with
419 Ast.Type(None,ty) ->
420 loop ty
421 (function _ ->
422 k ();
423 mcode print_string lb;
424 print_option expression size;
425 mcode print_string rb)
426 | _ -> failwith "complex array types not supported")
427 | _ -> typeC ty; ident id; k () in
428 loop ty1 (function _ -> ())
429 | _ -> fullType ty; ident id)
430 | _ -> fullType ty; ident id
431
432and declaration d =
433 match Ast.unwrap d with
434 Ast.Init(stg,ty,id,eq,ini,sem) ->
435 print_option (mcode storage) stg; print_named_type ty id;
436 print_string " "; mcode print_string eq;
437 print_string " "; initialiser ini; mcode print_string sem
438 | Ast.UnInit(stg,ty,id,sem) ->
439 print_option (mcode storage) stg; print_named_type ty id;
440 mcode print_string sem
441 | Ast.MacroDecl(name,lp,args,rp,sem) ->
442 ident name; mcode print_string_box lp;
443 dots (function _ -> ()) expression args;
444 close_box(); mcode print_string rp; mcode print_string sem
445 | Ast.TyDecl(ty,sem) -> fullType ty; mcode print_string sem
446 | Ast.Typedef(stg,ty,id,sem) ->
447 mcode print_string stg; print_string " "; fullType ty; typeC id;
448 mcode print_string sem
449 | Ast.DisjDecl(decls) -> print_disj_list declaration decls
450 | Ast.Ddots(dots,Some whencode) ->
451 mcode print_string dots; print_string " when != "; declaration whencode
452 | Ast.Ddots(dots,None) -> mcode print_string dots
453 | Ast.MetaDecl(name,_,_) -> mcode print_meta name
454 | Ast.OptDecl(decl) -> print_string "?"; declaration decl
455 | Ast.UniqueDecl(decl) -> print_string "!"; declaration decl
456
457(* --------------------------------------------------------------------- *)
458(* Initialiser *)
459
460and initialiser i =
461 match Ast.unwrap i with
462 Ast.MetaInit(name,_,_) ->
463 mcode print_meta name; print_string " "
464 | Ast.InitExpr(exp) -> expression exp
465 | Ast.InitList(lb,initlist,rb,whencode) ->
466 mcode print_string lb; open_box 0;
467 if not (whencode = [])
468 then
469 (print_string " WHEN != ";
470 print_between (function _ -> print_string " v ")
471 initialiser whencode;
472 force_newline());
473 List.iter initialiser initlist; close_box();
474 mcode print_string rb
475 | Ast.InitGccExt(designators,eq,ini) ->
476 List.iter designator designators; print_string " ";
477 mcode print_string eq; print_string " "; initialiser ini
478 | Ast.InitGccName(name,eq,ini) ->
479 ident name; mcode print_string eq; initialiser ini
480 | Ast.IComma(comma) -> mcode print_string comma; force_newline()
481 | Ast.OptIni(ini) -> print_string "?"; initialiser ini
482 | Ast.UniqueIni(ini) -> print_string "!"; initialiser ini
483
484and designator = function
485 Ast.DesignatorField(dot,id) -> mcode print_string dot; ident id
486 | Ast.DesignatorIndex(lb,exp,rb) ->
487 mcode print_string lb; expression exp; mcode print_string rb
488 | Ast.DesignatorRange(lb,min,dots,max,rb) ->
489 mcode print_string lb; expression min; mcode print_string dots;
490 expression max; mcode print_string rb
491
492(* --------------------------------------------------------------------- *)
493(* Parameter *)
494
495and parameterTypeDef p =
496 match Ast.unwrap p with
497 Ast.VoidParam(ty) -> fullType ty
498 | Ast.Param(ty,Some id) -> print_named_type ty id
499 | Ast.Param(ty,None) -> fullType ty
500 | Ast.MetaParam(name,_,_) -> mcode print_meta name
501 | Ast.MetaParamList(name,_,_,_) -> mcode print_meta name
502 | Ast.PComma(cm) -> mcode print_string cm; print_space()
503 | Ast.Pdots(dots) -> mcode print_string dots
504 | Ast.Pcircles(dots) -> mcode print_string dots
505 | Ast.OptParam(param) -> print_string "?"; parameterTypeDef param
506 | Ast.UniqueParam(param) -> print_string "!"; parameterTypeDef param
507
508and parameter_list l = dots (function _ -> ()) parameterTypeDef l
509
510(* --------------------------------------------------------------------- *)
511(* Top-level code *)
512
513let rec rule_elem arity re =
514 match Ast.unwrap re with
515 Ast.FunHeader(bef,allminus,fninfo,name,lp,params,rp) ->
516 mcode (function _ -> ()) ((),Ast.no_info,bef,Ast.NoMetaPos);
517 print_string arity; List.iter print_fninfo fninfo;
518 ident name; mcode print_string_box lp;
519 parameter_list params; close_box(); mcode print_string rp;
520 print_string " "
521 | Ast.Decl(bef,allminus,decl) ->
522 mcode (function _ -> ()) ((),Ast.no_info,bef,Ast.NoMetaPos);
523 print_string arity;
524 declaration decl
525 | Ast.SeqStart(brace) ->
526 print_string arity; mcode print_string brace;
527 if !print_newlines_disj then start_block()
528 | Ast.SeqEnd(brace) ->
529 if !print_newlines_disj then end_block();
530 print_string arity; mcode print_string brace
531 | Ast.ExprStatement(exp,sem) ->
532 print_string arity; expression exp; mcode print_string sem
533 | Ast.IfHeader(iff,lp,exp,rp) ->
534 print_string arity;
535 mcode print_string iff; print_string " "; mcode print_string_box lp;
536 expression exp; close_box(); mcode print_string rp; print_string " "
537 | Ast.Else(els) ->
538 print_string arity; mcode print_string els; print_string " "
539 | Ast.WhileHeader(whl,lp,exp,rp) ->
540 print_string arity;
541 mcode print_string whl; print_string " "; mcode print_string_box lp;
542 expression exp; close_box(); mcode print_string rp; print_string " "
543 | Ast.DoHeader(d) ->
544 print_string arity; mcode print_string d; print_string " "
545 | Ast.WhileTail(whl,lp,exp,rp,sem) ->
546 print_string arity;
547 mcode print_string whl; print_string " "; mcode print_string_box lp;
548 expression exp; close_box(); mcode print_string rp;
549 mcode print_string sem
550 | Ast.ForHeader(fr,lp,e1,sem1,e2,sem2,e3,rp) ->
551 print_string arity;
552 mcode print_string fr; mcode print_string_box lp;
553 print_option expression e1; mcode print_string sem1;
554 print_option expression e2; mcode print_string sem2;
555 print_option expression e3; close_box();
556 mcode print_string rp; print_string " "
557 | Ast.IteratorHeader(nm,lp,args,rp) ->
558 print_string arity;
559 ident nm; print_string " "; mcode print_string_box lp;
560 dots (function _ -> ()) expression args; close_box();
561 mcode print_string rp; print_string " "
562 | Ast.SwitchHeader(switch,lp,exp,rp) ->
563 print_string arity;
564 mcode print_string switch; print_string " "; mcode print_string_box lp;
565 expression exp; close_box(); mcode print_string rp; print_string " "
566 | Ast.Break(br,sem) ->
567 print_string arity; mcode print_string br; mcode print_string sem
568 | Ast.Continue(cont,sem) ->
569 print_string arity; mcode print_string cont; mcode print_string sem
570 | Ast.Label(l,dd) -> ident l; mcode print_string dd
571 | Ast.Goto(goto,l,sem) ->
572 mcode print_string goto; ident l; mcode print_string sem
573 | Ast.Return(ret,sem) ->
574 print_string arity; mcode print_string ret; mcode print_string sem
575 | Ast.ReturnExpr(ret,exp,sem) ->
576 print_string arity; mcode print_string ret; print_string " ";
577 expression exp; mcode print_string sem
578 | Ast.MetaRuleElem(name,_,_) ->
579 print_string arity; mcode print_meta name
580 | Ast.MetaStmt(name,_,_,_) ->
581 print_string arity; mcode print_meta name
582 | Ast.MetaStmtList(name,_,_) ->
583 print_string arity; mcode print_meta name
584 | Ast.Exp(exp) -> print_string arity; expression exp
585 | Ast.TopExp(exp) -> print_string arity; expression exp
586 | Ast.Ty(ty) -> print_string arity; fullType ty
587 | Ast.TopInit(init) -> initialiser init
588 | Ast.Include(inc,s) ->
589 mcode print_string inc; print_string " "; mcode inc_file s
590 | Ast.DefineHeader(def,id,params) ->
591 mcode print_string def; print_string " "; ident id;
592 print_define_parameters params
593 | Ast.Default(def,colon) ->
594 mcode print_string def; mcode print_string colon; print_string " "
595 | Ast.Case(case,exp,colon) ->
596 mcode print_string case; print_string " "; expression exp;
597 mcode print_string colon; print_string " "
598 | Ast.DisjRuleElem(res) ->
599 print_string arity;
600 force_newline(); print_string "("; force_newline();
601 print_between
602 (function _ -> force_newline();print_string "|"; force_newline())
603 (rule_elem arity)
604 res;
605 force_newline(); print_string ")"
606
607
608and print_define_parameters params =
609 match Ast.unwrap params with
610 Ast.NoParams -> ()
611 | Ast.DParams(lp,params,rp) ->
612 mcode print_string lp;
613 dots (function _ -> ()) print_define_param params; mcode print_string rp
614
615and print_define_param param =
616 match Ast.unwrap param with
617 Ast.DParam(id) -> ident id
618 | Ast.DPComma(comma) -> mcode print_string comma
619 | Ast.DPdots(dots) -> mcode print_string dots
620 | Ast.DPcircles(circles) -> mcode print_string circles
621 | Ast.OptDParam(dp) -> print_string "?"; print_define_param dp
622 | Ast.UniqueDParam(dp) -> print_string "!"; print_define_param dp
623
624and statement arity s =
625 match Ast.unwrap s with
626 Ast.Seq(lbrace,decls,body,rbrace) ->
627 rule_elem arity lbrace;
628 dots force_newline (statement arity) decls;
629 dots force_newline (statement arity) body;
630 rule_elem arity rbrace
631 | Ast.IfThen(header,branch,(_,_,_,aft)) ->
632 rule_elem arity header; statement arity branch;
633 mcode (function _ -> ()) ((),Ast.no_info,aft,Ast.NoMetaPos)
634 | Ast.IfThenElse(header,branch1,els,branch2,(_,_,_,aft)) ->
635 rule_elem arity header; statement arity branch1; print_string " ";
636 rule_elem arity els; statement arity branch2;
637 mcode (function _ -> ()) ((),Ast.no_info,aft,Ast.NoMetaPos)
638 | Ast.While(header,body,(_,_,_,aft)) ->
639 rule_elem arity header; statement arity body;
640 mcode (function _ -> ()) ((),Ast.no_info,aft,Ast.NoMetaPos)
641 | Ast.Do(header,body,tail) ->
642 rule_elem arity header; statement arity body;
643 rule_elem arity tail
644 | Ast.For(header,body,(_,_,_,aft)) ->
645 rule_elem arity header; statement arity body;
646 mcode (function _ -> ()) ((),Ast.no_info,aft,Ast.NoMetaPos)
647 | Ast.Iterator(header,body,(_,_,_,aft)) ->
648 rule_elem arity header; statement arity body;
649 mcode (function _ -> ()) ((),Ast.no_info,aft,Ast.NoMetaPos)
650 | Ast.Switch(header,lb,cases,rb) ->
651 rule_elem arity header; rule_elem arity lb;
652 List.iter (function x -> case_line arity x; force_newline()) cases;
653 rule_elem arity rb
654 | Ast.Atomic(re) -> rule_elem arity re
655 | Ast.FunDecl(header,lbrace,decls,body,rbrace) ->
656 rule_elem arity header; rule_elem arity lbrace;
657 dots force_newline (statement arity) decls;
658 dots force_newline (statement arity) body;
659 rule_elem arity rbrace
660 | Ast.Disj([stmt_dots]) ->
661 print_string arity;
662 dots (function _ -> if !print_newlines_disj then force_newline())
663 (statement arity) stmt_dots
664 | Ast.Disj(stmt_dots_list) -> (* ignores newline directive for readability *)
665 print_string arity;
666 force_newline(); print_string "("; force_newline();
667 print_between
668 (function _ -> force_newline();print_string "|"; force_newline())
669 (dots force_newline (statement arity))
670 stmt_dots_list;
671 force_newline(); print_string ")"
672 | Ast.Define(header,body) ->
673 rule_elem arity header; print_string " ";
674 dots force_newline (statement arity) body
675 | Ast.Nest(stmt_dots,whn,multi,_,_) ->
676 print_string arity;
677 nest_dots multi (statement arity)
678 (function _ ->
679 open_box 0;
680 print_between force_newline
681 (whencode (dots force_newline (statement "")) (statement "")) whn;
682 close_box(); force_newline())
683 stmt_dots
684 | Ast.Dots(d,whn,_,_) | Ast.Circles(d,whn,_,_) | Ast.Stars(d,whn,_,_) ->
685 print_string arity; mcode print_string d;
686 open_box 0;
687 print_between force_newline
688 (whencode (dots force_newline (statement "")) (statement "")) whn;
689 close_box(); force_newline()
690 | Ast.OptStm(s) -> statement "?" s
691 | Ast.UniqueStm(s) -> statement "!" s
692
693and print_statement_when whencode =
694 print_string " WHEN != ";
695 open_box 0;
696 print_between (function _ -> print_string " &"; force_newline())
697 (dots force_newline (statement "")) whencode;
698 close_box()
699
700
701and whencode notfn alwaysfn = function
702 Ast.WhenNot a ->
703 print_string " WHEN != "; open_box 0; notfn a; close_box()
704 | Ast.WhenAlways a ->
705 print_string " WHEN = "; open_box 0; alwaysfn a; close_box()
706 | Ast.WhenModifier x -> print_string " WHEN "; print_when_modif x
707 | Ast.WhenNotTrue a ->
708 print_string " WHEN != TRUE "; open_box 0; rule_elem "" a; close_box()
709 | Ast.WhenNotFalse a ->
710 print_string " WHEN != FALSE "; open_box 0; rule_elem "" a; close_box()
711
712and print_when_modif = function
713 | Ast.WhenAny -> print_string "ANY"
714 | Ast.WhenStrict -> print_string "STRICT"
715 | Ast.WhenForall -> print_string "FORALL"
716 | Ast.WhenExists -> print_string "EXISTS"
717
718and case_line arity c =
719 match Ast.unwrap c with
720 Ast.CaseLine(header,code) ->
721 rule_elem arity header; print_string " ";
722 dots force_newline (statement arity) code
723 | Ast.OptCase(case) -> case_line "?" case
724
725(* --------------------------------------------------------------------- *)
726(* CPP code *)
727
728and inc_file = function
729 Ast.Local(elems) ->
730 print_string "\"";
731 print_between (function _ -> print_string "/") inc_elem elems;
732 print_string "\""
733 | Ast.NonLocal(elems) ->
734 print_string "<";
735 print_between (function _ -> print_string "/") inc_elem elems;
736 print_string ">"
737
738and inc_elem = function
739 Ast.IncPath s -> print_string s
740 | Ast.IncDots -> print_string "..."
741
742(* for export only *)
743let statement_dots l = dots force_newline (statement "") l
744
745let top_level t =
746 match Ast.unwrap t with
747 Ast.FILEINFO(old_file,new_file) ->
748 print_string "--- "; mcode print_string old_file; force_newline();
749 print_string "+++ "; mcode print_string new_file
750 | Ast.DECL(stmt) -> statement "" stmt
751 | Ast.CODE(stmt_dots) ->
752 dots force_newline (statement "") stmt_dots
753 | Ast.ERRORWORDS(exps) ->
754 print_string "error words = [";
755 print_between (function _ -> print_string ", ") expression exps;
756 print_string "]"
757
758let rule =
759 print_between (function _ -> force_newline(); force_newline()) top_level
760
761let pp_print_anything x = !anything x
762
763let _ =
764 anything := function
765 Ast.FullTypeTag(x) -> fullType x
766 | Ast.BaseTypeTag(x) -> baseType x
767 | Ast.StructUnionTag(x) -> structUnion x
768 | Ast.SignTag(x) -> sign x
769 | Ast.IdentTag(x) -> ident x
770 | Ast.ExpressionTag(x) -> expression x
771 | Ast.ConstantTag(x) -> constant x
772 | Ast.UnaryOpTag(x) -> unaryOp x
773 | Ast.AssignOpTag(x) -> assignOp x
774 | Ast.FixOpTag(x) -> fixOp x
775 | Ast.BinaryOpTag(x) -> binaryOp x
776 | Ast.ArithOpTag(x) -> arithOp x
777 | Ast.LogicalOpTag(x) -> logicalOp x
778 | Ast.InitTag(x) -> initialiser x
779 | Ast.DeclarationTag(x) -> declaration x
780 | Ast.StorageTag(x) -> storage x
781 | Ast.IncFileTag(x) -> inc_file x
782 | Ast.Rule_elemTag(x) -> rule_elem "" x
783 | Ast.StatementTag(x) -> statement "" x
784 | Ast.CaseLineTag(x) -> case_line "" x
785 | Ast.ConstVolTag(x) -> const_vol x
786 | Ast.Token(x,Some info) -> print_string_befaft print_string x info
787 | Ast.Token(x,None) -> print_string x
788 | Ast.Code(x) -> let _ = top_level x in ()
789 | Ast.ExprDotsTag(x) -> dots (function _ -> ()) expression x
790 | Ast.ParamDotsTag(x) -> parameter_list x
791 | Ast.StmtDotsTag(x) -> dots (function _ -> ()) (statement "") x
792 | Ast.DeclDotsTag(x) -> dots (function _ -> ()) declaration x
793 | Ast.TypeCTag(x) -> typeC x
794 | Ast.ParamTag(x) -> parameterTypeDef x
795 | Ast.SgrepStartTag(x) -> print_string x
796 | Ast.SgrepEndTag(x) -> print_string x
797
798let rec dep in_and = function
799 Ast.Dep(s) -> print_string s
800 | Ast.AntiDep(s) -> print_string "!"; print_string s
801 | Ast.EverDep(s) -> print_string "ever "; print_string s
802 | Ast.NeverDep(s) -> print_string "never "; print_string s
803 | Ast.AndDep(s1,s2) ->
804 let print_and _ = dep true s1; print_string " && "; dep true s2 in
805 if in_and
806 then print_and ()
807 else (print_string "("; print_and(); print_string ")")
808 | Ast.OrDep(s1,s2) ->
809 let print_or _ = dep false s1; print_string " || "; dep false s2 in
810 if not in_and
811 then print_or ()
812 else (print_string "("; print_or(); print_string ")")
813 | Ast.NoDep -> failwith "not possible"
814
815let unparse z =
816 match z with
817 Ast.ScriptRule (lang,deps,bindings,code) ->
818 print_string "@@";
819 force_newline();
820 print_string ("script:" ^ lang);
821 (match deps with
822 Ast.NoDep -> ()
823 | _ -> print_string " depends on "; dep true deps);
824 force_newline();
825 print_string "@@";
826 force_newline();
827 print_string code;
828 force_newline()
829 | Ast.CocciRule (nm, (deps, drops, exists), x, _, _) ->
830 print_string "@@";
831 force_newline();
832 print_string nm;
833 (match deps with
834 Ast.NoDep -> ()
835 | _ -> print_string " depends on "; dep true deps);
836 (*
837 print_string "line ";
838 print_int (Ast.get_line (List.hd x));
839 *)
840 force_newline();
841 print_string "@@";
842 print_newlines_disj := true;
843 force_newline();
844 force_newline();
845 rule x;
846 force_newline()
847
848let rule_elem_to_string x =
849 print_newlines_disj := true;
850 Common.format_to_string (function _ -> rule_elem "" x)
851
852let ident_to_string x =
853 print_newlines_disj := true;
854 Common.format_to_string (function _ -> ident x)
855
856let unparse_to_string x =
857 print_newlines_disj := true;
858 Common.format_to_string (function _ -> unparse x)
859
860let print_rule_elem re =
861 let nl = !print_newlines_disj in
862 print_newlines_disj := false;
863 rule_elem "" re;
864 print_newlines_disj := nl
865