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
162
163
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
|
/*
py/pyext - python external object for PD and MaxMSP
Copyright (c) 2002-2003 Thomas Grill (xovo@gmx.net)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#include "main.h"
V py::lib_setup()
{
post("");
post("py/pyext %s - python script objects, (C)2002,2003 Thomas Grill",PY__VERSION);
post("");
FLEXT_SETUP(pyobj);
FLEXT_SETUP(pyext);
pyref = 0;
}
FLEXT_LIB_SETUP(py,py::lib_setup)
PyInterpreterState *py::pystate = NULL;
#ifdef FLEXT_THREADS
std::map<flext::thrid_t,PyThreadState *> py::pythrmap;
#endif
I py::pyref = 0;
PyObject *py::module_obj = NULL;
PyObject *py::module_dict = NULL;
py::py():
module(NULL),
detach(false),shouldexit(false),thrcount(0),
stoptick(0)
{
Lock();
if(!(pyref++)) {
Py_Initialize();
#ifdef FLEXT_THREADS
// enable thread support and acquire the global thread lock
PyEval_InitThreads();
// get thread state
PyThreadState *pythrmain = PyThreadState_Get();
// get main interpreter state
pystate = pythrmain->interp;
// release global lock
PyEval_ReleaseLock();
// add thread state of main thread to map
pythrmap[GetThreadId()] = pythrmain;
#endif
// register/initialize pyext module only once!
module_obj = Py_InitModule(PYEXT_MODULE, func_tbl);
module_dict = PyModule_GetDict(module_obj);
PyModule_AddStringConstant(module_obj,"__doc__",(C *)py_doc);
}
else {
PY_LOCK
Py_INCREF(module_obj);
Py_INCREF(module_dict);
PY_UNLOCK
}
Unlock();
FLEXT_ADDTIMER(stoptmr,tick);
}
py::~py()
{
if(thrcount) {
shouldexit = true;
// Wait for a certain time
for(int i = 0; i < (PY_STOP_WAIT/PY_STOP_TICK) && thrcount; ++i) Sleep((F)(PY_STOP_TICK/1000.));
// Wait forever
post("%s - Waiting for thread termination!",thisName());
while(thrcount) Sleep(0.2f);
post("%s - Okay, all threads have terminated",thisName());
}
Lock();
if(!(--pyref)) {
// no more py/pyext objects left... shut down Python
module_obj = NULL;
module_dict = NULL;
Py_XDECREF(module);
PyEval_AcquireLock();
#ifdef FLEXT_THREADS
PyThreadState_Swap(pythrmap[GetThreadId()]);
#endif
#ifdef FLEXT_DEBUG
// need not necessarily do that....
Py_Finalize();
#endif
#ifdef FLEXT_THREADS
// reset thread state map
pythrmap.clear();
#endif
}
else {
Py_DECREF(module_obj);
Py_DECREF(module_dict);
}
Unlock();
}
void py::m__dir(PyObject *obj)
{
if(obj) {
PY_LOCK
PyObject *pvar = PyObject_Dir(obj);
if(pvar == NULL) {
PyErr_Print(); // no method found
}
else {
AtomList *lst = GetPyArgs(pvar);
if(lst) {
// dump dir to attribute outlet
ToOutAnything(GetOutAttr(),thisTag(),lst->Count(),lst->Atoms());
delete lst;
}
else
post("%s - %s: List could not be created",thisName(),GetString(thisTag()));
Py_DECREF(pvar);
}
PY_UNLOCK
}
}
V py::m__doc(PyObject *obj)
{
if(obj) {
PY_LOCK
PyObject *docf = PyDict_GetItemString(obj,"__doc__"); // borrowed!!!
if(docf && PyString_Check(docf)) {
post("");
post(PyString_AsString(docf));
}
PY_UNLOCK
}
}
V py::SetArgs(I argc,const t_atom *argv)
{
// script arguments
C **sargv = new C *[argc+1];
for(int i = 0; i <= argc; ++i) {
sargv[i] = new C[256];
if(!i)
strcpy(sargv[i],thisName());
else
GetAString(argv[i-1],sargv[i],255);
}
// the arguments to the module are only recognized once! (at first use in a patcher)
PySys_SetArgv(argc+1,sargv);
for(int j = 0; j <= argc; ++j) delete[] sargv[j];
delete[] sargv;
}
V py::ImportModule(const C *name)
{
if(!name) return;
module = PyImport_ImportModule((C *)name);
if (!module) {
PyErr_Print();
dict = NULL;
}
else
dict = PyModule_GetDict(module); // borrowed
}
V py::ReloadModule()
{
if(module) {
PyObject *newmod = PyImport_ReloadModule(module);
if(!newmod) {
PyErr_Print();
// old module still exists?!
// dict = NULL;
}
else {
Py_XDECREF(module);
module = newmod;
dict = PyModule_GetDict(module); // borrowed
}
}
else
post("%s - No module to reload",thisName());
}
V py::GetModulePath(const C *mod,C *dir,I len)
{
#if FLEXT_SYS == FLEXT_SYS_PD
// uarghh... pd doesn't show it's path for extra modules
C *name;
I fd = open_via_path("",mod,".py",dir,&name,len,0);
if(fd > 0) close(fd);
else name = NULL;
// if dir is current working directory... name points to dir
if(dir == name) strcpy(dir,".");
#elif FLEXT_SYS == FLEXT_SYS_MAX
// how do i get the path in Max/MSP?
short path;
long type;
char smod[256];
strcat(strcpy(smod,mod),".py");
if(!locatefile_extended(smod,&path,&type,&type,-1))
path_topathname(path,NULL,dir);
else
// not found
*dir = 0;
#else
*dir = 0;
#endif
}
V py::AddToPath(const C *dir)
{
if(dir && *dir) {
PyObject *pobj = PySys_GetObject("path");
if(pobj && PyList_Check(pobj)) {
int i,n = PyList_Size(pobj);
for(i = 0; i < n; ++i) {
PyObject *pt = PyList_GetItem(pobj,i);
if(PyString_Check(pt) && !strcmp(dir,PyString_AsString(pt))) break;
}
if(i == n) { // string is not yet existent in path
PyObject *ps = PyString_FromString(dir);
PyList_Append(pobj,ps);
}
}
PySys_SetObject("path",pobj);
}
}
|