cobject.c 4.1 KB
Newer Older
1 2 3 4 5 6 7 8

/* Wrap void* pointers to be passed between C modules */

#include "Python.h"


/* Declarations for objects of type PyCObject */

9 10
typedef void (*destructor1)(void *);
typedef void (*destructor2)(void *, void*);
11

12 13 14 15 16 17 18 19

static int deprecation_exception(void)
{
    return PyErr_WarnEx(PyExc_PendingDeprecationWarning,
             "The CObject API is deprecated as of Python 3.1.  "
             "Please convert to using the Capsule API.", 1);
}

20
PyObject *
21
PyCObject_FromVoidPtr(void *cobj, void (*destr)(void *))
22
{
23 24
    PyCObject *self;

25 26 27 28
    if (deprecation_exception()) {
        return NULL;
    }

29 30 31 32 33 34 35 36
    self = PyObject_NEW(PyCObject, &PyCObject_Type);
    if (self == NULL)
        return NULL;
    self->cobject=cobj;
    self->destructor=destr;
    self->desc=NULL;

    return (PyObject *)self;
37 38 39
}

PyObject *
40 41
PyCObject_FromVoidPtrAndDesc(void *cobj, void *desc,
                             void (*destr)(void *, void *))
42
{
43
    PyCObject *self;
44

45 46 47 48
    if (deprecation_exception()) {
        return NULL;
    }

49 50 51 52 53 54 55 56 57
    if (!desc) {
        PyErr_SetString(PyExc_TypeError,
                        "PyCObject_FromVoidPtrAndDesc called with null"
                        " description");
        return NULL;
    }
    self = PyObject_NEW(PyCObject, &PyCObject_Type);
    if (self == NULL)
        return NULL;
Jeremy Hylton's avatar
Jeremy Hylton committed
58 59 60
    self->cobject = cobj;
    self->destructor = (destructor1)destr;
    self->desc = desc;
61 62

    return (PyObject *)self;
63 64
}

65
void *
66
PyCObject_AsVoidPtr(PyObject *self)
67
{
68 69 70 71 72 73 74 75 76 77
    if (self) {
        if (self->ob_type == &PyCObject_Type)
            return ((PyCObject *)self)->cobject;
        PyErr_SetString(PyExc_TypeError,
                        "PyCObject_AsVoidPtr with non-C-object");
    }
    if (!PyErr_Occurred())
        PyErr_SetString(PyExc_TypeError,
                        "PyCObject_AsVoidPtr called with null pointer");
    return NULL;
78 79
}

80
void *
81
PyCObject_GetDesc(PyObject *self)
82
{
83 84 85 86 87 88 89 90 91 92
    if (self) {
        if (self->ob_type == &PyCObject_Type)
            return ((PyCObject *)self)->desc;
        PyErr_SetString(PyExc_TypeError,
                        "PyCObject_GetDesc with non-C-object");
    }
    if (!PyErr_Occurred())
        PyErr_SetString(PyExc_TypeError,
                        "PyCObject_GetDesc called with null pointer");
    return NULL;
93 94
}

95
void *
96
PyCObject_Import(char *module_name, char *name)
97
{
98 99 100 101 102 103 104
    PyObject *m, *c;
    void *r = NULL;

    if ((m = PyImport_ImportModule(module_name))) {
        if ((c = PyObject_GetAttrString(m,name))) {
            r = PyCObject_AsVoidPtr(c);
            Py_DECREF(c);
105
	}
106
        Py_DECREF(m);
107
    }
108
    return r;
109 110
}

111
int
112
PyCObject_SetVoidPtr(PyObject *self, void *cobj)
113
{
114 115 116
    PyCObject* cself = (PyCObject*)self;
    if (cself == NULL || !PyCObject_Check(cself) ||
	cself->destructor != NULL) {
117 118 119 120
	PyErr_SetString(PyExc_TypeError, 
			"Invalid call to PyCObject_SetVoidPtr");
	return 0;
    }
121
    cself->cobject = cobj;
122 123 124
    return 1;
}

125
static void
126
PyCObject_dealloc(PyCObject *self)
127
{
128 129 130 131 132 133 134
    if (self->destructor) {
        if(self->desc)
            ((destructor2)(self->destructor))(self->cobject, self->desc);
        else
            (self->destructor)(self->cobject);
    }
    PyObject_DEL(self);
135 136
}

137

138
PyDoc_STRVAR(PyCObject_Type__doc__,
139 140 141 142 143
"C objects to be exported from one extension module to another\n\
\n\
C objects are used for communication between extension modules.  They\n\
provide a way for an extension module to export a C interface to other\n\
extension modules, so that extension modules can use the Python import\n\
144
mechanism to link to one another.");
145 146

PyTypeObject PyCObject_Type = {
147
    PyVarObject_HEAD_INIT(&PyType_Type, 0)
148 149 150
    "PyCObject",		/*tp_name*/
    sizeof(PyCObject),		/*tp_basicsize*/
    0,				/*tp_itemsize*/
151
    /* methods */
152 153 154 155
    (destructor)PyCObject_dealloc, /*tp_dealloc*/
    0,				/*tp_print*/
    0,				/*tp_getattr*/
    0,				/*tp_setattr*/
156
    0,				/*tp_reserved*/
157 158 159 160 161 162 163 164 165 166 167 168
    0,				/*tp_repr*/
    0,				/*tp_as_number*/
    0,				/*tp_as_sequence*/
    0,				/*tp_as_mapping*/
    0,				/*tp_hash*/
    0,				/*tp_call*/
    0,				/*tp_str*/
    0,				/*tp_getattro*/
    0,				/*tp_setattro*/
    0,				/*tp_as_buffer*/
    0,				/*tp_flags*/
    PyCObject_Type__doc__	/*tp_doc*/
169
};