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