Navigation



Ignore:
Timestamp:
Dec 20, 2010, 1:07:06 PM (13 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Added new opaque pointer to fd_sess_handler_create and fd_disp_register for usability. Bumped API version number.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/dbg_interactive/sessions.i

    r638 r639  
    3939
    4040%{
    41 /* store the python callback function here */
    42 static PyObject * py_cleanup_cb = NULL;
    4341/* call it (might be called from a different thread than the interpreter, when session times out) */
    44 static void call_the_python_cleanup_callback(session_state * state, char * sid) {
     42static void call_the_python_cleanup_callback(session_state * state, char * sid, void * cb) {
    4543        PyObject *result;
    46         if (!py_cleanup_cb)
     44        if (!cb) {
     45                fd_log_debug("Internal error: missing callback object!\n");
    4746                return;
     47        }
    4848       
    4949        /* Call the function */
    5050        SWIG_PYTHON_THREAD_BEGIN_BLOCK;
    51         result = PyEval_CallFunction(py_cleanup_cb, "(Os)", state, sid);
     51        result = PyEval_CallFunction((PyObject *)cb, "(Os)", state, sid);
    5252        Py_XDECREF(result);
    5353        SWIG_PYTHON_THREAD_END_BLOCK;
     
    6464                struct session_handler * hdl = NULL;
    6565                int ret;
    66                 if (py_cleanup_cb) {
    67                         DI_ERROR(EINVAL, PyExc_SyntaxError, "Only one session handler at a time is supported at the moment in this extension\n.");
    68                         return NULL;
    69                 }
    70                 py_cleanup_cb = PyCb;
    71                 Py_XINCREF(py_cleanup_cb);
    7266               
    73                 ret = fd_sess_handler_create_internal ( &hdl, call_the_python_cleanup_callback );
     67                Py_XINCREF(PyCb);
     68               
     69                ret = fd_sess_handler_create_internal ( &hdl, call_the_python_cleanup_callback, PyCb );
    7470                if (ret != 0) {
    7571                        DI_ERROR(ret, NULL, NULL);
     
    8076        ~session_handler() {
    8177                struct session_handler * hdl = self;
    82                 int ret = fd_sess_handler_destroy(&hdl);
     78                PyObject * cb = NULL;
     79               
     80                int ret = fd_sess_handler_destroy(&hdl, (void *)&cb);
    8381                if (ret != 0) {
    8482                        DI_ERROR(ret, NULL, NULL);
    8583                }
    8684                /* Now free the callback */
    87                 Py_XDECREF(py_cleanup_cb);
    88                 py_cleanup_cb = NULL;
     85                Py_XDECREF(cb);
    8986                return;
    9087        }
Note: See TracChangeset for help on using the changeset viewer.