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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/*
* Python binding for the packet.c module.
*
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*
*/
#include <Python.h>
#include <stdio.h>
#include "gpsd.h"
static PyObject *ErrorObject = NULL;
static PyObject *report_callback = NULL;
void gpsd_report(int errlevel, const char *fmt, ... )
{
char buf[BUFSIZ];
PyObject *args;
va_list ap;
if (!report_callback) /* no callback defined, exit early */
return;
if (!PyCallable_Check(report_callback)) {
PyErr_SetString(ErrorObject, "Cannot call Python callback function");
return;
}
va_start(ap, fmt);
(void)vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
args = Py_BuildValue("(is)", errlevel, buf);
if (!args)
return;
PyObject_Call(report_callback, args, NULL);
Py_DECREF(args);
}
static PyTypeObject Lexer_Type;
typedef struct {
PyObject_HEAD
struct gps_packet_t lexer;
} LexerObject;
static LexerObject *
newLexerObject(PyObject *arg UNUSED)
{
LexerObject *self;
self = PyObject_New(LexerObject, &Lexer_Type);
if (self == NULL)
return NULL;
memset(&self->lexer, 0, sizeof(struct gps_packet_t));
packet_reset(&self->lexer);
return self;
}
/* Lexer methods */
static int
Lexer_init(LexerObject *self)
{
packet_reset(&self->lexer);
return 0;
}
static PyObject *
Lexer_get(LexerObject *self, PyObject *args)
{
ssize_t len;
int fd;
if (!PyArg_ParseTuple(args, "i;missing or invalid file descriptor argument to gps.packet.get", &fd))
return NULL;
len = packet_get(fd, &self->lexer);
if (PyErr_Occurred())
return NULL;
return Py_BuildValue("(i, i, s#, i)",
len,
self->lexer.type,
self->lexer.outbuffer,
self->lexer.outbuflen,
self->lexer.char_counter);
}
static PyObject *
Lexer_reset(LexerObject *self)
{
packet_reset(&self->lexer);
if (PyErr_Occurred())
return NULL;
return 0;
}
static void
Lexer_dealloc(LexerObject *self)
{
PyObject_Del(self);
}
static PyMethodDef Lexer_methods[] = {
{"get", (PyCFunction)Lexer_get, METH_VARARGS,
PyDoc_STR("Get a packet from a file descriptor.")},
{"reset", (PyCFunction)Lexer_reset, METH_NOARGS,
PyDoc_STR("Reset the packet lexer to ground state.")},
{NULL, NULL} /* sentinel */
};
static PyObject *
Lexer_getattr(LexerObject *self, char *name)
{
return Py_FindMethod(Lexer_methods, (PyObject *)self, name);
}
PyDoc_STRVAR(Lexer__doc__,
"GPS packet lexer object\n\
\n\
Fetch a single packet from file descriptor");
static PyTypeObject Lexer_Type = {
/* The ob_type field must be initialized in the module init function
* to be portable to Windows without using C++. */
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"gps.packet.lexer", /*tp_name*/
sizeof(LexerObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)Lexer_dealloc, /*tp_dealloc*/
0, /*tp_print*/
(getattrfunc)Lexer_getattr, /*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, /*tp_flags*/
Lexer__doc__, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
Lexer_methods, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
(initproc)Lexer_init, /*tp_init*/
0, /*tp_alloc*/
0, /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
};
/* Function of no arguments returning new Lexer object */
static PyObject *
gpspacket_new(PyObject *self UNUSED, PyObject *args UNUSED)
{
LexerObject *rv;
if (!PyArg_ParseTuple(args, ":new"))
return NULL;
rv = newLexerObject(args);
if (rv == NULL)
return NULL;
return (PyObject *)rv;
}
PyDoc_STRVAR(register_report__doc__,
"register_report(callback)\n\
\n\
callback must be a callable object expecting a string as parameter.");
static PyObject *
register_report(LexerObject *self UNUSED, PyObject *args)
{
PyObject *callback = NULL;
if (!PyArg_ParseTuple(args, "O:register_report", &callback))
return NULL;
if (!PyCallable_Check(callback)) {
PyErr_SetString(PyExc_TypeError, "First argument must be callable");
return NULL;
}
if (report_callback) {
Py_DECREF(report_callback);
report_callback = NULL;
}
report_callback = callback;
Py_INCREF(report_callback);
Py_INCREF(Py_None);
return Py_None;
}
/* List of functions defined in the module */
static PyMethodDef packet_methods[] = {
{"new", gpspacket_new, METH_VARARGS,
PyDoc_STR("new() -> new packet-lexer object")},
{"register_report", (PyCFunction)register_report, METH_VARARGS,
register_report__doc__},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(module_doc,
"Python binding of the libgpsd module for recognizing GPS packets.\n\
The new() function returns a new packet-lexer instance. Lexer instances\n\
have two methods:\n\
get() takes a file descriptor argument and returns a tuple consisting of\n\
the integer packet type and string packet value. On end of file it returns\n\
(-1, '').\n\
reset() resets the packet-lexer to its initial state.\n\
The module also has a register_report() function that accepts a callback\n\
for debug message reporting. The callback will get two arguments, the error\n\
level of the message and the message itself.\n\
");
/* banishes a pointless compiler warning */
extern PyMODINIT_FUNC initpacket(void);
PyMODINIT_FUNC
initpacket(void)
{
PyObject *m;
if (PyType_Ready(&Lexer_Type) < 0)
return;
/* Create the module and add the functions */
m = Py_InitModule3("packet", packet_methods, module_doc);
PyModule_AddIntConstant(m, "BAD_PACKET", BAD_PACKET);
PyModule_AddIntConstant(m, "COMMENT_PACKET", COMMENT_PACKET);
PyModule_AddIntConstant(m, "NMEA_PACKET", NMEA_PACKET);
PyModule_AddIntConstant(m, "AIVDM_PACKET", AIVDM_PACKET);
PyModule_AddIntConstant(m, "GARMINTXT_PACKET", GARMINTXT_PACKET);
PyModule_AddIntConstant(m, "SIRF_PACKET", SIRF_PACKET);
PyModule_AddIntConstant(m, "ZODIAC_PACKET", ZODIAC_PACKET);
PyModule_AddIntConstant(m, "TSIP_PACKET", TSIP_PACKET);
PyModule_AddIntConstant(m, "EVERMORE_PACKET", EVERMORE_PACKET);
PyModule_AddIntConstant(m, "ITALK_PACKET", ITALK_PACKET);
PyModule_AddIntConstant(m, "GARMIN_PACKET", GARMIN_PACKET);
PyModule_AddIntConstant(m, "NAVCOM_PACKET", NAVCOM_PACKET);
PyModule_AddIntConstant(m, "UBX_PACKET", UBX_PACKET);
PyModule_AddIntConstant(m, "SUPERSTAR2_PACKET", SUPERSTAR2_PACKET);
PyModule_AddIntConstant(m, "ONCORE_PACKET", ONCORE_PACKET);
PyModule_AddIntConstant(m, "GEOSTAR_PACKET", GEOSTAR_PACKET);
PyModule_AddIntConstant(m, "RTCM2_PACKET", RTCM2_PACKET);
PyModule_AddIntConstant(m, "RTCM3_PACKET", RTCM3_PACKET);
PyModule_AddIntConstant(m, "LOG_IO", LOG_IO);
}
|