xxmodule.c 12.1 KB
Newer Older
1

2
/* Use this file as a template to start implementing a module that
3
   also declares object types. All occurrences of 'Xxo' should be changed
4 5 6 7
   to something reasonable for your objects. After that, all other
   occurrences of 'xx' should be changed to something reasonable for your
   module. If your module is named foo your sourcefile should be named
   foomodule.c.
Tim Peters's avatar
Tim Peters committed
8

9 10 11 12
   You will probably want to delete all references to 'x_attr' and add
   your own types of attributes instead.  Maybe you want to name your
   local variables other than 'self'.  If your object type is needed in
   other files, you'll have to create a file "foobarobject.h"; see
13
   floatobject.h for an example. */
14 15

/* Xxo objects */
16

17
#include "Python.h"
18

19
static PyObject *ErrorObject;
20 21

typedef struct {
22 23
    PyObject_HEAD
    PyObject            *x_attr;        /* Attributes dictionary */
24
} XxoObject;
25

26
static PyTypeObject Xxo_Type;
27

28
#define XxoObject_Check(v)      (Py_TYPE(v) == &Xxo_Type)
29

30
static XxoObject *
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
31
newXxoObject(PyObject *arg)
32
{
33 34 35 36 37 38
    XxoObject *self;
    self = PyObject_New(XxoObject, &Xxo_Type);
    if (self == NULL)
        return NULL;
    self->x_attr = NULL;
    return self;
39 40 41 42 43
}

/* Xxo methods */

static void
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
44
Xxo_dealloc(XxoObject *self)
45
{
46 47
    Py_XDECREF(self->x_attr);
    PyObject_Del(self);
48 49
}

50
static PyObject *
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
51
Xxo_demo(XxoObject *self, PyObject *args)
52
{
53 54 55 56
    if (!PyArg_ParseTuple(args, ":demo"))
        return NULL;
    Py_INCREF(Py_None);
    return Py_None;
57 58
}

59
static PyMethodDef Xxo_methods[] = {
60 61 62
    {"demo",            (PyCFunction)Xxo_demo,  METH_VARARGS,
        PyDoc_STR("demo() -> None")},
    {NULL,              NULL}           /* sentinel */
63 64
};

65
static PyObject *
66
Xxo_getattro(XxoObject *self, PyObject *name)
67
{
68 69 70 71 72 73 74 75
    if (self->x_attr != NULL) {
        PyObject *v = PyDict_GetItem(self->x_attr, name);
        if (v != NULL) {
            Py_INCREF(v);
            return v;
        }
    }
    return PyObject_GenericGetAttr((PyObject *)self, name);
76 77 78
}

static int
79
Xxo_setattr(XxoObject *self, const char *name, PyObject *v)
80
{
81 82 83 84 85 86 87 88 89 90 91 92 93 94
    if (self->x_attr == NULL) {
        self->x_attr = PyDict_New();
        if (self->x_attr == NULL)
            return -1;
    }
    if (v == NULL) {
        int rv = PyDict_DelItemString(self->x_attr, name);
        if (rv < 0)
            PyErr_SetString(PyExc_AttributeError,
                "delete non-existing Xxo attribute");
        return rv;
    }
    else
        return PyDict_SetItemString(self->x_attr, name, v);
95 96
}

97
static PyTypeObject Xxo_Type = {
98 99 100 101 102 103 104
    /* The ob_type field must be initialized in the module init function
     * to be portable to Windows without using C++. */
    PyVarObject_HEAD_INIT(NULL, 0)
    "xxmodule.Xxo",             /*tp_name*/
    sizeof(XxoObject),          /*tp_basicsize*/
    0,                          /*tp_itemsize*/
    /* methods */
105
    (destructor)Xxo_dealloc,    /*tp_dealloc*/
106
    0,                          /*tp_print*/
107 108
    (getattrfunc)0,             /*tp_getattr*/
    (setattrfunc)Xxo_setattr,   /*tp_setattr*/
109 110 111 112 113 114
    0,                          /*tp_reserved*/
    0,                          /*tp_repr*/
    0,                          /*tp_as_number*/
    0,                          /*tp_as_sequence*/
    0,                          /*tp_as_mapping*/
    0,                          /*tp_hash*/
115 116
    0,                          /*tp_call*/
    0,                          /*tp_str*/
117
    (getattrofunc)Xxo_getattro, /*tp_getattro*/
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    0,                          /*tp_setattro*/
    0,                          /*tp_as_buffer*/
    Py_TPFLAGS_DEFAULT,         /*tp_flags*/
    0,                          /*tp_doc*/
    0,                          /*tp_traverse*/
    0,                          /*tp_clear*/
    0,                          /*tp_richcompare*/
    0,                          /*tp_weaklistoffset*/
    0,                          /*tp_iter*/
    0,                          /*tp_iternext*/
    Xxo_methods,                /*tp_methods*/
    0,                          /*tp_members*/
    0,                          /*tp_getset*/
    0,                          /*tp_base*/
    0,                          /*tp_dict*/
    0,                          /*tp_descr_get*/
    0,                          /*tp_descr_set*/
    0,                          /*tp_dictoffset*/
    0,                          /*tp_init*/
    0,                          /*tp_alloc*/
    0,                          /*tp_new*/
    0,                          /*tp_free*/
    0,                          /*tp_is_gc*/
141 142
};
/* --------------------------------------------------------------------- */
143 144 145

