2 /* Use this file as a template to start implementing a module that
3 also declares object types. All occurrences of 'Xxo' should be changed
4 to something reasonable for your objects. After that, all other
5 occurrences of 'xx' should be changed to something reasonable for your
6 module. If your module is named foo your sourcefile should be named
9 You will probably want to delete all references to 'x_attr' and add
10 your own types of attributes instead. Maybe you want to name your
11 local variables other than 'self'. If your object type is needed in
12 other files, you'll have to create a file "foobarobject.h"; see
13 intobject.h for an example. */
19 static PyObject
*ErrorObject
;
23 PyObject
*x_attr
; /* Attributes dictionary */
26 staticforward PyTypeObject Xxo_Type
;
28 #define XxoObject_Check(v) ((v)->ob_type == &Xxo_Type)
31 newXxoObject(PyObject
*arg
)
34 self
= PyObject_New(XxoObject
, &Xxo_Type
);
44 Xxo_dealloc(XxoObject
*self
)
46 Py_XDECREF(self
->x_attr
);
51 Xxo_demo(XxoObject
*self
, PyObject
*args
)
53 if (!PyArg_ParseTuple(args
, ":demo"))
59 static PyMethodDef Xxo_methods
[] = {
60 {"demo", (PyCFunction
)Xxo_demo
, METH_VARARGS
},
61 {NULL
, NULL
} /* sentinel */
65 Xxo_getattr(XxoObject
*self
, char *name
)
67 if (self
->x_attr
!= NULL
) {
68 PyObject
*v
= PyDict_GetItemString(self
->x_attr
, name
);
74 return Py_FindMethod(Xxo_methods
, (PyObject
*)self
, name
);
78 Xxo_setattr(XxoObject
*self
, char *name
, PyObject
*v
)
80 if (self
->x_attr
== NULL
) {
81 self
->x_attr
= PyDict_New();
82 if (self
->x_attr
== NULL
)
86 int rv
= PyDict_DelItemString(self
->x_attr
, name
);
88 PyErr_SetString(PyExc_AttributeError
,
89 "delete non-existing Xxo attribute");
93 return PyDict_SetItemString(self
->x_attr
, name
, v
);
96 statichere PyTypeObject Xxo_Type
= {
97 /* The ob_type field must be initialized in the module init function
98 * to be portable to Windows without using C++. */
99 PyObject_HEAD_INIT(NULL
)
101 "xxmodule.Xxo", /*tp_name*/
102 sizeof(XxoObject
), /*tp_basicsize*/
105 (destructor
)Xxo_dealloc
, /*tp_dealloc*/
107 (getattrfunc
)Xxo_getattr
, /*tp_getattr*/
108 (setattrfunc
)Xxo_setattr
, /*tp_setattr*/
112 0, /*tp_as_sequence*/
120 Py_TPFLAGS_DEFAULT
, /*tp_flags*/
124 0, /*tp_richcompare*/
125 0, /*tp_weaklistoffset*/
142 /* --------------------------------------------------------------------- */
144 /* Function of two integers returning integer */
147 xx_foo(PyObject
*self
, PyObject
*args
)
151 if (!PyArg_ParseTuple(args
, "ll:foo", &i
, &j
))
153 res
= i
+j
; /* XXX Do something here */
154 return PyInt_FromLong(res
);
158 /* Function of no arguments returning new Xxo object */
161 xx_new(PyObject
*self
, PyObject
*args
)
165 if (!PyArg_ParseTuple(args
, ":new"))
167 rv
= newXxoObject(args
);
170 return (PyObject
*)rv
;
173 /* Example with subtle bug from extensions manual ("Thin Ice"). */
176 xx_bug(PyObject
*self
, PyObject
*args
)
178 PyObject
*list
, *item
;
180 if (!PyArg_ParseTuple(args
, "O:bug", &list
))
183 item
= PyList_GetItem(list
, 0);
184 /* Py_INCREF(item); */
185 PyList_SetItem(list
, 1, PyInt_FromLong(0L));
186 PyObject_Print(item
, stdout
, 0);
188 /* Py_DECREF(item); */
194 /* Test bad format character */
197 xx_roj(PyObject
*self
, PyObject
*args
)
201 if (!PyArg_ParseTuple(args
, "O#:roj", &a
, &b
))
208 /* List of functions defined in the module */
210 static PyMethodDef xx_methods
[] = {
211 {"roj", xx_roj
, METH_VARARGS
},
212 {"foo", xx_foo
, METH_VARARGS
},
213 {"new", xx_new
, METH_VARARGS
},
214 {"bug", xx_bug
, METH_VARARGS
},
215 {NULL
, NULL
} /* sentinel */
219 /* Initialization function for the module (*must* be called initxx) */
226 /* Initialize the type of the new type object here; doing it here
227 * is required for portability to Windows without requiring C++. */
228 Xxo_Type
.ob_type
= &PyType_Type
;
230 /* Create the module and add the functions */
231 m
= Py_InitModule("xx", xx_methods
);
233 /* Add some symbolic constants to the module */
234 if (ErrorObject
== NULL
) {
235 ErrorObject
= PyErr_NewException("xx.error", NULL
, NULL
);
236 if (ErrorObject
== NULL
)
239 Py_INCREF(ErrorObject
);
240 PyModule_AddObject(m
, "error", ErrorObject
);