]> sigrok.org Git - libsigrokdecode.git/blame - controller.c
srd: always set default options, regardless of overrides
[libsigrokdecode.git] / controller.c
CommitLineData
b2c19614
BV
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
bc5f5a43 5 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
b2c19614
BV
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
73191416 21#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
7ce7775c
BV
22#include "sigrokdecode-internal.h"
23#include "config.h"
b2c19614 24#include <glib.h>
1aef2f93 25#include <inttypes.h>
0bdadba2 26#include <stdlib.h>
b2c19614 27
b2c19614 28
7ce7775c 29static GSList *di_list = NULL;
983cb0f5
BV
30static GSList *callbacks = NULL;
31
bc5f5a43
BV
32/* lives in decoder.c */
33extern GSList *pd_list;
b2c19614 34
bc5f5a43
BV
35/* lives in module_sigrokdecode.c */
36extern PyMODINIT_FUNC PyInit_sigrokdecode(void);
b2c19614 37
bc5f5a43
BV
38/* lives in type_logic.c */
39extern PyTypeObject srd_logic_type;
b2c19614 40
e5080882 41
b2c19614
BV
42/**
43 * Initialize libsigrokdecode.
44 *
45 * This initializes the Python interpreter, and creates and initializes
46 * a "sigrok" Python module with a single put() method.
47 *
48 * Then, it searches for sigrok protocol decoder files (*.py) in the
49 * "decoders" subdirectory of the the sigrok installation directory.
50 * All decoders that are found are loaded into memory and added to an
51 * internal list of decoders, which can be queried via srd_list_decoders().
52 *
53 * The caller is responsible for calling the clean-up function srd_exit(),
54 * which will properly shut down libsigrokdecode and free its allocated memory.
55 *
7ce7775c 56 * Multiple calls to srd_init(), without calling srd_exit() in between,
b2c19614
BV
57 * are not allowed.
58 *
59 * @return SRD_OK upon success, a (negative) error code otherwise.
60 * Upon Python errors, return SRD_ERR_PYTHON. If the sigrok decoders
61 * directory cannot be accessed, return SRD_ERR_DECODERS_DIR.
62 * If not enough memory could be allocated, return SRD_ERR_MALLOC.
63 */
64int srd_init(void)
65{
66 int ret;
67
bc5f5a43 68 PyImport_AppendInittab("sigrokdecode", PyInit_sigrokdecode);
5f802ec6 69
b2c19614
BV
70 /* Py_Initialize() returns void and usually cannot fail. */
71 Py_Initialize();
72
b2c19614
BV
73 if ((ret = set_modulepath()) != SRD_OK) {
74 Py_Finalize();
75 return ret;
76 }
77
78 if ((ret = srd_load_all_decoders()) != SRD_OK) {
79 Py_Finalize();
80 return ret;
81 }
82
83 return SRD_OK;
84}
85
86
87/**
88 * Shutdown libsigrokdecode.
89 *
90 * This frees all the memory allocated for protocol decoders and shuts down
91 * the Python interpreter.
92 *
93 * This function should only be called if there was a (successful!) invocation
94 * of srd_init() before. Calling this function multiple times in a row, without
7ce7775c 95 * any successful srd_init() calls in between, is not allowed.
b2c19614
BV
96 *
97 * @return SRD_OK upon success, a (negative) error code otherwise.
98 */
99int srd_exit(void)
100{
101 /* Unload/free all decoders, and then the list of decoders itself. */
102 /* TODO: Error handling. */
103 srd_unload_all_decoders();
e5080882 104 g_slist_free(pd_list);
b2c19614
BV
105
106 /* Py_Finalize() returns void, any finalization errors are ignored. */
107 Py_Finalize();
108
109 return SRD_OK;
110}
111
112
113/**
114 * Add search directories for the protocol decoders.
115 *
116 * TODO: add path from env var SIGROKDECODE_PATH, config etc
117 */
118int set_modulepath(void)
119{
120 int ret;
121
bc5f5a43 122 PyRun_SimpleString("import sys");
b2c19614
BV
123 ret = PyRun_SimpleString("sys.path.append(r'" DECODERS_DIR "');");
124
125 return ret;
126}
127
128
7ce7775c 129/**
0bdadba2
BV
130 * Set options in a decoder instance.
131 *
132 * @param di Decoder instance.
133 * @param options A GHashTable of options to set.
7ce7775c 134 *
0bdadba2
BV
135 * Handled options are removed from the hash.
136 *
137 * @return SRD_OK upon success, a (negative) error code otherwise.
138 */
139int srd_instance_set_options(struct srd_decoder_instance *di,
140 GHashTable *options)
141{
142 PyObject *py_dec_options, *py_dec_optkeys, *py_di_options, *py_optval;
143 PyObject *py_optlist, *py_classval;
144 Py_UNICODE *py_ustr;
145 unsigned long long int val_ull;
146 int num_optkeys, ret, size, i;
147 char *key, *value;
148
e431d9cc 149 if(!PyObject_HasAttrString(di->decoder->py_dec, "options")) {
0bdadba2 150 /* Decoder has no options. */
e431d9cc
BV
151 if (g_hash_table_size(options) == 0) {
152 /* No options provided. */
153 return SRD_OK;
154 } else {
155 srd_err("Protocol decoder has no options.");
156 return SRD_ERR_ARG;
157 }
0bdadba2 158 return SRD_OK;
e431d9cc 159 }
0bdadba2
BV
160
161 ret = SRD_ERR_PYTHON;
162 key = NULL;
163 py_dec_options = py_dec_optkeys = py_di_options = py_optval = NULL;
164 py_optlist = py_classval = NULL;
165 py_dec_options = PyObject_GetAttrString(di->decoder->py_dec, "options");
166 if (!PyDict_Check(py_dec_options)) {
167 srd_err("Protocol decoder %s options is not a dictionary.",
168 di->decoder->name);
169 goto err_out;
170 }
171
172 /* All of these are synthesized objects, so they're good. */
173 py_dec_optkeys = PyDict_Keys(py_dec_options);
174 num_optkeys = PyList_Size(py_dec_optkeys);
175 if (!(py_di_options = PyObject_GetAttrString(di->py_instance, "options")))
176 goto err_out;
177 for (i = 0; i < num_optkeys; i++) {
178 /* Get the default class value for this option. */
179 py_str_as_str(PyList_GetItem(py_dec_optkeys, i), &key);
180 if (!(py_optlist = PyDict_GetItemString(py_dec_options, key)))
181 goto err_out;
182 if (!(py_classval = PyList_GetItem(py_optlist, 1)))
183 goto err_out;
184
185 if ((value = g_hash_table_lookup(options, key))) {
186 /* An override for this option was provided. */
187 if (PyUnicode_Check(py_classval)) {
188 if (!(py_optval = PyUnicode_FromString(value))) {
189 /* Some UTF-8 encoding error. */
190 PyErr_Clear();
191 goto err_out;
192 }
193 } else if (PyLong_Check(py_classval)) {
194 if (!(py_optval = PyLong_FromString(value, NULL, 0))) {
195 /* ValueError Exception */
196 PyErr_Clear();
197 srd_err("Option %s has invalid value %s: expected integer",
198 key, value);
199 goto err_out;
200 }
201 }
202 g_hash_table_remove(options, key);
203 } else {
204 /* Use the class default for this option. */
205 if (PyUnicode_Check(py_classval)) {
206 /* Make a brand new copy of the string. */
207 py_ustr = PyUnicode_AS_UNICODE(py_classval);
208 size = PyUnicode_GET_SIZE(py_classval);
209 py_optval = PyUnicode_FromUnicode(py_ustr, size);
210 } else if (PyLong_Check(py_classval)) {
211 /* Make a brand new copy of the integer. */
212 val_ull = PyLong_AsUnsignedLongLong(py_classval);
213 if (val_ull == (unsigned long long)-1) {
214 /* OverFlowError exception */
215 PyErr_Clear();
216 srd_err("Invalid integer value for %s: expected integer", key);
217 goto err_out;
218 }
219 if (!(py_optval = PyLong_FromUnsignedLongLong(val_ull)))
220 goto err_out;
221 }
222 }
223
224 /* If we got here, py_optval holds a known good new reference
225 * to the instance option to set.
226 */
227 if (PyDict_SetItemString(py_di_options, key, py_optval) == -1)
228 goto err_out;
229 }
230
231 ret = SRD_OK;
232
233err_out:
234 Py_XDECREF(py_optlist);
235 Py_XDECREF(py_di_options);
236 Py_XDECREF(py_dec_optkeys);
237 Py_XDECREF(py_dec_options);
238 if (key)
239 g_free(key);
240 if (PyErr_Occurred()) {
241 srd_dbg("stray exception!");
242 PyErr_Print();
243 PyErr_Clear();
244 }
245
246 return ret;
247}
248
249/**
250 * Set probes in a decoder instance.
251 *
252 * @param di Decoder instance.
253 * @param probes A GHashTable of probes to set. Key is probe name, value is
254 * the probe number. Samples passed to this instance will be arranged in this
255 * order.
256 *
257 * Handled probes are removed from the hash.
258 *
259 * @return SRD_OK upon success, a (negative) error code otherwise.
260 */
261int srd_instance_set_probes(struct srd_decoder_instance *di,
262 GHashTable *probes)
263{
264 int ret;
265
266 if (g_hash_table_size(probes) == 0)
267 /* No probes provided. */
268 return SRD_OK;
269
270 if(!PyObject_HasAttrString(di->decoder->py_dec, "probes"))
271 /* Decoder has no probes. */
272 return SRD_OK;
273
274 ret = SRD_ERR_PYTHON;
275
276 /* TODO */
277 if (g_hash_table_size(probes) > 0) {
278 srd_err("Setting probes is not yet supported.");
279 return SRD_ERR_PYTHON;
280 }
281
282 ret = SRD_OK;
283
284 return ret;
285}
286
287/**
288 * Create a new protocol decoder instance.
7ce7775c 289 *
42a85ed0 290 * @param id Decoder 'id' field.
0bdadba2
BV
291 * @param options GHashtable of options which override the defaults set in
292 * the decoder class.
42a85ed0 293 * @return Pointer to a newly allocated struct srd_decoder_instance, or
0bdadba2 294 * NULL in case of failure.
7ce7775c 295 */
0bdadba2
BV
296struct srd_decoder_instance *srd_instance_new(const char *decoder_id,
297 GHashTable *options)
b2c19614
BV
298{
299 struct srd_decoder *dec;
300 struct srd_decoder_instance *di;
0bdadba2 301 char *instance_id;
b2c19614 302
0bdadba2 303 srd_dbg("%s: creating new %s instance", __func__, decoder_id);
7ce7775c 304
0bdadba2
BV
305 if (!(dec = srd_get_decoder_by_id(decoder_id))) {
306 srd_err("Protocol decoder %s not found.", decoder_id);
b2c19614 307 return NULL;
0bdadba2 308 }
b2c19614 309
0bdadba2
BV
310 if (!(di = g_try_malloc0(sizeof(*di)))) {
311 srd_err("Failed to malloc instance.");
7ce7775c
BV
312 return NULL;
313 }
0bdadba2
BV
314
315 instance_id = g_hash_table_lookup(options, "id");
b2c19614 316 di->decoder = dec;
0bdadba2
BV
317 di->instance_id = g_strdup(instance_id ? instance_id : decoder_id);
318 g_hash_table_remove(options, "id");
b2c19614 319
0bdadba2
BV
320 /* Create a new instance of this decoder class. */
321 if (!(di->py_instance = PyObject_CallObject(dec->py_dec, NULL))) {
b2c19614 322 if (PyErr_Occurred())
7ce7775c 323 PyErr_Print();
0bdadba2 324 g_free(di);
7ce7775c 325 return NULL;
b2c19614 326 }
7ce7775c
BV
327
328 /* Instance takes input from a frontend by default. */
e5080882 329 di_list = g_slist_append(di_list, di);
b2c19614 330
0bdadba2
BV
331 if (srd_instance_set_options(di, options) != SRD_OK) {
332 di_list = g_slist_remove(di_list, di);
333 g_free(di);
334 return NULL;
335 }
b2c19614
BV
336
337 return di;
338}
339
7ce7775c
BV
340int srd_instance_stack(struct srd_decoder_instance *di_from,
341 struct srd_decoder_instance *di_to)
342{
343
344 if (!di_from || !di_to) {
345 srd_err("invalid from/to instance pair");
346 return SRD_ERR_ARG;
347 }
348
349 if (!g_slist_find(di_list, di_from)) {
350 srd_err("unstacked instance not found");
351 return SRD_ERR_ARG;
352 }
353
354 /* Remove from the unstacked list. */
355 di_list = g_slist_remove(di_list, di_to);
356
357 /* Stack on top of source di. */
358 di_from->next_di = g_slist_append(di_from->next_di, di_to);
359
360 return SRD_OK;
361}
362
b2c19614 363
451680f1 364/* TODO: this should go into the PD stack */
7ce7775c
BV
365struct srd_decoder_instance *srd_instance_find(char *instance_id)
366{
367 GSList *l;
368 struct srd_decoder_instance *tmp, *di;
b2c19614 369
7ce7775c
BV
370 di = NULL;
371 for (l = di_list; l; l = l->next) {
372 tmp = l->data;
373 if (!strcmp(tmp->instance_id, instance_id)) {
374 di = tmp;
375 break;
376 }
377 }
378
379 return di;
380}
381
382int srd_instance_start(struct srd_decoder_instance *di, PyObject *args)
b2c19614 383{
7ce7775c 384 PyObject *py_name, *py_res;
b2c19614 385
7ce7775c 386 srd_dbg("calling start() method on protocol decoder instance %s", di->instance_id);
b2c19614 387
7ce7775c
BV
388 if (!(py_name = PyUnicode_FromString("start"))) {
389 srd_err("unable to build python object for 'start'");
390 if (PyErr_Occurred())
391 PyErr_Print();
392 return SRD_ERR_PYTHON;
393 }
394
395 if (!(py_res = PyObject_CallMethodObjArgs(di->py_instance,
396 py_name, args, NULL))) {
397 if (PyErr_Occurred())
398 PyErr_Print();
399 return SRD_ERR_PYTHON;
b2c19614
BV
400 }
401
7ce7775c
BV
402 Py_XDECREF(py_res);
403 Py_DECREF(py_name);
404
b2c19614
BV
405 return SRD_OK;
406}
407
b2c19614
BV
408/**
409 * Run the specified decoder function.
410 *
411 * @param dec TODO
412 * @param inbuf TODO
413 * @param inbuflen TODO
b2c19614
BV
414 *
415 * @return SRD_OK upon success, a (negative) error code otherwise.
416 */
86528298 417int srd_instance_decode(uint64_t start_samplenum,
bc5f5a43 418 struct srd_decoder_instance *di, uint8_t *inbuf, uint64_t inbuflen)
b2c19614
BV
419{
420 PyObject *py_instance, *py_res;
bc5f5a43 421 srd_logic *logic;
86528298 422 uint64_t end_samplenum;
b2c19614
BV
423
424 /* Return an error upon unusable input. */
bc5f5a43 425 if (di == NULL)
a62186e4 426 return SRD_ERR_ARG; /* TODO: More specific error? */
b2c19614 427 if (inbuf == NULL)
a62186e4 428 return SRD_ERR_ARG; /* TODO: More specific error? */
b2c19614 429 if (inbuflen == 0) /* No point in working on empty buffers. */
a62186e4 430 return SRD_ERR_ARG; /* TODO: More specific error? */
b2c19614
BV
431
432 /* TODO: Error handling. */
bc5f5a43 433 py_instance = di->py_instance;
b2c19614
BV
434 Py_XINCREF(py_instance);
435
bc5f5a43
BV
436 logic = PyObject_New(srd_logic, &srd_logic_type);
437 Py_INCREF(logic);
438 logic->di = di;
86528298 439 logic->start_samplenum = start_samplenum;
bc5f5a43
BV
440 logic->itercnt = 0;
441 logic->inbuf = inbuf;
442 logic->inbuflen = inbuflen;
443 logic->sample = PyList_New(2);
444 Py_INCREF(logic->sample);
445
86528298 446 end_samplenum = start_samplenum + inbuflen / di->unitsize;
b2c19614 447 if (!(py_res = PyObject_CallMethod(py_instance, "decode",
86528298 448 "KKO", logic->start_samplenum, end_samplenum, logic))) {
b2c19614
BV
449 if (PyErr_Occurred())
450 PyErr_Print(); /* Returns void. */
451
452 return SRD_ERR_PYTHON; /* TODO: More specific error? */
453 }
454
455 Py_XDECREF(py_res);
bc5f5a43 456
b2c19614
BV
457 return SRD_OK;
458}
459
460
7ce7775c
BV
461int srd_session_start(int num_probes, int unitsize, uint64_t samplerate)
462{
463 PyObject *args;
464 GSList *d, *s;
465 struct srd_decoder_instance *di;
466 int ret;
467
468 if (!(args = Py_BuildValue("{s:l}", "samplerate", (long)samplerate))) {
469 srd_err("unable to build python object for metadata");
470 return SRD_ERR_PYTHON;
471 }
472
473 /* Run the start() method on all decoders receiving frontend data. */
474 for (d = di_list; d; d = d->next) {
475 di = d->data;
476 di->num_probes = num_probes;
477 di->unitsize = unitsize;
478 di->samplerate = samplerate;
479 if ((ret = srd_instance_start(di, args) != SRD_OK))
480 return ret;
481
482 /* Run the start() method on all decoders up the stack from this one. */
483 for (s = di->next_di; s; s = s->next) {
484 /* These don't need probes, unitsize and samplerate. */
485 di = s->data;
486 if ((ret = srd_instance_start(di, args) != SRD_OK))
487 return ret;
488 }
489 }
490
491 Py_DECREF(args);
492
493 return SRD_OK;
494}
495
b2c19614 496/* Feed logic samples to decoder session. */
86528298 497int srd_session_feed(uint64_t start_samplenum, uint8_t *inbuf, uint64_t inbuflen)
b2c19614
BV
498{
499 GSList *d;
500 int ret;
501
e5080882 502 for (d = di_list; d; d = d->next) {
86528298 503 if ((ret = srd_instance_decode(start_samplenum, d->data, inbuf,
1aef2f93 504 inbuflen)) != SRD_OK)
b2c19614
BV
505 return ret;
506 }
507
508 return SRD_OK;
509}
510
511
f9a3947a 512int pd_add(struct srd_decoder_instance *di, int output_type,
94d43b37 513 char *proto_id)
e5080882 514{
e5080882 515 struct srd_pd_output *pdo;
e5080882
BV
516
517 if (!(pdo = g_try_malloc(sizeof(struct srd_pd_output))))
518 return -1;
519
b231546d 520 /* pdo_id is just a simple index, nothing is deleted from this list anyway. */
15969949 521 pdo->pdo_id = g_slist_length(di->pd_output);
e5080882 522 pdo->output_type = output_type;
15969949 523 pdo->decoder = di->decoder;
94d43b37 524 pdo->proto_id = g_strdup(proto_id);
e5080882
BV
525 di->pd_output = g_slist_append(di->pd_output, pdo);
526
15969949 527 return pdo->pdo_id;
e5080882
BV
528}
529
bc5f5a43
BV
530struct srd_decoder_instance *get_di_by_decobject(void *decobject)
531{
7ce7775c 532 GSList *l, *s;
bc5f5a43
BV
533 struct srd_decoder_instance *di;
534
535 for (l = di_list; l; l = l->next) {
536 di = l->data;
537 if (decobject == di->py_instance)
538 return di;
7ce7775c
BV
539 /* Check decoders stacked on top of this one. */
540 for (s = di->next_di; s; s = s->next) {
541 di = s->data;
542 if (decobject == di->py_instance)
543 return di;
544 }
bc5f5a43
BV
545 }
546
547 return NULL;
548}
549
983cb0f5
BV
550int srd_register_callback(int output_type, void *cb)
551{
552 struct srd_pd_callback *pd_cb;
553
554 if (!(pd_cb = g_try_malloc(sizeof(struct srd_pd_callback))))
555 return SRD_ERR_MALLOC;
556
557 pd_cb->output_type = output_type;
558 pd_cb->callback = cb;
559 callbacks = g_slist_append(callbacks, pd_cb);
560
983cb0f5
BV
561 return SRD_OK;
562}
563
564void *srd_find_callback(int output_type)
565{
566 GSList *l;
567 struct srd_pd_callback *pd_cb;
568 void *(cb);
569
570 cb = NULL;
571 for (l = callbacks; l; l = l->next) {
572 pd_cb = l->data;
573 if (pd_cb->output_type == output_type) {
574 cb = pd_cb->callback;
575 break;
576 }
577 }
578
579 return cb;
580}
e5080882 581