]> sigrok.org Git - libsigrokdecode.git/blame - instance.c
srd_inst_stack(): Warn upon potentially incorrect stacking.
[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
36784362 21#include <config.h>
f6c7eade
MC
22#include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
23#include "libsigrokdecode.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
23a29d24 31extern SRD_PRIV GSList *sessions;
b2c19614 32
57790bc8
UH
33/** @endcond */
34
b2c19614 35/**
190b71cf 36 * @file
8c664ca2 37 *
190b71cf 38 * Decoder instance handling.
b2c19614 39 */
4895418c
UH
40
41/**
42 * @defgroup grp_instances Decoder instances
43 *
44 * Decoder instance handling.
45 *
46 * @{
47 */
48
0dba8d30
UH
49static void oldpins_array_seed(struct srd_decoder_inst *di)
50{
51 size_t count;
52 GArray *arr;
53
54 if (!di)
55 return;
56 if (di->old_pins_array)
57 return;
58
59 count = di->dec_num_channels;
60 arr = g_array_sized_new(FALSE, TRUE, sizeof(uint8_t), count);
61 g_array_set_size(arr, count);
62 memset(arr->data, SRD_INITIAL_PIN_SAME_AS_SAMPLE0, count);
63 di->old_pins_array = arr;
64}
65
66static void oldpins_array_free(struct srd_decoder_inst *di)
67{
68 if (!di)
69 return;
70 if (!di->old_pins_array)
71 return;
72
73 srd_dbg("%s: Releasing initial pin state.", di->inst_id);
74
75 g_array_free(di->old_pins_array, TRUE);
76 di->old_pins_array = NULL;
77}
78
7ce7775c 79/**
b33b8aa5 80 * Set one or more options in a decoder instance.
0bdadba2 81 *
361fdcaa
UH
82 * Handled options are removed from the hash.
83 *
0bdadba2
BV
84 * @param di Decoder instance.
85 * @param options A GHashTable of options to set.
7ce7775c 86 *
0bdadba2 87 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
88 *
89 * @since 0.1.0
0bdadba2 90 */
b33b8aa5 91SRD_API int srd_inst_option_set(struct srd_decoder_inst *di,
0ff2d191 92 GHashTable *options)
0bdadba2 93{
d841d5b2 94 struct srd_decoder_option *sdo;
84c1c0b5 95 PyObject *py_di_options, *py_optval;
2f395bff 96 GVariant *value;
d841d5b2
UH
97 GSList *l;
98 double val_double;
2f395bff 99 gint64 val_int;
84c1c0b5 100 int ret;
2f395bff 101 const char *val_str;
514b2edc 102 PyGILState_STATE gstate;
0bdadba2 103
3af0e345
UH
104 if (!di) {
105 srd_err("Invalid decoder instance.");
106 return SRD_ERR_ARG;
107 }
108
109 if (!options) {
110 srd_err("Invalid options GHashTable.");
111 return SRD_ERR_ARG;
112 }
113
514b2edc
UH
114 gstate = PyGILState_Ensure();
115
c9bfccc6 116 if (!PyObject_HasAttrString(di->decoder->py_dec, "options")) {
0bdadba2 117 /* Decoder has no options. */
514b2edc 118 PyGILState_Release(gstate);
e431d9cc
BV
119 if (g_hash_table_size(options) == 0) {
120 /* No options provided. */
121 return SRD_OK;
122 } else {
123 srd_err("Protocol decoder has no options.");
124 return SRD_ERR_ARG;
125 }
0bdadba2 126 return SRD_OK;
e431d9cc 127 }
0bdadba2
BV
128
129 ret = SRD_ERR_PYTHON;
d841d5b2 130 py_optval = NULL;
119d6258
BV
131
132 /*
84c1c0b5 133 * The 'options' tuple is a class variable, but we need to
119d6258
BV
134 * change it. Changing it directly will affect the entire class,
135 * so we need to create a new object for it, and populate that
136 * instead.
137 */
a8b72b05 138 if (!(py_di_options = PyObject_GetAttrString(di->py_inst, "options")))
0bdadba2 139 goto err_out;
119d6258
BV
140 Py_DECREF(py_di_options);
141 py_di_options = PyDict_New();
142 PyObject_SetAttrString(di->py_inst, "options", py_di_options);
0bdadba2 143
d841d5b2
UH
144 for (l = di->decoder->options; l; l = l->next) {
145 sdo = l->data;
146 if ((value = g_hash_table_lookup(options, sdo->id))) {
147 /* A value was supplied for this option. */
148 if (!g_variant_type_equal(g_variant_get_type(value),
bd6594c0 149 g_variant_get_type(sdo->def))) {
d841d5b2
UH
150 srd_err("Option '%s' should have the same type "
151 "as the default value.", sdo->id);
152 goto err_out;
153 }
154 } else {
155 /* Use default for this option. */
156 value = sdo->def;
157 }
158 if (g_variant_is_of_type(value, G_VARIANT_TYPE_STRING)) {
159 val_str = g_variant_get_string(value, NULL);
160 if (!(py_optval = PyUnicode_FromString(val_str))) {
161 /* Some UTF-8 encoding error. */
162 PyErr_Clear();
163 srd_err("Option '%s' requires a UTF-8 string value.", sdo->id);
164 goto err_out;
165 }
166 } else if (g_variant_is_of_type(value, G_VARIANT_TYPE_INT64)) {
167 val_int = g_variant_get_int64(value);
168 if (!(py_optval = PyLong_FromLong(val_int))) {
169 /* ValueError Exception */
170 PyErr_Clear();
171 srd_err("Option '%s' has invalid integer value.", sdo->id);
172 goto err_out;
173 }
174 } else if (g_variant_is_of_type(value, G_VARIANT_TYPE_DOUBLE)) {
175 val_double = g_variant_get_double(value);
176 if (!(py_optval = PyFloat_FromDouble(val_double))) {
177 /* ValueError Exception */
178 PyErr_Clear();
179 srd_err("Option '%s' has invalid float value.",
180 sdo->id);
181 goto err_out;
182 }
183 }
84c1c0b5 184 if (PyDict_SetItemString(py_di_options, sdo->id, py_optval) == -1)
0bdadba2 185 goto err_out;
d841d5b2
UH
186 /* Not harmful even if we used the default. */
187 g_hash_table_remove(options, sdo->id);
188 }
189 if (g_hash_table_size(options) != 0)
190 srd_warn("Unknown options specified for '%s'", di->inst_id);
0bdadba2
BV
191
192 ret = SRD_OK;
193
194err_out:
84c1c0b5 195 Py_XDECREF(py_optval);
7fc7bde6 196 if (PyErr_Occurred()) {
201a85a8 197 srd_exception_catch("Stray exception in srd_inst_option_set()");
7fc7bde6
BV
198 ret = SRD_ERR_PYTHON;
199 }
514b2edc 200 PyGILState_Release(gstate);
0bdadba2
BV
201
202 return ret;
203}
204
7969d803 205/* Helper GComparefunc for g_slist_find_custom() in srd_inst_channel_set_all(). */
6a15597a
UH
206static gint compare_channel_id(const struct srd_channel *pdch,
207 const char *channel_id)
f38ec285 208{
6a15597a 209 return strcmp(pdch->id, channel_id);
f38ec285
BV
210}
211
0bdadba2 212/**
6a15597a 213 * Set all channels in a decoder instance.
b33b8aa5 214 *
6a15597a
UH
215 * This function sets _all_ channels for the specified decoder instance, i.e.,
216 * it overwrites any channels that were already defined (if any).
0bdadba2
BV
217 *
218 * @param di Decoder instance.
6a15597a
UH
219 * @param new_channels A GHashTable of channels to set. Key is channel name,
220 * value is the channel number. Samples passed to this
221 * instance will be arranged in this order.
12243c22 222 *
0bdadba2 223 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2 224 *
cda2d36c 225 * @since 0.4.0
0bdadba2 226 */
6a15597a 227SRD_API int srd_inst_channel_set_all(struct srd_decoder_inst *di,
cda2d36c 228 GHashTable *new_channels)
0bdadba2 229{
6a15597a 230 GVariant *channel_val;
f38ec285
BV
231 GList *l;
232 GSList *sl;
6a15597a
UH
233 struct srd_channel *pdch;
234 int *new_channelmap, new_channelnum, num_required_channels, i;
235 char *channel_id;
0bdadba2 236
cda2d36c
UH
237 srd_dbg("Setting channels for instance %s with list of %d channels.",
238 di->inst_id, g_hash_table_size(new_channels));
ce46beed 239
6a15597a
UH
240 if (g_hash_table_size(new_channels) == 0)
241 /* No channels provided. */
0bdadba2
BV
242 return SRD_OK;
243
6a15597a
UH
244 if (di->dec_num_channels == 0) {
245 /* Decoder has no channels. */
246 srd_err("Protocol decoder %s has no channels to define.",
c9bfccc6 247 di->decoder->name);
f38ec285
BV
248 return SRD_ERR_ARG;
249 }
0bdadba2 250
8f14effc 251 new_channelmap = g_malloc0(sizeof(int) * di->dec_num_channels);
0bdadba2 252
38ff5046 253 /*
6a15597a
UH
254 * For now, map all indexes to channel -1 (can be overridden later).
255 * This -1 is interpreted as an unspecified channel later.
38ff5046 256 */
6a15597a
UH
257 for (i = 0; i < di->dec_num_channels; i++)
258 new_channelmap[i] = -1;
259
260 for (l = g_hash_table_get_keys(new_channels); l; l = l->next) {
261 channel_id = l->data;
262 channel_val = g_hash_table_lookup(new_channels, channel_id);
263 if (!g_variant_is_of_type(channel_val, G_VARIANT_TYPE_INT32)) {
264 /* Channel name was specified without a value. */
265 srd_err("No channel number was specified for %s.",
266 channel_id);
267 g_free(new_channelmap);
be873260
BV
268 return SRD_ERR_ARG;
269 }
6a15597a 270 new_channelnum = g_variant_get_int32(channel_val);
6a15597a
UH
271 if (!(sl = g_slist_find_custom(di->decoder->channels, channel_id,
272 (GCompareFunc)compare_channel_id))) {
273 /* Fall back on optional channels. */
274 if (!(sl = g_slist_find_custom(di->decoder->opt_channels,
d841d5b2 275 channel_id, (GCompareFunc)compare_channel_id))) {
6a15597a 276 srd_err("Protocol decoder %s has no channel "
d841d5b2 277 "'%s'.", di->decoder->name, channel_id);
6a15597a 278 g_free(new_channelmap);
f38ec285
BV
279 return SRD_ERR_ARG;
280 }
281 }
6a15597a
UH
282 pdch = sl->data;
283 new_channelmap[pdch->order] = new_channelnum;
5b2595b5 284 srd_dbg("Setting channel mapping: %s (PD ch idx %d) = input data ch idx %d.",
6a15597a 285 pdch->id, pdch->order, new_channelnum);
38ff5046
UH
286 }
287
6a15597a
UH
288 srd_dbg("Final channel map:");
289 num_required_channels = g_slist_length(di->decoder->channels);
290 for (i = 0; i < di->dec_num_channels; i++) {
3389df7d
UH
291 GSList *ll = g_slist_nth(di->decoder->channels, i);
292 if (!ll)
293 ll = g_slist_nth(di->decoder->opt_channels,
5b2595b5 294 i - num_required_channels);
3389df7d 295 pdch = ll->data;
5b2595b5
UH
296 srd_dbg(" - PD ch idx %d (%s) = input data ch idx %d (%s)", i,
297 pdch->id, new_channelmap[i],
d841d5b2 298 (i < num_required_channels) ? "required" : "optional");
f38ec285 299 }
38ff5046 300
6a15597a
UH
301 /* Report an error if not all required channels were specified. */
302 for (i = 0; i < num_required_channels; i++) {
303 if (new_channelmap[i] != -1)
9bf7f71c 304 continue;
6a15597a
UH
305 pdch = g_slist_nth(di->decoder->channels, i)->data;
306 srd_err("Required channel '%s' (index %d) was not specified.",
307 pdch->id, i);
25d35761 308 g_free(new_channelmap);
9bf7f71c
UH
309 return SRD_ERR;
310 }
311
6a15597a
UH
312 g_free(di->dec_channelmap);
313 di->dec_channelmap = new_channelmap;
0bdadba2 314
f38ec285 315 return SRD_OK;
0bdadba2
BV
316}
317
318/**
319 * Create a new protocol decoder instance.
7ce7775c 320 *
32cfb920 321 * @param sess The session holding the protocol decoder instance.
4ccebbd3 322 * Must not be NULL.
38ff5046 323 * @param decoder_id Decoder 'id' field.
0bdadba2 324 * @param options GHashtable of options which override the defaults set in
38ff5046 325 * the decoder class. May be NULL.
12243c22 326 *
a8b72b05 327 * @return Pointer to a newly allocated struct srd_decoder_inst, or
c9bfccc6 328 * NULL in case of failure.
8c664ca2 329 *
69075817 330 * @since 0.3.0
7ce7775c 331 */
32cfb920
BV
332SRD_API struct srd_decoder_inst *srd_inst_new(struct srd_session *sess,
333 const char *decoder_id, GHashTable *options)
b2c19614 334{
c9bfccc6 335 int i;
b2c19614 336 struct srd_decoder *dec;
a8b72b05
BV
337 struct srd_decoder_inst *di;
338 char *inst_id;
514b2edc 339 PyGILState_STATE gstate;
b2c19614 340
3262ef02 341 i = 1;
7ce7775c 342
4ccebbd3 343 if (!sess)
32cfb920 344 return NULL;
32cfb920 345
9d122fd5 346 if (!(dec = srd_decoder_get_by_id(decoder_id))) {
0bdadba2 347 srd_err("Protocol decoder %s not found.", decoder_id);
b2c19614 348 return NULL;
0bdadba2 349 }
b2c19614 350
077fa8ac 351 di = g_malloc0(sizeof(struct srd_decoder_inst));
0bdadba2 352
b2c19614 353 di->decoder = dec;
32cfb920 354 di->sess = sess;
3262ef02 355
38ff5046
UH
356 if (options) {
357 inst_id = g_hash_table_lookup(options, "id");
3262ef02
KP
358 if (inst_id)
359 di->inst_id = g_strdup(inst_id);
38ff5046 360 g_hash_table_remove(options, "id");
3262ef02
KP
361 }
362
363 /* Create a unique instance ID (as none was provided). */
364 if (!di->inst_id) {
365 di->inst_id = g_strdup_printf("%s-%d", decoder_id, i++);
366 while (srd_inst_find_by_id(sess, di->inst_id)) {
367 g_free(di->inst_id);
368 di->inst_id = g_strdup_printf("%s-%d", decoder_id, i++);
369 }
370 }
b2c19614 371
361fdcaa 372 /*
6a15597a 373 * Prepare a default channel map, where samples come in the
f38ec285
BV
374 * order in which the decoder class defined them.
375 */
6a15597a
UH
376 di->dec_num_channels = g_slist_length(di->decoder->channels) +
377 g_slist_length(di->decoder->opt_channels);
378 if (di->dec_num_channels) {
077fa8ac
UH
379 di->dec_channelmap =
380 g_malloc(sizeof(int) * di->dec_num_channels);
6a15597a
UH
381 for (i = 0; i < di->dec_num_channels; i++)
382 di->dec_channelmap[i] = i;
37b94c20
BV
383 /*
384 * Will be used to prepare a sample at every iteration
385 * of the instance's decode() method.
386 */
077fa8ac 387 di->channel_samples = g_malloc(di->dec_num_channels);
f38ec285 388 }
f38ec285 389
97b874bd 390 /* Default to the initial pins being the same as in sample 0. */
63bbdb44 391 oldpins_array_seed(di);
97b874bd 392
514b2edc
UH
393 gstate = PyGILState_Ensure();
394
0bdadba2 395 /* Create a new instance of this decoder class. */
a8b72b05 396 if (!(di->py_inst = PyObject_CallObject(dec->py_dec, NULL))) {
b2c19614 397 if (PyErr_Occurred())
201a85a8 398 srd_exception_catch("Failed to create %s instance",
69075817 399 decoder_id);
514b2edc 400 PyGILState_Release(gstate);
6a15597a 401 g_free(di->dec_channelmap);
0bdadba2 402 g_free(di);
7ce7775c 403 return NULL;
b2c19614 404 }
7ce7775c 405
514b2edc
UH
406 PyGILState_Release(gstate);
407
38ff5046 408 if (options && srd_inst_option_set(di, options) != SRD_OK) {
6a15597a 409 g_free(di->dec_channelmap);
0bdadba2
BV
410 g_free(di);
411 return NULL;
412 }
b2c19614 413
21dfd91d
UH
414 di->condition_list = NULL;
415 di->match_array = NULL;
4564e8e5
UH
416 di->abs_start_samplenum = 0;
417 di->abs_end_samplenum = 0;
21dfd91d
UH
418 di->inbuf = NULL;
419 di->inbuflen = 0;
4564e8e5 420 di->abs_cur_samplenum = 0;
21dfd91d
UH
421 di->thread_handle = NULL;
422 di->got_new_samples = FALSE;
423 di->handled_all_samples = FALSE;
04383ea8 424 di->want_wait_terminate = FALSE;
d4d8ac2a 425 di->decoder_state = SRD_OK;
04383ea8
GS
426
427 /*
428 * Strictly speaking initialization of statically allocated
429 * condition and mutex variables (or variables allocated on the
430 * stack) is not required, but won't harm either. Explicitly
431 * running init() will better match subsequent clear() calls.
432 */
433 g_cond_init(&di->got_new_samples_cond);
434 g_cond_init(&di->handled_all_samples_cond);
435 g_mutex_init(&di->data_mutex);
21dfd91d 436
f38ec285 437 /* Instance takes input from a frontend by default. */
32cfb920 438 sess->di_list = g_slist_append(sess->di_list, di);
755e4a1e 439 srd_dbg("Creating new %s instance %s.", decoder_id, di->inst_id);
f38ec285 440
b2c19614
BV
441 return di;
442}
443
04383ea8
GS
444static void srd_inst_join_decode_thread(struct srd_decoder_inst *di)
445{
446 if (!di)
447 return;
448 if (!di->thread_handle)
449 return;
450
451 srd_dbg("%s: Joining decoder thread.", di->inst_id);
452
453 /*
454 * Terminate potentially running threads which still
455 * execute the decoder instance's decode() method.
456 */
457 srd_dbg("%s: Raising want_term, sending got_new.", di->inst_id);
458 g_mutex_lock(&di->data_mutex);
459 di->want_wait_terminate = TRUE;
460 g_cond_signal(&di->got_new_samples_cond);
461 g_mutex_unlock(&di->data_mutex);
462
463 srd_dbg("%s: Running join().", di->inst_id);
464 (void)g_thread_join(di->thread_handle);
465 srd_dbg("%s: Call to join() done.", di->inst_id);
466 di->thread_handle = NULL;
467
468 /*
469 * Reset condition and mutex variables, such that next
470 * operations on them will find them in a clean state.
471 */
472 g_cond_clear(&di->got_new_samples_cond);
473 g_cond_init(&di->got_new_samples_cond);
474 g_cond_clear(&di->handled_all_samples_cond);
475 g_cond_init(&di->handled_all_samples_cond);
476 g_mutex_clear(&di->data_mutex);
477 g_mutex_init(&di->data_mutex);
478}
479
480static void srd_inst_reset_state(struct srd_decoder_inst *di)
481{
482 if (!di)
483 return;
484
485 srd_dbg("%s: Resetting decoder state.", di->inst_id);
486
7969d803 487 /* Reset internal state of the decoder. */
04383ea8
GS
488 condition_list_free(di);
489 match_array_free(di);
490 di->abs_start_samplenum = 0;
491 di->abs_end_samplenum = 0;
492 di->inbuf = NULL;
493 di->inbuflen = 0;
494 di->abs_cur_samplenum = 0;
495 oldpins_array_free(di);
496 di->got_new_samples = FALSE;
497 di->handled_all_samples = FALSE;
498 di->want_wait_terminate = FALSE;
d4d8ac2a 499 di->decoder_state = SRD_OK;
04383ea8
GS
500 /* Conditions and mutex got reset after joining the thread. */
501}
502
582c8473
BV
503/**
504 * Stack a decoder instance on top of another.
505 *
32cfb920 506 * @param sess The session holding the protocol decoder instances.
4ccebbd3 507 * Must not be NULL.
4d2c7619
BV
508 * @param di_bottom The instance on top of which di_top will be stacked.
509 * @param di_top The instance to go on top.
582c8473
BV
510 *
511 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2 512 *
69075817 513 * @since 0.3.0
582c8473 514 */
32cfb920 515SRD_API int srd_inst_stack(struct srd_session *sess,
4d2c7619
BV
516 struct srd_decoder_inst *di_bottom,
517 struct srd_decoder_inst *di_top)
7ce7775c 518{
4ccebbd3 519 if (!sess)
32cfb920 520 return SRD_ERR_ARG;
32cfb920 521
4d2c7619 522 if (!di_bottom || !di_top) {
d906d3f9 523 srd_err("Invalid from/to instance pair.");
7ce7775c
BV
524 return SRD_ERR_ARG;
525 }
526
4d2c7619 527 if (g_slist_find(sess->di_list, di_top)) {
2072ae0c 528 /* Remove from the unstacked list. */
4d2c7619 529 sess->di_list = g_slist_remove(sess->di_list, di_top);
7ce7775c
BV
530 }
531
369e8265
UH
532 /*
533 * Check if there's at least one matching input/output pair
534 * for the stacked PDs. We warn if that's not the case, but it's
535 * not a hard error for the time being.
536 */
537 gboolean at_least_one_match = FALSE;
538 for (GSList *out = di_bottom->decoder->outputs; out; out = out->next) {
539 const char *o = out->data;
540 for (GSList *in = di_top->decoder->inputs; in; in = in->next) {
541 const char *i = in->data;
542 if (!strcmp(o, i)) {
543 at_least_one_match = TRUE;
544 break;
545 }
546 }
547 }
548
549 if (!at_least_one_match)
550 srd_warn("No matching in-/output when stacking %s onto %s.",
551 di_top->inst_id, di_bottom->inst_id);
552
7ce7775c 553 /* Stack on top of source di. */
4d2c7619
BV
554 di_bottom->next_di = g_slist_append(di_bottom->next_di, di_top);
555
755e4a1e 556 srd_dbg("Stacking %s onto %s.", di_top->inst_id, di_bottom->inst_id);
7ce7775c
BV
557
558 return SRD_OK;
559}
560
79d0013e
KP
561/**
562 * Search a decoder instance and its stack for instance ID.
563 *
564 * @param[in] inst_id ID to search for.
565 * @param[in] stack A decoder instance, potentially with stacked instances.
566 *
567 * @return The matching instance, or NULL.
568 */
569static struct srd_decoder_inst *srd_inst_find_by_id_stack(const char *inst_id,
570 struct srd_decoder_inst *stack)
571{
572 const GSList *l;
573 struct srd_decoder_inst *tmp, *di;
574
575 if (!strcmp(stack->inst_id, inst_id))
576 return stack;
577
578 /* Otherwise, look recursively in our stack. */
579 di = NULL;
580 if (stack->next_di) {
581 for (l = stack->next_di; l; l = l->next) {
582 tmp = l->data;
583 if (!strcmp(tmp->inst_id, inst_id)) {
584 di = tmp;
585 break;
586 }
587 }
588 }
589
590 return di;
591}
592
2072ae0c 593/**
361fdcaa
UH
594 * Find a decoder instance by its instance ID.
595 *
79d0013e
KP
596 * This will recurse to find the instance anywhere in the stack tree of the
597 * given session.
2072ae0c 598 *
32cfb920 599 * @param sess The session holding the protocol decoder instance.
4ccebbd3 600 * Must not be NULL.
ed2306a6 601 * @param inst_id The instance ID to be found.
2072ae0c 602 *
a8b72b05 603 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
8c664ca2 604 *
69075817 605 * @since 0.3.0
2072ae0c 606 */
32cfb920
BV
607SRD_API struct srd_decoder_inst *srd_inst_find_by_id(struct srd_session *sess,
608 const char *inst_id)
7ce7775c
BV
609{
610 GSList *l;
a8b72b05 611 struct srd_decoder_inst *tmp, *di;
b2c19614 612
4ccebbd3 613 if (!sess)
32cfb920 614 return NULL;
32cfb920 615
7ce7775c 616 di = NULL;
32cfb920 617 for (l = sess->di_list; l; l = l->next) {
7ce7775c 618 tmp = l->data;
9bac00e0 619 if ((di = srd_inst_find_by_id_stack(inst_id, tmp)) != NULL)
7ce7775c 620 break;
7ce7775c
BV
621 }
622
623 return di;
624}
625
21dfd91d
UH
626/**
627 * Set the list of initial (assumed) pin values.
628 *
21dfd91d 629 * @param di Decoder instance to use. Must not be NULL.
97b874bd 630 * @param initial_pins A GArray of uint8_t values. Must not be NULL.
21dfd91d 631 *
97b874bd 632 * @since 0.5.0
21dfd91d 633 */
97b874bd 634SRD_API int srd_inst_initial_pins_set_all(struct srd_decoder_inst *di, GArray *initial_pins)
21dfd91d
UH
635{
636 int i;
637 GString *s;
21dfd91d 638
97b874bd 639 if (!di) {
21dfd91d 640 srd_err("Invalid decoder instance.");
97b874bd 641 return SRD_ERR_ARG;
21dfd91d
UH
642 }
643
97b874bd
UH
644 if (!initial_pins)
645 return SRD_ERR_ARG;
21dfd91d 646
97b874bd
UH
647 if (initial_pins->len != (guint)di->dec_num_channels) {
648 srd_err("Incorrect number of channels (need %d, got %d).",
649 di->dec_num_channels, initial_pins->len);
650 return SRD_ERR_ARG;
21dfd91d
UH
651 }
652
97b874bd
UH
653 /* Sanity-check initial pin state values. */
654 for (i = 0; i < di->dec_num_channels; i++) {
655 if (initial_pins->data[i] <= 2)
656 continue;
657 srd_err("Invalid initial channel %d pin state: %d.",
658 i, initial_pins->data[i]);
659 return SRD_ERR_ARG;
660 }
21dfd91d 661
21dfd91d 662 s = g_string_sized_new(100);
63bbdb44 663 oldpins_array_seed(di);
21dfd91d 664 for (i = 0; i < di->dec_num_channels; i++) {
97b874bd 665 di->old_pins_array->data[i] = initial_pins->data[i];
21dfd91d
UH
666 g_string_append_printf(s, "%d, ", di->old_pins_array->data[i]);
667 }
668 s = g_string_truncate(s, s->len - 2);
669 srd_dbg("Initial pins: %s.", s->str);
670 g_string_free(s, TRUE);
97b874bd
UH
671
672 return SRD_OK;
21dfd91d
UH
673}
674
57790bc8 675/** @private */
ed416497 676SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di)
b2c19614 677{
ed416497 678 PyObject *py_res;
2072ae0c 679 GSList *l;
a8b72b05 680 struct srd_decoder_inst *next_di;
ed416497 681 int ret;
514b2edc 682 PyGILState_STATE gstate;
b2c19614 683
755e4a1e 684 srd_dbg("Calling start() of instance %s.", di->inst_id);
b2c19614 685
514b2edc
UH
686 gstate = PyGILState_Ensure();
687
21dfd91d 688 /* Run self.start(). */
ed416497 689 if (!(py_res = PyObject_CallMethod(di->py_inst, "start", NULL))) {
201a85a8 690 srd_exception_catch("Protocol decoder instance %s",
ed416497 691 di->inst_id);
514b2edc 692 PyGILState_Release(gstate);
7ce7775c
BV
693 return SRD_ERR_PYTHON;
694 }
f38ec285 695 Py_DecRef(py_res);
7ce7775c 696
21dfd91d
UH
697 /* Set self.samplenum to 0. */
698 PyObject_SetAttrString(di->py_inst, "samplenum", PyLong_FromLong(0));
699
e27d3e67
GS
700 /* Set self.matched to None. */
701 PyObject_SetAttrString(di->py_inst, "matched", Py_None);
21dfd91d 702
514b2edc
UH
703 PyGILState_Release(gstate);
704
ed416497 705 /* Start all the PDs stacked on top of this one. */
2072ae0c
BV
706 for (l = di->next_di; l; l = l->next) {
707 next_di = l->data;
ed416497
BV
708 if ((ret = srd_inst_start(next_di)) != SRD_OK)
709 return ret;
2072ae0c
BV
710 }
711
b2c19614
BV
712 return SRD_OK;
713}
714
21dfd91d
UH
715/**
716 * Check whether the specified sample matches the specified term.
717 *
718 * In the case of SRD_TERM_SKIP, this function can modify
719 * term->num_samples_already_skipped.
720 *
721 * @param old_sample The value of the previous sample (0/1).
722 * @param sample The value of the current sample (0/1).
723 * @param term The term that should be checked for a match. Must not be NULL.
724 *
725 * @retval TRUE The current sample matches the specified term.
726 * @retval FALSE The current sample doesn't match the specified term, or an
727 * invalid term was provided.
728 *
729 * @private
730 */
9337ab8a
UH
731__attribute__((always_inline))
732static inline gboolean sample_matches(uint8_t old_sample, uint8_t sample, struct srd_term *term)
21dfd91d 733{
7a57c594 734 /* Caller ensures term != NULL. */
21dfd91d
UH
735
736 switch (term->type) {
737 case SRD_TERM_HIGH:
738 if (sample == 1)
739 return TRUE;
740 break;
741 case SRD_TERM_LOW:
742 if (sample == 0)
743 return TRUE;
744 break;
745 case SRD_TERM_RISING_EDGE:
746 if (old_sample == 0 && sample == 1)
747 return TRUE;
748 break;
749 case SRD_TERM_FALLING_EDGE:
750 if (old_sample == 1 && sample == 0)
751 return TRUE;
752 break;
753 case SRD_TERM_EITHER_EDGE:
754 if ((old_sample == 1 && sample == 0) || (old_sample == 0 && sample == 1))
755 return TRUE;
756 break;
757 case SRD_TERM_NO_EDGE:
758 if ((old_sample == 0 && sample == 0) || (old_sample == 1 && sample == 1))
759 return TRUE;
760 break;
761 case SRD_TERM_SKIP:
762 if (term->num_samples_already_skipped == term->num_samples_to_skip)
763 return TRUE;
764 term->num_samples_already_skipped++;
765 break;
766 default:
767 srd_err("Unknown term type %d.", term->type);
768 break;
769 }
770
771 return FALSE;
772}
773
c947ab01 774/** @private */
21dfd91d
UH
775SRD_PRIV void match_array_free(struct srd_decoder_inst *di)
776{
777 if (!di || !di->match_array)
778 return;
779
780 g_array_free(di->match_array, TRUE);
781 di->match_array = NULL;
782}
783
c947ab01 784/** @private */
21dfd91d
UH
785SRD_PRIV void condition_list_free(struct srd_decoder_inst *di)
786{
787 GSList *l, *ll;
788
789 if (!di)
790 return;
791
792 for (l = di->condition_list; l; l = l->next) {
793 ll = l->data;
794 if (ll)
795 g_slist_free_full(ll, g_free);
796 }
797
798 di->condition_list = NULL;
799}
800
801static gboolean have_non_null_conds(const struct srd_decoder_inst *di)
802{
803 GSList *l, *cond;
804
805 if (!di)
806 return FALSE;
807
808 for (l = di->condition_list; l; l = l->next) {
809 cond = l->data;
810 if (cond)
811 return TRUE;
812 }
813
814 return FALSE;
815}
816
817static void update_old_pins_array(struct srd_decoder_inst *di,
818 const uint8_t *sample_pos)
819{
820 uint8_t sample;
821 int i, byte_offset, bit_offset;
822
823 if (!di || !di->dec_channelmap || !sample_pos)
824 return;
825
63bbdb44 826 oldpins_array_seed(di);
21dfd91d
UH
827 for (i = 0; i < di->dec_num_channels; i++) {
828 byte_offset = di->dec_channelmap[i] / 8;
829 bit_offset = di->dec_channelmap[i] % 8;
830 sample = *(sample_pos + byte_offset) & (1 << bit_offset) ? 1 : 0;
831 di->old_pins_array->data[i] = sample;
832 }
833}
834
97b874bd
UH
835static void update_old_pins_array_initial_pins(struct srd_decoder_inst *di)
836{
837 uint8_t sample;
838 int i, byte_offset, bit_offset;
839 const uint8_t *sample_pos;
840
841 if (!di || !di->dec_channelmap)
842 return;
843
844 sample_pos = di->inbuf + ((di->abs_cur_samplenum - di->abs_start_samplenum) * di->data_unitsize);
845
63bbdb44 846 oldpins_array_seed(di);
97b874bd
UH
847 for (i = 0; i < di->dec_num_channels; i++) {
848 if (di->old_pins_array->data[i] != SRD_INITIAL_PIN_SAME_AS_SAMPLE0)
849 continue;
850 byte_offset = di->dec_channelmap[i] / 8;
851 bit_offset = di->dec_channelmap[i] % 8;
852 sample = *(sample_pos + byte_offset) & (1 << bit_offset) ? 1 : 0;
853 di->old_pins_array->data[i] = sample;
854 }
855}
856
21dfd91d
UH
857static gboolean term_matches(const struct srd_decoder_inst *di,
858 struct srd_term *term, const uint8_t *sample_pos)
859{
860 uint8_t old_sample, sample;
861 int byte_offset, bit_offset, ch;
862
7a57c594 863 /* Caller ensures di, di->dec_channelmap, term, sample_pos != NULL. */
21dfd91d 864
7a57c594
UH
865 if (term->type == SRD_TERM_SKIP)
866 return sample_matches(0, 0, term);
21dfd91d 867
7a57c594
UH
868 ch = term->channel;
869 byte_offset = di->dec_channelmap[ch] / 8;
870 bit_offset = di->dec_channelmap[ch] % 8;
871 sample = *(sample_pos + byte_offset) & (1 << bit_offset) ? 1 : 0;
872 old_sample = di->old_pins_array->data[ch];
21dfd91d
UH
873
874 return sample_matches(old_sample, sample, term);
875}
876
877static gboolean all_terms_match(const struct srd_decoder_inst *di,
878 const GSList *cond, const uint8_t *sample_pos)
879{
880 const GSList *l;
881 struct srd_term *term;
882
7a57c594 883 /* Caller ensures di, cond, sample_pos != NULL. */
21dfd91d
UH
884
885 for (l = cond; l; l = l->next) {
886 term = l->data;
887 if (!term_matches(di, term, sample_pos))
888 return FALSE;
889 }
890
891 return TRUE;
892}
893
894static gboolean at_least_one_condition_matched(
895 const struct srd_decoder_inst *di, unsigned int num_conditions)
896{
897 unsigned int i;
898
7a57c594 899 /* Caller ensures di != NULL. */
21dfd91d
UH
900
901 for (i = 0; i < num_conditions; i++) {
902 if (di->match_array->data[i])
903 return TRUE;
904 }
905
906 return FALSE;
907}
908
909static gboolean find_match(struct srd_decoder_inst *di)
910{
21dfd91d
UH
911 uint64_t i, j, num_samples_to_process;
912 GSList *l, *cond;
913 const uint8_t *sample_pos;
914 unsigned int num_conditions;
915
7a57c594
UH
916 /* Caller ensures di != NULL. */
917
21dfd91d
UH
918 /* Check whether the condition list is NULL/empty. */
919 if (!di->condition_list) {
920 srd_dbg("NULL/empty condition list, automatic match.");
921 return TRUE;
922 }
923
924 /* Check whether we have any non-NULL conditions. */
925 if (!have_non_null_conds(di)) {
926 srd_dbg("Only NULL conditions in list, automatic match.");
927 return TRUE;
928 }
929
4564e8e5 930 num_samples_to_process = di->abs_end_samplenum - di->abs_cur_samplenum;
21dfd91d
UH
931 num_conditions = g_slist_length(di->condition_list);
932
933 /* di->match_array is NULL here. Create a new GArray. */
934 di->match_array = g_array_sized_new(FALSE, TRUE, sizeof(gboolean), num_conditions);
935 g_array_set_size(di->match_array, num_conditions);
936
97b874bd
UH
937 /* Sample 0: Set di->old_pins_array for SRD_INITIAL_PIN_SAME_AS_SAMPLE0 pins. */
938 if (di->abs_cur_samplenum == 0)
939 update_old_pins_array_initial_pins(di);
940
a026a3fb 941 for (i = 0; i < num_samples_to_process; i++, (di->abs_cur_samplenum)++) {
21dfd91d 942
4564e8e5 943 sample_pos = di->inbuf + ((di->abs_cur_samplenum - di->abs_start_samplenum) * di->data_unitsize);
21dfd91d
UH
944
945 /* Check whether the current sample matches at least one of the conditions (logical OR). */
946 /* IMPORTANT: We need to check all conditions, even if there was a match already! */
947 for (l = di->condition_list, j = 0; l; l = l->next, j++) {
948 cond = l->data;
949 if (!cond)
950 continue;
951 /* All terms in 'cond' must match (logical AND). */
952 di->match_array->data[j] = all_terms_match(di, cond, sample_pos);
953 }
954
955 update_old_pins_array(di, sample_pos);
956
957 /* If at least one condition matched we're done. */
958 if (at_least_one_condition_matched(di, num_conditions))
959 return TRUE;
960 }
961
962 return FALSE;
963}
964
965/**
966 * Process available samples and check if they match the defined conditions.
967 *
968 * This function returns if there is an error, or when a match is found, or
969 * when all samples have been processed (whether a match was found or not).
04383ea8
GS
970 * This function immediately terminates when the decoder's wait() method
971 * invocation shall get terminated.
21dfd91d
UH
972 *
973 * @param di The decoder instance to use. Must not be NULL.
974 * @param found_match Will be set to TRUE if at least one condition matched,
975 * FALSE otherwise. Must not be NULL.
976 *
977 * @retval SRD_OK No errors occured, see found_match for the result.
978 * @retval SRD_ERR_ARG Invalid arguments.
979 *
980 * @private
981 */
982SRD_PRIV int process_samples_until_condition_match(struct srd_decoder_inst *di, gboolean *found_match)
983{
984 if (!di || !found_match)
985 return SRD_ERR_ARG;
986
04383ea8
GS
987 *found_match = FALSE;
988 if (di->want_wait_terminate)
989 return SRD_OK;
990
21dfd91d
UH
991 /* Check if any of the current condition(s) match. */
992 while (TRUE) {
993 /* Feed the (next chunk of the) buffer to find_match(). */
994 *found_match = find_match(di);
995
996 /* Did we handle all samples yet? */
4564e8e5
UH
997 if (di->abs_cur_samplenum >= di->abs_end_samplenum) {
998 srd_dbg("Done, handled all samples (abs cur %" PRIu64
999 " / abs end %" PRIu64 ").",
1000 di->abs_cur_samplenum, di->abs_end_samplenum);
21dfd91d
UH
1001 return SRD_OK;
1002 }
1003
1004 /* If we didn't find a match, continue looking. */
1005 if (!(*found_match))
1006 continue;
1007
1008 /* At least one condition matched, return. */
1009 return SRD_OK;
1010 }
1011
1012 return SRD_OK;
1013}
1014
1015/**
1016 * Worker thread (per PD-stack).
1017 *
1018 * @param data Pointer to the lowest-level PD's device instance.
1019 * Must not be NULL.
1020 *
1021 * @return NULL if there was an error.
1022 */
1023static gpointer di_thread(gpointer data)
1024{
1025 PyObject *py_res;
1026 struct srd_decoder_inst *di;
04383ea8 1027 int wanted_term;
514b2edc 1028 PyGILState_STATE gstate;
21dfd91d
UH
1029
1030 if (!data)
1031 return NULL;
1032
1033 di = data;
1034
04383ea8
GS
1035 srd_dbg("%s: Starting thread routine for decoder.", di->inst_id);
1036
514b2edc
UH
1037 gstate = PyGILState_Ensure();
1038
04383ea8
GS
1039 /*
1040 * Call self.decode(). Only returns if the PD throws an exception.
1041 * "Regular" termination of the decode() method is not expected.
1042 */
21dfd91d 1043 Py_IncRef(di->py_inst);
755e4a1e 1044 srd_dbg("%s: Calling decode().", di->inst_id);
04383ea8 1045 py_res = PyObject_CallMethod(di->py_inst, "decode", NULL);
755e4a1e 1046 srd_dbg("%s: decode() terminated.", di->inst_id);
04383ea8 1047
d4d8ac2a
SA
1048 if (!py_res)
1049 di->decoder_state = SRD_ERR;
1050
04383ea8
GS
1051 /*
1052 * Make sure to unblock potentially pending srd_inst_decode()
1053 * calls in application threads after the decode() method might
1054 * have terminated, while it neither has processed sample data
1055 * nor has terminated upon request. This happens e.g. when "need
1056 * a samplerate to decode" exception is thrown.
1057 */
1058 g_mutex_lock(&di->data_mutex);
1059 wanted_term = di->want_wait_terminate;
1060 di->want_wait_terminate = TRUE;
1061 di->handled_all_samples = TRUE;
1062 g_cond_signal(&di->handled_all_samples_cond);
1063 g_mutex_unlock(&di->data_mutex);
1064
1065 /*
1066 * Check for the termination cause of the decode() method.
1067 * Though this is mostly for information.
1068 */
1069 if (!py_res && wanted_term) {
1070 /*
1071 * Silently ignore errors upon return from decode() calls
1072 * when termination was requested. Terminate the thread
1073 * which executed this instance's decode() logic.
1074 */
1075 srd_dbg("%s: Thread done (!res, want_term).", di->inst_id);
1076 PyErr_Clear();
514b2edc 1077 PyGILState_Release(gstate);
04383ea8
GS
1078 return NULL;
1079 }
1080 if (!py_res) {
1081 /*
1082 * The decode() invocation terminated unexpectedly. Have
1083 * the back trace printed, and terminate the thread which
1084 * executed the decode() method.
1085 */
1086 srd_dbg("%s: decode() terminated unrequested.", di->inst_id);
21dfd91d 1087 srd_exception_catch("Protocol decoder instance %s: ", di->inst_id);
04383ea8 1088 srd_dbg("%s: Thread done (!res, !want_term).", di->inst_id);
514b2edc 1089 PyGILState_Release(gstate);
21dfd91d
UH
1090 return NULL;
1091 }
04383ea8
GS
1092
1093 /*
1094 * TODO: By design the decode() method is not supposed to terminate.
1095 * Nevertheless we have the thread joined, and srd backend calls to
1096 * decode() will re-start another thread transparently.
1097 */
1098 srd_dbg("%s: decode() terminated (req %d).", di->inst_id, wanted_term);
21dfd91d 1099 Py_DecRef(py_res);
04383ea8
GS
1100 PyErr_Clear();
1101
514b2edc
UH
1102 PyGILState_Release(gstate);
1103
04383ea8 1104 srd_dbg("%s: Thread done (with res).", di->inst_id);
21dfd91d
UH
1105
1106 return NULL;
1107}
1108
b2c19614 1109/**
e959f49a 1110 * Decode a chunk of samples.
b2c19614 1111 *
4564e8e5
UH
1112 * The calls to this function must provide the samples that shall be
1113 * used by the protocol decoder
1114 * - in the correct order ([...]5, 6, 4, 7, 8[...] is a bug),
1115 * - starting from sample zero (2, 3, 4, 5, 6[...] is a bug),
1116 * - consecutively, with no gaps (0, 1, 2, 4, 5[...] is a bug).
1117 *
1118 * The start- and end-sample numbers are absolute sample numbers (relative
1119 * to the start of the whole capture/file/stream), i.e. they are not relative
1120 * sample numbers within the chunk specified by 'inbuf' and 'inbuflen'.
1121 *
1122 * Correct example (4096 samples total, 4 chunks @ 1024 samples each):
2f7bc9d2
MC
1123 * srd_inst_decode(di, 0, 1024, inbuf, 1024, 1);
1124 * srd_inst_decode(di, 1024, 2048, inbuf, 1024, 1);
1125 * srd_inst_decode(di, 2048, 3072, inbuf, 1024, 1);
1126 * srd_inst_decode(di, 3072, 4096, inbuf, 1024, 1);
4564e8e5
UH
1127 *
1128 * The chunk size ('inbuflen') can be arbitrary and can differ between calls.
1129 *
1130 * Correct example (4096 samples total, 7 chunks @ various samples each):
2f7bc9d2
MC
1131 * srd_inst_decode(di, 0, 1024, inbuf, 1024, 1);
1132 * srd_inst_decode(di, 1024, 1124, inbuf, 100, 1);
1133 * srd_inst_decode(di, 1124, 1424, inbuf, 300, 1);
1134 * srd_inst_decode(di, 1424, 1643, inbuf, 219, 1);
1135 * srd_inst_decode(di, 1643, 2048, inbuf, 405, 1);
1136 * srd_inst_decode(di, 2048, 3072, inbuf, 1024, 1);
1137 * srd_inst_decode(di, 3072, 4096, inbuf, 1024, 1);
4564e8e5
UH
1138 *
1139 * INCORRECT example (4096 samples total, 4 chunks @ 1024 samples each, but
1140 * the start- and end-samplenumbers are not absolute):
2f7bc9d2
MC
1141 * srd_inst_decode(di, 0, 1024, inbuf, 1024, 1);
1142 * srd_inst_decode(di, 0, 1024, inbuf, 1024, 1);
1143 * srd_inst_decode(di, 0, 1024, inbuf, 1024, 1);
1144 * srd_inst_decode(di, 0, 1024, inbuf, 1024, 1);
4564e8e5 1145 *
ed416497 1146 * @param di The decoder instance to call. Must not be NULL.
4564e8e5
UH
1147 * @param abs_start_samplenum The absolute starting sample number for the
1148 * buffer's sample set, relative to the start of capture.
1149 * @param abs_end_samplenum The absolute ending sample number for the
1150 * buffer's sample set, relative to the start of capture.
7a1712c4
UH
1151 * @param inbuf The buffer to decode. Must not be NULL.
1152 * @param inbuflen Length of the buffer. Must be > 0.
e959f49a 1153 * @param unitsize The number of bytes per sample. Must be > 0.
b2c19614
BV
1154 *
1155 * @return SRD_OK upon success, a (negative) error code otherwise.
57790bc8
UH
1156 *
1157 * @private
b2c19614 1158 */
21dfd91d 1159SRD_PRIV int srd_inst_decode(struct srd_decoder_inst *di,
4564e8e5 1160 uint64_t abs_start_samplenum, uint64_t abs_end_samplenum,
cda2d36c 1161 const uint8_t *inbuf, uint64_t inbuflen, uint64_t unitsize)
b2c19614 1162{
d906d3f9 1163 /* Return an error upon unusable input. */
7a1712c4
UH
1164 if (!di) {
1165 srd_dbg("empty decoder instance");
d906d3f9
BV
1166 return SRD_ERR_ARG;
1167 }
7a1712c4
UH
1168 if (!inbuf) {
1169 srd_dbg("NULL buffer pointer");
d906d3f9
BV
1170 return SRD_ERR_ARG;
1171 }
1172 if (inbuflen == 0) {
7a1712c4 1173 srd_dbg("empty buffer");
d906d3f9 1174 return SRD_ERR_ARG;
80f8083b
UH
1175 }
1176 if (unitsize == 0) {
1177 srd_dbg("unitsize 0");
1178 return SRD_ERR_ARG;
d906d3f9 1179 }
b2c19614 1180
de23c992
MC
1181 if (abs_start_samplenum != di->abs_cur_samplenum ||
1182 abs_end_samplenum < abs_start_samplenum) {
f98f4171
UH
1183 srd_dbg("Incorrect sample numbers: start=%" PRIu64 ", cur=%"
1184 PRIu64 ", end=%" PRIu64 ".", abs_start_samplenum,
1185 di->abs_cur_samplenum, abs_end_samplenum);
de23c992
MC
1186 return SRD_ERR_ARG;
1187 }
1188
21dfd91d 1189 di->data_unitsize = unitsize;
2730fe23 1190
4564e8e5 1191 srd_dbg("Decoding: abs start sample %" PRIu64 ", abs end sample %"
2730fe23 1192 PRIu64 " (%" PRIu64 " samples, %" PRIu64 " bytes, unitsize = "
4564e8e5
UH
1193 "%d), instance %s.", abs_start_samplenum, abs_end_samplenum,
1194 abs_end_samplenum - abs_start_samplenum, inbuflen, di->data_unitsize,
2730fe23
UH
1195 di->inst_id);
1196
eb883723
UH
1197 /* If this is the first call, start the worker thread. */
1198 if (!di->thread_handle) {
1199 srd_dbg("No worker thread for this decoder stack "
1200 "exists yet, creating one: %s.", di->inst_id);
1201 di->thread_handle = g_thread_new(di->inst_id,
1202 di_thread, di);
1203 }
04867deb 1204
eb883723
UH
1205 /* Push the new sample chunk to the worker thread. */
1206 g_mutex_lock(&di->data_mutex);
1207 di->abs_start_samplenum = abs_start_samplenum;
1208 di->abs_end_samplenum = abs_end_samplenum;
1209 di->inbuf = inbuf;
1210 di->inbuflen = inbuflen;
1211 di->got_new_samples = TRUE;
1212 di->handled_all_samples = FALSE;
21dfd91d 1213
eb883723
UH
1214 /* Signal the thread that we have new data. */
1215 g_cond_signal(&di->got_new_samples_cond);
1216 g_mutex_unlock(&di->data_mutex);
1217
1218 /* When all samples in this chunk were handled, return. */
1219 g_mutex_lock(&di->data_mutex);
1220 while (!di->handled_all_samples && !di->want_wait_terminate)
1221 g_cond_wait(&di->handled_all_samples_cond, &di->data_mutex);
1222 g_mutex_unlock(&di->data_mutex);
bc5f5a43 1223
3f3c4614
GS
1224 if (di->want_wait_terminate)
1225 return SRD_ERR_TERM_REQ;
7969d803 1226
b2c19614
BV
1227 return SRD_OK;
1228}
1229
9553e962
GS
1230/**
1231 * Terminate current decoder work, prepare for re-use on new input data.
1232 *
1233 * Terminates all decoder operations in the specified decoder instance
1234 * and the instances stacked on top of it. Resets internal state such
1235 * that the previously constructed stack can process new input data that
1236 * is not related to previously processed input data. This avoids the
1237 * expensive and complex re-construction of decoder stacks.
1238 *
1239 * Callers are expected to follow up with start, metadata, and decode
1240 * calls like they would for newly constructed decoder stacks.
1241 *
1242 * @param di The decoder instance to call. Must not be NULL.
7969d803 1243 *
9553e962 1244 * @return SRD_OK upon success, a (negative) error code otherwise.
7969d803 1245 *
9553e962
GS
1246 * @private
1247 */
1248SRD_PRIV int srd_inst_terminate_reset(struct srd_decoder_inst *di)
1249{
1250 PyGILState_STATE gstate;
1251 PyObject *py_ret;
1252 GSList *l;
1253 int ret;
1254
1255 if (!di)
1256 return SRD_ERR_ARG;
1257
1258 /*
1259 * Request termination and wait for previously initiated
1260 * background operation to finish. Reset internal state, but
1261 * do not start releasing resources yet. This shall result in
1262 * decoders' state just like after creation. This block handles
1263 * the C language library side.
1264 */
1265 srd_dbg("Terminating instance %s", di->inst_id);
1266 srd_inst_join_decode_thread(di);
1267 srd_inst_reset_state(di);
1268
1269 /*
1270 * Have the Python side's .reset() method executed (if the PD
1271 * implements it). It's assumed that .reset() assigns variables
1272 * very much like __init__() used to do in the past. Thus memory
1273 * that was allocated in previous calls gets released by Python
1274 * as it's not referenced any longer.
1275 */
1276 gstate = PyGILState_Ensure();
1277 if (PyObject_HasAttrString(di->py_inst, "reset")) {
755e4a1e 1278 srd_dbg("Calling reset() of instance %s", di->inst_id);
9553e962
GS
1279 py_ret = PyObject_CallMethod(di->py_inst, "reset", NULL);
1280 Py_XDECREF(py_ret);
1281 }
1282 PyGILState_Release(gstate);
1283
7969d803 1284 /* Pass the "restart" request to all stacked decoders. */
9553e962
GS
1285 for (l = di->next_di; l; l = l->next) {
1286 ret = srd_inst_terminate_reset(l->data);
1287 if (ret != SRD_OK)
1288 return ret;
1289 }
1290
d4d8ac2a 1291 return di->decoder_state;
9553e962
GS
1292}
1293
57790bc8 1294/** @private */
12243c22 1295SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di)
fa12a21e
BV
1296{
1297 GSList *l;
1298 struct srd_pd_output *pdo;
514b2edc 1299 PyGILState_STATE gstate;
fa12a21e 1300
7969d803 1301 srd_dbg("Freeing instance %s.", di->inst_id);
fa12a21e 1302
04383ea8 1303 srd_inst_join_decode_thread(di);
514b2edc 1304
04383ea8
GS
1305 srd_inst_reset_state(di);
1306
514b2edc 1307 gstate = PyGILState_Ensure();
a8b72b05 1308 Py_DecRef(di->py_inst);
514b2edc
UH
1309 PyGILState_Release(gstate);
1310
a8b72b05 1311 g_free(di->inst_id);
6a15597a 1312 g_free(di->dec_channelmap);
d2297b87 1313 g_free(di->channel_samples);
fa12a21e
BV
1314 g_slist_free(di->next_di);
1315 for (l = di->pd_output; l; l = l->next) {
1316 pdo = l->data;
1317 g_free(pdo->proto_id);
1318 g_free(pdo);
1319 }
1320 g_slist_free(di->pd_output);
e592ac89 1321 g_free(di);
fa12a21e
BV
1322}
1323
57790bc8 1324/** @private */
3262ef02 1325SRD_PRIV void srd_inst_free_all(struct srd_session *sess)
fa12a21e 1326{
4ccebbd3 1327 if (!sess)
32cfb920 1328 return;
32cfb920 1329
3262ef02 1330 g_slist_free_full(sess->di_list, (GDestroyNotify)srd_inst_free);
fa12a21e 1331}
b2c19614 1332
4895418c 1333/** @} */