Release coccinelle-0.1.8
[bpt/coccinelle.git] / engine / postprocess_transinfo.ml
CommitLineData
34e49164 1(*
faf9a90c 2* Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
34e49164
C
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
23(* two goals: first drop from the environments things that are not used,
24 and second prompt for the names of fresh variables that are used *)
25
26(* have to add in the whole inherited env because inherited variables are
27not returned by get_fvs. It would be better if that were the case, but
28since at the moment I think we can only inherit one value per variable,
29perhaps it doesn't matter - these bindings will always be the same no matter
30how we reached a particular match *)
31
32module Ast = Ast_cocci
33
34let extra_counter = ref 0
35let get_extra _ =
36 let ctr = !extra_counter in
37 extra_counter := !extra_counter + 1;
38 "__extra_counter__"^(string_of_int ctr)
39
b1b2de81
C
40let get_seeded seed =
41 let ctr = !extra_counter in
42 extra_counter := !extra_counter + 1;
43 seed^(string_of_int ctr)
44
45let read_fresh_id _ =
34e49164
C
46 try
47 let s = read_line () in
485bce71 48 match Parse_c.tokens_of_string s with
34e49164 49 [Parser_c.TIdent _; Parser_c.EOF _] -> s
b1b2de81 50 | [Parser_c.EOF _] -> get_extra()
34e49164
C
51 | _ -> failwith ("wrong fresh id: " ^ s)
52 with End_of_file -> get_extra()
53
54let get_vars = function
55 Lib_engine.Match(re) -> (Ast.get_fvs re, Ast.get_fresh re)
56 | _ -> ([],[])
57
58let string2val str = Lib_engine.NormalMetaVal(Ast_c.MetaIdVal(str))
59
60(* ----------------------------------------------------------------------- *)
61(* Get values for fresh variables *)
62
63let process_tree inherited_env l =
64 let (all_fresh,local_freshs,new_triples) =
65 List.fold_left
66 (function (all_fresh,local_freshs,new_triples) ->
67 function (node,env,pred) ->
68 let (other,fresh) = get_vars pred in
69 let env = List.filter (function (x,_) -> List.mem x other) env in
70 (Common.union_set fresh all_fresh,
71 fresh::local_freshs,
72 (node,env@inherited_env,pred)::new_triples))
73 ([],[],[]) l in
74 let local_freshs = List.rev local_freshs in
75 let new_triples = List.rev new_triples in
76 let fresh_env =
77 List.map
b1b2de81
C
78 (function
79 ((r,n) as fresh,None) ->
80 Printf.printf "%s: name for %s: " r n; (* not debugging code!!! *)
81 flush stdout;
82 (fresh,string2val(read_fresh_id()))
83 | ((r,n) as fresh,Some seed) ->
84 (fresh,string2val(get_seeded seed)))
34e49164
C
85 all_fresh in
86 let (_,res) =
87 List.split
88 (List.fold_left
89 (function freshs_node_env_preds ->
90 function (fresh,_) as elem ->
91 List.map
92 (function (freshs,((node,env,pred) as cur)) ->
b1b2de81
C
93 try
94 let _ = List.assoc fresh freshs in
95 (freshs,(node,elem::env,pred))
96 with Not_found -> (freshs,cur))
34e49164
C
97 freshs_node_env_preds)
98 (List.combine local_freshs new_triples)
99 fresh_env) in
100 (List.rev res, fresh_env)
101
102(* ----------------------------------------------------------------------- *)
103(* Create the environment to be used afterwards *)
104
105let collect_used_after used_after envs =
106 List.map (List.filter (function (v,vl) -> List.mem v used_after)) envs
107
708f4980
C
108(* ----------------------------------------------------------------------- *)
109(* distinguish between distinct witness trees, each gets an index n *)
110
111let numberify trees =
112 let trees =
113 Common.fold_left_with_index
114 (function acc -> function xs -> function n ->
115 (List.map (function x -> (n,x)) xs) @ acc)
116 [] trees in
117 List.fold_left
118 (function res ->
119 function (n,x) ->
120 let (same,diff) = List.partition (function (ns,xs) -> x = xs) res in
121 match same with
122 [(ns,xs)] -> (n::ns,xs)::diff
123 | _ -> ([n],x)::res)
124 [] trees
125
34e49164
C
126(* ----------------------------------------------------------------------- *)
127(* entry point *)
128
129let process used_after inherited_env l =
34e49164
C
130 let (trees, fresh_envs) =
131 List.split (List.map (process_tree inherited_env) l) in
708f4980
C
132 let trees = numberify trees in
133 (trees, collect_used_after used_after fresh_envs)