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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
/*
py/pyext - python external object for PD and MaxMSP
Copyright (c)2002-2004 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"
static PyMethodDef StdOut_Methods[] =
{
{ "write", py::StdOut_Write, 1 },
{ NULL, NULL, }
};
V py::lib_setup()
{
post("");
post("py/pyext %s - python script objects, (C)2002-2004 Thomas Grill",PY__VERSION);
post("");
// -------------------------------------------------------------
Py_Initialize();
#if 0 //def FLEXT_DEBUG
Py_DebugFlag = 1;
Py_VerboseFlag = 1;
#endif
#ifdef FLEXT_THREADS
// enable thread support and acquire the global thread lock
PyEval_InitThreads();
// get thread state
pythrmain = PyThreadState_Get();
// get main interpreter state
pystate = pythrmain->interp;
// 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); // borrowed reference
PyModule_AddStringConstant(module_obj,"__doc__",(C *)py_doc);
// redirect stdout
PyObject* py_out = Py_InitModule("stdout", StdOut_Methods);
PySys_SetObject("stdout", py_out);
#ifdef FLEXT_THREADS
// release global lock
PyEval_ReleaseLock();
#endif
// -------------------------------------------------------------
FLEXT_SETUP(pyobj);
FLEXT_SETUP(pyext);
}
FLEXT_LIB_SETUP(py,py::lib_setup)
#ifdef FLEXT_THREADS
PyInterpreterState *py::pystate = NULL;
PyThreadState *py::pythrmain = NULL;
PyThrMap py::pythrmap;
#endif
PyObject *py::module_obj = NULL;
PyObject *py::module_dict = NULL;
py::py():
module(NULL),
detach(false),shouldexit(false),thrcount(0),
stoptick(0)
{
PY_LOCK
Py_INCREF(module_obj);
PY_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());
}
Py_XDECREF(module_obj);
}
void py::GetDir(PyObject *obj,AtomList &lst)
{
if(obj) {
PY_LOCK
PyObject *pvar = PyObject_Dir(obj);
if(!pvar)
PyErr_Print(); // no method found
else {
AtomList *l = GetPyArgs(pvar);
if(l) {
lst = *l; delete l;
}
else
post("%s - %s: List could not be created",thisName(),GetString(thisTag()));
Py_DECREF(pvar);
}
PY_UNLOCK
}
}
void py::m__dir(PyObject *obj)
{
AtomList lst;
GetDir(obj,lst);
// dump dir to attribute outlet
ToOutAnything(GetOutAttr(),thisTag(),lst.Count(),lst.Atoms());
}
V py::m__doc(PyObject *obj)
{
if(obj) {
PY_LOCK
PyObject *docf = PyDict_GetItemString(obj,"__doc__"); // borrowed!!!
if(docf && PyString_Check(docf)) {
post("");
const char *s = PyString_AsString(docf);
// FIX: Python doc strings can easily be larger than 1k characters
// -> split into separate lines
for(;;) {
char buf[1024];
char *nl = strchr((char *)s,'\n'); // the cast is for Borland C++
if(!nl) {
// no more newline found
post(s);
break;
}
else {
// copy string before newline to temp buffer and post
int l = nl-s;
if(l >= sizeof(buf)) l = sizeof buf-1;
strncpy(buf,s,l); // copy all but newline
buf[l] = 0;
post(buf);
s = nl+1; // set after newline
}
}
}
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); // increases module_obj ref count by one
if (!module) {
PyErr_Print();
dict = NULL;
}
else
dict = PyModule_GetDict(module);
}
V py::UnimportModule()
{
if(!module) return;
assert(dict && module_obj && module_dict);
Py_DECREF(module);
// reference count to module is not 0 here, altough probably the last instance was unloaded
// Python retains one reference to the module all the time
// we don't care
module = NULL;
dict = NULL;
}
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 its 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_AS_STRING(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);
}
}
static PyObject *output = NULL;
// post to the console
PyObject* py::StdOut_Write(PyObject* self, PyObject* args)
{
if(PySequence_Check(args)) {
int sz = PySequence_Size(args);
for(int i = 0; i < sz; ++i) {
PyObject *val = PySequence_GetItem(args,i); // borrowed
PyObject *str = PyObject_Str(val);
char *cstr = PyString_AS_STRING(str);
char *lf = strchr(cstr,'\n');
// line feed in string
if(!lf) {
// no -> just append
if(output)
PyString_ConcatAndDel(&output,str);
else
output = str;
}
else {
// yes -> append up to line feed, reset output buffer to string remainder
PyObject *part = PyString_FromStringAndSize(cstr,lf-cstr);
if(output)
PyString_ConcatAndDel(&output,part);
else
output = part;
post(PyString_AS_STRING(output));
Py_DECREF(output);
output = PyString_FromString(lf+1);
}
}
}
Py_INCREF(Py_None);
return Py_None;
}
|