/* Function of two integers returning integer */

146 147 148 149 150
PyDoc_STRVAR(xx_foo_doc,
"foo(i,j)\n\
\n\
Return the sum of i and j.");

151
static PyObject *
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
152
xx_foo(PyObject *self, PyObject *args)
153
{
154 155 156 157 158 159
    long i, j;
    long res;
    if (!PyArg_ParseTuple(args, "ll:foo", &i, &j))
        return NULL;
    res = i+j; /* XXX Do something here */
    return PyLong_FromLong(res);
160 161 162
}


163
/* Function of no arguments returning new Xxo object */
164

165
static PyObject *
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
166
xx_new(PyObject *self, PyObject *args)
167
{
168 169 170 171 172 173 174 175
    XxoObject *rv;

    if (!PyArg_ParseTuple(args, ":new"))
        return NULL;
    rv = newXxoObject(args);
    if (rv == NULL)
        return NULL;
    return (PyObject *)rv;
176 177
}

178 179 180
/* Example with subtle bug from extensions manual ("Thin Ice"). */

static PyObject *
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
181
xx_bug(PyObject *self, PyObject *args)
182
{
183
    PyObject *list, *item;
Tim Peters's avatar
Tim Peters committed
184

185 186
    if (!PyArg_ParseTuple(args, "O:bug", &list))
        return NULL;
Tim Peters's avatar
Tim Peters committed
187

188 189 190 191 192 193
    item = PyList_GetItem(list, 0);
    /* Py_INCREF(item); */
    PyList_SetItem(list, 1, PyLong_FromLong(0L));
    PyObject_Print(item, stdout, 0);
    printf("\n");
    /* Py_DECREF(item); */
Tim Peters's avatar
Tim Peters committed
194

195 196
    Py_INCREF(Py_None);
    return Py_None;
197 198
}

199 200 201
/* Test bad format character */

static PyObject *
Peter Schneider-Kamp's avatar
Peter Schneider-Kamp committed
202
xx_roj(PyObject *self, PyObject *args)
203
{
204 205 206 207 208 209
    PyObject *a;
    long b;
    if (!PyArg_ParseTuple(args, "O#:roj", &a, &b))
        return NULL;
    Py_INCREF(Py_None);
    return Py_None;
210 211
}

212

213 214 215
/* ---------- */

static PyTypeObject Str_Type = {
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    /* The ob_type field must be initialized in the module init function
     * to be portable to Windows without using C++. */
    PyVarObject_HEAD_INIT(NULL, 0)
    "xxmodule.Str",             /*tp_name*/
    0,                          /*tp_basicsize*/
    0,                          /*tp_itemsize*/
    /* methods */
    0,                          /*tp_dealloc*/
    0,                          /*tp_print*/
    0,                          /*tp_getattr*/
    0,                          /*tp_setattr*/
    0,                          /*tp_reserved*/
    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*/
    Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
    0,                          /*tp_doc*/
    0,                          /*tp_traverse*/
    0,                          /*tp_clear*/
    0,                          /*tp_richcompare*/
    0,                          /*tp_weaklistoffset*/
    0,                          /*tp_iter*/
    0,                          /*tp_iternext*/
    0,                          /*tp_methods*/
    0,                          /*tp_members*/
    0,                          /*tp_getset*/
    0, /* see PyInit_xx */      /*tp_base*/
    0,                          /*tp_dict*/
    0,                          /*tp_descr_get*/
    0,                          /*tp_descr_set*/
    0,                          /*tp_dictoffset*/
    0,                          /*tp_init*/
    0,                          /*tp_alloc*/
    0,                          /*tp_new*/
    0,                          /*tp_free*/
    0,                          /*tp_is_gc*/
259 260
};

