summaryrefslogtreecommitdiff
path: root/pygpsd.c
blob: cdc737cfe9922abbaee45c6d08d3c35d19ec8b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#include <Python.h>
#include "structmember.h"

typedef struct {
    PyObject_HEAD
    int online;		/* this should really be onstrained to be a boolean */
    PyObject *online_timestamp;
    PyObject *first;
    PyObject *last;
    int number;
} gpsd;

static int
gpsd_traverse(gpsd *self, visitproc visit, void *arg)
{
    if (self->first && visit(self->online_timestamp, arg) < 0)
        return -1;
    if (self->first && visit(self->first, arg) < 0)
        return -1;
    if (self->last && visit(self->last, arg) < 0)
        return -1;

    return 0;
}

static int 
gpsd_clear(gpsd *self)
{
    Py_XDECREF(self->online_timestamp);
    self->online_timestamp = NULL;
    Py_XDECREF(self->first);
    self->first = NULL;
    Py_XDECREF(self->last);
    self->last = NULL;

    return 0;
}

static void
gpsd_dealloc(gpsd* self)
{
    gpsd_clear(self);
    self->ob_type->tp_free((PyObject*)self);
}

static PyObject *
gpsd_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
    gpsd *self;

    self = (gpsd *)type->tp_alloc(type, 0);
    if (self != NULL) {
        self->online = 0;
	// FIXME: must instantiate a new timestamp object here 

        self->first = PyString_FromString("");
        if (self->first == NULL) {
            Py_DECREF(self);
            return NULL;
          }
        
        self->last = PyString_FromString("");
        if (self->last == NULL) {
            Py_DECREF(self);
            return NULL;
          }

        self->number = 0;
    }

    return (PyObject *)self;
}

static int
gpsd_init(gpsd *self, PyObject *args, PyObject *kwds)
{
    PyObject *first=NULL, *last=NULL;

    static char *kwlist[] = {
	"online",
	"first",
	"last",
	"number",
	NULL};

    if (! PyArg_ParseTupleAndKeywords(args, kwds, "|iOOi", kwlist, 
				      &self->online,
                                      &first, &last, 
                                      &self->number))
        return -1; 

    if (first) {
        Py_XDECREF(self->first);
        Py_INCREF(first);
        self->first = first;
    }

    if (last) {
        Py_XDECREF(self->last);
        Py_INCREF(last);
        self->last = last;
    }

    return 0;
}


static PyMemberDef gpsd_members[] = {
    {"first", T_OBJECT_EX, offsetof(gpsd, first), 0,
     "first name"},
    {"last", T_OBJECT_EX, offsetof(gpsd, last), 0,
     "last name"},
    {"number", T_INT, offsetof(gpsd, number), 0,
     "gpsd number"},
    {NULL}  /* Sentinel */
};

static PyObject *
gpsd_name(gpsd* self)
{
    static PyObject *format = NULL;
    PyObject *args, *result;

    if (format == NULL) {
        format = PyString_FromString("%s %s");
        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;

    result = PyString_Format(format, args);
    Py_DECREF(args);
    
    return result;
}

static PyMethodDef gpsd_methods[] = {
    {"name", (PyCFunction)gpsd_name, METH_NOARGS,
     "Return the name, combining the first and last name"
    },
    {NULL}  /* Sentinel */
};

static PyTypeObject gpsdType = {
    PyObject_HEAD_INIT(NULL)
    0,                         /*ob_size*/
    "gpsd.gpsd",             /*tp_name*/
    sizeof(gpsd),             /*tp_basicsize*/
    0,                         /*tp_itemsize*/
    (destructor)gpsd_dealloc, /*tp_dealloc*/
    0,                         /*tp_print*/
    0,                         /*tp_getattr*/
    0,                         /*tp_setattr*/
    0,                         /*tp_compare*/
    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 | Py_TPFLAGS_HAVE_GC, /*tp_flags*/
    "gpsd objects",           /* tp_doc */
    (traverseproc)gpsd_traverse,   /* tp_traverse */
    (inquiry)gpsd_clear,           /* tp_clear */
    0,		               /* tp_richcompare */
    0,		               /* tp_weaklistoffset */
    0,		               /* tp_iter */
    0,		               /* tp_iternext */
    gpsd_methods,             /* tp_methods */
    gpsd_members,             /* tp_members */
    0,                         /* tp_getset */
    0,                         /* tp_base */
    0,                         /* tp_dict */
    0,                         /* tp_descr_get */
    0,                         /* tp_descr_set */
    0,                         /* tp_dictoffset */
    (initproc)gpsd_init,      /* tp_init */
    0,                         /* tp_alloc */
    gpsd_new,                 /* tp_new */
};

static PyMethodDef module_methods[] = {
    {NULL}  /* Sentinel */
};

#ifndef PyMODINIT_FUNC	/* declarations for DLL import/export */
#define PyMODINIT_FUNC void
#endif
PyMODINIT_FUNC
initgpsd(void) 
{
    PyObject* m;

    if (PyType_Ready(&gpsdType) < 0)
        return;

    m = Py_InitModule3("gpsd", module_methods,
                       "Example module that creates an extension type.");

    if (m == NULL)
      return;

    Py_INCREF(&gpsdType);
    PyModule_AddObject(m, "gpsd", (PyObject *)&gpsdType);
}