blob: 8a5a753ca439eb9ecb93c80e87c6cbe76554e403 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001#include <Python.h>
2#include "structmember.h"
3
4typedef struct {
5 PyObject_HEAD
6 PyObject *first;
7 PyObject *last;
8 int number;
9} Noddy;
10
11static void
12Noddy_dealloc(Noddy* self)
13{
14 Py_XDECREF(self->first);
15 Py_XDECREF(self->last);
Georg Brandl913b2a32008-12-05 15:12:15 +000016 Py_TYPE(self)->tp_free((PyObject*)self);
Georg Brandl116aa622007-08-15 14:28:22 +000017}
18
19static PyObject *
20Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
21{
22 Noddy *self;
23
24 self = (Noddy *)type->tp_alloc(type, 0);
25 if (self != NULL) {
Neal Norwitzbed67842007-10-27 04:00:45 +000026 self->first = PyUnicode_FromString("");
Eli Bendersky47fe5c02011-08-12 11:40:39 +030027 if (self->first == NULL) {
Georg Brandl116aa622007-08-15 14:28:22 +000028 Py_DECREF(self);
29 return NULL;
Eli Bendersky47fe5c02011-08-12 11:40:39 +030030 }
31
Neal Norwitzbed67842007-10-27 04:00:45 +000032 self->last = PyUnicode_FromString("");
Eli Bendersky47fe5c02011-08-12 11:40:39 +030033 if (self->last == NULL) {
Georg Brandl116aa622007-08-15 14:28:22 +000034 Py_DECREF(self);
35 return NULL;
Eli Bendersky47fe5c02011-08-12 11:40:39 +030036 }
Georg Brandl116aa622007-08-15 14:28:22 +000037
38 self->number = 0;
39 }
40
41 return (PyObject *)self;
42}
43
44static int
45Noddy_init(Noddy *self, PyObject *args, PyObject *kwds)
46{
47 PyObject *first=NULL, *last=NULL, *tmp;
48
49 static char *kwlist[] = {"first", "last", "number", NULL};
50
Eli Bendersky47fe5c02011-08-12 11:40:39 +030051 if (! PyArg_ParseTupleAndKeywords(args, kwds, "|SSi", kwlist,
52 &first, &last,
Georg Brandl116aa622007-08-15 14:28:22 +000053 &self->number))
Eli Bendersky47fe5c02011-08-12 11:40:39 +030054 return -1;
Georg Brandl116aa622007-08-15 14:28:22 +000055
56 if (first) {
57 tmp = self->first;
58 Py_INCREF(first);
59 self->first = first;
60 Py_DECREF(tmp);
61 }
62
63 if (last) {
64 tmp = self->last;
65 Py_INCREF(last);
66 self->last = last;
67 Py_DECREF(tmp);
68 }
69
70 return 0;
71}
72
73static PyMemberDef Noddy_members[] = {
74 {"number", T_INT, offsetof(Noddy, number), 0,
75 "noddy number"},
76 {NULL} /* Sentinel */
77};
78
79static PyObject *
80Noddy_getfirst(Noddy *self, void *closure)
81{
82 Py_INCREF(self->first);
83 return self->first;
84}
85
86static int
87Noddy_setfirst(Noddy *self, PyObject *value, void *closure)
88{
Eli Bendersky47fe5c02011-08-12 11:40:39 +030089 if (value == NULL) {
90 PyErr_SetString(PyExc_TypeError, "Cannot delete the first attribute");
91 return -1;
92 }
Georg Brandl116aa622007-08-15 14:28:22 +000093
Eli Bendersky47fe5c02011-08-12 11:40:39 +030094 if (! PyUnicode_Check(value)) {
95 PyErr_SetString(PyExc_TypeError,
96 "The first attribute value must be a string");
97 return -1;
98 }
99
100 Py_DECREF(self->first);
101 Py_INCREF(value);
102 self->first = value;
103
104 return 0;
Georg Brandl116aa622007-08-15 14:28:22 +0000105}
106
107static PyObject *
108Noddy_getlast(Noddy *self, void *closure)
109{
110 Py_INCREF(self->last);
111 return self->last;
112}
113
114static int
115Noddy_setlast(Noddy *self, PyObject *value, void *closure)
116{
Eli Bendersky47fe5c02011-08-12 11:40:39 +0300117 if (value == NULL) {
118 PyErr_SetString(PyExc_TypeError, "Cannot delete the last attribute");
119 return -1;
120 }
Georg Brandl116aa622007-08-15 14:28:22 +0000121
Eli Bendersky47fe5c02011-08-12 11:40:39 +0300122 if (! PyUnicode_Check(value)) {
123 PyErr_SetString(PyExc_TypeError,
124 "The last attribute value must be a string");
125 return -1;
126 }
127
128 Py_DECREF(self->last);
129 Py_INCREF(value);
130 self->last = value;
131
132 return 0;
Georg Brandl116aa622007-08-15 14:28:22 +0000133}
134
135static PyGetSetDef Noddy_getseters[] = {
Eli Bendersky47fe5c02011-08-12 11:40:39 +0300136 {"first",
Georg Brandl116aa622007-08-15 14:28:22 +0000137 (getter)Noddy_getfirst, (setter)Noddy_setfirst,
138 "first name",
139 NULL},
Eli Bendersky47fe5c02011-08-12 11:40:39 +0300140 {"last",
Georg Brandl116aa622007-08-15 14:28:22 +0000141 (getter)Noddy_getlast, (setter)Noddy_setlast,
142 "last name",
143 NULL},
144 {NULL} /* Sentinel */
145};
146
147static PyObject *
148Noddy_name(Noddy* self)
149{
Amaury Forgeot d'Arc864741b2011-11-06 15:10:48 +0100150 return PyUnicode_FromFormat("%S %S", self->first, self->last);
Georg Brandl116aa622007-08-15 14:28:22 +0000151}
152
153static PyMethodDef Noddy_methods[] = {
154 {"name", (PyCFunction)Noddy_name, METH_NOARGS,
155 "Return the name, combining the first and last name"
156 },
157 {NULL} /* Sentinel */
158};
159
160static PyTypeObject NoddyType = {
Georg Brandl51335292009-05-05 07:55:26 +0000161 PyVarObject_HEAD_INIT(NULL, 0)
Georg Brandl913b2a32008-12-05 15:12:15 +0000162 "noddy.Noddy", /* tp_name */
163 sizeof(Noddy), /* tp_basicsize */
164 0, /* tp_itemsize */
165 (destructor)Noddy_dealloc, /* tp_dealloc */
166 0, /* tp_print */
167 0, /* tp_getattr */
168 0, /* tp_setattr */
Mark Dickinson9f989262009-02-02 21:29:40 +0000169 0, /* tp_reserved */
Georg Brandl913b2a32008-12-05 15:12:15 +0000170 0, /* tp_repr */
171 0, /* tp_as_number */
172 0, /* tp_as_sequence */
173 0, /* tp_as_mapping */
174 0, /* tp_hash */
175 0, /* tp_call */
176 0, /* tp_str */
177 0, /* tp_getattro */
178 0, /* tp_setattro */
179 0, /* tp_as_buffer */
180 Py_TPFLAGS_DEFAULT |
181 Py_TPFLAGS_BASETYPE, /* tp_flags */
Georg Brandl116aa622007-08-15 14:28:22 +0000182 "Noddy objects", /* tp_doc */
Eli Bendersky47fe5c02011-08-12 11:40:39 +0300183 0, /* tp_traverse */
184 0, /* tp_clear */
185 0, /* tp_richcompare */
186 0, /* tp_weaklistoffset */
187 0, /* tp_iter */
188 0, /* tp_iternext */
Georg Brandl116aa622007-08-15 14:28:22 +0000189 Noddy_methods, /* tp_methods */
190 Noddy_members, /* tp_members */
191 Noddy_getseters, /* tp_getset */
192 0, /* tp_base */
193 0, /* tp_dict */
194 0, /* tp_descr_get */
195 0, /* tp_descr_set */
196 0, /* tp_dictoffset */
197 (initproc)Noddy_init, /* tp_init */
198 0, /* tp_alloc */
199 Noddy_new, /* tp_new */
200};
201
Georg Brandl913b2a32008-12-05 15:12:15 +0000202static PyModuleDef noddy3module = {
203 PyModuleDef_HEAD_INIT,
204 "noddy3",
205 "Example module that creates an extension type.",
206 -1,
207 NULL, NULL, NULL, NULL, NULL
Georg Brandl116aa622007-08-15 14:28:22 +0000208};
209
Georg Brandl116aa622007-08-15 14:28:22 +0000210PyMODINIT_FUNC
Eli Bendersky47fe5c02011-08-12 11:40:39 +0300211PyInit_noddy3(void)
Georg Brandl116aa622007-08-15 14:28:22 +0000212{
213 PyObject* m;
214
215 if (PyType_Ready(&NoddyType) < 0)
Georg Brandl913b2a32008-12-05 15:12:15 +0000216 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000217
Georg Brandl913b2a32008-12-05 15:12:15 +0000218 m = PyModule_Create(&noddy3module);
Georg Brandl116aa622007-08-15 14:28:22 +0000219 if (m == NULL)
Georg Brandl913b2a32008-12-05 15:12:15 +0000220 return NULL;
Georg Brandl116aa622007-08-15 14:28:22 +0000221
222 Py_INCREF(&NoddyType);
223 PyModule_AddObject(m, "Noddy", (PyObject *)&NoddyType);
Benjamin Peterson71e30a02008-12-24 16:27:25 +0000224 return m;
Georg Brandl116aa622007-08-15 14:28:22 +0000225}