Guido van Rossum's avatar
Guido van Rossum committed
261 262 263 264 265
/* ---------- */

static PyObject *
null_richcompare(PyObject *self, PyObject *other, int op)
{
266 267
    Py_INCREF(Py_NotImplemented);
    return Py_NotImplemented;
Guido van Rossum's avatar
Guido van Rossum committed
268 269 270
}

static PyTypeObject Null_Type = {
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
    /* The ob_type field must be initialized in the module init function
     * to be portable to Windows without using C++. */
    PyVarObject_HEAD_INIT(NULL, 0)
    "xxmodule.Null",            /*tp_name*/
    0,                          /*tp_basicsize*/
    0,                          /*tp_itemsize*/
    /* methods */
    0,                          /*tp_dealloc*/
    0,                          /*tp_print*/
    0,                          /*tp_getattr*/
    0,                          /*tp_setattr*/
    0,                          /*tp_reserved*/
    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*/
    Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
    0,                          /*tp_doc*/
    0,                          /*tp_traverse*/
    0,                          /*tp_clear*/
    null_richcompare,           /*tp_richcompare*/
    0,                          /*tp_weaklistoffset*/
    0,                          /*tp_iter*/
    0,                          /*tp_iternext*/
    0,                          /*tp_methods*/
    0,                          /*tp_members*/
    0,                          /*tp_getset*/
    0, /* see PyInit_xx */      /*tp_base*/
    0,                          /*tp_dict*/
    0,                          /*tp_descr_get*/
    0,                          /*tp_descr_set*/
    0,                          /*tp_dictoffset*/
    0,                          /*tp_init*/
    0,                          /*tp_alloc*/
    0, /* see PyInit_xx */      /*tp_new*/
    0,                          /*tp_free*/
    0,                          /*tp_is_gc*/
Guido van Rossum's avatar
Guido van Rossum committed
314 315
};

316 317 318 319

/* ---------- */


320 321
/* List of functions defined in the module */

322
static PyMethodDef xx_methods[] = {
323 324 325 326 327 328 329 330 331
    {"roj",             xx_roj,         METH_VARARGS,
        PyDoc_STR("roj(a,b) -> None")},
    {"foo",             xx_foo,         METH_VARARGS,
        xx_foo_doc},
    {"new",             xx_new,         METH_VARARGS,
        PyDoc_STR("new() -> new Xx object")},
    {"bug",             xx_bug,         METH_VARARGS,
        PyDoc_STR("bug(o) -> None")},
    {NULL,              NULL}           /* sentinel */
332 333
};

334 335
PyDoc_STRVAR(module_doc,
"This is a template module just for instruction.");
336

337

338 339
static int
xx_exec(PyObject *m)
340
{
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
    /* Due to cross platform compiler issues the slots must be filled
     * here. It's required for portability to Windows without requiring
     * C++. */
    Null_Type.tp_base = &PyBaseObject_Type;
    Null_Type.tp_new = PyType_GenericNew;
    Str_Type.tp_base = &PyUnicode_Type;

    /* Finalize the type object including setting type of the new type
     * object; doing it here is required for portability, too. */
    if (PyType_Ready(&Xxo_Type) < 0)
        goto fail;

    /* Add some symbolic constants to the module */
    if (ErrorObject == NULL) {
        ErrorObject = PyErr_NewException("xx.error", NULL, NULL);
        if (ErrorObject == NULL)
            goto fail;
    }
    Py_INCREF(ErrorObject);
    PyModule_AddObject(m, "error", ErrorObject);

    /* Add Str */
    if (PyType_Ready(&Str_Type) < 0)
        goto fail;
    PyModule_AddObject(m, "Str", (PyObject *)&Str_Type);

    /* Add Null */
    if (PyType_Ready(&Null_Type) < 0)
        goto fail;
    PyModule_AddObject(m, "Null", (PyObject *)&Null_Type);
371
    return 0;
372
 fail:
373
    Py_XDECREF(m);
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
    return -1;
}

static struct PyModuleDef_Slot xx_slots[] = {
    {Py_mod_exec, xx_exec},
    {0, NULL},
};

static struct PyModuleDef xxmodule = {
    PyModuleDef_HEAD_INIT,
    "xx",
    module_doc,
    0,
    xx_methods,
    xx_slots,
    NULL,
    NULL,
    NULL
};

/* Export function for the module (*must* be called PyInit_xx) */

PyMODINIT_FUNC
PyInit_xx(void)
{
    return PyModuleDef_Init(&xxmodule);
400
}