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 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
/*
py/pyext - python external object for PD and Max/MSP
Copyright (c)2002-2008 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#include "pyext.h"
PyMethodDef pyext::meth_tbl[] =
{
/*
{"__init__", pyext::pyext__init__, METH_VARARGS, "Constructor"},
{"__del__", pyext::pyext__del__, METH_VARARGS, "Destructor"},
*/
{"__str__", pyext::pyext__str__, METH_VARARGS, "stringify"},
{"_outlet", pyext::pyext_outlet, METH_VARARGS,"Send message to outlet"},
#if FLEXT_SYS == FLEXT_SYS_PD
{"_tocanvas", pyext::pyext_tocanvas, METH_VARARGS,"Send message to canvas" },
#endif
{ "_bind", pyext::pyext_bind, METH_VARARGS,"Bind function to a receiving symbol" },
{ "_unbind", pyext::pyext_unbind, METH_VARARGS,"Unbind function from a receiving symbol" },
#ifdef FLEXT_THREADS
{ "_detach", pyext::pyext_detach, METH_VARARGS,"Set detach flag for called methods" },
{ "_stop", pyext::pyext_stop, METH_VARARGS,"Stop running threads" },
#endif
{ "_invec", pyext::pyext_invec, METH_VARARGS,"Get input vector" },
{ "_outvec", pyext::pyext_outvec, METH_VARARGS,"Get output vector" },
{NULL, NULL, 0, NULL} /* Sentinel */
};
PyMethodDef pyext::attr_tbl[] =
{
{ "__setattr__", pyext::pyext_setattr, METH_VARARGS,"Set class attribute" },
{ "__getattr__", pyext::pyext_getattr, METH_VARARGS,"Get class attribute" },
{ NULL, NULL,0,NULL },
};
const char *pyext::pyext_doc =
"py/pyext - python external object for PD and Max/MSP, (C)2002-2008 Thomas Grill\n"
"\n"
"This is the pyext base class. Available methods:\n"
"_outlet(self,ix,args...): Send a message to an indexed outlet\n"
#if FLEXT_SYS == FLEXT_SYS_PD
"_tocanvas(self,args...): Send a message to the parent canvas\n"
#endif
"_bind(self,name,func): Bind a python function to a symbol\n"
"_unbind(self,name,func): Unbind a python function from a symbol\n"
"_isthreaded: Query whether threading is enabled\n"
#ifdef FLEXT_THREADS
"_detach(self,int): Define whether a called Python method has its own thread\n"
"_stop(self): Stop running threads\n"
"_shouldexit: Query whether threads should terminate\n"
#endif
;
/*
PyObject* pyext::pyext__init__(PyObject *,PyObject *args)
{
// post("pyext.__init__ called");
Py_INCREF(Py_None);
return Py_None;
}
PyObject* pyext::pyext__del__(PyObject *,PyObject *args)
{
// post("pyext.__del__ called");
Py_INCREF(Py_None);
return Py_None;
}
*/
PyObject* pyext::pyext__str__(PyObject *,PyObject *args)
{
PyObject *self;
if(!PyArg_ParseTuple(args, "O:pyext__str__",&self)) {
// handle error
ERRINTERNAL();
return NULL;
}
return PyString_FromFormat("<pyext object %p>",self);
}
PyObject* pyext::pyext_setattr(PyObject *,PyObject *args)
{
PyObject *self,*name,*val;
if(!PyArg_ParseTuple(args, "OOO:pyext_setattr", &self,&name,&val)) {
// handle error
ERRINTERNAL();
return NULL;
}
bool handled = false;
/*
if(PyString_Check(name)) {
char* sname = PyString_AsString(name);
if (sname) {
// post("pyext::setattr %s",sname);
}
}
*/
if(!handled) {
if(PyInstance_Check(self))
PyDict_SetItem(((PyInstanceObject *)self)->in_dict, name,val);
else
ERRINTERNAL();
}
Py_INCREF(Py_None);
return Py_None;
}
PyObject* pyext::pyext_getattr(PyObject *,PyObject *args)
{
PyObject *self,*name,*ret = NULL;
if(!PyArg_ParseTuple(args, "OO:pyext_getattr", &self,&name)) {
// handle error
ERRINTERNAL();
}
if(PyString_Check(name)) {
char* sname = PyString_AS_STRING(name);
if(sname) {
#ifdef FLEXT_THREADS
if(!strcmp(sname,"_shouldexit")) {
pyext *ext = GetThis(self);
if(ext)
ret = PyLong_FromLong(ext->shouldexit?1:0);
else {
// return true for _shouldexit if association has been removed
Py_INCREF(Py_True);
ret = Py_True;
}
}
else
#endif
if(!strcmp(sname,"_isthreaded")) {
#ifdef FLEXT_THREADS
Py_INCREF(Py_True);
ret = Py_True;
#else
Py_INCREF(Py_False);
ret = Py_False;
#endif
}
}
}
if(!ret) {
#if PY_VERSION_HEX >= 0x02020000
ret = PyObject_GenericGetAttr(self,name); // new reference (?)
#else
if(PyInstance_Check(self))
// borrowed reference
ret = PyDict_GetItem(((PyInstanceObject *)self)->in_dict,name);
#endif
}
return ret;
}
//! Send message to outlet
PyObject *pyext::pyext_outlet(PyObject *,PyObject *args)
{
bool ok = false;
// should always be a tuple!
FLEXT_ASSERT(PyTuple_Check(args));
int sz = PyTuple_GET_SIZE(args);
// borrowed references!
PyObject *self,*outl;
if(
sz >= 2 &&
(self = PyTuple_GET_ITEM(args,0)) != NULL && PyInstance_Check(self) &&
(outl = PyTuple_GET_ITEM(args,1)) != NULL && PyInt_Check(outl)
) {
pyext *ext = GetThis(self);
if(!ext) {
PyErr_SetString(PyExc_RuntimeError,"pyext - _outlet: instance not associated with pd object");
return NULL;
}
PyObject *val;
#if 0
if(sz == 3) {
val = PyTuple_GET_ITEM(args,2); // borrow reference
Py_INCREF(val);
tp = PySequence_Check(val);
}
else
tp = false;
if(!tp)
val = PySequence_GetSlice(args,2,sz); // new ref
#else
if(sz == 3) {
val = PyTuple_GET_ITEM(args,2); // borrow reference
Py_INCREF(val);
}
else
val = PyTuple_GetSlice(args,2,sz); // new ref
#endif
int o = PyInt_AS_LONG(outl);
if(o >= 1 && o <= ext->Outlets()) {
// offset outlet by signal outlets
o += ext->sigoutlets;
if(ext->OutObject(ext,o-1,val))
ok = true;
else
PyErr_SetString(PyExc_ValueError,"pyext - _outlet: invalid arguments");
}
else
PyErr_SetString(PyExc_ValueError,"pyext - _outlet: index out of range");
Py_DECREF(val);
}
else
PyErr_SetString(PyExc_SyntaxError,"pyext - Syntax: _outlet(self,outlet,args...)");
if(!ok) return NULL;
Py_INCREF(Py_None);
return Py_None;
}
#ifdef FLEXT_THREADS
//! Detach threads
PyObject *pyext::pyext_detach(PyObject *,PyObject *args)
{
PyObject *self;
int val;
if(!PyArg_ParseTuple(args, "Oi:pyext_detach",&self,&val)) {
// handle error
PyErr_SetString(PyExc_SyntaxError,"pyext - Syntax: _detach(self,[0/1/2])");
return NULL;
}
else if(val < 0 || val > 2) {
PyErr_SetString(PyExc_ValueError,"pyext - _detach must be in the range 0..2");
return NULL;
}
else {
pyext *ext = GetThis(self);
if(!ext) {
PyErr_SetString(PyExc_RuntimeError,"pyext - _detach: instance not associated with pd object");
return NULL;
}
ext->detach = val;
}
Py_INCREF(Py_None);
return Py_None;
}
//! Stop running threads
PyObject *pyext::pyext_stop(PyObject *,PyObject *args)
{
PyObject *self;
int val = -1;
if(!PyArg_ParseTuple(args, "O|i:pyext_stop",&self,&val)) {
// handle error
PyErr_SetString(PyExc_SyntaxError,"pyext - Syntax: _stop(self,{wait time})");
return NULL;
}
else if(val < 0) {
PyErr_SetString(PyExc_ValueError,"pyext - _stop time must be >= 0");
return NULL;
}
else {
pyext *ext = GetThis(self);
if(!ext) {
PyErr_SetString(PyExc_RuntimeError,"pyext - _stop: instance not associated with pd object");
return NULL;
}
int cnt;
t_atom at;
if(val >= 0) cnt = 1,flext::SetInt(at,val);
else cnt = 0;
ext->m_stop(cnt,&at);
}
Py_INCREF(Py_None);
return Py_None;
}
#endif
#if FLEXT_SYS == FLEXT_SYS_PD
//! Send message to canvas
PyObject *pyext::pyext_tocanvas(PyObject *,PyObject *args)
{
FLEXT_ASSERT(PyTuple_Check(args));
int sz = PyTuple_GET_SIZE(args);
bool ok = false;
PyObject *self; // borrowed ref
if(
sz >= 1 &&
(self = PyTuple_GET_ITEM(args,0)) != NULL && PyInstance_Check(self)
) {
pyext *ext = GetThis(self);
if(!ext) {
PyErr_SetString(PyExc_RuntimeError,"pyext - _tocanvas: instance not associated with pd object");
return NULL;
}
PyObject *val;
bool tp =
sz == 2 &&
PySequence_Check(
val = PyTuple_GET_ITEM(args,1) // borrowed ref
);
if(!tp)
val = PyTuple_GetSlice(args,1,sz); // new ref
flext::AtomListStatic<16> lst;
const t_symbol *sym = GetPyArgs(lst,val);
if(sym) {
t_glist *gl = ext->thisCanvas();
if(gl) {
// \TODO find a flext-based non-locking method
sys_lock();
pd_forwardmess((t_class **)gl,lst.Count(),lst.Atoms());
sys_unlock();
}
#ifdef FLEXT_DEBUG
else
post("pyext - no parent canvas?!");
#endif
ok = true;
}
else
post("py/pyext - No data to send");
if(!tp) Py_DECREF(val);
}
if(!ok) {
PyErr_SetString(PyExc_SyntaxError,"pyext - Syntax: _tocanvas(self,args...)");
return NULL;
}
Py_INCREF(Py_None);
return Py_None;
}
#endif
PyObject *pyext::pyext_invec(PyObject *,PyObject *args)
{
PyObject *self;
int val = -1;
if(!PyArg_ParseTuple(args, "O|i:pyext_invec",&self,&val)) {
// handle error
PyErr_SetString(PyExc_SyntaxError,"pyext - Syntax: _invec(self,inlet)");
return NULL;
}
else if(val < 0) {
PyErr_SetString(PyExc_ValueError,"pyext - _invec: index out of range");
return NULL;
}
else {
pyext *ext = GetThis(self);
if(ext) {
PyObject *b = ext->GetSig(val,true);
if(b) return b;
}
else {
PyErr_SetString(PyExc_RuntimeError,"pyext - _invec: instance not associated with pd object");
return NULL;
}
}
Py_INCREF(Py_None);
return Py_None;
}
PyObject *pyext::pyext_outvec(PyObject *,PyObject *args)
{
PyObject *self;
int val = -1;
if(!PyArg_ParseTuple(args, "O|i:pyext_outvec",&self,&val)) {
// handle error
PyErr_SetString(PyExc_SyntaxError,"pyext - Syntax: _outvec(self,inlet)");
return NULL;
}
else if(val < 0) {
PyErr_SetString(PyExc_ValueError,"pyext - _outvec: index out of range");
return NULL;
}
else {
pyext *ext = GetThis(self);
if(ext) {
PyObject *b = ext->GetSig(val,false);
if(b) return b;
}
else {
PyErr_SetString(PyExc_RuntimeError,"pyext - _outvec: instance not associated with pd object");
return NULL;
}
}
Py_INCREF(Py_None);
return Py_None;
}
|