Release coccinelle-0.2.0
[bpt/coccinelle.git] / tools / extract_c_and_res.ml
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
23 open Common
24
25 (*****************************************************************************)
26 (* *)
27 (*****************************************************************************)
28 (* requirments:
29 * - extract from one git commit, or from a set of git commits
30 * - files from drivers/ and also from other directories now
31 * - .c and .h, local .h and also not local .h
32 * - files that were part of the patch, and so modified, but also
33 * other files (especially .h) to get more type information
34 *
35 *)
36
37 (*****************************************************************************)
38 (* Flags *)
39 (*****************************************************************************)
40
41 (*****************************************************************************)
42 (* Main entry point *)
43 (*****************************************************************************)
44
45 let ex_kmallocmemset = "dd00cc486ab1c17049a535413d1751ef3482141c"
46 let ex_new_driver = "3faa1ffb4f4be7d10715f4b003ff7b27d14eae26"
47 let ex_delete_driver = "4d8506b806cc726c96db1c1a55edfb2da52217a9"
48
49 let main () =
50 begin
51 let args = ref [] in
52 let options = [
53 ] in
54 let usage_msg =
55 "Usage: " ^ basename Sys.argv.(0) ^
56 " <file> [options]" ^ "\n" ^ "Options are:"
57 in
58
59 Arg.parse (Arg.align options) (fun x -> args := x::!args) usage_msg;
60 args := List.rev !args;
61
62 (match (!args) with
63 | [x] -> pr x
64 | _ -> Arg.usage (Arg.align options) usage_msg;
65 )
66 end
67
68 (*****************************************************************************)
69 let _ =
70 main ()
71