Coccinelle release-1.0.0-rc11
[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
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
3a314143
C
27type init_info = (string (* language *) * string (* rule name *)) *
28 string list (* defined virtual rules *)
29
30let initialization_stack = ref ([] : init_info list)
31
32(* ----------------------------------------------------------------------- *)
33
34let base_file_list = ref ([] : string list)
35let parsed_virtual_rules = ref ([] : string list)
36let parsed_virtual_identifiers = ref ([] : string list)
37
38(* ----------------------------------------------------------------------- *)
39
40type pending_info = string list (* files to treat *) *
41 string list * (* defined virtual rules *)
42 (string * string) list (* virtual identifiers *)
43
44let pending_instances_file = ref ([] : pending_info list)
45let pending_instances_dir = ref ([] : pending_info list)
46
47let add_pending_instance (files,a,b) =
48 match files with
49 None ->
50 pending_instances_dir := (!base_file_list,a,b) :: !pending_instances_dir
51 | Some f ->
52 (* if one specifies a file, it is assumed to be the current one *)
97111a47
C
53 (* put at the end of the list of information about this file *)
54 let rec loop = function
55 [] -> [(f,a,b)]
56 | ((f1,a1,b1) as front)::rest ->
57 if f = f1
58 then front :: (loop rest)
59 else (f,a,b) :: front :: rest in
60 pending_instances_file := loop !pending_instances_file
3a314143
C
61
62let get_pending_instance _ =
63 (if (List.length !pending_instances_file) > 0 or
64 (List.length !pending_instances_dir) > 0
65 then
66 Common.pr2
67 (Printf.sprintf
68 "%d pending new file instances\n%d pending original file instances\n"
69 (List.length !pending_instances_file)
70 (List.length !pending_instances_dir)));
71 match !pending_instances_file with
72 [] ->
73 (match !pending_instances_dir with
74 [] -> None
75 | x::xs ->
76 pending_instances_dir := xs;
77 Some x)
78 | x::xs ->
79 pending_instances_file := xs;
80 Some x
81
82(* ----------------------------------------------------------------------- *)
83
84let check_virtual_rule r =
85 if not (List.mem r !parsed_virtual_rules)
86 then failwith ("unknown virtual rule "^r)
87
88let check_virtual_ident i =
89 if not (List.mem i !parsed_virtual_identifiers)
90 then failwith ("unknown virtual rule "^i)