Newer
Older
Markus Frank
committed
// AIDA Detector description implementation for LCD
//--------------------------------------------------------------------------
// Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
// All rights reserved.
//
// For the licensing terms see $DD4hepINSTALL/LICENSE.
// For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
//
// \author Markus Frank
// \date 2015-11-07
//
//==========================================================================
// $Id$
// C/C++ include files
#include <fstream>
#include <sstream>
Markus Frank
committed
#include <pthread.h>
// Framework include files
#include "DD4hep/Printout.h"
#include "DDG4Python/DDPython.h"
#if !defined(__MAKECINT__) && !defined(__CINT__) && !defined(G__DICTIONARY)
// -----------------------------------------------------------------------------
// Python hacks to avoid warnings if outside dictionaries .....
// -----------------------------------------------------------------------------
// --> /usr/include/python2.7/pyconfig.h:1161:0: warning: "_POSIX_C_SOURCE" redefined [enabled by default]
#ifdef _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE
#endif /* _POSIX_C_SOURCE */
// --> /usr/include/python2.7/pyconfig.h:1183:0: warning: "_XOPEN_SOURCE" redefined [enabled by default]
#ifdef _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif /* _XOPEN_SOURCE */
#include "Python.h"
#endif
Markus Frank
committed
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
using namespace std;
using namespace DD4hep;
namespace {
string loadScript(const string& fname) {
ifstream file(fname.c_str());
stringstream str;
if( file ) {
char ch;
while( file.get(ch) ) str.put(ch);
file.close();
return str.str();
}
return "";
}
static int _blockers = 0;
static pthread_t _mainThread = 0;
static int _refCount = 0;
static DDPython* _instance = 0;
static PyObject* _main_dict = 0;
static PyThreadState *_save_state = 0;
int _execPy(const char* cmd) {
DDPython::GILState state(0);
PyObject* ret = ::PyRun_String((char*)cmd, Py_file_input,_main_dict,_main_dict);
if ( ::PyErr_Occurred() ) {
::PyErr_Print();
::PyErr_Clear();
return 0;
}
if ( ret && ret == Py_None ) {
Py_DECREF( ret );
return 1;
}
else if ( ret ) {
TPyReturn r(ret);
Py_DECREF( ret );
return (int)r;
}
return 0;
}
int _evalPy(const char* cmd) {
DDPython::GILState state(0);
PyObject* ret = ::PyRun_String((char*)cmd, Py_eval_input,_main_dict,_main_dict);
if ( ::PyErr_Occurred() ) {
::PyErr_Print();
::PyErr_Clear();
return 0;
}
if ( ret && ret == Py_None ) {
Py_DECREF( ret );
return 1;
}
else if ( ret ) {
TPyReturn r(ret);
Py_DECREF( ret );
return (int)r;
}
return 0;
}
}
DDPython::GILState::GILState(int) {
if ( ::Py_IsInitialized() ) {
PyGILState_STATE st = (PyGILState_STATE)::PyGILState_Ensure();
state = (int)st;
}
}
DDPython::GILState::~GILState() {
if ( ::Py_IsInitialized() ) {
PyGILState_STATE st = (PyGILState_STATE)state;
::PyGILState_Release(st);
}
}
DDPython::BlockThreads::BlockThreads(int) {
if ( _blockers == 0 ) {
DDPython::restoreThread();
}
++_blockers;
}
DDPython::BlockThreads::~BlockThreads() {
--_blockers;
if ( _blockers == 0 ) {
DDPython::allowThreads();
}
}
DDPython::AllowThreads::AllowThreads(int) {
DDPython::allowThreads();
}
DDPython::AllowThreads::~AllowThreads() {
DDPython::restoreThread();
}
/// Standard constructor, initializes variables
DDPython::DDPython() {
++_refCount;
bool inited = ::Py_IsInitialized();
if ( !inited ) {
::Py_Initialize();
::PyEval_InitThreads();
}
else {
_refCount += 1000; // Ensure we do not call Py_Finalize()!
}
if ( !_main_dict ) {
// retrieve the main dictionary
PyObject* module = ::PyImport_AddModule("__main__");
if ( !module || ::PyErr_Occurred() ) {
::PyErr_Print();
::PyErr_Clear();
DD4hep::printout(WARNING,"DDPython","Main dictionary pointer is NULL. Try to continue like this!");
Markus Frank
committed
}
else {
_main_dict = ::PyModule_GetDict(module);
if ( _main_dict ) {
Py_INCREF( _main_dict );
}
DD4hep::printout(DEBUG,"DDPython","Pointer to main dict:%p",(void*)_main_dict);
Markus Frank
committed
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
}
setMainThread();
}
//if ( !isMainThread() ) context = ::PyEval_SaveThread();
if ( !_save_state ) {
//_save_state = ::PyEval_SaveThread();
}
}
/// Default Destructor
DDPython::~DDPython() {
--_refCount;
if ( 0 == _refCount && ::Py_IsInitialized() ) {
DD4hep::printout(ALWAYS,"DDPython","+++ Shutdown python interpreter......");
if ( _main_dict ) {
Py_DECREF(_main_dict);
_main_dict = 0;
}
if ( _save_state ) {
::PyEval_RestoreThread(_save_state);
}
::Py_Finalize();
_instance = 0;
}
}
DDPython DDPython::instance() {
if ( 0 == _instance ) _instance = new DDPython();
return DDPython();
}
/// Save thread state
void DDPython::allowThreads() {
if ( !_save_state && ::Py_IsInitialized() ) {
_save_state = ::PyEval_SaveThread();
}
}
void DDPython::restoreThread() {
if ( _save_state ) {
::PyEval_RestoreThread(_save_state);
_save_state = 0;
}
}
int DDPython::setArgs(int argc, char** argv) const {
::PySys_SetArgv(argc,argv);
return 1;
}
void DDPython::shutdown() {
if ( 0 != _instance ) {
if ( 1 == _refCount ) {
delete _instance;
_instance = 0;
}
}
}
int DDPython::runFile(const std::string& fname) const {
std::string cmd = loadScript(fname);
return execute(cmd);
}
int DDPython::evaluate(const std::string& cmd) const {
return _evalPy(cmd.c_str());
}
int DDPython::execute(const std::string& cmd) const {
return _execPy(cmd.c_str());
}
PyObject* DDPython::call(PyObject* method, PyObject* args) {
DDPython::GILState state(0);
if ( PyCallable_Check(method) ) {
PyObject* ret = ::PyObject_CallObject(method,args==Py_None ? NULL : args);
return ret;
}
::PyErr_SetString(PyExc_RuntimeError,"DDPython::call: The argument is not a callable object!");
return 0;
}
TPyReturn DDPython::callC(PyObject* method, PyObject* args) {
if ( PyCallable_Check(method) ) {
PyObject* arg = args==Py_None || args==0 ? 0 : args;
PyObject* ret = ::PyObject_CallObject(method,arg);
if ( ::PyErr_Occurred() ) {
::PyErr_Print();
::PyErr_Clear();
return TPyReturn();
}
else if ( ret ) {
return TPyReturn(ret);
}
}
throw runtime_error("DDPython::callC: Object is not callable!");
}
/// Release python object
void DDPython::releaseObject(PyObject*& obj) {
if ( obj && ::Py_IsInitialized() ) {
Py_DECREF(obj);
}
obj = 0;
}
/// Release python object
void DDPython::assignObject(PyObject*& obj, PyObject* new_obj) {
if ( ::Py_IsInitialized() ) {
if ( obj ) { Py_DECREF(obj); }
if ( new_obj ){ Py_INCREF(new_obj); }
Markus Frank
committed
}
obj = new_obj;
}
void DDPython::prompt() const {
DDPython::GILState state(0);
::PyRun_InteractiveLoop(stdin,const_cast<char*>("\0"));
}
void DDPython::afterFork() const {
if ( ::Py_IsInitialized() ) {
cout << "[INFO] Re-init python after forking....." << endl;
::PyOS_AfterFork();
::PyEval_InitThreads();
::PyEval_ReleaseLock();
}
}
void DDPython::setMainThread() {
_mainThread = pthread_self();
}
bool DDPython::isMainThread() {
return _mainThread == pthread_self();
}