]> sigrok.org Git - libsigrokdecode.git/blame - controller.c
srd: Disable 'nunchuk' PD for now, it's unfinished.
[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
d906d3f9 28/* List of decoder instances. */
7ce7775c 29static GSList *di_list = NULL;
d906d3f9 30
361fdcaa 31/* List of frontend callbacks to receive decoder output. */
983cb0f5
BV
32static GSList *callbacks = NULL;
33
c9bfccc6 34/* decoder.c */
55c3c5f4 35extern SRD_PRIV GSList *pd_list;
b2c19614 36
c9bfccc6 37/* module_sigrokdecode.c */
55c3c5f4 38extern SRD_PRIV PyMODINIT_FUNC PyInit_sigrokdecode(void);
b2c19614 39
c9bfccc6 40/* type_logic.c */
55c3c5f4 41extern SRD_PRIV PyTypeObject srd_logic_type;
b2c19614
BV
42
43/**
44 * Initialize libsigrokdecode.
45 *
46 * This initializes the Python interpreter, and creates and initializes
361fdcaa 47 * a "sigrokdecode" Python module.
b2c19614
BV
48 *
49 * Then, it searches for sigrok protocol decoder files (*.py) in the
50 * "decoders" subdirectory of the the sigrok installation directory.
51 * All decoders that are found are loaded into memory and added to an
9d122fd5 52 * internal list of decoders, which can be queried via srd_decoders_list().
b2c19614
BV
53 *
54 * The caller is responsible for calling the clean-up function srd_exit(),
55 * which will properly shut down libsigrokdecode and free its allocated memory.
56 *
7ce7775c 57 * Multiple calls to srd_init(), without calling srd_exit() in between,
b2c19614
BV
58 * are not allowed.
59 *
65e1c7d0 60 * @param path Path to an extra directory containing protocol decoders
361fdcaa 61 * which will be added to the Python sys.path, or NULL.
65e1c7d0 62 *
b2c19614
BV
63 * @return SRD_OK upon success, a (negative) error code otherwise.
64 * Upon Python errors, return SRD_ERR_PYTHON. If the sigrok decoders
65 * directory cannot be accessed, return SRD_ERR_DECODERS_DIR.
66 * If not enough memory could be allocated, return SRD_ERR_MALLOC.
67 */
abeeed8b 68SRD_API int srd_init(const char *path)
b2c19614
BV
69{
70 int ret;
65e1c7d0 71 char *env_path;
b2c19614 72
7a1712c4 73 srd_dbg("Initializing libsigrokdecode.");
d906d3f9
BV
74
75 /* Add our own module to the list of built-in modules. */
bc5f5a43 76 PyImport_AppendInittab("sigrokdecode", PyInit_sigrokdecode);
5f802ec6 77
511e2123 78 /* Initialize the Python interpreter. */
b2c19614
BV
79 Py_Initialize();
80
65e1c7d0 81 /* Installed decoders. */
aafeeaea 82 if ((ret = srd_decoder_searchpath_add(DECODERS_DIR)) != SRD_OK) {
b2c19614
BV
83 Py_Finalize();
84 return ret;
85 }
86
65e1c7d0
BV
87 /* Path specified by the user. */
88 if (path) {
aafeeaea 89 if ((ret = srd_decoder_searchpath_add(path)) != SRD_OK) {
65e1c7d0
BV
90 Py_Finalize();
91 return ret;
92 }
93 }
94
95 /* Environment variable overrides everything, for debugging. */
96 if ((env_path = getenv("SIGROKDECODE_DIR"))) {
aafeeaea 97 if ((ret = srd_decoder_searchpath_add(env_path)) != SRD_OK) {
65e1c7d0
BV
98 Py_Finalize();
99 return ret;
100 }
101 }
102
b2c19614
BV
103 return SRD_OK;
104}
105
b2c19614
BV
106/**
107 * Shutdown libsigrokdecode.
108 *
109 * This frees all the memory allocated for protocol decoders and shuts down
110 * the Python interpreter.
111 *
112 * This function should only be called if there was a (successful!) invocation
113 * of srd_init() before. Calling this function multiple times in a row, without
7ce7775c 114 * any successful srd_init() calls in between, is not allowed.
b2c19614
BV
115 *
116 * @return SRD_OK upon success, a (negative) error code otherwise.
117 */
55c3c5f4 118SRD_API int srd_exit(void)
b2c19614 119{
7a1712c4 120 srd_dbg("Exiting libsigrokdecode.");
d906d3f9 121
8ad6e500 122 srd_decoder_unload_all();
e5080882 123 g_slist_free(pd_list);
96c52595 124 pd_list = NULL;
b2c19614
BV
125
126 /* Py_Finalize() returns void, any finalization errors are ignored. */
127 Py_Finalize();
128
129 return SRD_OK;
130}
131
b2c19614 132/**
9d9fcb37
UH
133 * Add an additional search directory for the protocol decoders.
134 *
135 * The specified directory is prepended (not appended!) to Python's sys.path,
136 * in order to search for sigrok protocol decoders in the specified
137 * directories first, and in the generic Python module directories (and in
138 * the current working directory) last. This avoids conflicts if there are
139 * Python modules which have the same name as a sigrok protocol decoder in
140 * sys.path or in the current working directory.
b2c19614 141 *
361fdcaa
UH
142 * @param path Path to the directory containing protocol decoders which shall
143 * be added to the Python sys.path, or NULL.
9d9fcb37 144 *
65e1c7d0 145 * @return SRD_OK upon success, a (negative) error code otherwise.
b2c19614 146 */
aafeeaea 147SRD_PRIV int srd_decoder_searchpath_add(const char *path)
b2c19614 148{
65e1c7d0
BV
149 PyObject *py_cur_path, *py_item;
150 GString *new_path;
151 int wc_len, i;
152 wchar_t *wc_new_path;
153 char *item;
154
8ad6e500 155 srd_dbg("Adding '%s' to module path.", path);
65e1c7d0
BV
156
157 new_path = g_string_sized_new(256);
158 g_string_assign(new_path, g_strdup(path));
159 py_cur_path = PySys_GetObject("path");
160 for (i = 0; i < PyList_Size(py_cur_path); i++) {
161 g_string_append(new_path, g_strdup(G_SEARCHPATH_SEPARATOR_S));
162 py_item = PyList_GetItem(py_cur_path, i);
163 if (!PyUnicode_Check(py_item))
164 /* Shouldn't happen. */
165 continue;
166 if (py_str_as_str(py_item, &item) != SRD_OK)
167 continue;
168 g_string_append(new_path, item);
169 }
639c5689 170
65e1c7d0
BV
171 /* Convert to wide chars. */
172 wc_len = sizeof(wchar_t) * (new_path->len + 1);
173 if (!(wc_new_path = g_try_malloc(wc_len))) {
174 srd_dbg("malloc failed");
175 return SRD_ERR_MALLOC;
176 }
177 mbstowcs(wc_new_path, new_path->str, wc_len);
178 PySys_SetPath(wc_new_path);
179 g_string_free(new_path, TRUE);
180 g_free(wc_new_path);
181
182//#ifdef _WIN32
183// gchar **splitted;
184//
185// /*
186// * On Windows/MinGW, Python's sys.path needs entries of the form
187// * 'C:\\foo\\bar' instead of '/foo/bar'.
188// */
189//
190// splitted = g_strsplit(DECODERS_DIR, "/", 0);
191// path = g_build_pathv("\\\\", splitted);
192// g_strfreev(splitted);
193//#else
194// path = g_strdup(DECODERS_DIR);
195//#endif
b2c19614 196
65e1c7d0 197 return SRD_OK;
b2c19614
BV
198}
199
7ce7775c 200/**
b33b8aa5 201 * Set one or more options in a decoder instance.
0bdadba2 202 *
361fdcaa
UH
203 * Handled options are removed from the hash.
204 *
0bdadba2
BV
205 * @param di Decoder instance.
206 * @param options A GHashTable of options to set.
7ce7775c 207 *
0bdadba2
BV
208 * @return SRD_OK upon success, a (negative) error code otherwise.
209 */
b33b8aa5
UH
210SRD_API int srd_inst_option_set(struct srd_decoder_inst *di,
211 GHashTable *options)
0bdadba2
BV
212{
213 PyObject *py_dec_options, *py_dec_optkeys, *py_di_options, *py_optval;
214 PyObject *py_optlist, *py_classval;
215 Py_UNICODE *py_ustr;
216 unsigned long long int val_ull;
217 int num_optkeys, ret, size, i;
218 char *key, *value;
219
c9bfccc6 220 if (!PyObject_HasAttrString(di->decoder->py_dec, "options")) {
0bdadba2 221 /* Decoder has no options. */
e431d9cc
BV
222 if (g_hash_table_size(options) == 0) {
223 /* No options provided. */
224 return SRD_OK;
225 } else {
226 srd_err("Protocol decoder has no options.");
227 return SRD_ERR_ARG;
228 }
0bdadba2 229 return SRD_OK;
e431d9cc 230 }
0bdadba2
BV
231
232 ret = SRD_ERR_PYTHON;
233 key = NULL;
234 py_dec_options = py_dec_optkeys = py_di_options = py_optval = NULL;
235 py_optlist = py_classval = NULL;
236 py_dec_options = PyObject_GetAttrString(di->decoder->py_dec, "options");
0bdadba2
BV
237
238 /* All of these are synthesized objects, so they're good. */
239 py_dec_optkeys = PyDict_Keys(py_dec_options);
240 num_optkeys = PyList_Size(py_dec_optkeys);
a8b72b05 241 if (!(py_di_options = PyObject_GetAttrString(di->py_inst, "options")))
0bdadba2
BV
242 goto err_out;
243 for (i = 0; i < num_optkeys; i++) {
244 /* Get the default class value for this option. */
245 py_str_as_str(PyList_GetItem(py_dec_optkeys, i), &key);
246 if (!(py_optlist = PyDict_GetItemString(py_dec_options, key)))
247 goto err_out;
248 if (!(py_classval = PyList_GetItem(py_optlist, 1)))
249 goto err_out;
130ef08a 250 if (!PyUnicode_Check(py_classval) && !PyLong_Check(py_classval)) {
c9bfccc6
UH
251 srd_err("Options of type %s are not yet supported.",
252 Py_TYPE(py_classval)->tp_name);
130ef08a
BV
253 goto err_out;
254 }
0bdadba2
BV
255
256 if ((value = g_hash_table_lookup(options, key))) {
257 /* An override for this option was provided. */
258 if (PyUnicode_Check(py_classval)) {
259 if (!(py_optval = PyUnicode_FromString(value))) {
260 /* Some UTF-8 encoding error. */
261 PyErr_Clear();
262 goto err_out;
263 }
264 } else if (PyLong_Check(py_classval)) {
265 if (!(py_optval = PyLong_FromString(value, NULL, 0))) {
266 /* ValueError Exception */
267 PyErr_Clear();
c9bfccc6
UH
268 srd_err("Option %s has invalid value "
269 "%s: expected integer.",
270 key, value);
0bdadba2
BV
271 goto err_out;
272 }
273 }
274 g_hash_table_remove(options, key);
275 } else {
276 /* Use the class default for this option. */
277 if (PyUnicode_Check(py_classval)) {
278 /* Make a brand new copy of the string. */
279 py_ustr = PyUnicode_AS_UNICODE(py_classval);
280 size = PyUnicode_GET_SIZE(py_classval);
281 py_optval = PyUnicode_FromUnicode(py_ustr, size);
282 } else if (PyLong_Check(py_classval)) {
283 /* Make a brand new copy of the integer. */
284 val_ull = PyLong_AsUnsignedLongLong(py_classval);
285 if (val_ull == (unsigned long long)-1) {
286 /* OverFlowError exception */
287 PyErr_Clear();
c9bfccc6
UH
288 srd_err("Invalid integer value for %s: "
289 "expected integer.", key);
0bdadba2
BV
290 goto err_out;
291 }
292 if (!(py_optval = PyLong_FromUnsignedLongLong(val_ull)))
293 goto err_out;
294 }
295 }
296
361fdcaa
UH
297 /*
298 * If we got here, py_optval holds a known good new reference
0bdadba2
BV
299 * to the instance option to set.
300 */
301 if (PyDict_SetItemString(py_di_options, key, py_optval) == -1)
302 goto err_out;
303 }
304
305 ret = SRD_OK;
306
307err_out:
308 Py_XDECREF(py_optlist);
309 Py_XDECREF(py_di_options);
310 Py_XDECREF(py_dec_optkeys);
311 Py_XDECREF(py_dec_options);
6f858319 312 g_free(key);
2086c684 313 if (PyErr_Occurred())
aafeeaea 314 srd_exception_catch("Stray exception in srd_inst_option_set().");
0bdadba2
BV
315
316 return ret;
317}
318
b33b8aa5 319/* Helper GComparefunc for g_slist_find_custom() in srd_inst_probe_set_all() */
abeeed8b 320static gint compare_probe_id(const struct srd_probe *a, const char *probe_id)
f38ec285 321{
f38ec285
BV
322 return strcmp(a->id, probe_id);
323}
324
0bdadba2 325/**
b33b8aa5
UH
326 * Set all probes in a decoder instance.
327 *
328 * This function sets _all_ probes for the specified decoder instance, i.e.,
329 * it overwrites any probes that were already defined (if any).
0bdadba2
BV
330 *
331 * @param di Decoder instance.
332 * @param probes A GHashTable of probes to set. Key is probe name, value is
c9bfccc6
UH
333 * the probe number. Samples passed to this instance will be
334 * arranged in this order.
12243c22 335 *
0bdadba2
BV
336 * @return SRD_OK upon success, a (negative) error code otherwise.
337 */
b33b8aa5
UH
338SRD_API int srd_inst_probe_set_all(struct srd_decoder_inst *di,
339 GHashTable *new_probes)
0bdadba2 340{
f38ec285
BV
341 GList *l;
342 GSList *sl;
343 struct srd_probe *p;
344 int *new_probemap, new_probenum;
be873260 345 char *probe_id, *probenum_str;
0bdadba2 346
ce46beed 347 srd_dbg("set probes called for instance %s with list of %d probes",
a8b72b05 348 di->inst_id, g_hash_table_size(new_probes));
ce46beed 349
f38ec285 350 if (g_hash_table_size(new_probes) == 0)
0bdadba2
BV
351 /* No probes provided. */
352 return SRD_OK;
353
c9bfccc6 354 if (di->dec_num_probes == 0) {
0bdadba2 355 /* Decoder has no probes. */
f38ec285 356 srd_err("Protocol decoder %s has no probes to define.",
c9bfccc6 357 di->decoder->name);
f38ec285
BV
358 return SRD_ERR_ARG;
359 }
0bdadba2 360
f38ec285 361 new_probemap = NULL;
0bdadba2 362
f38ec285 363 if (!(new_probemap = g_try_malloc(sizeof(int) * di->dec_num_probes))) {
a61ece20 364 srd_err("Failed to g_malloc() new probe map.");
f38ec285 365 return SRD_ERR_MALLOC;
0bdadba2
BV
366 }
367
f38ec285
BV
368 for (l = g_hash_table_get_keys(new_probes); l; l = l->next) {
369 probe_id = l->data;
be873260
BV
370 probenum_str = g_hash_table_lookup(new_probes, probe_id);
371 if (!probenum_str) {
372 /* Probe name was specified without a value. */
c9bfccc6
UH
373 srd_err("No probe number was specified for %s.",
374 probe_id);
be873260
BV
375 g_free(new_probemap);
376 return SRD_ERR_ARG;
377 }
378 new_probenum = strtol(probenum_str, NULL, 10);
f38ec285
BV
379 if (!(sl = g_slist_find_custom(di->decoder->probes, probe_id,
380 (GCompareFunc)compare_probe_id))) {
381 /* Fall back on optional probes. */
dcdf4883 382 if (!(sl = g_slist_find_custom(di->decoder->opt_probes,
c9bfccc6
UH
383 probe_id, (GCompareFunc) compare_probe_id))) {
384 srd_err("Protocol decoder %s has no probe "
385 "'%s'.", di->decoder->name, probe_id);
f38ec285
BV
386 g_free(new_probemap);
387 return SRD_ERR_ARG;
388 }
389 }
390 p = sl->data;
391 new_probemap[p->order] = new_probenum;
c9bfccc6
UH
392 srd_dbg("setting probe mapping for %d = probe %d", p->order,
393 new_probenum);
f38ec285
BV
394 }
395 g_free(di->dec_probemap);
396 di->dec_probemap = new_probemap;
0bdadba2 397
f38ec285 398 return SRD_OK;
0bdadba2
BV
399}
400
401/**
402 * Create a new protocol decoder instance.
7ce7775c 403 *
42a85ed0 404 * @param id Decoder 'id' field.
0bdadba2 405 * @param options GHashtable of options which override the defaults set in
c9bfccc6 406 * the decoder class.
12243c22 407 *
a8b72b05 408 * @return Pointer to a newly allocated struct srd_decoder_inst, or
c9bfccc6 409 * NULL in case of failure.
7ce7775c 410 */
a8b72b05 411SRD_API struct srd_decoder_inst *srd_inst_new(const char *decoder_id,
361fdcaa 412 GHashTable *options)
b2c19614 413{
c9bfccc6 414 int i;
b2c19614 415 struct srd_decoder *dec;
a8b72b05
BV
416 struct srd_decoder_inst *di;
417 char *inst_id;
b2c19614 418
7a1712c4 419 srd_dbg("Creating new %s instance.", decoder_id);
7ce7775c 420
9d122fd5 421 if (!(dec = srd_decoder_get_by_id(decoder_id))) {
0bdadba2 422 srd_err("Protocol decoder %s not found.", decoder_id);
b2c19614 423 return NULL;
0bdadba2 424 }
b2c19614 425
a8b72b05 426 if (!(di = g_try_malloc0(sizeof(struct srd_decoder_inst)))) {
a61ece20 427 srd_err("Failed to g_malloc() instance.");
7ce7775c
BV
428 return NULL;
429 }
0bdadba2 430
a8b72b05 431 inst_id = g_hash_table_lookup(options, "id");
b2c19614 432 di->decoder = dec;
a8b72b05 433 di->inst_id = g_strdup(inst_id ? inst_id : decoder_id);
0bdadba2 434 g_hash_table_remove(options, "id");
b2c19614 435
361fdcaa
UH
436 /*
437 * Prepare a default probe map, where samples come in the
f38ec285
BV
438 * order in which the decoder class defined them.
439 */
440 di->dec_num_probes = g_slist_length(di->decoder->probes) +
c9bfccc6 441 g_slist_length(di->decoder->opt_probes);
19a90bab 442 if (di->dec_num_probes) {
c9bfccc6
UH
443 if (!(di->dec_probemap =
444 g_try_malloc(sizeof(int) * di->dec_num_probes))) {
a61ece20 445 srd_err("Failed to g_malloc() probe map.");
19a90bab
BV
446 g_free(di);
447 return NULL;
448 }
449 for (i = 0; i < di->dec_num_probes; i++)
450 di->dec_probemap[i] = i;
f38ec285 451 }
f38ec285 452
0bdadba2 453 /* Create a new instance of this decoder class. */
a8b72b05 454 if (!(di->py_inst = PyObject_CallObject(dec->py_dec, NULL))) {
b2c19614 455 if (PyErr_Occurred())
aafeeaea
UH
456 srd_exception_catch("failed to create %s instance: ",
457 decoder_id);
f38ec285 458 g_free(di->dec_probemap);
0bdadba2 459 g_free(di);
7ce7775c 460 return NULL;
b2c19614 461 }
7ce7775c 462
b33b8aa5 463 if (srd_inst_option_set(di, options) != SRD_OK) {
f38ec285 464 g_free(di->dec_probemap);
0bdadba2
BV
465 g_free(di);
466 return NULL;
467 }
b2c19614 468
f38ec285
BV
469 /* Instance takes input from a frontend by default. */
470 di_list = g_slist_append(di_list, di);
471
b2c19614
BV
472 return di;
473}
474
582c8473
BV
475/**
476 * Stack a decoder instance on top of another.
477 *
478 * @param di_from The instance to move.
479 * @param di_to The instance on top of which di_from will be stacked.
480 *
481 * @return SRD_OK upon success, a (negative) error code otherwise.
482 */
a8b72b05 483SRD_API int srd_inst_stack(struct srd_decoder_inst *di_from,
abeeed8b 484 struct srd_decoder_inst *di_to)
7ce7775c 485{
7ce7775c 486 if (!di_from || !di_to) {
d906d3f9 487 srd_err("Invalid from/to instance pair.");
7ce7775c
BV
488 return SRD_ERR_ARG;
489 }
490
2072ae0c
BV
491 if (g_slist_find(di_list, di_to)) {
492 /* Remove from the unstacked list. */
493 di_list = g_slist_remove(di_list, di_to);
7ce7775c
BV
494 }
495
7ce7775c
BV
496 /* Stack on top of source di. */
497 di_from->next_di = g_slist_append(di_from->next_di, di_to);
498
499 return SRD_OK;
500}
501
2072ae0c 502/**
361fdcaa
UH
503 * Find a decoder instance by its instance ID.
504 *
505 * Only the bottom level of instances are searched -- instances already stacked
506 * on top of another one will not be found.
2072ae0c 507 *
ed2306a6 508 * @param inst_id The instance ID to be found.
2072ae0c 509 *
a8b72b05 510 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
2072ae0c 511 */
abeeed8b 512SRD_API struct srd_decoder_inst *srd_inst_find_by_id(const char *inst_id)
7ce7775c
BV
513{
514 GSList *l;
a8b72b05 515 struct srd_decoder_inst *tmp, *di;
b2c19614 516
7ce7775c
BV
517 di = NULL;
518 for (l = di_list; l; l = l->next) {
519 tmp = l->data;
a8b72b05 520 if (!strcmp(tmp->inst_id, inst_id)) {
7ce7775c
BV
521 di = tmp;
522 break;
523 }
524 }
525
526 return di;
527}
528
2072ae0c 529/**
361fdcaa
UH
530 * Find a decoder instance by its Python object.
531 *
532 * I.e. find that instance's instantiation of the sigrokdecode.Decoder class.
533 * This will recurse to find the instance anywhere in the stack tree.
2072ae0c 534 *
361fdcaa
UH
535 * @param stack Pointer to a GSList of struct srd_decoder_inst, indicating the
536 * stack to search. To start searching at the bottom level of
537 * decoder instances, pass NULL.
511e2123 538 * @param obj The Python class instantiation.
2072ae0c 539 *
a8b72b05 540 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
2072ae0c 541 */
abeeed8b
UH
542SRD_PRIV struct srd_decoder_inst *srd_inst_find_by_obj(const GSList *stack,
543 const PyObject *obj)
2072ae0c 544{
abeeed8b
UH
545// TODO?
546 const GSList *l;
a8b72b05 547 struct srd_decoder_inst *tmp, *di;
2072ae0c
BV
548
549 di = NULL;
550 for (l = stack ? stack : di_list; di == NULL && l != NULL; l = l->next) {
551 tmp = l->data;
a8b72b05 552 if (tmp->py_inst == obj)
2072ae0c
BV
553 di = tmp;
554 else if (tmp->next_di)
a8b72b05 555 di = srd_inst_find_by_obj(tmp->next_di, obj);
2072ae0c
BV
556 }
557
558 return di;
559}
560
ee4ed227 561SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di, PyObject *args)
b2c19614 562{
7ce7775c 563 PyObject *py_name, *py_res;
2072ae0c 564 GSList *l;
a8b72b05 565 struct srd_decoder_inst *next_di;
b2c19614 566
7a1712c4 567 srd_dbg("Calling start() method on protocol decoder instance %s.",
a8b72b05 568 di->inst_id);
b2c19614 569
7ce7775c 570 if (!(py_name = PyUnicode_FromString("start"))) {
511e2123 571 srd_err("Unable to build Python object for 'start'.");
aafeeaea
UH
572 srd_exception_catch("Protocol decoder instance %s: ",
573 di->inst_id);
7ce7775c
BV
574 return SRD_ERR_PYTHON;
575 }
576
a8b72b05 577 if (!(py_res = PyObject_CallMethodObjArgs(di->py_inst,
c9bfccc6 578 py_name, args, NULL))) {
aafeeaea
UH
579 srd_exception_catch("Protocol decoder instance %s: ",
580 di->inst_id);
7ce7775c 581 return SRD_ERR_PYTHON;
b2c19614
BV
582 }
583
f38ec285
BV
584 Py_DecRef(py_res);
585 Py_DecRef(py_name);
7ce7775c 586
361fdcaa
UH
587 /*
588 * Start all the PDs stacked on top of this one. Pass along the
2072ae0c
BV
589 * metadata all the way from the bottom PD, even though it's only
590 * applicable to logic data for now.
591 */
592 for (l = di->next_di; l; l = l->next) {
593 next_di = l->data;
a8b72b05 594 srd_inst_start(next_di, args);
2072ae0c
BV
595 }
596
b2c19614
BV
597 return SRD_OK;
598}
599
b2c19614
BV
600/**
601 * Run the specified decoder function.
602 *
d906d3f9 603 * @param start_samplenum The starting sample number for the buffer's sample
7a1712c4
UH
604 * set, relative to the start of capture.
605 * @param di The decoder instance to call. Must not be NULL.
606 * @param inbuf The buffer to decode. Must not be NULL.
607 * @param inbuflen Length of the buffer. Must be > 0.
b2c19614
BV
608 *
609 * @return SRD_OK upon success, a (negative) error code otherwise.
610 */
12243c22 611SRD_PRIV int srd_inst_decode(uint64_t start_samplenum,
abeeed8b
UH
612 const struct srd_decoder_inst *di,
613 const uint8_t *inbuf, uint64_t inbuflen)
b2c19614 614{
d906d3f9 615 PyObject *py_res;
bc5f5a43 616 srd_logic *logic;
86528298 617 uint64_t end_samplenum;
b2c19614 618
7a1712c4 619 srd_dbg("Calling decode() on instance %s with %d bytes starting "
a8b72b05 620 "at sample %d.", di->inst_id, inbuflen, start_samplenum);
b2c19614 621
d906d3f9 622 /* Return an error upon unusable input. */
7a1712c4
UH
623 if (!di) {
624 srd_dbg("empty decoder instance");
d906d3f9
BV
625 return SRD_ERR_ARG;
626 }
7a1712c4
UH
627 if (!inbuf) {
628 srd_dbg("NULL buffer pointer");
d906d3f9
BV
629 return SRD_ERR_ARG;
630 }
631 if (inbuflen == 0) {
7a1712c4 632 srd_dbg("empty buffer");
d906d3f9
BV
633 return SRD_ERR_ARG;
634 }
b2c19614 635
361fdcaa
UH
636 /*
637 * Create new srd_logic object. Each iteration around the PD's loop
d906d3f9
BV
638 * will fill one sample into this object.
639 */
bc5f5a43
BV
640 logic = PyObject_New(srd_logic, &srd_logic_type);
641 Py_INCREF(logic);
abeeed8b 642 logic->di = (struct srd_decoder_inst *)di;
86528298 643 logic->start_samplenum = start_samplenum;
bc5f5a43 644 logic->itercnt = 0;
abeeed8b 645 logic->inbuf = (uint8_t *)inbuf;
bc5f5a43
BV
646 logic->inbuflen = inbuflen;
647 logic->sample = PyList_New(2);
648 Py_INCREF(logic->sample);
649
a8b72b05 650 Py_IncRef(di->py_inst);
f38ec285 651 end_samplenum = start_samplenum + inbuflen / di->data_unitsize;
a8b72b05 652 if (!(py_res = PyObject_CallMethod(di->py_inst, "decode",
c9bfccc6
UH
653 "KKO", logic->start_samplenum,
654 end_samplenum, logic))) {
aafeeaea
UH
655 srd_exception_catch("Protocol decoder instance %s: ",
656 di->inst_id);
b2c19614
BV
657 return SRD_ERR_PYTHON; /* TODO: More specific error? */
658 }
d906d3f9 659 Py_DecRef(py_res);
bc5f5a43 660
b2c19614
BV
661 return SRD_OK;
662}
663
12243c22 664SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di)
fa12a21e
BV
665{
666 GSList *l;
667 struct srd_pd_output *pdo;
668
a8b72b05 669 srd_dbg("Freeing instance %s", di->inst_id);
fa12a21e 670
a8b72b05
BV
671 Py_DecRef(di->py_inst);
672 g_free(di->inst_id);
fa12a21e
BV
673 g_free(di->dec_probemap);
674 g_slist_free(di->next_di);
675 for (l = di->pd_output; l; l = l->next) {
676 pdo = l->data;
677 g_free(pdo->proto_id);
678 g_free(pdo);
679 }
680 g_slist_free(di->pd_output);
fa12a21e
BV
681}
682
12243c22 683SRD_PRIV void srd_inst_free_all(GSList *stack)
fa12a21e
BV
684{
685 GSList *l;
a8b72b05 686 struct srd_decoder_inst *di;
fa12a21e
BV
687
688 di = NULL;
689 for (l = stack ? stack : di_list; di == NULL && l != NULL; l = l->next) {
690 di = l->data;
691 if (di->next_di)
a8b72b05
BV
692 srd_inst_free_all(di->next_di);
693 srd_inst_free(di);
fa12a21e
BV
694 }
695 if (!stack) {
696 g_slist_free(di_list);
697 di_list = NULL;
698 }
fa12a21e 699}
b2c19614 700
582c8473
BV
701/**
702 * Start a decoding session.
703 *
704 * Decoders, instances and stack must have been prepared beforehand.
705 *
706 * @param num_probes The number of probes which the incoming feed will contain.
707 * @param unitsize The number of bytes per sample in the incoming feed.
361fdcaa 708 * @param samplerate The samplerate of the incoming feed.
582c8473
BV
709 *
710 * @return SRD_OK upon success, a (negative) error code otherwise.
711 */
55c3c5f4 712SRD_API int srd_session_start(int num_probes, int unitsize, uint64_t samplerate)
7ce7775c
BV
713{
714 PyObject *args;
2072ae0c 715 GSList *d;
a8b72b05 716 struct srd_decoder_inst *di;
7ce7775c
BV
717 int ret;
718
7a1712c4
UH
719 srd_dbg("Calling start() on all instances with %d probes, "
720 "unitsize %d samplerate %d.", num_probes, unitsize, samplerate);
d906d3f9 721
361fdcaa
UH
722 /*
723 * Currently only one item of metadata is passed along to decoders,
d906d3f9
BV
724 * samplerate. This can be extended as needed.
725 */
7ce7775c 726 if (!(args = Py_BuildValue("{s:l}", "samplerate", (long)samplerate))) {
511e2123 727 srd_err("Unable to build Python object for metadata.");
7ce7775c
BV
728 return SRD_ERR_PYTHON;
729 }
730
731 /* Run the start() method on all decoders receiving frontend data. */
732 for (d = di_list; d; d = d->next) {
733 di = d->data;
f38ec285
BV
734 di->data_num_probes = num_probes;
735 di->data_unitsize = unitsize;
736 di->data_samplerate = samplerate;
a8b72b05 737 if ((ret = srd_inst_start(di, args) != SRD_OK))
2072ae0c 738 break;
7ce7775c
BV
739 }
740
d906d3f9 741 Py_DecRef(args);
7ce7775c 742
2072ae0c 743 return ret;
7ce7775c
BV
744}
745
582c8473 746/**
29dad0ac 747 * Send a chunk of logic sample data to a running decoder session.
582c8473
BV
748 *
749 * @param start_samplenum The sample number of the first sample in this chunk.
750 * @param inbuf Pointer to sample data.
751 * @param inbuf Length in bytes of the buffer.
752 *
753 * @return SRD_OK upon success, a (negative) error code otherwise.
754 */
29dad0ac 755SRD_API int srd_session_send(uint64_t start_samplenum, const uint8_t *inbuf,
55c3c5f4 756 uint64_t inbuflen)
b2c19614
BV
757{
758 GSList *d;
759 int ret;
760
7a1712c4 761 srd_dbg("Calling decode() on all instances with starting sample "
c9bfccc6
UH
762 "number %" PRIu64 ", %" PRIu64 " bytes at 0x%p",
763 start_samplenum, inbuflen, inbuf);
d906d3f9 764
e5080882 765 for (d = di_list; d; d = d->next) {
a8b72b05 766 if ((ret = srd_inst_decode(start_samplenum, d->data, inbuf,
361fdcaa 767 inbuflen)) != SRD_OK)
b2c19614
BV
768 return ret;
769 }
770
771 return SRD_OK;
772}
773
582c8473 774/**
b33b8aa5 775 * Register/add a decoder output callback function.
582c8473
BV
776 *
777 * The function will be called when a protocol decoder sends output back
778 * to the PD controller (except for Python objects, which only go up the
779 * stack).
780 *
781 * @param output_type The output type this callback will receive. Only one
4c1d0670 782 * callback per output type can be registered.
361fdcaa
UH
783 * @param cb The function to call. Must not be NULL.
784 * @param cb_data Private data for the callback function. Can be NULL.
582c8473 785 */
b33b8aa5
UH
786SRD_API int srd_pd_output_callback_add(int output_type,
787 srd_pd_output_callback_t cb, void *cb_data)
4fadb128
BV
788{
789 struct srd_pd_callback *pd_cb;
790
7a1712c4 791 srd_dbg("Registering new callback for output type %d.", output_type);
4fadb128 792
a61ece20
UH
793 if (!(pd_cb = g_try_malloc(sizeof(struct srd_pd_callback)))) {
794 srd_err("Failed to g_malloc() struct srd_pd_callback.");
4fadb128 795 return SRD_ERR_MALLOC;
a61ece20 796 }
4fadb128
BV
797
798 pd_cb->output_type = output_type;
4c1d0670 799 pd_cb->cb = cb;
41a5d962 800 pd_cb->cb_data = cb_data;
4fadb128
BV
801 callbacks = g_slist_append(callbacks, pd_cb);
802
803 return SRD_OK;
804}
805
b33b8aa5 806SRD_PRIV void *srd_pd_output_callback_find(int output_type)
4fadb128
BV
807{
808 GSList *l;
809 struct srd_pd_callback *pd_cb;
810 void *(cb);
811
812 cb = NULL;
813 for (l = callbacks; l; l = l->next) {
814 pd_cb = l->data;
815 if (pd_cb->output_type == output_type) {
4c1d0670 816 cb = pd_cb->cb;
4fadb128
BV
817 break;
818 }
819 }
820
821 return cb;
822}
823
511e2123 824/* This is the backend function to Python sigrokdecode.add() call. */
aafeeaea
UH
825SRD_PRIV int srd_inst_pd_output_add(struct srd_decoder_inst *di,
826 int output_type, const char *proto_id)
e5080882 827{
e5080882 828 struct srd_pd_output *pdo;
e5080882 829
7a1712c4 830 srd_dbg("Instance %s creating new output type %d for %s.",
a8b72b05 831 di->inst_id, output_type, proto_id);
d906d3f9 832
a61ece20
UH
833 if (!(pdo = g_try_malloc(sizeof(struct srd_pd_output)))) {
834 srd_err("Failed to g_malloc() struct srd_pd_output.");
e5080882 835 return -1;
a61ece20 836 }
e5080882 837
b231546d 838 /* pdo_id is just a simple index, nothing is deleted from this list anyway. */
15969949 839 pdo->pdo_id = g_slist_length(di->pd_output);
e5080882 840 pdo->output_type = output_type;
b3b2cae8 841 pdo->di = di;
94d43b37 842 pdo->proto_id = g_strdup(proto_id);
e5080882
BV
843 di->pd_output = g_slist_append(di->pd_output, pdo);
844
15969949 845 return pdo->pdo_id;
e5080882 846}