1 #ifndef __lib_python_connections_h
2 #define __lib_python_connections_h
4 #include <libsig_comp.h>
9 #define _POSIX_C_SOURCE 200112L
11 #include <lib/python/python.h>
20 m_list = PyList_New(0);
28 void callPython(PyObject *tuple)
30 int size = PyList_Size(m_list);
32 for (i=0; i<size; ++i)
34 PyObject *b = PyList_GetItem(m_list, i);
35 ePython::call(b, tuple);
40 PyObject *get() { Py_INCREF(m_list); return m_list; }
43 inline PyObject *PyFrom(int v)
45 return PyInt_FromLong(v);
49 class PSignal0: public PSignal, public Signal0<R>
54 PyObject *pArgs = PyTuple_New(0);
57 return Signal0<R>::operator()();
61 template <class R, class V0>
62 class PSignal1: public PSignal, public Signal1<R,V0>
67 PyObject *pArgs = PyTuple_New(1);
68 PyTuple_SetItem(pArgs, 0, PyFrom(a0));
71 return Signal1<R,V0>::operator()(a0);
75 template <class R, class V0, class V1>
76 class PSignal2: public PSignal, public Signal2<R,V0,V1>
79 R operator()(V0 a0, V1 a1)
81 PyObject *pArgs = PyTuple_New(2);
82 PyTuple_SetItem(pArgs, 0, PyFrom(a0));
83 PyTuple_SetItem(pArgs, 1, PyFrom(a1));
86 return Signal2<R,V0,V1>::operator()(a0, a1);