Release coccinelle-0.2.0
[bpt/coccinelle.git] / parsing_cocci / plus.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
34e49164
C
23(* The plus fragments are converted to a list of lists of lists.
24Innermost list: Elements have type anything. For any pair of successive
25elements, n and n+1, the ending line of n is the same as the starting line
26of n+1.
27Middle lists: For any pair of successive elements, n and n+1, the ending
28line of n is one less than the starting line of n+1.
29Outer list: For any pair of successive elements, n and n+1, the ending
30line of n is more than one less than the starting line of n+1. *)
31
32(* For nests and disjs, we are relying on the fact that <... ...> ( | )
33must appear on lines by themselves, meaning that the various + fragments
34can't be contiguous to each other or to unrelated things. *)
35
36module Ast = Ast_cocci
37module V = Visitor_ast
38
39(* --------------------------------------------------------------------- *)
40
41type res =
42 Open of Ast.anything * int * int * int * int
43 | Closed of (Ast.anything * int * int * int * int) list
44
45let mcode fn = function
46 (term, Ast.PLUS(info)) ->
47 let line = info.Ast.line in
48 let lline = info.Ast.logical_line in
49 [Open (fn term,line,line,lline,lline)]
50 | _ -> [Closed []]
51
52let mk_fullType x = Ast.FullTypeTag x
53let mk_baseType x = Ast.BaseTypeTag x
54let mk_structUnion x = Ast.StructUnionTag x
55let mk_sign x = Ast.SignTag x
56let mk_ident x = Ast.IdentTag x
57let mk_expression x = Ast.ExpressionTag x
58let mk_constant x = Ast.ConstantTag x
59let mk_unaryOp x = Ast.UnaryOpTag x
60let mk_assignOp x = Ast.AssignOpTag x
61let mk_fixOp x = Ast.FixOpTag x
62let mk_binaryOp x = Ast.BinaryOpTag x
63let mk_arithOp x = Ast.ArithOpTag x
64let mk_logicalOp x = Ast.LogicalOpTag x
65let mk_declaration x = Ast.DeclarationTag x
66let mk_storage x = Ast.StorageTag x
67let mk_rule_elem x = Ast.Rule_elemTag x
68let mk_const_vol x = Ast.ConstVolTag x
69let mk_token x = Ast.Token x
70
71let get_real_start = function
72 Open (_,line,_,_,_) -> line
73 | _ -> failwith "not possible"
74
75let get_real_finish = function
76 Open (_,_,line,_,_) -> line
77 | _ -> failwith "not possible"
78
79let get_start = function
80 Open (_,_,_,line,_) -> line
81 | _ -> failwith "not possible"
82
83let get_finish = function
84 Open (_,_,_,_,line) -> line
85 | _ -> failwith "not possible"
86
87let get_option fn = function
88 None -> []
89 | Some x -> [fn x]
90
91(* --------------------------------------------------------------------- *)
92(* --------------------------------------------------------------------- *)
93(* Step 1: coalesce + terms, record starting and ending line numbers *)
94
95let rec close l =
96 let rec loop = function
97 [] -> []
98 | Open(x,start,finish,lstart,lfinish)::rest ->
99 (x,start,finish,lstart,lfinish)::(loop rest)
100 | (Closed l)::rest -> l @ (loop rest) in
101 Closed (loop l)
102
103let test term subterms =
104 if List.for_all (function Open(_,_,_,_,_) -> true | _ -> false) subterms
105 then [Open(term,
106 get_real_start (List.hd subterms),
107 get_real_finish (List.hd (List.rev subterms)),
108 get_start (List.hd subterms),
109 get_finish (List.hd (List.rev subterms)))]
110 else [close subterms]
111
112(* --------------------------------------------------------------------- *)
113(* Dots *)
114
115let dots recursor k dotlist = [close (k dotlist)]
116
117(* --------------------------------------------------------------------- *)
118(* Identifier *)
119
120let ident recursor k i = test (Ast.IdentTag i) (k i)
121
122(* --------------------------------------------------------------------- *)
123(* Expression *)
124
125let expression recursor k = function
126 Ast.DisjExpr(exps) ->
127 [close (List.concat(List.map recursor.V.combiner_expression exps))]
128 | Ast.Edots(_,_) -> [Closed []] (* must be context *)
129 | Ast.Ecircles(_,_) -> [Closed []] (* must be context *)
130 | Ast.Estars(_,_) -> [Closed []] (* must be context *)
131 | Ast.OptExp(_) | Ast.UniqueExp(_) | Ast.MultiExp(_) -> failwith "impossible"
132 | e -> test (Ast.ExpressionTag e) (k e)
133
134(* --------------------------------------------------------------------- *)
135(* Types *)
136
137and fullType recursor k ft = test (Ast.FullTypeTag ft) (k ft)
138
139and typeC recursor k t = k t
140
141(* --------------------------------------------------------------------- *)
142(* Variable declaration *)
143(* Even if the Cocci program specifies a list of declarations, they are
144 split out into multiple declarations of a single variable each. *)
145
146let declaration recursor k d = test (Ast.DeclarationTag d) (k d)
147
148(* --------------------------------------------------------------------- *)
149(* Parameter *)
150
151let parameterTypeDef recursor k = function
152 Ast.Pdots(_) -> [Closed []]
153 | Ast.Pcircles(_) -> [Closed []]
154 | p -> test (Ast.ParameterTypeDefTag p) (k p)
155
156(* --------------------------------------------------------------------- *)
157(* Top-level code *)
158
159let rec rule_elem recursor k re = test (Ast.Rule_elemTag re) (k re)
160
161let rec statement recursor k = function
162 Ast.Disj(stmt_dots_list) ->
163 [close
164 (List.concat
165 (List.map recursor.V.combiner_statement_dots stmt_dots_list))]
166 | Ast.Dots(_,_,_) -> [Closed []]
167 | Ast.Circles(_,_,_) -> [Closed []]
168 | Ast.Stars(_,_,_) -> [Closed []]
169 | s -> test (Ast.StatementTag s) (k s)
170
171let rec meta recursor k m = test (Ast.MetaTag m) (k m)
172
173let top_level recursor k = function
174 Ast.FILEINFO(_,_) -> [Closed []]
175 | Ast.ERRORWORDS(exps) -> [Closed []]
176 | t -> test (Ast.Code t) (k t)
177
178let anything recursor k a = failwith "not called"
179
180let collect_tokens =
181 let recursor =
182 V.combiner (@) []
183 (mcode mk_token) (mcode mk_constant) (mcode mk_assignOp) (mcode mk_fixOp)
184 (mcode mk_unaryOp) (mcode mk_binaryOp) (mcode mk_const_vol)
185 (mcode mk_baseType) (mcode mk_sign) (mcode mk_structUnion)
186 (mcode mk_storage) dots dots dots
187 ident expression fullType typeC parameterTypeDef declaration
188 rule_elem statement meta top_level anything in
189 recursor.V.combiner_top_level
190
191let rule code = List.concat(List.map collect_tokens code)
192
193(* --------------------------------------------------------------------- *)
194(* --------------------------------------------------------------------- *)
195(* Step 2: find neighbors *)
196
197let rec find_neighbors = function
198 [] -> []
199 | (x1,real_start1,real_finish1,start1,finish1)::rest ->
200 (match find_neighbors rest with
201 ((((x2,real_start2,real_finish2,start2,finish2)::
202 rest_inner)::rest_middle)::rest_outer)
203 as rest ->
204 if finish1 = start2
faf9a90c 205 then
34e49164
C
206 ((((x1,real_start1,real_finish1,start1,finish1)::
207 (x2,real_start2,real_finish2,start2,finish2)::rest_inner)::
208 rest_middle)::
209 rest_outer)
210 else if finish1 + 1 = start2
211 then
212 (([(x1,real_start1,real_finish1,start1,finish1)]::
213 ((x2,real_start2,real_finish2,start2,finish2)::rest_inner)::
214 rest_middle)::
215 rest_outer)
216 else [[(x1,real_start1,real_finish1,start1,finish1)]]::rest
217 | _ -> [[[(x1,real_start1,real_finish1,start1,finish1)]]])
218 (* rest must be [] *)
faf9a90c 219
34e49164
C
220(* --------------------------------------------------------------------- *)
221(* --------------------------------------------------------------------- *)
222(* Entry point *)
223
224let plus ast =
225 match close (rule ast) with
226 Closed l -> find_neighbors l
227 | _ -> failwith "impossible"