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