Coccinelle release 1.0.0-rc14
[bpt/coccinelle.git] / python / no_pycocci.ml
1 (*
2 * Copyright 2012, INRIA
3 * Julia Lawall, Gilles Muller
4 * Copyright 2010-2011, INRIA, University of Copenhagen
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
27 # 0 "./no_pycocci.ml"
28 open Ast_c
29 open Common
30 open Pycocci_aux
31 module StringMap = Map.Make (String)
32
33 exception Pycocciexception
34
35 let python_support = false
36
37 let check_return_value v = failwith "no python"
38 let check_int_return_value v = failwith "no python"
39
40 let initialised = ref false
41
42 let cocci_file_name = ref ""
43
44 (* dealing with python modules loaded *)
45 let get_module module_name = failwith "no python"
46
47 let is_module_loaded module_name = failwith "no python"
48
49 let load_module module_name = failwith "no python"
50 (* end python module handling part *)
51
52 (* initialisation routines *)
53 let pycocci_init () = initialised := true
54
55 (*let _ = pycocci_init ()*)
56 (* end initialisation routines *)
57
58 (* python interaction *)
59 let split_fqn fqn = failwith "no python"
60
61 let pycocci_get_class_type fqn = failwith "no python"
62
63 let pycocci_instantiate_class fqn args = failwith "no python"
64
65 (* end python interaction *)
66
67 let inc_match = ref false
68 let exited = ref false
69
70 let include_match v = failwith "no python"
71
72 let sp_exit _ = failwith "no python"
73
74 let build_method (mname, camlfunc, args) pymodule classx classdict =
75 failwith "no python"
76
77 let build_class cname parent methods pymodule = failwith "no python"
78
79 let has_environment_binding env name = failwith "no python"
80
81 let get_cocci_file args = failwith "no python"
82
83 let build_classes env = failwith "no python"
84
85 let build_variable name value = failwith "no python"
86
87 let contains_binding e (_,(r,m),_) = failwith "no python"
88
89 let construct_variables mv e = failwith "no python"
90
91 let construct_script_variables mv = failwith "no python"
92 let retrieve_script_variables mv = failwith "no python"
93
94 let set_coccifile cocci_file =
95 cocci_file_name := cocci_file;
96 ()
97
98
99 let pyrun_simplestring s =
100 failwith "no python"
101
102 let py_isinitialized () =
103 failwith "no python"
104
105 let py_finalize () =
106 failwith "no python"