| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:07:38 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00: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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-01-02 15:11:48 +00: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 12:07:46 +00:00
										 |  |  | /* Xx objects */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1991-01-02 15:11:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	PyObject_HEAD | 
					
						
							|  |  |  | 	PyObject	*x_attr;	/* Attributes dictionary */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } xxobject; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | staticforward PyTypeObject Xxtype; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-01-02 15:11:48 +00:00
										 |  |  | #define is_xxobject(v)		((v)->ob_type == &Xxtype)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static xxobject * | 
					
						
							|  |  |  | newxxobject(arg) | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	PyObject *arg; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1991-01-02 15:12:51 +00:00
										 |  |  | 	xxobject *xp; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	xp = PyObject_NEW(xxobject, &Xxtype); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	if (xp == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	xp->x_attr = NULL; | 
					
						
							|  |  |  | 	return xp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Xx methods */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | xx_dealloc(xp) | 
					
						
							|  |  |  | 	xxobject *xp; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	Py_XDECREF(xp->x_attr); | 
					
						
							|  |  |  | 	PyMem_DEL(xp); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | xx_demo(self, args) | 
					
						
							|  |  |  | 	xxobject *self; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	PyObject *args; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	if (!PyArg_NoArgs(args)) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | static Py_MethodDef xx_methods[] = { | 
					
						
							|  |  |  | 	{"demo",	(PyCFunction)xx_demo}, | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | xx_getattr(xp, name) | 
					
						
							|  |  |  | 	xxobject *xp; | 
					
						
							|  |  |  | 	char *name; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (xp->x_attr != NULL) { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		PyObject *v = PyDict_GetItemString(xp->x_attr, name); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		if (v != NULL) { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 			Py_INCREF(v); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 			return v; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	return Py_FindMethod(xx_methods, (PyObject *)xp, name); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | xx_setattr(xp, name, v) | 
					
						
							|  |  |  | 	xxobject *xp; | 
					
						
							|  |  |  | 	char *name; | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	PyObject *v; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (xp->x_attr == NULL) { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		xp->x_attr = PyDict_New(); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		if (xp->x_attr == NULL) | 
					
						
							| 
									
										
										
										
											1991-01-02 15:11:48 +00:00
										 |  |  | 			return -1; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 	if (v == NULL) { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		int rv = PyDict_DelItemString(xp->x_attr, name); | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 		if (rv < 0) | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 			PyErr_SetString(PyExc_AttributeError, | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 			        "delete non-existing xx attribute"); | 
					
						
							|  |  |  | 		return rv; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 		return PyDict_SetItemString(xp->x_attr, name, v); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | static PyTypeObject Xxtype = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,			/*ob_size*/ | 
					
						
							|  |  |  | 	"xx",			/*tp_name*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	sizeof(xxobject),	/*tp_basicsize*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	0,			/*tp_itemsize*/ | 
					
						
							|  |  |  | 	/* methods */ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(destructor)xx_dealloc, /*tp_dealloc*/ | 
					
						
							| 
									
										
										
										
											1992-08-14 12:04:19 +00:00
										 |  |  | 	0,			/*tp_print*/ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(getattrfunc)xx_getattr, /*tp_getattr*/ | 
					
						
							|  |  |  | 	(setattrfunc)xx_setattr, /*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											1992-08-14 12:04:19 +00:00
										 |  |  | 	0,			/*tp_compare*/ | 
					
						
							|  |  |  | 	0,			/*tp_repr*/ | 
					
						
							|  |  |  | 	0,			/*tp_as_number*/ | 
					
						
							|  |  |  | 	0,			/*tp_as_sequence*/ | 
					
						
							|  |  |  | 	0,			/*tp_as_mapping*/ | 
					
						
							| 
									
										
										
										
											1993-05-12 08:24:20 +00:00
										 |  |  | 	0,			/*tp_hash*/ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | }; |