1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1995-01-04 15:07:38 -04:00
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
1991-02-19 08:39:46 -04:00
|
|
|
provided that the above copyright notice appear in all copies and that
|
1996-10-25 11:44:06 -03:00
|
|
|
both that copyright notice and this permission notice appear in
|
1991-02-19 08:39:46 -04:00
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
1996-10-25 11:44:06 -03:00
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
CENTRUM OR CNRI 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.
|
1991-02-19 08:39:46 -04:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1991-01-02 11:11:48 -04:00
|
|
|
/* Use this file as a template to start implementing a new object type.
|
|
|
|
If your objects will be called foobar, start by copying this file to
|
|
|
|
foobarobject.c, changing all occurrences of xx to foobar and all
|
|
|
|
occurrences of Xx by Foobar. 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
|
|
|
|
'xp'. If your object type is needed in other files, you'll have to
|
|
|
|
create a file "foobarobject.h"; see intobject.h for an example. */
|
|
|
|
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Xx objects */
|
|
|
|
|
1994-09-28 12:51:32 -03:00
|
|
|
#include "Python.h"
|
1991-01-02 11:11:48 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
typedef struct {
|
1994-09-28 12:51:32 -03:00
|
|
|
PyObject_HEAD
|
|
|
|
PyObject *x_attr; /* Attributes dictionary */
|
1990-10-14 09:07:46 -03:00
|
|
|
} xxobject;
|
|
|
|
|
1994-09-28 12:51:32 -03:00
|
|
|
staticforward PyTypeObject Xxtype;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1991-01-02 11:11:48 -04:00
|
|
|
#define is_xxobject(v) ((v)->ob_type == &Xxtype)
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static xxobject *
|
|
|
|
newxxobject(arg)
|
1994-09-28 12:51:32 -03:00
|
|
|
PyObject *arg;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1991-01-02 11:12:51 -04:00
|
|
|
xxobject *xp;
|
1994-09-28 12:51:32 -03:00
|
|
|
xp = PyObject_NEW(xxobject, &Xxtype);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (xp == NULL)
|
|
|
|
return NULL;
|
|
|
|
xp->x_attr = NULL;
|
|
|
|
return xp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xx methods */
|
|
|
|
|
|
|
|
static void
|
|
|
|
xx_dealloc(xp)
|
|
|
|
xxobject *xp;
|
|
|
|
{
|
1994-09-28 12:51:32 -03:00
|
|
|
Py_XDECREF(xp->x_attr);
|
|
|
|
PyMem_DEL(xp);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1994-09-28 12:51:32 -03:00
|
|
|
static PyObject *
|
1990-10-14 09:07:46 -03:00
|
|
|
xx_demo(self, args)
|
|
|
|
xxobject *self;
|
1994-09-28 12:51:32 -03:00
|
|
|
PyObject *args;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1994-09-28 12:51:32 -03:00
|
|
|
if (!PyArg_NoArgs(args))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1994-09-28 12:51:32 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1994-09-28 12:51:32 -03:00
|
|
|
static Py_MethodDef xx_methods[] = {
|
|
|
|
{"demo", (PyCFunction)xx_demo},
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
1994-09-28 12:51:32 -03:00
|
|
|
static PyObject *
|
1990-10-14 09:07:46 -03:00
|
|
|
xx_getattr(xp, name)
|
|
|
|
xxobject *xp;
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
if (xp->x_attr != NULL) {
|
1994-09-28 12:51:32 -03:00
|
|
|
PyObject *v = PyDict_GetItemString(xp->x_attr, name);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (v != NULL) {
|
1994-09-28 12:51:32 -03:00
|
|
|
Py_INCREF(v);
|
1990-10-14 09:07:46 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
1994-09-28 12:51:32 -03:00
|
|
|
return Py_FindMethod(xx_methods, (PyObject *)xp, name);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xx_setattr(xp, name, v)
|
|
|
|
xxobject *xp;
|
|
|
|
char *name;
|
1994-09-28 12:51:32 -03:00
|
|
|
PyObject *v;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
|
|
|
if (xp->x_attr == NULL) {
|
1994-09-28 12:51:32 -03:00
|
|
|
xp->x_attr = PyDict_New();
|
1990-10-14 09:07:46 -03:00
|
|
|
if (xp->x_attr == NULL)
|
1991-01-02 11:11:48 -04:00
|
|
|
return -1;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1992-09-04 06:45:18 -03:00
|
|
|
if (v == NULL) {
|
1994-09-28 12:51:32 -03:00
|
|
|
int rv = PyDict_DelItemString(xp->x_attr, name);
|
1992-09-04 06:45:18 -03:00
|
|
|
if (rv < 0)
|
1994-09-28 12:51:32 -03:00
|
|
|
PyErr_SetString(PyExc_AttributeError,
|
1992-09-04 06:45:18 -03:00
|
|
|
"delete non-existing xx attribute");
|
|
|
|
return rv;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
else
|
1994-09-28 12:51:32 -03:00
|
|
|
return PyDict_SetItemString(xp->x_attr, name, v);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1994-09-28 12:51:32 -03:00
|
|
|
static PyTypeObject Xxtype = {
|
|
|
|
PyObject_HEAD_INIT(&PyType_Type)
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*ob_size*/
|
|
|
|
"xx", /*tp_name*/
|
1994-08-01 08:34:53 -03:00
|
|
|
sizeof(xxobject), /*tp_basicsize*/
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
1994-08-01 08:34:53 -03:00
|
|
|
(destructor)xx_dealloc, /*tp_dealloc*/
|
1992-08-14 09:04:19 -03:00
|
|
|
0, /*tp_print*/
|
1994-08-01 08:34:53 -03:00
|
|
|
(getattrfunc)xx_getattr, /*tp_getattr*/
|
|
|
|
(setattrfunc)xx_setattr, /*tp_setattr*/
|
1992-08-14 09:04:19 -03:00
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
0, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
1993-05-12 05:24:20 -03:00
|
|
|
0, /*tp_hash*/
|
1990-10-14 09:07:46 -03:00
|
|
|
};
|