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