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/dispatch.i

    r638 r639  
    4040
    4141%{
    42 /* store the python callback function here */
    43 static PyObject * py_dispatch_cb = NULL;
    44 static int        py_dispatch_cb_n = 0;
    4542/* call it (will be called from a different thread than the interpreter, when message arrives) */
    46 static int call_the_python_dispatch_callback(struct msg **msg, struct avp *avp, struct session *session, enum disp_action *action) {
     43static int call_the_python_dispatch_callback(struct msg **msg, struct avp *avp, struct session *session, void * pycb, enum disp_action *action) {
    4744        PyObject *PyMsg, *PyAvp, *PySess;
    48         PyObject *result = NULL;
     45        PyObject *cb, *result = NULL;
    4946        int ret = 0;
    5047       
    51         if (!py_dispatch_cb)
     48        if (!pycb) {
     49                fd_log_debug("Internal error: missing the callback!\n");
    5250                return ENOTSUP;
     51        }
     52        cb = pycb;
    5353       
    5454        SWIG_PYTHON_THREAD_BEGIN_BLOCK;
     
    5959       
    6060        /* Call the function */
    61         result = PyEval_CallFunction(py_dispatch_cb, "(OOO)", PyMsg, PyAvp, PySess);
     61        result = PyEval_CallFunction(cb, "(OOO)", PyMsg, PyAvp, PySess);
    6262       
    6363        /* The result is supposedly composed of: [ ret, *msg, *action ] */
     
    108108                struct disp_hdl * hdl = NULL;
    109109                int ret;
    110                 if (py_dispatch_cb && (py_dispatch_cb != PyCb)) {
    111                         DI_ERROR(EINVAL, PyExc_SyntaxError, "Only one dispatch callback is supported at the moment in this extension\n.");
    112                         return NULL;
    113                 }
    114                 py_dispatch_cb = PyCb;
    115                 py_dispatch_cb_n += 1;
    116                 Py_XINCREF(py_dispatch_cb);
    117110               
    118                 ret = fd_disp_register ( call_the_python_dispatch_callback, how, when, &hdl );
     111                Py_XINCREF(PyCb);
     112               
     113                ret = fd_disp_register ( call_the_python_dispatch_callback, how, when, PyCb, &hdl );
    119114                if (ret != 0) {
    120115                        DI_ERROR(ret, NULL, NULL);
     
    125120        ~disp_hdl() {
    126121                struct disp_hdl * hdl = self;
    127                 int ret = fd_disp_unregister(&hdl);
     122                PyObject * cb = NULL;
     123                int ret = fd_disp_unregister(&hdl, (void *)&cb);
    128124                if (ret != 0) {
    129125                        DI_ERROR(ret, NULL, NULL);
    130126                }
    131                 /* Now free the callback */
    132                 Py_XDECREF(py_dispatch_cb);
    133                 py_dispatch_cb_n -= 1;
    134                 if (!py_dispatch_cb_n)
    135                         py_dispatch_cb = NULL;
     127                Py_XDECREF(cb);
    136128                return;
    137129        }
Note: See TracChangeset for help on using the changeset viewer.