| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | #include <Python.h>
 | 
					
						
							|  |  |  | #include "structmember.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     PyObject_HEAD | 
					
						
							|  |  |  |     PyObject *first; /* first name */ | 
					
						
							|  |  |  |     PyObject *last;  /* last name */ | 
					
						
							|  |  |  |     int number; | 
					
						
							|  |  |  | } Noddy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | Noddy_dealloc(Noddy* self) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Py_XDECREF(self->first); | 
					
						
							|  |  |  |     Py_XDECREF(self->last); | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |     Py_TYPE(self)->tp_free((PyObject*)self); | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Noddy *self; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     self = (Noddy *)type->tp_alloc(type, 0); | 
					
						
							|  |  |  |     if (self != NULL) { | 
					
						
							| 
									
										
										
										
											2007-10-27 04:00:45 +00:00
										 |  |  |         self->first = PyUnicode_FromString(""); | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  |         if (self->first == NULL) { | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |             Py_DECREF(self); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-27 04:00:45 +00:00
										 |  |  |         self->last = PyUnicode_FromString(""); | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  |         if (self->last == NULL) { | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |             Py_DECREF(self); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self->number = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (PyObject *)self; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | Noddy_init(Noddy *self, PyObject *args, PyObject *kwds) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyObject *first=NULL, *last=NULL, *tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static char *kwlist[] = {"first", "last", "number", NULL}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  |     if (! PyArg_ParseTupleAndKeywords(args, kwds, "|OOi", kwlist, | 
					
						
							|  |  |  |                                       &first, &last, | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |                                       &self->number)) | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (first) { | 
					
						
							|  |  |  |         tmp = self->first; | 
					
						
							|  |  |  |         Py_INCREF(first); | 
					
						
							|  |  |  |         self->first = first; | 
					
						
							|  |  |  |         Py_XDECREF(tmp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (last) { | 
					
						
							|  |  |  |         tmp = self->last; | 
					
						
							|  |  |  |         Py_INCREF(last); | 
					
						
							|  |  |  |         self->last = last; | 
					
						
							|  |  |  |         Py_XDECREF(tmp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMemberDef Noddy_members[] = { | 
					
						
							|  |  |  |     {"first", T_OBJECT_EX, offsetof(Noddy, first), 0, | 
					
						
							|  |  |  |      "first name"}, | 
					
						
							|  |  |  |     {"last", T_OBJECT_EX, offsetof(Noddy, last), 0, | 
					
						
							|  |  |  |      "last name"}, | 
					
						
							|  |  |  |     {"number", T_INT, offsetof(Noddy, number), 0, | 
					
						
							|  |  |  |      "noddy number"}, | 
					
						
							|  |  |  |     {NULL}  /* Sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | Noddy_name(Noddy* self) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     static PyObject *format = NULL; | 
					
						
							|  |  |  |     PyObject *args, *result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (format == NULL) { | 
					
						
							| 
									
										
										
										
											2007-10-27 04:00:45 +00:00
										 |  |  |         format = PyUnicode_FromString("%s %s"); | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |         if (format == NULL) | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (self->first == NULL) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_AttributeError, "first"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (self->last == NULL) { | 
					
						
							|  |  |  |         PyErr_SetString(PyExc_AttributeError, "last"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     args = Py_BuildValue("OO", self->first, self->last); | 
					
						
							|  |  |  |     if (args == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-27 04:00:45 +00:00
										 |  |  |     result = PyUnicode_Format(format, args); | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |     Py_DECREF(args); | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef Noddy_methods[] = { | 
					
						
							|  |  |  |     {"name", (PyCFunction)Noddy_name, METH_NOARGS, | 
					
						
							|  |  |  |      "Return the name, combining the first and last name" | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |     {NULL}  /* Sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject NoddyType = { | 
					
						
							| 
									
										
										
										
											2009-05-05 07:55:26 +00:00
										 |  |  |     PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |     "noddy.Noddy",             /* tp_name */ | 
					
						
							|  |  |  |     sizeof(Noddy),             /* tp_basicsize */ | 
					
						
							|  |  |  |     0,                         /* tp_itemsize */ | 
					
						
							|  |  |  |     (destructor)Noddy_dealloc, /* tp_dealloc */ | 
					
						
							|  |  |  |     0,                         /* tp_print */ | 
					
						
							|  |  |  |     0,                         /* tp_getattr */ | 
					
						
							|  |  |  |     0,                         /* tp_setattr */ | 
					
						
							| 
									
										
										
										
											2009-02-02 21:29:40 +00:00
										 |  |  |     0,                         /* tp_reserved */ | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |     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 */ | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |     "Noddy objects",           /* tp_doc */ | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  |     0,                         /* tp_traverse */ | 
					
						
							|  |  |  |     0,                         /* tp_clear */ | 
					
						
							|  |  |  |     0,                         /* tp_richcompare */ | 
					
						
							|  |  |  |     0,                         /* tp_weaklistoffset */ | 
					
						
							|  |  |  |     0,                         /* tp_iter */ | 
					
						
							|  |  |  |     0,                         /* tp_iternext */ | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |     Noddy_methods,             /* tp_methods */ | 
					
						
							|  |  |  |     Noddy_members,             /* tp_members */ | 
					
						
							|  |  |  |     0,                         /* tp_getset */ | 
					
						
							|  |  |  |     0,                         /* tp_base */ | 
					
						
							|  |  |  |     0,                         /* tp_dict */ | 
					
						
							|  |  |  |     0,                         /* tp_descr_get */ | 
					
						
							|  |  |  |     0,                         /* tp_descr_set */ | 
					
						
							|  |  |  |     0,                         /* tp_dictoffset */ | 
					
						
							|  |  |  |     (initproc)Noddy_init,      /* tp_init */ | 
					
						
							|  |  |  |     0,                         /* tp_alloc */ | 
					
						
							|  |  |  |     Noddy_new,                 /* tp_new */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  | static PyModuleDef noddy2module = { | 
					
						
							|  |  |  |     PyModuleDef_HEAD_INIT, | 
					
						
							|  |  |  |     "noddy2", | 
					
						
							|  |  |  |     "Example module that creates an extension type.", | 
					
						
							|  |  |  |     -1, | 
					
						
							|  |  |  |     NULL, NULL, NULL, NULL, NULL | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyMODINIT_FUNC | 
					
						
							| 
									
										
										
										
											2011-08-12 11:40:39 +03:00
										 |  |  | PyInit_noddy2(void) | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject* m; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PyType_Ready(&NoddyType) < 0) | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |     m = PyModule_Create(&noddy2module); | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  |     if (m == NULL) | 
					
						
							| 
									
										
										
										
											2008-12-05 15:12:15 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Py_INCREF(&NoddyType); | 
					
						
							|  |  |  |     PyModule_AddObject(m, "Noddy", (PyObject *)&NoddyType); | 
					
						
							| 
									
										
										
										
											2008-12-24 16:27:25 +00:00
										 |  |  |     return m; | 
					
						
							| 
									
										
										
										
											2007-08-15 14:28:22 +00:00
										 |  |  | } |