Quote:
From: Tim Spens <t_spens@yahoo.com>
Subject: Re: embedding and extending python C API registering callback handler objects
To:
python-list@python.org, "Matimus" <mccredie@gmail.com>
Date: Friday, June 27, 2008, 9:16 AM
thanks, but didn't fix the problem.
>
>
--- On Fri, 6/27/08, Matimus <mccredie@gmail.com>
wrote:
>
Quote:
From: Matimus <mccredie@gmail.com>
Subject: Re: embedding and extending python C API
registering callback handler objects
<t_sp...@yahoo.com>
Quote:
wrote:
Quote:
Hello all,
>
I've been trying to get an example found
herehttp://codeidol.com/python/python3/Embedding-Python/Registering-Callb...
Quote:
Quote:
to work. Every thing works fine except when I
try to
Quote:
trigger an event from c that will call a python
function.
Quote:
Here is my test code:
Quote:
>
//-----------------------python
code--------------------------//
Quote:
#! /usr/bin/env python
import time
import callback
>
def callback1(label,count):
print 'callback1 successfully
triggered from python via callback.so'
Quote:
return 'callback1 =%s number
%i' % (label, count)
Quote:
>
def callback2(label,count):
return 'callback2 =' +
label * count
Quote:
>
print '\nTest1:'
callback.setHandler(callback1)
callback.triggerEvent() # simulate events
caught by C layer
Quote:
>
print '\nTest2:'
callback.setHandler(callback2)
>
print 'Waiting for callback2 to be called
from
Quote:
c:'
Quote:
while 1:
time.sleep(.001)
>
//-----------------------c
code-------------------------------//
Quote:
#include <Python.h>
#include <stdlib.h>
>
/* keep Python object in C */
static PyObject *Handler = NULL;
>
void Route_Event(char *label, int count){
char *cres;
PyObject *args, *pres;
/* call Python handler */
args = Py_BuildValue("(si)", label,
count);
Quote:
pres = PyEval_CallObject(Handler, args);
Py_DECREF(args);
if (pres != NULL){
/* use and decref handler result */
PyArg_Parse(pres, "s",
&cres);
Quote:
printf("%s\n", cres);
Py_DECREF(pres);
>
}}
>
// the actual python callback call
static PyObject *
make_call(PyObject *function, PyObject *args){
if (function == NULL) return NULL;
PyObject * val =
PyObject_CallObject(function,
Quote:
args);
Quote:
Py_XDECREF(args);
return val;
>
}
>
static PyObject *
Register_Handler(PyObject *self, PyObject *args){
/* save Python callable object */
Py_XDECREF(Handler);
PyArg_Parse(args, "O",
&Handler);
Quote:
Quote:
Py_XINCREF(Handler);
Py_INCREF(Py_None);
return Py_None;
>
}
>
static PyObject *
Trigger_Event(PyObject *self, PyObject *args){
/* let Python simulate event caught by C */
static int count = 0;
Route_Event("spam", count++);
Py_INCREF(Py_None);
return Py_None;
>
}
>
static struct PyMethodDef callback_methods[] = {
{"setHandler",
Register_Handler},
Quote:
/* name, address */
Quote:
{"triggerEvent", Trigger_Event},
{NULL, NULL}};
>
>
/* on first "import callback" */
Quote:
void initcallback(){ /* this
is called by Python */
Quote:
(void) Py_InitModule("callback",
callback_methods);
Quote:
>
}
>
int main(){
while (1){
printf("1\n");
//attempting to call callback2
which is registered to Handler
Quote:
//i've also tried args =
Py_BuildValue("(si)", label, count); here
but I
Quote:
get a segfault.
Py_BuildValue("s","c code");
Quote:
printf("2\n");
PyObject* val =
make_call(Handler,args);
Quote:
printf("3\n");
Py_XDECREF (val);
printf("4\n");
sleep(1);
>
}}
>
//------------------------compiler
stuff----------------------//
Quote:
gcc callback.c -c -g -Wall -fpic -I
/usr/include/python2.5 -o callback.o
Quote:
gcc callback.c -g -Wall -I /usr/include/python2.5
-L
Quote:
/usr/local/lib -lpython2.5 -o callback
Quote:
gcc -shared -Wall callback.o -o callback.so
>
//------------------------test code
results-------------------//
Quote:
../callback.py
Test1:
callback1 successfully triggered from python via
callback.so
Quote:
callback1 =spam number 0
>
Test2:
Waiting for callback2 to be called from c:
#NOTHING EVER GETS PRINTED HERE CALLBACK NEVER
GETS
Quote:
CALLED?
Quote:
>
../callback
1
2
3
4
....
>
Thanks,
Tim
Maybe you just need to flush the stdout buffer in
python.
>
>
>
>
--
http://mail.python.org/mailman/listinfo/python-list I think I know where the problem is but I'm unsure how to fix it. When I call Register_Handler(...) from python via callback.setHandler1(callback1) this only seems to affect pythons ability to trigger an "event" in c. PyObject *Handler is always NULL even after I call Register_Handler(...). I thought there was some magic here that was assigning the pointer *Handler to my python callback1 handler so it could be triggered from c?