Coccinelle release 1.0.0-rc13
[bpt/coccinelle.git] / globals / iteration.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
d6ce1786
C
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
27# 0 "./iteration.ml"
28(*
29 * Copyright 2012, INRIA
30 * Julia Lawall, Gilles Muller
31 * Copyright 2010-2011, INRIA, University of Copenhagen
32 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
33 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
f537ebc4
C
34 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
35 * This file is part of Coccinelle.
36 *
37 * Coccinelle is free software: you can redistribute it and/or modify
38 * it under the terms of the GNU General Public License as published by
39 * the Free Software Foundation, according to version 2 of the License.
40 *
41 * Coccinelle is distributed in the hope that it will be useful,
42 * but WITHOUT ANY WARRANTY; without even the implied warranty of
43 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
44 * GNU General Public License for more details.
45 *
46 * You should have received a copy of the GNU General Public License
47 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
48 *
49 * The authors reserve the right to distribute this or future versions of
50 * Coccinelle under other licenses.
51 *)
52
53
feec80c3 54# 0 "./iteration.ml"
3a314143
C
55type init_info = (string (* language *) * string (* rule name *)) *
56 string list (* defined virtual rules *)
57
58let initialization_stack = ref ([] : init_info list)
59
60(* ----------------------------------------------------------------------- *)
61
62let base_file_list = ref ([] : string list)
63let parsed_virtual_rules = ref ([] : string list)
64let parsed_virtual_identifiers = ref ([] : string list)
65
66(* ----------------------------------------------------------------------- *)
67
68type pending_info = string list (* files to treat *) *
69 string list * (* defined virtual rules *)
70 (string * string) list (* virtual identifiers *)
71
72let pending_instances_file = ref ([] : pending_info list)
73let pending_instances_dir = ref ([] : pending_info list)
74
75let add_pending_instance (files,a,b) =
76 match files with
77 None ->
78 pending_instances_dir := (!base_file_list,a,b) :: !pending_instances_dir
79 | Some f ->
80 (* if one specifies a file, it is assumed to be the current one *)
97111a47
C
81 (* put at the end of the list of information about this file *)
82 let rec loop = function
83 [] -> [(f,a,b)]
84 | ((f1,a1,b1) as front)::rest ->
85 if f = f1
86 then front :: (loop rest)
87 else (f,a,b) :: front :: rest in
88 pending_instances_file := loop !pending_instances_file
3a314143
C
89
90let get_pending_instance _ =
91 (if (List.length !pending_instances_file) > 0 or
92 (List.length !pending_instances_dir) > 0
93 then
94 Common.pr2
95 (Printf.sprintf
96 "%d pending new file instances\n%d pending original file instances\n"
97 (List.length !pending_instances_file)
98 (List.length !pending_instances_dir)));
99 match !pending_instances_file with
100 [] ->
101 (match !pending_instances_dir with
102 [] -> None
103 | x::xs ->
104 pending_instances_dir := xs;
105 Some x)
106 | x::xs ->
107 pending_instances_file := xs;
108 Some x
109
110(* ----------------------------------------------------------------------- *)
111
112let check_virtual_rule r =
113 if not (List.mem r !parsed_virtual_rules)
114 then failwith ("unknown virtual rule "^r)
115
116let check_virtual_ident i =
117 if not (List.mem i !parsed_virtual_identifiers)
118 then failwith ("unknown virtual rule "^i)