| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-17 16:30:39 +00:00
										 |  |  | static 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 * | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  | newxxobject(PyObject *arg) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1991-01-02 15:12:51 +00:00
										 |  |  | 	xxobject *xp; | 
					
						
							| 
									
										
										
										
											2002-05-23 15:51:20 +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 | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  | xx_dealloc(xxobject *xp) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | 	Py_XDECREF(xp->x_attr); | 
					
						
							| 
									
										
										
										
											2002-05-23 15:51:20 +00:00
										 |  |  | 	PyObject_Del(xp); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  | xx_demo(xxobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  | 	if (!PyArg_ParseTuple(args, ":demo")) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-29 14:39:12 +00:00
										 |  |  | static PyMethodDef xx_methods[] = { | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  | 	{"demo",	(PyCFunction)xx_demo,	METH_VARARGS}, | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-28 15:51:32 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  | xx_getattr(xxobject *xp, char *name) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	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 | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  | xx_setattr(xxobject *xp, char *name, 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, | 
					
						
							| 
									
										
										
										
											2000-07-09 07:04:36 +00:00
										 |  |  |                                         "delete non-existing xx attribute"); | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 		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
										 |  |  | }; |