]> sigrok.org Git - libsigrokdecode.git/blame - controller.c
Add initial sync parallel bus decoder.
[libsigrokdecode.git] / controller.c
CommitLineData
b2c19614 1/*
50bd5d25 2 * This file is part of the libsigrokdecode project.
b2c19614
BV
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
c1f86f02
UH
21#include "libsigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
22#include "libsigrokdecode-internal.h"
7ce7775c 23#include "config.h"
b2c19614 24#include <glib.h>
1aef2f93 25#include <inttypes.h>
0bdadba2 26#include <stdlib.h>
32cfb920 27#include <stdint.h>
b2c19614 28
d7dae84b
UH
29/**
30 * @mainpage libsigrokdecode API
31 *
32 * @section sec_intro Introduction
33 *
34 * The <a href="http://sigrok.org">sigrok</a> project aims at creating a
35 * portable, cross-platform, Free/Libre/Open-Source signal analysis software
36 * suite that supports various device types (such as logic analyzers,
37 * oscilloscopes, multimeters, and more).
38 *
39 * <a href="http://sigrok.org/wiki/Libsigrokdecode">libsigrokdecode</a> is a
40 * shared library written in C which provides the basic API for (streaming)
41 * protocol decoding functionality.
42 *
43 * The <a href="http://sigrok.org/wiki/Protocol_decoders">protocol decoders</a>
44 * are written in Python (>= 3.0).
45 *
46 * @section sec_api API reference
47 *
48 * See the "Modules" page for an introduction to various libsigrokdecode
49 * related topics and the detailed API documentation of the respective
50 * functions.
51 *
52 * You can also browse the API documentation by file, or review all
53 * data structures.
54 *
55 * @section sec_mailinglists Mailing lists
56 *
57 * 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>.
58 *
59 * @section sec_irc IRC
60 *
61 * You can find the sigrok developers in the
62 * <a href="irc://chat.freenode.net/sigrok">\#sigrok</a>
63 * IRC channel on Freenode.
64 *
65 * @section sec_website Website
66 *
67 * <a href="http://sigrok.org/wiki/Libsigrokdecode">sigrok.org/wiki/Libsigrokdecode</a>
68 */
69
70/**
71 * @file
72 *
73 * Initializing and shutting down libsigrokdecode.
74 */
75
76/**
77 * @defgroup grp_init Initialization
78 *
79 * Initializing and shutting down libsigrokdecode.
80 *
81 * Before using any of the libsigrokdecode functionality, srd_init() must
82 * be called to initialize the library.
83 *
84 * When libsigrokdecode functionality is no longer needed, srd_exit() should
85 * be called.
86 *
87 * @{
88 */
89
32cfb920 90/** @cond PRIVATE */
d906d3f9 91
32cfb920
BV
92SRD_PRIV GSList *sessions = NULL;
93static int max_session_id = -1;
983cb0f5 94
32cfb920 95static int session_is_valid(struct srd_session *sess);
57790bc8 96
c9bfccc6 97/* decoder.c */
55c3c5f4 98extern SRD_PRIV GSList *pd_list;
b2c19614 99
c9bfccc6 100/* module_sigrokdecode.c */
53a07a6d 101extern PyMODINIT_FUNC PyInit_sigrokdecode(void);
b2c19614 102
c9bfccc6 103/* type_logic.c */
55c3c5f4 104extern SRD_PRIV PyTypeObject srd_logic_type;
b2c19614 105
57790bc8
UH
106/** @endcond */
107
b2c19614
BV
108/**
109 * Initialize libsigrokdecode.
110 *
111 * This initializes the Python interpreter, and creates and initializes
361fdcaa 112 * a "sigrokdecode" Python module.
b2c19614 113 *
4cc0d9fe
UH
114 * Then, it searches for sigrok protocol decoders in the "decoders"
115 * subdirectory of the the libsigrokdecode installation directory.
b2c19614 116 * All decoders that are found are loaded into memory and added to an
4cc0d9fe 117 * internal list of decoders, which can be queried via srd_decoder_list().
b2c19614
BV
118 *
119 * The caller is responsible for calling the clean-up function srd_exit(),
120 * which will properly shut down libsigrokdecode and free its allocated memory.
121 *
7ce7775c 122 * Multiple calls to srd_init(), without calling srd_exit() in between,
b2c19614
BV
123 * are not allowed.
124 *
65e1c7d0 125 * @param path Path to an extra directory containing protocol decoders
4cc0d9fe 126 * which will be added to the Python sys.path. May be NULL.
65e1c7d0 127 *
b2c19614 128 * @return SRD_OK upon success, a (negative) error code otherwise.
4cc0d9fe
UH
129 * Upon Python errors, SRD_ERR_PYTHON is returned. If the decoders
130 * directory cannot be accessed, SRD_ERR_DECODERS_DIR is returned.
131 * If not enough memory could be allocated, SRD_ERR_MALLOC is returned.
8c664ca2
UH
132 *
133 * @since 0.1.0
b2c19614 134 */
abeeed8b 135SRD_API int srd_init(const char *path)
b2c19614
BV
136{
137 int ret;
65e1c7d0 138 char *env_path;
b2c19614 139
32cfb920
BV
140 if (max_session_id != -1) {
141 srd_err("libsigrokdecode is already initialized.");
142 return SRD_ERR;
143 }
144
7a1712c4 145 srd_dbg("Initializing libsigrokdecode.");
d906d3f9
BV
146
147 /* Add our own module to the list of built-in modules. */
bc5f5a43 148 PyImport_AppendInittab("sigrokdecode", PyInit_sigrokdecode);
5f802ec6 149
511e2123 150 /* Initialize the Python interpreter. */
b2c19614
BV
151 Py_Initialize();
152
65e1c7d0 153 /* Installed decoders. */
aafeeaea 154 if ((ret = srd_decoder_searchpath_add(DECODERS_DIR)) != SRD_OK) {
b2c19614
BV
155 Py_Finalize();
156 return ret;
157 }
158
65e1c7d0
BV
159 /* Path specified by the user. */
160 if (path) {
aafeeaea 161 if ((ret = srd_decoder_searchpath_add(path)) != SRD_OK) {
65e1c7d0
BV
162 Py_Finalize();
163 return ret;
164 }
165 }
166
167 /* Environment variable overrides everything, for debugging. */
168 if ((env_path = getenv("SIGROKDECODE_DIR"))) {
aafeeaea 169 if ((ret = srd_decoder_searchpath_add(env_path)) != SRD_OK) {
65e1c7d0
BV
170 Py_Finalize();
171 return ret;
172 }
173 }
174
32cfb920
BV
175 max_session_id = 0;
176
b2c19614
BV
177 return SRD_OK;
178}
179
b2c19614
BV
180/**
181 * Shutdown libsigrokdecode.
182 *
183 * This frees all the memory allocated for protocol decoders and shuts down
184 * the Python interpreter.
185 *
186 * This function should only be called if there was a (successful!) invocation
187 * of srd_init() before. Calling this function multiple times in a row, without
7ce7775c 188 * any successful srd_init() calls in between, is not allowed.
b2c19614
BV
189 *
190 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
191 *
192 * @since 0.1.0
b2c19614 193 */
55c3c5f4 194SRD_API int srd_exit(void)
b2c19614 195{
32cfb920
BV
196 GSList *l;
197
7a1712c4 198 srd_dbg("Exiting libsigrokdecode.");
d906d3f9 199
32cfb920
BV
200 for (l = sessions; l; l = l->next)
201 srd_session_destroy((struct srd_session *)l->data);
202
8ad6e500 203 srd_decoder_unload_all();
e5080882 204 g_slist_free(pd_list);
96c52595 205 pd_list = NULL;
b2c19614
BV
206
207 /* Py_Finalize() returns void, any finalization errors are ignored. */
208 Py_Finalize();
209
32cfb920
BV
210 max_session_id = -1;
211
b2c19614
BV
212 return SRD_OK;
213}
214
b2c19614 215/**
9d9fcb37
UH
216 * Add an additional search directory for the protocol decoders.
217 *
218 * The specified directory is prepended (not appended!) to Python's sys.path,
219 * in order to search for sigrok protocol decoders in the specified
220 * directories first, and in the generic Python module directories (and in
221 * the current working directory) last. This avoids conflicts if there are
222 * Python modules which have the same name as a sigrok protocol decoder in
223 * sys.path or in the current working directory.
b2c19614 224 *
361fdcaa
UH
225 * @param path Path to the directory containing protocol decoders which shall
226 * be added to the Python sys.path, or NULL.
9d9fcb37 227 *
65e1c7d0 228 * @return SRD_OK upon success, a (negative) error code otherwise.
57790bc8
UH
229 *
230 * @private
8c664ca2
UH
231 *
232 * @since 0.1.0
b2c19614 233 */
aafeeaea 234SRD_PRIV int srd_decoder_searchpath_add(const char *path)
b2c19614 235{
65e1c7d0
BV
236 PyObject *py_cur_path, *py_item;
237 GString *new_path;
238 int wc_len, i;
239 wchar_t *wc_new_path;
240 char *item;
241
8ad6e500 242 srd_dbg("Adding '%s' to module path.", path);
65e1c7d0
BV
243
244 new_path = g_string_sized_new(256);
e592ac89 245 g_string_assign(new_path, path);
65e1c7d0
BV
246 py_cur_path = PySys_GetObject("path");
247 for (i = 0; i < PyList_Size(py_cur_path); i++) {
e592ac89 248 g_string_append(new_path, G_SEARCHPATH_SEPARATOR_S);
65e1c7d0
BV
249 py_item = PyList_GetItem(py_cur_path, i);
250 if (!PyUnicode_Check(py_item))
251 /* Shouldn't happen. */
252 continue;
253 if (py_str_as_str(py_item, &item) != SRD_OK)
254 continue;
255 g_string_append(new_path, item);
e592ac89 256 g_free(item);
65e1c7d0 257 }
639c5689 258
65e1c7d0
BV
259 /* Convert to wide chars. */
260 wc_len = sizeof(wchar_t) * (new_path->len + 1);
261 if (!(wc_new_path = g_try_malloc(wc_len))) {
262 srd_dbg("malloc failed");
263 return SRD_ERR_MALLOC;
264 }
265 mbstowcs(wc_new_path, new_path->str, wc_len);
266 PySys_SetPath(wc_new_path);
267 g_string_free(new_path, TRUE);
268 g_free(wc_new_path);
269
65e1c7d0 270 return SRD_OK;
b2c19614
BV
271}
272
4895418c
UH
273/** @} */
274
275/**
276 * @defgroup grp_instances Decoder instances
277 *
278 * Decoder instance handling.
279 *
280 * @{
281 */
282
7ce7775c 283/**
b33b8aa5 284 * Set one or more options in a decoder instance.
0bdadba2 285 *
361fdcaa
UH
286 * Handled options are removed from the hash.
287 *
0bdadba2
BV
288 * @param di Decoder instance.
289 * @param options A GHashTable of options to set.
7ce7775c 290 *
0bdadba2 291 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
292 *
293 * @since 0.1.0
0bdadba2 294 */
b33b8aa5 295SRD_API int srd_inst_option_set(struct srd_decoder_inst *di,
0ff2d191 296 GHashTable *options)
0bdadba2
BV
297{
298 PyObject *py_dec_options, *py_dec_optkeys, *py_di_options, *py_optval;
299 PyObject *py_optlist, *py_classval;
300 Py_UNICODE *py_ustr;
2f395bff 301 GVariant *value;
0bdadba2 302 unsigned long long int val_ull;
2f395bff 303 gint64 val_int;
0bdadba2 304 int num_optkeys, ret, size, i;
2f395bff
BV
305 const char *val_str;
306 char *dbg, *key;
0bdadba2 307
c9bfccc6 308 if (!PyObject_HasAttrString(di->decoder->py_dec, "options")) {
0bdadba2 309 /* Decoder has no options. */
e431d9cc
BV
310 if (g_hash_table_size(options) == 0) {
311 /* No options provided. */
312 return SRD_OK;
313 } else {
314 srd_err("Protocol decoder has no options.");
315 return SRD_ERR_ARG;
316 }
0bdadba2 317 return SRD_OK;
e431d9cc 318 }
0bdadba2
BV
319
320 ret = SRD_ERR_PYTHON;
321 key = NULL;
322 py_dec_options = py_dec_optkeys = py_di_options = py_optval = NULL;
323 py_optlist = py_classval = NULL;
324 py_dec_options = PyObject_GetAttrString(di->decoder->py_dec, "options");
0bdadba2
BV
325
326 /* All of these are synthesized objects, so they're good. */
327 py_dec_optkeys = PyDict_Keys(py_dec_options);
328 num_optkeys = PyList_Size(py_dec_optkeys);
119d6258
BV
329
330 /*
331 * The 'options' dictionary is a class variable, but we need to
332 * change it. Changing it directly will affect the entire class,
333 * so we need to create a new object for it, and populate that
334 * instead.
335 */
a8b72b05 336 if (!(py_di_options = PyObject_GetAttrString(di->py_inst, "options")))
0bdadba2 337 goto err_out;
119d6258
BV
338 Py_DECREF(py_di_options);
339 py_di_options = PyDict_New();
340 PyObject_SetAttrString(di->py_inst, "options", py_di_options);
0bdadba2
BV
341 for (i = 0; i < num_optkeys; i++) {
342 /* Get the default class value for this option. */
343 py_str_as_str(PyList_GetItem(py_dec_optkeys, i), &key);
344 if (!(py_optlist = PyDict_GetItemString(py_dec_options, key)))
345 goto err_out;
346 if (!(py_classval = PyList_GetItem(py_optlist, 1)))
347 goto err_out;
130ef08a 348 if (!PyUnicode_Check(py_classval) && !PyLong_Check(py_classval)) {
c9bfccc6
UH
349 srd_err("Options of type %s are not yet supported.",
350 Py_TYPE(py_classval)->tp_name);
130ef08a
BV
351 goto err_out;
352 }
0bdadba2
BV
353
354 if ((value = g_hash_table_lookup(options, key))) {
2f395bff
BV
355 dbg = g_variant_print(value, TRUE);
356 srd_dbg("got option '%s' = %s", key, dbg);
357 g_free(dbg);
0bdadba2
BV
358 /* An override for this option was provided. */
359 if (PyUnicode_Check(py_classval)) {
2f395bff
BV
360 if (!g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
361 srd_err("Option '%s' requires a string value.", key);
362 goto err_out;
363 }
364 val_str = g_variant_get_string(value, NULL);
365 if (!(py_optval = PyUnicode_FromString(val_str))) {
0bdadba2
BV
366 /* Some UTF-8 encoding error. */
367 PyErr_Clear();
2f395bff 368 srd_err("Option '%s' requires a UTF-8 string value.", key);
0bdadba2
BV
369 goto err_out;
370 }
371 } else if (PyLong_Check(py_classval)) {
2f395bff
BV
372 if (!g_variant_is_of_type(value, G_VARIANT_TYPE_INT64)) {
373 srd_err("Option '%s' requires an integer value.", key);
374 goto err_out;
375 }
376 val_int = g_variant_get_int64(value);
377 if (!(py_optval = PyLong_FromLong(val_int))) {
0bdadba2
BV
378 /* ValueError Exception */
379 PyErr_Clear();
2f395bff 380 srd_err("Option '%s' has invalid integer value.", key);
0bdadba2
BV
381 goto err_out;
382 }
383 }
384 g_hash_table_remove(options, key);
385 } else {
386 /* Use the class default for this option. */
387 if (PyUnicode_Check(py_classval)) {
388 /* Make a brand new copy of the string. */
389 py_ustr = PyUnicode_AS_UNICODE(py_classval);
390 size = PyUnicode_GET_SIZE(py_classval);
391 py_optval = PyUnicode_FromUnicode(py_ustr, size);
392 } else if (PyLong_Check(py_classval)) {
393 /* Make a brand new copy of the integer. */
394 val_ull = PyLong_AsUnsignedLongLong(py_classval);
395 if (val_ull == (unsigned long long)-1) {
396 /* OverFlowError exception */
397 PyErr_Clear();
c9bfccc6
UH
398 srd_err("Invalid integer value for %s: "
399 "expected integer.", key);
0bdadba2
BV
400 goto err_out;
401 }
402 if (!(py_optval = PyLong_FromUnsignedLongLong(val_ull)))
403 goto err_out;
404 }
405 }
406
361fdcaa
UH
407 /*
408 * If we got here, py_optval holds a known good new reference
0bdadba2
BV
409 * to the instance option to set.
410 */
411 if (PyDict_SetItemString(py_di_options, key, py_optval) == -1)
412 goto err_out;
e592ac89 413 g_free(key);
b88e336b 414 key = NULL;
0bdadba2
BV
415 }
416
417 ret = SRD_OK;
418
419err_out:
0bdadba2
BV
420 Py_XDECREF(py_di_options);
421 Py_XDECREF(py_dec_optkeys);
422 Py_XDECREF(py_dec_options);
6f858319 423 g_free(key);
7fc7bde6 424 if (PyErr_Occurred()) {
aafeeaea 425 srd_exception_catch("Stray exception in srd_inst_option_set().");
7fc7bde6
BV
426 ret = SRD_ERR_PYTHON;
427 }
0bdadba2
BV
428
429 return ret;
430}
431
b33b8aa5 432/* Helper GComparefunc for g_slist_find_custom() in srd_inst_probe_set_all() */
abeeed8b 433static gint compare_probe_id(const struct srd_probe *a, const char *probe_id)
f38ec285 434{
f38ec285
BV
435 return strcmp(a->id, probe_id);
436}
437
0bdadba2 438/**
b33b8aa5
UH
439 * Set all probes in a decoder instance.
440 *
441 * This function sets _all_ probes for the specified decoder instance, i.e.,
442 * it overwrites any probes that were already defined (if any).
0bdadba2
BV
443 *
444 * @param di Decoder instance.
38ff5046
UH
445 * @param new_probes A GHashTable of probes to set. Key is probe name, value is
446 * the probe number. Samples passed to this instance will be
447 * arranged in this order.
12243c22 448 *
0bdadba2 449 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
450 *
451 * @since 0.1.0
0bdadba2 452 */
b33b8aa5 453SRD_API int srd_inst_probe_set_all(struct srd_decoder_inst *di,
0ff2d191 454 GHashTable *new_probes)
0bdadba2 455{
2f395bff 456 GVariant *probe_val;
f38ec285
BV
457 GList *l;
458 GSList *sl;
459 struct srd_probe *p;
460 int *new_probemap, new_probenum;
2f395bff 461 char *probe_id;
38ff5046 462 int i, num_required_probes;
0bdadba2 463
ce46beed 464 srd_dbg("set probes called for instance %s with list of %d probes",
a8b72b05 465 di->inst_id, g_hash_table_size(new_probes));
ce46beed 466
f38ec285 467 if (g_hash_table_size(new_probes) == 0)
0bdadba2
BV
468 /* No probes provided. */
469 return SRD_OK;
470
c9bfccc6 471 if (di->dec_num_probes == 0) {
0bdadba2 472 /* Decoder has no probes. */
f38ec285 473 srd_err("Protocol decoder %s has no probes to define.",
c9bfccc6 474 di->decoder->name);
f38ec285
BV
475 return SRD_ERR_ARG;
476 }
0bdadba2 477
f38ec285 478 new_probemap = NULL;
0bdadba2 479
f38ec285 480 if (!(new_probemap = g_try_malloc(sizeof(int) * di->dec_num_probes))) {
a61ece20 481 srd_err("Failed to g_malloc() new probe map.");
f38ec285 482 return SRD_ERR_MALLOC;
0bdadba2
BV
483 }
484
38ff5046
UH
485 /*
486 * For now, map all indexes to probe -1 (can be overridden later).
487 * This -1 is interpreted as an unspecified probe later.
488 */
489 for (i = 0; i < di->dec_num_probes; i++)
490 new_probemap[i] = -1;
491
f38ec285
BV
492 for (l = g_hash_table_get_keys(new_probes); l; l = l->next) {
493 probe_id = l->data;
2f395bff
BV
494 probe_val= g_hash_table_lookup(new_probes, probe_id);
495 if (!g_variant_is_of_type(probe_val, G_VARIANT_TYPE_INT32)) {
be873260 496 /* Probe name was specified without a value. */
c9bfccc6 497 srd_err("No probe number was specified for %s.",
2f395bff 498 probe_id);
be873260
BV
499 g_free(new_probemap);
500 return SRD_ERR_ARG;
501 }
2f395bff 502 new_probenum = g_variant_get_int32(probe_val);
f38ec285
BV
503 if (!(sl = g_slist_find_custom(di->decoder->probes, probe_id,
504 (GCompareFunc)compare_probe_id))) {
505 /* Fall back on optional probes. */
dcdf4883 506 if (!(sl = g_slist_find_custom(di->decoder->opt_probes,
c9bfccc6
UH
507 probe_id, (GCompareFunc) compare_probe_id))) {
508 srd_err("Protocol decoder %s has no probe "
2f395bff 509 "'%s'.", di->decoder->name, probe_id);
f38ec285
BV
510 g_free(new_probemap);
511 return SRD_ERR_ARG;
512 }
513 }
514 p = sl->data;
515 new_probemap[p->order] = new_probenum;
38ff5046
UH
516 srd_dbg("Setting probe mapping: %s (index %d) = probe %d.",
517 p->id, p->order, new_probenum);
518 }
519
520 srd_dbg("Final probe map:");
521 num_required_probes = g_slist_length(di->decoder->probes);
522 for (i = 0; i < di->dec_num_probes; i++) {
523 srd_dbg(" - index %d = probe %d (%s)", i, new_probemap[i],
524 (i < num_required_probes) ? "required" : "optional");
f38ec285 525 }
38ff5046 526
f38ec285
BV
527 g_free(di->dec_probemap);
528 di->dec_probemap = new_probemap;
0bdadba2 529
f38ec285 530 return SRD_OK;
0bdadba2
BV
531}
532
533/**
534 * Create a new protocol decoder instance.
7ce7775c 535 *
32cfb920 536 * @param sess The session holding the protocol decoder instance.
38ff5046 537 * @param decoder_id Decoder 'id' field.
0bdadba2 538 * @param options GHashtable of options which override the defaults set in
38ff5046 539 * the decoder class. May be NULL.
12243c22 540 *
a8b72b05 541 * @return Pointer to a newly allocated struct srd_decoder_inst, or
c9bfccc6 542 * NULL in case of failure.
8c664ca2 543 *
94bc9a83 544 * @since 0.1.0 (the API changed in 0.3.0, though)
7ce7775c 545 */
32cfb920
BV
546SRD_API struct srd_decoder_inst *srd_inst_new(struct srd_session *sess,
547 const char *decoder_id, GHashTable *options)
b2c19614 548{
c9bfccc6 549 int i;
b2c19614 550 struct srd_decoder *dec;
a8b72b05
BV
551 struct srd_decoder_inst *di;
552 char *inst_id;
b2c19614 553
7a1712c4 554 srd_dbg("Creating new %s instance.", decoder_id);
7ce7775c 555
32cfb920
BV
556 if (session_is_valid(sess) != SRD_OK) {
557 srd_err("Invalid session.");
558 return NULL;
559 }
560
9d122fd5 561 if (!(dec = srd_decoder_get_by_id(decoder_id))) {
0bdadba2 562 srd_err("Protocol decoder %s not found.", decoder_id);
b2c19614 563 return NULL;
0bdadba2 564 }
b2c19614 565
a8b72b05 566 if (!(di = g_try_malloc0(sizeof(struct srd_decoder_inst)))) {
a61ece20 567 srd_err("Failed to g_malloc() instance.");
7ce7775c
BV
568 return NULL;
569 }
0bdadba2 570
b2c19614 571 di->decoder = dec;
32cfb920 572 di->sess = sess;
38ff5046
UH
573 if (options) {
574 inst_id = g_hash_table_lookup(options, "id");
575 di->inst_id = g_strdup(inst_id ? inst_id : decoder_id);
576 g_hash_table_remove(options, "id");
577 } else
578 di->inst_id = g_strdup(decoder_id);
b2c19614 579
361fdcaa
UH
580 /*
581 * Prepare a default probe map, where samples come in the
f38ec285
BV
582 * order in which the decoder class defined them.
583 */
584 di->dec_num_probes = g_slist_length(di->decoder->probes) +
c9bfccc6 585 g_slist_length(di->decoder->opt_probes);
19a90bab 586 if (di->dec_num_probes) {
c9bfccc6
UH
587 if (!(di->dec_probemap =
588 g_try_malloc(sizeof(int) * di->dec_num_probes))) {
a61ece20 589 srd_err("Failed to g_malloc() probe map.");
19a90bab
BV
590 g_free(di);
591 return NULL;
592 }
593 for (i = 0; i < di->dec_num_probes; i++)
594 di->dec_probemap[i] = i;
f38ec285 595 }
f38ec285 596
0bdadba2 597 /* Create a new instance of this decoder class. */
a8b72b05 598 if (!(di->py_inst = PyObject_CallObject(dec->py_dec, NULL))) {
b2c19614 599 if (PyErr_Occurred())
aafeeaea
UH
600 srd_exception_catch("failed to create %s instance: ",
601 decoder_id);
f38ec285 602 g_free(di->dec_probemap);
0bdadba2 603 g_free(di);
7ce7775c 604 return NULL;
b2c19614 605 }
7ce7775c 606
38ff5046 607 if (options && srd_inst_option_set(di, options) != SRD_OK) {
f38ec285 608 g_free(di->dec_probemap);
0bdadba2
BV
609 g_free(di);
610 return NULL;
611 }
b2c19614 612
f38ec285 613 /* Instance takes input from a frontend by default. */
32cfb920 614 sess->di_list = g_slist_append(sess->di_list, di);
f38ec285 615
b2c19614
BV
616 return di;
617}
618
582c8473
BV
619/**
620 * Stack a decoder instance on top of another.
621 *
32cfb920 622 * @param sess The session holding the protocol decoder instances.
582c8473
BV
623 * @param di_from The instance to move.
624 * @param di_to The instance on top of which di_from will be stacked.
625 *
626 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2 627 *
94bc9a83 628 * @since 0.1.0 (the API changed in 0.3.0, though)
582c8473 629 */
32cfb920
BV
630SRD_API int srd_inst_stack(struct srd_session *sess,
631 struct srd_decoder_inst *di_from, struct srd_decoder_inst *di_to)
7ce7775c 632{
32cfb920
BV
633
634 if (session_is_valid(sess) != SRD_OK) {
635 srd_err("Invalid session.");
636 return SRD_ERR_ARG;
637 }
638
7ce7775c 639 if (!di_from || !di_to) {
d906d3f9 640 srd_err("Invalid from/to instance pair.");
7ce7775c
BV
641 return SRD_ERR_ARG;
642 }
643
32cfb920 644 if (g_slist_find(sess->di_list, di_to)) {
2072ae0c 645 /* Remove from the unstacked list. */
32cfb920 646 sess->di_list = g_slist_remove(sess->di_list, di_to);
7ce7775c
BV
647 }
648
7ce7775c
BV
649 /* Stack on top of source di. */
650 di_from->next_di = g_slist_append(di_from->next_di, di_to);
651
652 return SRD_OK;
653}
654
2072ae0c 655/**
361fdcaa
UH
656 * Find a decoder instance by its instance ID.
657 *
658 * Only the bottom level of instances are searched -- instances already stacked
659 * on top of another one will not be found.
2072ae0c 660 *
32cfb920 661 * @param sess The session holding the protocol decoder instance.
ed2306a6 662 * @param inst_id The instance ID to be found.
2072ae0c 663 *
a8b72b05 664 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
8c664ca2 665 *
94bc9a83 666 * @since 0.1.0 (the API changed in 0.3.0, though)
2072ae0c 667 */
32cfb920
BV
668SRD_API struct srd_decoder_inst *srd_inst_find_by_id(struct srd_session *sess,
669 const char *inst_id)
7ce7775c
BV
670{
671 GSList *l;
a8b72b05 672 struct srd_decoder_inst *tmp, *di;
b2c19614 673
32cfb920
BV
674 if (session_is_valid(sess) != SRD_OK) {
675 srd_err("Invalid session.");
676 return NULL;
677 }
678
7ce7775c 679 di = NULL;
32cfb920 680 for (l = sess->di_list; l; l = l->next) {
7ce7775c 681 tmp = l->data;
a8b72b05 682 if (!strcmp(tmp->inst_id, inst_id)) {
7ce7775c
BV
683 di = tmp;
684 break;
685 }
686 }
687
688 return di;
689}
690
32cfb920
BV
691static struct srd_decoder_inst *srd_sess_inst_find_by_obj(
692 struct srd_session *sess, const GSList *stack,
693 const PyObject *obj)
694{
695 const GSList *l;
696 struct srd_decoder_inst *tmp, *di;
697
698 if (session_is_valid(sess) != SRD_OK) {
699 srd_err("Invalid session.");
700 return NULL;
701 }
702
703 di = NULL;
704 for (l = stack ? stack : sess->di_list; di == NULL && l != NULL; l = l->next) {
705 tmp = l->data;
706 if (tmp->py_inst == obj)
707 di = tmp;
708 else if (tmp->next_di)
709 di = srd_sess_inst_find_by_obj(sess, tmp->next_di, obj);
710 }
711
712 return di;
713}
714
2072ae0c 715/**
361fdcaa
UH
716 * Find a decoder instance by its Python object.
717 *
718 * I.e. find that instance's instantiation of the sigrokdecode.Decoder class.
32cfb920
BV
719 * This will recurse to find the instance anywhere in the stack tree of all
720 * sessions.
2072ae0c 721 *
361fdcaa
UH
722 * @param stack Pointer to a GSList of struct srd_decoder_inst, indicating the
723 * stack to search. To start searching at the bottom level of
724 * decoder instances, pass NULL.
511e2123 725 * @param obj The Python class instantiation.
2072ae0c 726 *
a8b72b05 727 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
57790bc8
UH
728 *
729 * @private
8c664ca2
UH
730 *
731 * @since 0.1.0
2072ae0c 732 */
abeeed8b 733SRD_PRIV struct srd_decoder_inst *srd_inst_find_by_obj(const GSList *stack,
0ff2d191 734 const PyObject *obj)
2072ae0c 735{
32cfb920
BV
736 struct srd_decoder_inst *di;
737 struct srd_session *sess;
738 GSList *l;
2072ae0c
BV
739
740 di = NULL;
32cfb920
BV
741 for (l = sessions; di == NULL && l != NULL; l = l->next) {
742 sess = l->data;
743 di = srd_sess_inst_find_by_obj(sess, stack, obj);
2072ae0c
BV
744 }
745
746 return di;
747}
748
57790bc8 749/** @private */
ee4ed227 750SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di, PyObject *args)
b2c19614 751{
7ce7775c 752 PyObject *py_name, *py_res;
2072ae0c 753 GSList *l;
a8b72b05 754 struct srd_decoder_inst *next_di;
b2c19614 755
7a1712c4 756 srd_dbg("Calling start() method on protocol decoder instance %s.",
a8b72b05 757 di->inst_id);
b2c19614 758
7ce7775c 759 if (!(py_name = PyUnicode_FromString("start"))) {
511e2123 760 srd_err("Unable to build Python object for 'start'.");
aafeeaea
UH
761 srd_exception_catch("Protocol decoder instance %s: ",
762 di->inst_id);
7ce7775c
BV
763 return SRD_ERR_PYTHON;
764 }
765
a8b72b05 766 if (!(py_res = PyObject_CallMethodObjArgs(di->py_inst,
c9bfccc6 767 py_name, args, NULL))) {
aafeeaea
UH
768 srd_exception_catch("Protocol decoder instance %s: ",
769 di->inst_id);
7ce7775c 770 return SRD_ERR_PYTHON;
b2c19614
BV
771 }
772
f38ec285
BV
773 Py_DecRef(py_res);
774 Py_DecRef(py_name);
7ce7775c 775
361fdcaa
UH
776 /*
777 * Start all the PDs stacked on top of this one. Pass along the
2072ae0c
BV
778 * metadata all the way from the bottom PD, even though it's only
779 * applicable to logic data for now.
780 */
781 for (l = di->next_di; l; l = l->next) {
782 next_di = l->data;
a8b72b05 783 srd_inst_start(next_di, args);
2072ae0c
BV
784 }
785
b2c19614
BV
786 return SRD_OK;
787}
788
b2c19614
BV
789/**
790 * Run the specified decoder function.
791 *
d906d3f9 792 * @param start_samplenum The starting sample number for the buffer's sample
7a1712c4
UH
793 * set, relative to the start of capture.
794 * @param di The decoder instance to call. Must not be NULL.
795 * @param inbuf The buffer to decode. Must not be NULL.
796 * @param inbuflen Length of the buffer. Must be > 0.
b2c19614
BV
797 *
798 * @return SRD_OK upon success, a (negative) error code otherwise.
57790bc8
UH
799 *
800 * @private
8c664ca2
UH
801 *
802 * @since 0.1.0
b2c19614 803 */
12243c22 804SRD_PRIV int srd_inst_decode(uint64_t start_samplenum,
0ff2d191
BV
805 const struct srd_decoder_inst *di, const uint8_t *inbuf,
806 uint64_t inbuflen)
b2c19614 807{
d906d3f9 808 PyObject *py_res;
bc5f5a43 809 srd_logic *logic;
86528298 810 uint64_t end_samplenum;
b2c19614 811
7a1712c4 812 srd_dbg("Calling decode() on instance %s with %d bytes starting "
a8b72b05 813 "at sample %d.", di->inst_id, inbuflen, start_samplenum);
b2c19614 814
d906d3f9 815 /* Return an error upon unusable input. */
7a1712c4
UH
816 if (!di) {
817 srd_dbg("empty decoder instance");
d906d3f9
BV
818 return SRD_ERR_ARG;
819 }
7a1712c4
UH
820 if (!inbuf) {
821 srd_dbg("NULL buffer pointer");
d906d3f9
BV
822 return SRD_ERR_ARG;
823 }
824 if (inbuflen == 0) {
7a1712c4 825 srd_dbg("empty buffer");
d906d3f9
BV
826 return SRD_ERR_ARG;
827 }
b2c19614 828
361fdcaa
UH
829 /*
830 * Create new srd_logic object. Each iteration around the PD's loop
d906d3f9
BV
831 * will fill one sample into this object.
832 */
bc5f5a43
BV
833 logic = PyObject_New(srd_logic, &srd_logic_type);
834 Py_INCREF(logic);
abeeed8b 835 logic->di = (struct srd_decoder_inst *)di;
86528298 836 logic->start_samplenum = start_samplenum;
bc5f5a43 837 logic->itercnt = 0;
abeeed8b 838 logic->inbuf = (uint8_t *)inbuf;
bc5f5a43
BV
839 logic->inbuflen = inbuflen;
840 logic->sample = PyList_New(2);
841 Py_INCREF(logic->sample);
842
a8b72b05 843 Py_IncRef(di->py_inst);
f38ec285 844 end_samplenum = start_samplenum + inbuflen / di->data_unitsize;
a8b72b05 845 if (!(py_res = PyObject_CallMethod(di->py_inst, "decode",
c9bfccc6
UH
846 "KKO", logic->start_samplenum,
847 end_samplenum, logic))) {
aafeeaea
UH
848 srd_exception_catch("Protocol decoder instance %s: ",
849 di->inst_id);
0ff2d191 850 return SRD_ERR_PYTHON;
b2c19614 851 }
d906d3f9 852 Py_DecRef(py_res);
bc5f5a43 853
b2c19614
BV
854 return SRD_OK;
855}
856
57790bc8 857/** @private */
12243c22 858SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di)
fa12a21e
BV
859{
860 GSList *l;
861 struct srd_pd_output *pdo;
862
a8b72b05 863 srd_dbg("Freeing instance %s", di->inst_id);
fa12a21e 864
a8b72b05
BV
865 Py_DecRef(di->py_inst);
866 g_free(di->inst_id);
fa12a21e
BV
867 g_free(di->dec_probemap);
868 g_slist_free(di->next_di);
869 for (l = di->pd_output; l; l = l->next) {
870 pdo = l->data;
871 g_free(pdo->proto_id);
872 g_free(pdo);
873 }
874 g_slist_free(di->pd_output);
e592ac89 875 g_free(di);
fa12a21e
BV
876}
877
57790bc8 878/** @private */
32cfb920 879SRD_PRIV void srd_inst_free_all(struct srd_session *sess, GSList *stack)
fa12a21e
BV
880{
881 GSList *l;
a8b72b05 882 struct srd_decoder_inst *di;
fa12a21e 883
32cfb920
BV
884 if (session_is_valid(sess) != SRD_OK) {
885 srd_err("Invalid session.");
886 return;
887 }
888
fa12a21e 889 di = NULL;
32cfb920 890 for (l = stack ? stack : sess->di_list; di == NULL && l != NULL; l = l->next) {
fa12a21e
BV
891 di = l->data;
892 if (di->next_di)
32cfb920 893 srd_inst_free_all(sess, di->next_di);
a8b72b05 894 srd_inst_free(di);
fa12a21e
BV
895 }
896 if (!stack) {
32cfb920
BV
897 g_slist_free(sess->di_list);
898 sess->di_list = NULL;
fa12a21e 899 }
fa12a21e 900}
b2c19614 901
4895418c
UH
902/** @} */
903
904/**
905 * @defgroup grp_session Session handling
906 *
907 * Starting and handling decoding sessions.
908 *
909 * @{
910 */
911
32cfb920
BV
912static int session_is_valid(struct srd_session *sess)
913{
914
915 if (!sess || sess->session_id < 1)
916 return SRD_ERR;
917
918 return SRD_OK;
919}
920
921/**
922 * Create a decoding session.
923 *
924 * A session holds all decoder instances, their stack relationships and
925 * output callbacks.
926 *
94bc9a83
UH
927 * @param sess A pointer which will hold a pointer to a newly
928 * initialized session on return.
32cfb920
BV
929 *
930 * @return SRD_OK upon success, a (negative) error code otherwise.
931 *
932 * @since 0.3.0
933 */
934SRD_API int srd_session_new(struct srd_session **sess)
935{
936
937 if (!sess) {
938 srd_err("Invalid session pointer.");
939 return SRD_ERR;
940 }
941
942 if (!(*sess = g_try_malloc(sizeof(struct srd_session))))
943 return SRD_ERR_MALLOC;
944 (*sess)->session_id = ++max_session_id;
945 (*sess)->num_probes = (*sess)->unitsize = (*sess)->samplerate = 0;
946 (*sess)->di_list = (*sess)->callbacks = NULL;
947
948 /* Keep a list of all sessions, so we can clean up as needed. */
949 sessions = g_slist_append(sessions, *sess);
950
951 srd_dbg("Created session %d.", (*sess)->session_id);
952
953 return SRD_OK;
954}
955
582c8473
BV
956/**
957 * Start a decoding session.
958 *
32cfb920
BV
959 * Decoders, instances and stack must have been prepared beforehand,
960 * and all SRD_CONF parameters set.
582c8473 961 *
32cfb920 962 * @param sess The session to start.
582c8473
BV
963 *
964 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2 965 *
94bc9a83 966 * @since 0.1.0 (the API changed in 0.3.0, though)
582c8473 967 */
32cfb920 968SRD_API int srd_session_start(struct srd_session *sess)
7ce7775c
BV
969{
970 PyObject *args;
2072ae0c 971 GSList *d;
a8b72b05 972 struct srd_decoder_inst *di;
7ce7775c
BV
973 int ret;
974
32cfb920
BV
975 if (session_is_valid(sess) != SRD_OK) {
976 srd_err("Invalid session pointer.");
977 return SRD_ERR;
978 }
979 if (sess->num_probes == 0) {
980 srd_err("Session has invalid number of probes.");
981 return SRD_ERR;
982 }
983 if (sess->unitsize == 0) {
984 srd_err("Session has invalid unitsize.");
985 return SRD_ERR;
986 }
987 if (sess->samplerate == 0) {
988 srd_err("Session has invalid samplerate.");
989 return SRD_ERR;
990 }
991
38ff5046
UH
992 ret = SRD_OK;
993
32cfb920 994 srd_dbg("Calling start() on all instances in session %d with "
94bc9a83 995 "%d probes, unitsize %d, samplerate %d.", sess->session_id,
32cfb920 996 sess->num_probes, sess->unitsize, sess->samplerate);
d906d3f9 997
361fdcaa
UH
998 /*
999 * Currently only one item of metadata is passed along to decoders,
d906d3f9
BV
1000 * samplerate. This can be extended as needed.
1001 */
32cfb920 1002 if (!(args = Py_BuildValue("{s:l}", "samplerate", (long)sess->samplerate))) {
511e2123 1003 srd_err("Unable to build Python object for metadata.");
7ce7775c
BV
1004 return SRD_ERR_PYTHON;
1005 }
1006
1007 /* Run the start() method on all decoders receiving frontend data. */
32cfb920 1008 for (d = sess->di_list; d; d = d->next) {
7ce7775c 1009 di = d->data;
32cfb920
BV
1010 di->data_num_probes = sess->num_probes;
1011 di->data_unitsize = sess->unitsize;
1012 di->data_samplerate = sess->samplerate;
38ff5046 1013 if ((ret = srd_inst_start(di, args)) != SRD_OK)
2072ae0c 1014 break;
7ce7775c
BV
1015 }
1016
d906d3f9 1017 Py_DecRef(args);
7ce7775c 1018
2072ae0c 1019 return ret;
7ce7775c
BV
1020}
1021
32cfb920
BV
1022/**
1023 * Set a configuration key in a session.
1024 *
1025 * @param sess The session to configure.
1026 * @param key The configuration key (SRD_CONF_*).
1027 * @param data The new value for the key, as a GVariant with GVariantType
1028 * appropriate to that key. A floating reference can be passed
1029 * in; its refcount will be sunk and unreferenced after use.
1030 *
1031 * @return SRD_OK upon success, a (negative) error code otherwise.
1032 *
1033 * @since 0.3.0
1034 */
1035SRD_API int srd_session_config_set(struct srd_session *sess, int key,
1036 GVariant *data)
1037{
1038
1039 if (session_is_valid(sess) != SRD_OK) {
1040 srd_err("Invalid session.");
1041 return SRD_ERR_ARG;
1042 }
1043
1044 if (!g_variant_is_of_type(data, G_VARIANT_TYPE_UINT64)) {
1045 srd_err("Value for key %d should be of type uint64.");
1046 return SRD_ERR_ARG;
1047 }
1048
1049 switch (key) {
1050 case SRD_CONF_NUM_PROBES:
1051 sess->num_probes = g_variant_get_uint64(data);
1052 break;
1053 case SRD_CONF_UNITSIZE:
1054 sess->unitsize = g_variant_get_uint64(data);
1055 break;
1056 case SRD_CONF_SAMPLERATE:
1057 sess->samplerate = g_variant_get_uint64(data);
1058 break;
1059 }
1060
1061 g_variant_unref(data);
1062
1063 return SRD_OK;
1064}
1065
582c8473 1066/**
29dad0ac 1067 * Send a chunk of logic sample data to a running decoder session.
582c8473 1068 *
32cfb920 1069 * @param sess The session to use.
582c8473
BV
1070 * @param start_samplenum The sample number of the first sample in this chunk.
1071 * @param inbuf Pointer to sample data.
38ff5046 1072 * @param inbuflen Length in bytes of the buffer.
582c8473
BV
1073 *
1074 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
1075 *
1076 * @since 0.1.0
582c8473 1077 */
32cfb920
BV
1078SRD_API int srd_session_send(struct srd_session *sess, uint64_t start_samplenum,
1079 const uint8_t *inbuf, uint64_t inbuflen)
b2c19614
BV
1080{
1081 GSList *d;
1082 int ret;
1083
32cfb920
BV
1084 if (session_is_valid(sess) != SRD_OK) {
1085 srd_err("Invalid session.");
1086 return SRD_ERR_ARG;
1087 }
1088
7a1712c4 1089 srd_dbg("Calling decode() on all instances with starting sample "
c9bfccc6
UH
1090 "number %" PRIu64 ", %" PRIu64 " bytes at 0x%p",
1091 start_samplenum, inbuflen, inbuf);
d906d3f9 1092
32cfb920 1093 for (d = sess->di_list; d; d = d->next) {
a8b72b05 1094 if ((ret = srd_inst_decode(start_samplenum, d->data, inbuf,
361fdcaa 1095 inbuflen)) != SRD_OK)
b2c19614
BV
1096 return ret;
1097 }
1098
1099 return SRD_OK;
1100}
1101
32cfb920
BV
1102/**
1103 * Destroy a decoding session.
1104 *
1105 * All decoder instances and output callbacks are properly released.
1106 *
94bc9a83 1107 * @param sess The session to be destroyed.
32cfb920
BV
1108 *
1109 * @return SRD_OK upon success, a (negative) error code otherwise.
1110 *
94bc9a83 1111 * @since 0.3.0
32cfb920
BV
1112 */
1113SRD_API int srd_session_destroy(struct srd_session *sess)
1114{
1115 int session_id;
1116
1117 session_id = sess->session_id;
1118 if (sess->di_list)
1119 srd_inst_free_all(sess, NULL);
1120 if (sess->callbacks)
1121 g_slist_free_full(sess->callbacks, g_free);
1122 sessions = g_slist_remove(sessions, sess);
1123 g_free(sess);
1124
1125 srd_dbg("Destroyed session %d.", session_id);
1126
1127 return SRD_OK;
1128}
1129
582c8473 1130/**
b33b8aa5 1131 * Register/add a decoder output callback function.
582c8473
BV
1132 *
1133 * The function will be called when a protocol decoder sends output back
1134 * to the PD controller (except for Python objects, which only go up the
1135 * stack).
1136 *
32cfb920 1137 * @param sess The output session in which to register the callback.
582c8473 1138 * @param output_type The output type this callback will receive. Only one
4c1d0670 1139 * callback per output type can be registered.
361fdcaa
UH
1140 * @param cb The function to call. Must not be NULL.
1141 * @param cb_data Private data for the callback function. Can be NULL.
8c664ca2 1142 *
94bc9a83 1143 * @since 0.1.0 (the API changed in 0.3.0, though)
582c8473 1144 */
32cfb920
BV
1145SRD_API int srd_pd_output_callback_add(struct srd_session *sess,
1146 int output_type, srd_pd_output_callback_t cb, void *cb_data)
4fadb128
BV
1147{
1148 struct srd_pd_callback *pd_cb;
1149
32cfb920
BV
1150 if (session_is_valid(sess) != SRD_OK) {
1151 srd_err("Invalid session.");
1152 return SRD_ERR_ARG;
1153 }
1154
7a1712c4 1155 srd_dbg("Registering new callback for output type %d.", output_type);
4fadb128 1156
a61ece20
UH
1157 if (!(pd_cb = g_try_malloc(sizeof(struct srd_pd_callback)))) {
1158 srd_err("Failed to g_malloc() struct srd_pd_callback.");
4fadb128 1159 return SRD_ERR_MALLOC;
a61ece20 1160 }
4fadb128
BV
1161
1162 pd_cb->output_type = output_type;
4c1d0670 1163 pd_cb->cb = cb;
41a5d962 1164 pd_cb->cb_data = cb_data;
32cfb920 1165 sess->callbacks = g_slist_append(sess->callbacks, pd_cb);
4fadb128
BV
1166
1167 return SRD_OK;
1168}
1169
57790bc8 1170/** @private */
32cfb920
BV
1171SRD_PRIV struct srd_pd_callback *srd_pd_output_callback_find(
1172 struct srd_session *sess, int output_type)
4fadb128
BV
1173{
1174 GSList *l;
2994587f 1175 struct srd_pd_callback *tmp, *pd_cb;
4fadb128 1176
32cfb920
BV
1177 if (session_is_valid(sess) != SRD_OK) {
1178 srd_err("Invalid session.");
1179 return NULL;
1180 }
1181
2994587f 1182 pd_cb = NULL;
32cfb920 1183 for (l = sess->callbacks; l; l = l->next) {
2994587f
BV
1184 tmp = l->data;
1185 if (tmp->output_type == output_type) {
1186 pd_cb = tmp;
4fadb128
BV
1187 break;
1188 }
1189 }
1190
2994587f 1191 return pd_cb;
4fadb128
BV
1192}
1193
511e2123 1194/* This is the backend function to Python sigrokdecode.add() call. */
57790bc8 1195/** @private */
aafeeaea
UH
1196SRD_PRIV int srd_inst_pd_output_add(struct srd_decoder_inst *di,
1197 int output_type, const char *proto_id)
e5080882 1198{
e5080882 1199 struct srd_pd_output *pdo;
e5080882 1200
7a1712c4 1201 srd_dbg("Instance %s creating new output type %d for %s.",
a8b72b05 1202 di->inst_id, output_type, proto_id);
d906d3f9 1203
a61ece20
UH
1204 if (!(pdo = g_try_malloc(sizeof(struct srd_pd_output)))) {
1205 srd_err("Failed to g_malloc() struct srd_pd_output.");
e5080882 1206 return -1;
a61ece20 1207 }
e5080882 1208
b231546d 1209 /* pdo_id is just a simple index, nothing is deleted from this list anyway. */
15969949 1210 pdo->pdo_id = g_slist_length(di->pd_output);
e5080882 1211 pdo->output_type = output_type;
b3b2cae8 1212 pdo->di = di;
94d43b37 1213 pdo->proto_id = g_strdup(proto_id);
e5080882
BV
1214 di->pd_output = g_slist_append(di->pd_output, pdo);
1215
15969949 1216 return pdo->pdo_id;
e5080882 1217}
d7dae84b
UH
1218
1219/** @} */