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