]> sigrok.org Git - libsigrokdecode.git/blame - instance.c
spi: Output per-bit annotations and OUTPUT_PYTHON data.
[libsigrokdecode.git] / instance.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
32cfb920 29/** @cond PRIVATE */
d906d3f9 30
fe9d91a8 31extern GSList *sessions;
b2c19614 32
c9bfccc6 33/* type_logic.c */
55c3c5f4 34extern SRD_PRIV PyTypeObject srd_logic_type;
b2c19614 35
57790bc8
UH
36/** @endcond */
37
b2c19614 38/**
190b71cf 39 * @file
8c664ca2 40 *
190b71cf 41 * Decoder instance handling.
b2c19614 42 */
4895418c
UH
43
44/**
45 * @defgroup grp_instances Decoder instances
46 *
47 * Decoder instance handling.
48 *
49 * @{
50 */
51
7ce7775c 52/**
b33b8aa5 53 * Set one or more options in a decoder instance.
0bdadba2 54 *
361fdcaa
UH
55 * Handled options are removed from the hash.
56 *
0bdadba2
BV
57 * @param di Decoder instance.
58 * @param options A GHashTable of options to set.
7ce7775c 59 *
0bdadba2 60 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
61 *
62 * @since 0.1.0
0bdadba2 63 */
b33b8aa5 64SRD_API int srd_inst_option_set(struct srd_decoder_inst *di,
0ff2d191 65 GHashTable *options)
0bdadba2
BV
66{
67 PyObject *py_dec_options, *py_dec_optkeys, *py_di_options, *py_optval;
68 PyObject *py_optlist, *py_classval;
69 Py_UNICODE *py_ustr;
2f395bff 70 GVariant *value;
0bdadba2 71 unsigned long long int val_ull;
2f395bff 72 gint64 val_int;
0bdadba2 73 int num_optkeys, ret, size, i;
2f395bff
BV
74 const char *val_str;
75 char *dbg, *key;
0bdadba2 76
3af0e345
UH
77 if (!di) {
78 srd_err("Invalid decoder instance.");
79 return SRD_ERR_ARG;
80 }
81
82 if (!options) {
83 srd_err("Invalid options GHashTable.");
84 return SRD_ERR_ARG;
85 }
86
c9bfccc6 87 if (!PyObject_HasAttrString(di->decoder->py_dec, "options")) {
0bdadba2 88 /* Decoder has no options. */
e431d9cc
BV
89 if (g_hash_table_size(options) == 0) {
90 /* No options provided. */
91 return SRD_OK;
92 } else {
93 srd_err("Protocol decoder has no options.");
94 return SRD_ERR_ARG;
95 }
0bdadba2 96 return SRD_OK;
e431d9cc 97 }
0bdadba2
BV
98
99 ret = SRD_ERR_PYTHON;
100 key = NULL;
101 py_dec_options = py_dec_optkeys = py_di_options = py_optval = NULL;
102 py_optlist = py_classval = NULL;
103 py_dec_options = PyObject_GetAttrString(di->decoder->py_dec, "options");
0bdadba2
BV
104
105 /* All of these are synthesized objects, so they're good. */
106 py_dec_optkeys = PyDict_Keys(py_dec_options);
107 num_optkeys = PyList_Size(py_dec_optkeys);
119d6258
BV
108
109 /*
110 * The 'options' dictionary is a class variable, but we need to
111 * change it. Changing it directly will affect the entire class,
112 * so we need to create a new object for it, and populate that
113 * instead.
114 */
a8b72b05 115 if (!(py_di_options = PyObject_GetAttrString(di->py_inst, "options")))
0bdadba2 116 goto err_out;
119d6258
BV
117 Py_DECREF(py_di_options);
118 py_di_options = PyDict_New();
119 PyObject_SetAttrString(di->py_inst, "options", py_di_options);
0bdadba2
BV
120 for (i = 0; i < num_optkeys; i++) {
121 /* Get the default class value for this option. */
122 py_str_as_str(PyList_GetItem(py_dec_optkeys, i), &key);
123 if (!(py_optlist = PyDict_GetItemString(py_dec_options, key)))
124 goto err_out;
125 if (!(py_classval = PyList_GetItem(py_optlist, 1)))
126 goto err_out;
130ef08a 127 if (!PyUnicode_Check(py_classval) && !PyLong_Check(py_classval)) {
c9bfccc6
UH
128 srd_err("Options of type %s are not yet supported.",
129 Py_TYPE(py_classval)->tp_name);
130ef08a
BV
130 goto err_out;
131 }
0bdadba2
BV
132
133 if ((value = g_hash_table_lookup(options, key))) {
2f395bff
BV
134 dbg = g_variant_print(value, TRUE);
135 srd_dbg("got option '%s' = %s", key, dbg);
136 g_free(dbg);
0bdadba2
BV
137 /* An override for this option was provided. */
138 if (PyUnicode_Check(py_classval)) {
2f395bff
BV
139 if (!g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
140 srd_err("Option '%s' requires a string value.", key);
141 goto err_out;
142 }
143 val_str = g_variant_get_string(value, NULL);
144 if (!(py_optval = PyUnicode_FromString(val_str))) {
0bdadba2
BV
145 /* Some UTF-8 encoding error. */
146 PyErr_Clear();
2f395bff 147 srd_err("Option '%s' requires a UTF-8 string value.", key);
0bdadba2
BV
148 goto err_out;
149 }
150 } else if (PyLong_Check(py_classval)) {
2f395bff
BV
151 if (!g_variant_is_of_type(value, G_VARIANT_TYPE_INT64)) {
152 srd_err("Option '%s' requires an integer value.", key);
153 goto err_out;
154 }
155 val_int = g_variant_get_int64(value);
156 if (!(py_optval = PyLong_FromLong(val_int))) {
0bdadba2
BV
157 /* ValueError Exception */
158 PyErr_Clear();
2f395bff 159 srd_err("Option '%s' has invalid integer value.", key);
0bdadba2
BV
160 goto err_out;
161 }
162 }
163 g_hash_table_remove(options, key);
164 } else {
165 /* Use the class default for this option. */
166 if (PyUnicode_Check(py_classval)) {
167 /* Make a brand new copy of the string. */
168 py_ustr = PyUnicode_AS_UNICODE(py_classval);
169 size = PyUnicode_GET_SIZE(py_classval);
170 py_optval = PyUnicode_FromUnicode(py_ustr, size);
171 } else if (PyLong_Check(py_classval)) {
172 /* Make a brand new copy of the integer. */
173 val_ull = PyLong_AsUnsignedLongLong(py_classval);
174 if (val_ull == (unsigned long long)-1) {
175 /* OverFlowError exception */
176 PyErr_Clear();
c9bfccc6
UH
177 srd_err("Invalid integer value for %s: "
178 "expected integer.", key);
0bdadba2
BV
179 goto err_out;
180 }
181 if (!(py_optval = PyLong_FromUnsignedLongLong(val_ull)))
182 goto err_out;
183 }
184 }
185
361fdcaa
UH
186 /*
187 * If we got here, py_optval holds a known good new reference
0bdadba2
BV
188 * to the instance option to set.
189 */
190 if (PyDict_SetItemString(py_di_options, key, py_optval) == -1)
191 goto err_out;
e592ac89 192 g_free(key);
b88e336b 193 key = NULL;
0bdadba2
BV
194 }
195
196 ret = SRD_OK;
197
198err_out:
0bdadba2
BV
199 Py_XDECREF(py_di_options);
200 Py_XDECREF(py_dec_optkeys);
201 Py_XDECREF(py_dec_options);
6f858319 202 g_free(key);
7fc7bde6 203 if (PyErr_Occurred()) {
aafeeaea 204 srd_exception_catch("Stray exception in srd_inst_option_set().");
7fc7bde6
BV
205 ret = SRD_ERR_PYTHON;
206 }
0bdadba2
BV
207
208 return ret;
209}
210
b33b8aa5 211/* Helper GComparefunc for g_slist_find_custom() in srd_inst_probe_set_all() */
abeeed8b 212static gint compare_probe_id(const struct srd_probe *a, const char *probe_id)
f38ec285 213{
f38ec285
BV
214 return strcmp(a->id, probe_id);
215}
216
0bdadba2 217/**
b33b8aa5
UH
218 * Set all probes in a decoder instance.
219 *
220 * This function sets _all_ probes for the specified decoder instance, i.e.,
221 * it overwrites any probes that were already defined (if any).
0bdadba2
BV
222 *
223 * @param di Decoder instance.
38ff5046
UH
224 * @param new_probes A GHashTable of probes to set. Key is probe name, value is
225 * the probe number. Samples passed to this instance will be
226 * arranged in this order.
12243c22 227 *
0bdadba2 228 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
229 *
230 * @since 0.1.0
0bdadba2 231 */
b33b8aa5 232SRD_API int srd_inst_probe_set_all(struct srd_decoder_inst *di,
0ff2d191 233 GHashTable *new_probes)
0bdadba2 234{
2f395bff 235 GVariant *probe_val;
f38ec285
BV
236 GList *l;
237 GSList *sl;
238 struct srd_probe *p;
ed416497 239 int *new_probemap, new_probenum, num_required_probes, num_probes, i;
2f395bff 240 char *probe_id;
0bdadba2 241
ce46beed 242 srd_dbg("set probes called for instance %s with list of %d probes",
a8b72b05 243 di->inst_id, g_hash_table_size(new_probes));
ce46beed 244
f38ec285 245 if (g_hash_table_size(new_probes) == 0)
0bdadba2
BV
246 /* No probes provided. */
247 return SRD_OK;
248
c9bfccc6 249 if (di->dec_num_probes == 0) {
0bdadba2 250 /* Decoder has no probes. */
f38ec285 251 srd_err("Protocol decoder %s has no probes to define.",
c9bfccc6 252 di->decoder->name);
f38ec285
BV
253 return SRD_ERR_ARG;
254 }
0bdadba2 255
f38ec285 256 new_probemap = NULL;
0bdadba2 257
f38ec285 258 if (!(new_probemap = g_try_malloc(sizeof(int) * di->dec_num_probes))) {
a61ece20 259 srd_err("Failed to g_malloc() new probe map.");
f38ec285 260 return SRD_ERR_MALLOC;
0bdadba2
BV
261 }
262
38ff5046
UH
263 /*
264 * For now, map all indexes to probe -1 (can be overridden later).
265 * This -1 is interpreted as an unspecified probe later.
266 */
267 for (i = 0; i < di->dec_num_probes; i++)
268 new_probemap[i] = -1;
269
ed416497 270 num_probes = 0;
f38ec285
BV
271 for (l = g_hash_table_get_keys(new_probes); l; l = l->next) {
272 probe_id = l->data;
69075817 273 probe_val = g_hash_table_lookup(new_probes, probe_id);
2f395bff 274 if (!g_variant_is_of_type(probe_val, G_VARIANT_TYPE_INT32)) {
be873260 275 /* Probe name was specified without a value. */
c9bfccc6 276 srd_err("No probe number was specified for %s.",
2f395bff 277 probe_id);
be873260
BV
278 g_free(new_probemap);
279 return SRD_ERR_ARG;
280 }
2f395bff 281 new_probenum = g_variant_get_int32(probe_val);
f38ec285
BV
282 if (!(sl = g_slist_find_custom(di->decoder->probes, probe_id,
283 (GCompareFunc)compare_probe_id))) {
284 /* Fall back on optional probes. */
dcdf4883 285 if (!(sl = g_slist_find_custom(di->decoder->opt_probes,
c9bfccc6
UH
286 probe_id, (GCompareFunc) compare_probe_id))) {
287 srd_err("Protocol decoder %s has no probe "
2f395bff 288 "'%s'.", di->decoder->name, probe_id);
f38ec285
BV
289 g_free(new_probemap);
290 return SRD_ERR_ARG;
291 }
292 }
293 p = sl->data;
294 new_probemap[p->order] = new_probenum;
38ff5046
UH
295 srd_dbg("Setting probe mapping: %s (index %d) = probe %d.",
296 p->id, p->order, new_probenum);
ed416497 297 num_probes++;
38ff5046 298 }
ed416497 299 di->data_unitsize = (num_probes + 7) / 8;
38ff5046
UH
300
301 srd_dbg("Final probe map:");
302 num_required_probes = g_slist_length(di->decoder->probes);
303 for (i = 0; i < di->dec_num_probes; i++) {
304 srd_dbg(" - index %d = probe %d (%s)", i, new_probemap[i],
305 (i < num_required_probes) ? "required" : "optional");
f38ec285 306 }
38ff5046 307
9bf7f71c
UH
308 /* Report an error if not all required probes were specified. */
309 for (i = 0; i < num_required_probes; i++) {
310 if (new_probemap[i] != -1)
311 continue;
312 p = g_slist_nth(di->decoder->probes, i)->data;
313 srd_err("Required probe '%s' (index %d) was not specified.",
314 p->id, i);
315 return SRD_ERR;
316 }
317
f38ec285
BV
318 g_free(di->dec_probemap);
319 di->dec_probemap = new_probemap;
0bdadba2 320
f38ec285 321 return SRD_OK;
0bdadba2
BV
322}
323
324/**
325 * Create a new protocol decoder instance.
7ce7775c 326 *
32cfb920 327 * @param sess The session holding the protocol decoder instance.
38ff5046 328 * @param decoder_id Decoder 'id' field.
0bdadba2 329 * @param options GHashtable of options which override the defaults set in
38ff5046 330 * the decoder class. May be NULL.
12243c22 331 *
a8b72b05 332 * @return Pointer to a newly allocated struct srd_decoder_inst, or
c9bfccc6 333 * NULL in case of failure.
8c664ca2 334 *
69075817 335 * @since 0.3.0
7ce7775c 336 */
32cfb920
BV
337SRD_API struct srd_decoder_inst *srd_inst_new(struct srd_session *sess,
338 const char *decoder_id, GHashTable *options)
b2c19614 339{
c9bfccc6 340 int i;
b2c19614 341 struct srd_decoder *dec;
a8b72b05
BV
342 struct srd_decoder_inst *di;
343 char *inst_id;
b2c19614 344
7a1712c4 345 srd_dbg("Creating new %s instance.", decoder_id);
7ce7775c 346
32cfb920
BV
347 if (session_is_valid(sess) != SRD_OK) {
348 srd_err("Invalid session.");
349 return NULL;
350 }
351
9d122fd5 352 if (!(dec = srd_decoder_get_by_id(decoder_id))) {
0bdadba2 353 srd_err("Protocol decoder %s not found.", decoder_id);
b2c19614 354 return NULL;
0bdadba2 355 }
b2c19614 356
a8b72b05 357 if (!(di = g_try_malloc0(sizeof(struct srd_decoder_inst)))) {
a61ece20 358 srd_err("Failed to g_malloc() instance.");
7ce7775c
BV
359 return NULL;
360 }
0bdadba2 361
b2c19614 362 di->decoder = dec;
32cfb920 363 di->sess = sess;
38ff5046
UH
364 if (options) {
365 inst_id = g_hash_table_lookup(options, "id");
366 di->inst_id = g_strdup(inst_id ? inst_id : decoder_id);
367 g_hash_table_remove(options, "id");
368 } else
369 di->inst_id = g_strdup(decoder_id);
b2c19614 370
361fdcaa
UH
371 /*
372 * Prepare a default probe map, where samples come in the
f38ec285
BV
373 * order in which the decoder class defined them.
374 */
375 di->dec_num_probes = g_slist_length(di->decoder->probes) +
69075817 376 g_slist_length(di->decoder->opt_probes);
19a90bab 377 if (di->dec_num_probes) {
c9bfccc6 378 if (!(di->dec_probemap =
69075817 379 g_try_malloc(sizeof(int) * di->dec_num_probes))) {
a61ece20 380 srd_err("Failed to g_malloc() probe map.");
19a90bab
BV
381 g_free(di);
382 return NULL;
383 }
384 for (i = 0; i < di->dec_num_probes; i++)
385 di->dec_probemap[i] = i;
37b94c20
BV
386 di->data_unitsize = (di->dec_num_probes + 7) / 8;
387 /*
388 * Will be used to prepare a sample at every iteration
389 * of the instance's decode() method.
390 */
391 if (!(di->probe_samples = g_try_malloc(di->dec_num_probes))) {
392 srd_err("Failed to g_malloc() sample buffer.");
393 g_free(di->dec_probemap);
394 g_free(di);
395 return NULL;
396 }
f38ec285 397 }
f38ec285 398
0bdadba2 399 /* Create a new instance of this decoder class. */
a8b72b05 400 if (!(di->py_inst = PyObject_CallObject(dec->py_dec, NULL))) {
b2c19614 401 if (PyErr_Occurred())
aafeeaea 402 srd_exception_catch("failed to create %s instance: ",
69075817 403 decoder_id);
f38ec285 404 g_free(di->dec_probemap);
0bdadba2 405 g_free(di);
7ce7775c 406 return NULL;
b2c19614 407 }
7ce7775c 408
38ff5046 409 if (options && srd_inst_option_set(di, options) != SRD_OK) {
f38ec285 410 g_free(di->dec_probemap);
0bdadba2
BV
411 g_free(di);
412 return NULL;
413 }
b2c19614 414
f38ec285 415 /* Instance takes input from a frontend by default. */
32cfb920 416 sess->di_list = g_slist_append(sess->di_list, di);
f38ec285 417
b2c19614
BV
418 return di;
419}
420
582c8473
BV
421/**
422 * Stack a decoder instance on top of another.
423 *
32cfb920 424 * @param sess The session holding the protocol decoder instances.
4d2c7619
BV
425 * @param di_bottom The instance on top of which di_top will be stacked.
426 * @param di_top The instance to go on top.
582c8473
BV
427 *
428 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2 429 *
69075817 430 * @since 0.3.0
582c8473 431 */
32cfb920 432SRD_API int srd_inst_stack(struct srd_session *sess,
4d2c7619
BV
433 struct srd_decoder_inst *di_bottom,
434 struct srd_decoder_inst *di_top)
7ce7775c 435{
32cfb920
BV
436
437 if (session_is_valid(sess) != SRD_OK) {
438 srd_err("Invalid session.");
439 return SRD_ERR_ARG;
440 }
441
4d2c7619 442 if (!di_bottom || !di_top) {
d906d3f9 443 srd_err("Invalid from/to instance pair.");
7ce7775c
BV
444 return SRD_ERR_ARG;
445 }
446
4d2c7619 447 if (g_slist_find(sess->di_list, di_top)) {
2072ae0c 448 /* Remove from the unstacked list. */
4d2c7619 449 sess->di_list = g_slist_remove(sess->di_list, di_top);
7ce7775c
BV
450 }
451
7ce7775c 452 /* Stack on top of source di. */
4d2c7619
BV
453 di_bottom->next_di = g_slist_append(di_bottom->next_di, di_top);
454
455 srd_dbg("Stacked %s on top of %s.", di_top->inst_id, di_bottom->inst_id);
7ce7775c
BV
456
457 return SRD_OK;
458}
459
2072ae0c 460/**
361fdcaa
UH
461 * Find a decoder instance by its instance ID.
462 *
463 * Only the bottom level of instances are searched -- instances already stacked
464 * on top of another one will not be found.
2072ae0c 465 *
32cfb920 466 * @param sess The session holding the protocol decoder instance.
ed2306a6 467 * @param inst_id The instance ID to be found.
2072ae0c 468 *
a8b72b05 469 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
8c664ca2 470 *
69075817 471 * @since 0.3.0
2072ae0c 472 */
32cfb920
BV
473SRD_API struct srd_decoder_inst *srd_inst_find_by_id(struct srd_session *sess,
474 const char *inst_id)
7ce7775c
BV
475{
476 GSList *l;
a8b72b05 477 struct srd_decoder_inst *tmp, *di;
b2c19614 478
32cfb920
BV
479 if (session_is_valid(sess) != SRD_OK) {
480 srd_err("Invalid session.");
481 return NULL;
482 }
483
7ce7775c 484 di = NULL;
32cfb920 485 for (l = sess->di_list; l; l = l->next) {
7ce7775c 486 tmp = l->data;
a8b72b05 487 if (!strcmp(tmp->inst_id, inst_id)) {
7ce7775c
BV
488 di = tmp;
489 break;
490 }
491 }
492
493 return di;
494}
495
32cfb920
BV
496static struct srd_decoder_inst *srd_sess_inst_find_by_obj(
497 struct srd_session *sess, const GSList *stack,
498 const PyObject *obj)
499{
500 const GSList *l;
501 struct srd_decoder_inst *tmp, *di;
502
503 if (session_is_valid(sess) != SRD_OK) {
504 srd_err("Invalid session.");
505 return NULL;
506 }
507
508 di = NULL;
509 for (l = stack ? stack : sess->di_list; di == NULL && l != NULL; l = l->next) {
510 tmp = l->data;
511 if (tmp->py_inst == obj)
512 di = tmp;
513 else if (tmp->next_di)
514 di = srd_sess_inst_find_by_obj(sess, tmp->next_di, obj);
515 }
516
517 return di;
518}
519
2072ae0c 520/**
361fdcaa
UH
521 * Find a decoder instance by its Python object.
522 *
523 * I.e. find that instance's instantiation of the sigrokdecode.Decoder class.
32cfb920
BV
524 * This will recurse to find the instance anywhere in the stack tree of all
525 * sessions.
2072ae0c 526 *
361fdcaa
UH
527 * @param stack Pointer to a GSList of struct srd_decoder_inst, indicating the
528 * stack to search. To start searching at the bottom level of
529 * decoder instances, pass NULL.
511e2123 530 * @param obj The Python class instantiation.
2072ae0c 531 *
a8b72b05 532 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
57790bc8
UH
533 *
534 * @private
8c664ca2
UH
535 *
536 * @since 0.1.0
2072ae0c 537 */
abeeed8b 538SRD_PRIV struct srd_decoder_inst *srd_inst_find_by_obj(const GSList *stack,
0ff2d191 539 const PyObject *obj)
2072ae0c 540{
32cfb920
BV
541 struct srd_decoder_inst *di;
542 struct srd_session *sess;
543 GSList *l;
2072ae0c
BV
544
545 di = NULL;
32cfb920
BV
546 for (l = sessions; di == NULL && l != NULL; l = l->next) {
547 sess = l->data;
548 di = srd_sess_inst_find_by_obj(sess, stack, obj);
2072ae0c
BV
549 }
550
551 return di;
552}
553
57790bc8 554/** @private */
ed416497 555SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di)
b2c19614 556{
ed416497 557 PyObject *py_res;
2072ae0c 558 GSList *l;
a8b72b05 559 struct srd_decoder_inst *next_di;
ed416497 560 int ret;
b2c19614 561
7a1712c4 562 srd_dbg("Calling start() method on protocol decoder instance %s.",
ed416497 563 di->inst_id);
b2c19614 564
ed416497 565 if (!(py_res = PyObject_CallMethod(di->py_inst, "start", NULL))) {
aafeeaea 566 srd_exception_catch("Protocol decoder instance %s: ",
ed416497 567 di->inst_id);
7ce7775c
BV
568 return SRD_ERR_PYTHON;
569 }
f38ec285 570 Py_DecRef(py_res);
7ce7775c 571
ed416497 572 /* Start all the PDs stacked on top of this one. */
2072ae0c
BV
573 for (l = di->next_di; l; l = l->next) {
574 next_di = l->data;
ed416497
BV
575 if ((ret = srd_inst_start(next_di)) != SRD_OK)
576 return ret;
2072ae0c
BV
577 }
578
b2c19614
BV
579 return SRD_OK;
580}
581
b2c19614
BV
582/**
583 * Run the specified decoder function.
584 *
ed416497 585 * @param di The decoder instance to call. Must not be NULL.
d906d3f9 586 * @param start_samplenum The starting sample number for the buffer's sample
7a1712c4 587 * set, relative to the start of capture.
ed416497
BV
588 * @param end_samplenum The ending sample number for the buffer's sample
589 * set, relative to the start of capture.
7a1712c4
UH
590 * @param inbuf The buffer to decode. Must not be NULL.
591 * @param inbuflen Length of the buffer. Must be > 0.
b2c19614
BV
592 *
593 * @return SRD_OK upon success, a (negative) error code otherwise.
57790bc8
UH
594 *
595 * @private
8c664ca2
UH
596 *
597 * @since 0.1.0
b2c19614 598 */
ed416497
BV
599SRD_PRIV int srd_inst_decode(const struct srd_decoder_inst *di,
600 uint64_t start_samplenum, uint64_t end_samplenum,
601 const uint8_t *inbuf, uint64_t inbuflen)
b2c19614 602{
d906d3f9 603 PyObject *py_res;
bc5f5a43 604 srd_logic *logic;
b2c19614 605
74bb0af5
UH
606 srd_dbg("Calling decode() on instance %s with %" PRIu64 " bytes "
607 "starting at sample %" PRIu64 ".", di->inst_id, inbuflen,
608 start_samplenum);
b2c19614 609
d906d3f9 610 /* Return an error upon unusable input. */
7a1712c4
UH
611 if (!di) {
612 srd_dbg("empty decoder instance");
d906d3f9
BV
613 return SRD_ERR_ARG;
614 }
7a1712c4
UH
615 if (!inbuf) {
616 srd_dbg("NULL buffer pointer");
d906d3f9
BV
617 return SRD_ERR_ARG;
618 }
619 if (inbuflen == 0) {
7a1712c4 620 srd_dbg("empty buffer");
d906d3f9
BV
621 return SRD_ERR_ARG;
622 }
b2c19614 623
361fdcaa
UH
624 /*
625 * Create new srd_logic object. Each iteration around the PD's loop
d906d3f9
BV
626 * will fill one sample into this object.
627 */
bc5f5a43
BV
628 logic = PyObject_New(srd_logic, &srd_logic_type);
629 Py_INCREF(logic);
abeeed8b 630 logic->di = (struct srd_decoder_inst *)di;
86528298 631 logic->start_samplenum = start_samplenum;
bc5f5a43 632 logic->itercnt = 0;
abeeed8b 633 logic->inbuf = (uint8_t *)inbuf;
bc5f5a43
BV
634 logic->inbuflen = inbuflen;
635 logic->sample = PyList_New(2);
636 Py_INCREF(logic->sample);
637
a8b72b05 638 Py_IncRef(di->py_inst);
a8b72b05 639 if (!(py_res = PyObject_CallMethod(di->py_inst, "decode",
ed416497
BV
640 "KKO", start_samplenum, end_samplenum, logic))) {
641 srd_exception_catch("Protocol decoder instance %s: ", di->inst_id);
0ff2d191 642 return SRD_ERR_PYTHON;
b2c19614 643 }
d906d3f9 644 Py_DecRef(py_res);
bc5f5a43 645
b2c19614
BV
646 return SRD_OK;
647}
648
57790bc8 649/** @private */
12243c22 650SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di)
fa12a21e
BV
651{
652 GSList *l;
653 struct srd_pd_output *pdo;
654
a8b72b05 655 srd_dbg("Freeing instance %s", di->inst_id);
fa12a21e 656
a8b72b05
BV
657 Py_DecRef(di->py_inst);
658 g_free(di->inst_id);
fa12a21e
BV
659 g_free(di->dec_probemap);
660 g_slist_free(di->next_di);
661 for (l = di->pd_output; l; l = l->next) {
662 pdo = l->data;
663 g_free(pdo->proto_id);
664 g_free(pdo);
665 }
666 g_slist_free(di->pd_output);
e592ac89 667 g_free(di);
fa12a21e
BV
668}
669
57790bc8 670/** @private */
32cfb920 671SRD_PRIV void srd_inst_free_all(struct srd_session *sess, GSList *stack)
fa12a21e
BV
672{
673 GSList *l;
a8b72b05 674 struct srd_decoder_inst *di;
fa12a21e 675
32cfb920
BV
676 if (session_is_valid(sess) != SRD_OK) {
677 srd_err("Invalid session.");
678 return;
679 }
680
fa12a21e 681 di = NULL;
32cfb920 682 for (l = stack ? stack : sess->di_list; di == NULL && l != NULL; l = l->next) {
fa12a21e
BV
683 di = l->data;
684 if (di->next_di)
32cfb920 685 srd_inst_free_all(sess, di->next_di);
a8b72b05 686 srd_inst_free(di);
fa12a21e
BV
687 }
688 if (!stack) {
32cfb920
BV
689 g_slist_free(sess->di_list);
690 sess->di_list = NULL;
fa12a21e 691 }
fa12a21e 692}
b2c19614 693
4895418c
UH
694/** @} */
695