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
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
156
157
158
159
160
161
|
#include <lib/python/python.h>
#include <lib/base/eerror.h>
/* avoid warnigs :) */
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200112L
#include <Python.h>
extern "C" void init_enigma();
extern void bsodFatal();
DEFINE_REF(TestObj);
TestObj::TestObj()
{
eDebug("create %p", this);
}
TestObj::~TestObj()
{
eDebug("destroy %p", this);
}
#if 0
ePyObject::ePyObject(void *ptr): m_object(ptr)
{
Py_XINCREF((PyObject*)ptr);
}
ePyObject::ePyObject(ePyObject &p)
{
m_object = p.m_object;
Py_XINCREF((PyObject*)m_object);
}
ePyObject::ePyObject(): m_object(0)
{
}
ePyObject::~ePyObject()
{
Py_XDECREF((PyObject*)m_object);
}
ePyObject &ePyObject::operator=(ePyObject &p)
{
Py_XDECREF((PyObject*)m_object);
m_object = p.m_object;
Py_XINCREF((PyObject*)m_object);
return *this;
}
ePyObject &ePyObject::operator=(void *object)
{
Py_XDECREF((PyObject*)m_object);
m_object = object;
Py_XINCREF((PyObject*)m_object);
return *this;
}
#endif
ePython::ePython()
{
// Py_VerboseFlag = 1;
Py_Initialize();
init_enigma();
}
ePython::~ePython()
{
Py_Finalize();
}
int ePython::execute(const std::string &pythonfile, const std::string &funcname)
{
PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue;
pName = PyString_FromString(pythonfile.c_str());
pModule = PyImport_Import(pName);
Py_DECREF(pName);
if (pModule != NULL)
{
pDict = PyModule_GetDict(pModule);
pFunc = PyDict_GetItemString(pDict, funcname.c_str());
if (pFunc && PyCallable_Check(pFunc))
{
pArgs = PyTuple_New(0);
// implement arguments..
pValue = PyObject_CallObject(pFunc, pArgs);
Py_DECREF(pArgs);
if (pValue != NULL)
{
printf("Result of call: %ld\n", PyInt_AsLong(pValue));
Py_DECREF(pValue);
} else
{
Py_DECREF(pModule);
PyErr_Print();
return 1;
}
}
} else
{
if (PyErr_Occurred())
PyErr_Print();
return 1;
}
return 0;
}
int ePython::call(PyObject *pFunc, PyObject *pArgs)
{
int res = -1;
PyObject *pValue;
if (pFunc && PyCallable_Check(pFunc))
{
pValue = PyObject_CallObject(pFunc, pArgs);
if (pValue != NULL)
{
if (PyInt_Check(pValue))
res = PyInt_AsLong(pValue);
else
res = 0;
Py_DECREF(pValue);
} else
{
PyErr_Print();
bsodFatal();
}
}
return res;
}
PyObject *ePython::resolve(const std::string &pythonfile, const std::string &funcname)
{
PyObject *pName, *pModule, *pDict, *pFunc;
pName = PyString_FromString(pythonfile.c_str());
pModule = PyImport_Import(pName);
Py_DECREF(pName);
if (pModule != NULL)
{
pDict = PyModule_GetDict(pModule);
pFunc = PyDict_GetItemString(pDict, funcname.c_str());
Py_XINCREF(pFunc);
Py_DECREF(pModule);
return pFunc;
} else
{
if (PyErr_Occurred())
PyErr_Print();
return 0;
}
}
|