Release coccinelle-0.2.3rc1
[bpt/coccinelle.git] / tools / extract_c_and_res.ml
1 (*
2 * Copyright 2005-2010, 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
23 (*
24 * Copyright 2005-2010, Ecole des Mines de Nantes, University of Copenhagen
25 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
26 * This file is part of Coccinelle.
27 *
28 * Coccinelle is free software: you can redistribute it and/or modify
29 * it under the terms of the GNU General Public License as published by
30 * the Free Software Foundation, according to version 2 of the License.
31 *
32 * Coccinelle is distributed in the hope that it will be useful,
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 * GNU General Public License for more details.
36 *
37 * You should have received a copy of the GNU General Public License
38 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
39 *
40 * The authors reserve the right to distribute this or future versions of
41 * Coccinelle under other licenses.
42 *)
43
44
45 open Common
46
47 (*****************************************************************************)
48 (* *)
49 (*****************************************************************************)
50 (* requirments:
51 * - extract from one git commit, or from a set of git commits
52 * - files from drivers/ and also from other directories now
53 * - .c and .h, local .h and also not local .h
54 * - files that were part of the patch, and so modified, but also
55 * other files (especially .h) to get more type information
56 *
57 *)
58
59 (*****************************************************************************)
60 (* Flags *)
61 (*****************************************************************************)
62
63 (*****************************************************************************)
64 (* Main entry point *)
65 (*****************************************************************************)
66
67 let ex_kmallocmemset = "dd00cc486ab1c17049a535413d1751ef3482141c"
68 let ex_new_driver = "3faa1ffb4f4be7d10715f4b003ff7b27d14eae26"
69 let ex_delete_driver = "4d8506b806cc726c96db1c1a55edfb2da52217a9"
70
71 let main () =
72 begin
73 let args = ref [] in
74 let options = [
75 ] in
76 let usage_msg =
77 "Usage: " ^ basename Sys.argv.(0) ^
78 " <file> [options]" ^ "\n" ^ "Options are:"
79 in
80
81 Arg.parse (Arg.align options) (fun x -> args := x::!args) usage_msg;
82 args := List.rev !args;
83
84 (match (!args) with
85 | [x] -> pr x
86 | _ -> Arg.usage (Arg.align options) usage_msg;
87 )
88 end
89
90 (*****************************************************************************)
91 let _ =
92 main ()
93