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