1992-08-04 09:41:02 -03:00
|
|
|
/***********************************************************
|
1995-01-04 15:10:35 -04:00
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
1992-08-04 09:41:02 -03:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
|
|
|
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior permission.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
|
|
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
|
|
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1994-09-29 06:50:09 -03:00
|
|
|
/* Use this file as a template to start implementing a module that
|
1996-07-30 13:56:16 -03:00
|
|
|
also declares objects types. All occurrences of 'Xxo' should be changed
|
1994-09-29 06:50:09 -03:00
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
intobject.h for an example. */
|
|
|
|
|
|
|
|
/* Xxo objects */
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
#include "Python.h"
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static PyObject *ErrorObject;
|
1994-09-29 06:50:09 -03:00
|
|
|
|
|
|
|
typedef struct {
|
1996-07-30 13:56:16 -03:00
|
|
|
PyObject_HEAD
|
|
|
|
PyObject *x_attr; /* Attributes dictionary */
|
|
|
|
} XxoObject;
|
1994-09-29 06:50:09 -03:00
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
staticforward PyTypeObject Xxo_Type;
|
1994-09-29 06:50:09 -03:00
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
#define XxoObject_Check(v) ((v)->ob_type == &Xxo_Type)
|
1994-09-29 06:50:09 -03:00
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static XxoObject *
|
|
|
|
newXxoObject(arg)
|
|
|
|
PyObject *arg;
|
1994-09-29 06:50:09 -03:00
|
|
|
{
|
1996-07-30 13:56:16 -03:00
|
|
|
XxoObject *self;
|
|
|
|
self = PyObject_NEW(XxoObject, &Xxo_Type);
|
1994-09-29 06:50:09 -03:00
|
|
|
if (self == NULL)
|
|
|
|
return NULL;
|
|
|
|
self->x_attr = NULL;
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xxo methods */
|
|
|
|
|
|
|
|
static void
|
1996-07-30 13:56:16 -03:00
|
|
|
Xxo_dealloc(self)
|
|
|
|
XxoObject *self;
|
1994-09-29 06:50:09 -03:00
|
|
|
{
|
1996-07-30 13:56:16 -03:00
|
|
|
Py_XDECREF(self->x_attr);
|
|
|
|
PyMem_DEL(self);
|
1994-09-29 06:50:09 -03:00
|
|
|
}
|
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static PyObject *
|
|
|
|
Xxo_demo(self, args)
|
|
|
|
XxoObject *self;
|
|
|
|
PyObject *args;
|
1994-09-29 06:50:09 -03:00
|
|
|
{
|
1996-07-30 13:56:16 -03:00
|
|
|
if (!PyArg_ParseTuple(args, ""))
|
1994-09-29 06:50:09 -03:00
|
|
|
return NULL;
|
1996-07-30 13:56:16 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1994-09-29 06:50:09 -03:00
|
|
|
}
|
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static PyMethodDef Xxo_methods[] = {
|
|
|
|
{"demo", (PyCFunction)Xxo_demo, 1},
|
1994-09-29 06:50:09 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static PyObject *
|
|
|
|
Xxo_getattr(self, name)
|
|
|
|
XxoObject *self;
|
1994-09-29 06:50:09 -03:00
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
if (self->x_attr != NULL) {
|
1996-07-30 13:56:16 -03:00
|
|
|
PyObject *v = PyDict_GetItemString(self->x_attr, name);
|
1994-09-29 06:50:09 -03:00
|
|
|
if (v != NULL) {
|
1996-07-30 13:56:16 -03:00
|
|
|
Py_INCREF(v);
|
1994-09-29 06:50:09 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
1996-07-30 13:56:16 -03:00
|
|
|
return Py_FindMethod(Xxo_methods, (PyObject *)self, name);
|
1994-09-29 06:50:09 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1996-07-30 13:56:16 -03:00
|
|
|
Xxo_setattr(self, name, v)
|
|
|
|
XxoObject *self;
|
1994-09-29 06:50:09 -03:00
|
|
|
char *name;
|
1996-07-30 13:56:16 -03:00
|
|
|
PyObject *v;
|
1994-09-29 06:50:09 -03:00
|
|
|
{
|
|
|
|
if (self->x_attr == NULL) {
|
1996-07-30 13:56:16 -03:00
|
|
|
self->x_attr = PyDict_New();
|
1994-09-29 06:50:09 -03:00
|
|
|
if (self->x_attr == NULL)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (v == NULL) {
|
1996-07-30 13:56:16 -03:00
|
|
|
int rv = PyDict_DelItemString(self->x_attr, name);
|
1994-09-29 06:50:09 -03:00
|
|
|
if (rv < 0)
|
1996-07-30 13:56:16 -03:00
|
|
|
PyErr_SetString(PyExc_AttributeError,
|
|
|
|
"delete non-existing Xxo attribute");
|
1994-09-29 06:50:09 -03:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
else
|
1996-07-30 13:56:16 -03:00
|
|
|
return PyDict_SetItemString(self->x_attr, name, v);
|
1994-09-29 06:50:09 -03:00
|
|
|
}
|
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
staticforward PyTypeObject Xxo_Type = {
|
|
|
|
PyObject_HEAD_INIT(&PyType_Type)
|
1994-09-29 06:50:09 -03:00
|
|
|
0, /*ob_size*/
|
1996-07-30 13:56:16 -03:00
|
|
|
"Xxo", /*tp_name*/
|
|
|
|
sizeof(XxoObject), /*tp_basicsize*/
|
1994-09-29 06:50:09 -03:00
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
1996-07-30 13:56:16 -03:00
|
|
|
(destructor)Xxo_dealloc, /*tp_dealloc*/
|
1994-09-29 06:50:09 -03:00
|
|
|
0, /*tp_print*/
|
1996-07-30 13:56:16 -03:00
|
|
|
(getattrfunc)Xxo_getattr, /*tp_getattr*/
|
|
|
|
(setattrfunc)Xxo_setattr, /*tp_setattr*/
|
1994-09-29 06:50:09 -03:00
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
0, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
|
|
|
0, /*tp_hash*/
|
|
|
|
};
|
|
|
|
/* --------------------------------------------------------------------- */
|
1992-08-04 09:41:02 -03:00
|
|
|
|
|
|
|
/* Function of two integers returning integer */
|
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static PyObject *
|
1992-08-04 09:41:02 -03:00
|
|
|
xx_foo(self, args)
|
1996-07-30 13:56:16 -03:00
|
|
|
PyObject *self; /* Not used */
|
|
|
|
PyObject *args;
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
|
|
|
long i, j;
|
|
|
|
long res;
|
1996-07-30 13:56:16 -03:00
|
|
|
if (!PyArg_ParseTuple(args, "ll", &i, &j))
|
1992-08-04 09:41:02 -03:00
|
|
|
return NULL;
|
|
|
|
res = i+j; /* XXX Do something here */
|
1996-07-30 13:56:16 -03:00
|
|
|
return PyInt_FromLong(res);
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
/* Function of no arguments returning new Xxo object */
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static PyObject *
|
1994-09-29 06:50:09 -03:00
|
|
|
xx_new(self, args)
|
1996-07-30 13:56:16 -03:00
|
|
|
PyObject *self; /* Not used */
|
|
|
|
PyObject *args;
|
1992-08-04 09:41:02 -03:00
|
|
|
{
|
|
|
|
int i, j;
|
1996-07-30 13:56:16 -03:00
|
|
|
XxoObject *rv;
|
1994-09-29 06:50:09 -03:00
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
if (!PyArg_ParseTuple(args, ""))
|
1992-08-04 09:41:02 -03:00
|
|
|
return NULL;
|
1996-07-30 13:56:16 -03:00
|
|
|
rv = newXxoObject(args);
|
1994-09-29 06:50:09 -03:00
|
|
|
if ( rv == NULL )
|
|
|
|
return NULL;
|
1996-07-30 13:56:16 -03:00
|
|
|
return (PyObject *)rv;
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* List of functions defined in the module */
|
|
|
|
|
1996-07-30 13:56:16 -03:00
|
|
|
static PyMethodDef xx_methods[] = {
|
|
|
|
{"foo", xx_foo, 1},
|
|
|
|
{"new", xx_new, 1},
|
1992-08-04 09:41:02 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialization function for the module (*must* be called initxx) */
|
|
|
|
|
|
|
|
void
|
|
|
|
initxx()
|
|
|
|
{
|
1996-07-30 13:56:16 -03:00
|
|
|
PyObject *m, *d;
|
1992-08-04 09:41:02 -03:00
|
|
|
|
|
|
|
/* Create the module and add the functions */
|
1996-07-30 13:56:16 -03:00
|
|
|
m = Py_InitModule("xx", xx_methods);
|
1992-08-04 09:41:02 -03:00
|
|
|
|
|
|
|
/* Add some symbolic constants to the module */
|
1996-07-30 13:56:16 -03:00
|
|
|
d = PyModule_GetDict(m);
|
|
|
|
ErrorObject = PyString_FromString("xx.error");
|
|
|
|
PyDict_SetItemString(d, "error", ErrorObject);
|
1992-08-04 09:41:02 -03:00
|
|
|
|
|
|
|
/* Check for errors */
|
1996-07-30 13:56:16 -03:00
|
|
|
if (PyErr_Occurred())
|
|
|
|
Py_FatalError("can't initialize module xx");
|
1992-08-04 09:41:02 -03:00
|
|
|
}
|