1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
(*
* This file is part of Coccinelle, licensed under the terms of the GPL v2.
* See copyright.txt in the Coccinelle source code for more information.
* The Coccinelle source code can be obtained at http://coccinelle.lip6.fr
*)
open Ast_c
open Common
open Pycocci_aux
module StringMap = Map.Make (String)
exception Pycocciexception
let errmsg = "Semantic patch uses python, but Coccinelle has been compiled without Python support"
let python_support = false
let check_return_value v = failwith errmsg
let check_int_return_value v = failwith errmsg
let initialised = ref false
let cocci_file_name = ref ""
(* dealing with python modules loaded *)
let get_module module_name = failwith errmsg
let is_module_loaded module_name = failwith errmsg
let load_module module_name = failwith errmsg
(* end python module handling part *)
(* initialisation routines *)
let pycocci_init () = initialised := true
(*let _ = pycocci_init ()*)
(* end initialisation routines *)
(* python interaction *)
let split_fqn fqn = failwith errmsg
let pycocci_get_class_type fqn = failwith errmsg
let pycocci_instantiate_class fqn args = failwith errmsg
(* end python interaction *)
let inc_match = ref false
let exited = ref false
let include_match v = failwith errmsg
let sp_exit _ = failwith errmsg
let build_method (mname, camlfunc, args) pymodule classx classdict =
failwith errmsg
let build_class cname parent methods pymodule = failwith errmsg
let has_environment_binding env name = failwith errmsg
let get_cocci_file args = failwith errmsg
let build_classes env = failwith errmsg
let build_variable name value = failwith errmsg
let contains_binding e (_,(r,m),_) = failwith errmsg
let construct_variables mv e = failwith errmsg
let construct_script_variables mv = failwith errmsg
let retrieve_script_variables mv = failwith errmsg
let set_coccifile cocci_file =
cocci_file_name := cocci_file;
()
let pickle_variable v = failwith errmsg
let unpickle_variable v v' = failwith errmsg
let pyrun_simplestring s =
failwith errmsg
let run s =
failwith errmsg
let py_isinitialized () =
failwith errmsg
let py_finalize () =
failwith errmsg
let run_constraint args pos body =
failwith errmsg
let run_fresh_id _ _ _ =
failwith errmsg
let flush_stdout_and_stderr () = ()
|