]> sigrok.org Git - libsigrokdecode.git/blame - type_decoder.c
miller: Minor description/whitespace fixes.
[libsigrokdecode.git] / type_decoder.c
CommitLineData
d0a0ed03 1/*
50bd5d25 2 * This file is part of the libsigrokdecode project.
d0a0ed03
BV
3 *
4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
36784362 20#include <config.h>
f6c7eade
MC
21#include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
22#include "libsigrokdecode.h"
dbeaab27 23#include <inttypes.h>
d0a0ed03 24
a4e9ca6f
UH
25/** @cond PRIVATE */
26extern SRD_PRIV GSList *sessions;
27/** @endcond */
28
17475b09
UH
29typedef struct {
30 PyObject_HEAD
31} srd_Decoder;
32
7969d803 33/* This is only used for nicer srd_dbg() output. */
201a85a8
DE
34static const char *output_type_name(unsigned int idx)
35{
36 static const char names[][16] = {
37 "OUTPUT_ANN",
38 "OUTPUT_PYTHON",
39 "OUTPUT_BINARY",
40 "OUTPUT_META",
41 "(invalid)"
42 };
7969d803 43
201a85a8
DE
44 return names[MIN(idx, G_N_ELEMENTS(names) - 1)];
45}
58572aed 46
c1b2bbc1
GS
47static void release_annotation(struct srd_proto_data_annotation *pda)
48{
49 if (!pda)
50 return;
51 if (pda->ann_text)
52 g_strfreev(pda->ann_text);
c1b2bbc1
GS
53}
54
4f75f1c1 55static int convert_annotation(struct srd_decoder_inst *di, PyObject *obj,
0b922460 56 struct srd_proto_data *pdata)
d0a0ed03
BV
57{
58 PyObject *py_tmp;
59 struct srd_pd_output *pdo;
0b922460 60 struct srd_proto_data_annotation *pda;
280d554c 61 int ann_class;
0b922460 62 char **ann_text;
514b2edc
UH
63 PyGILState_STATE gstate;
64
65 gstate = PyGILState_Ensure();
d0a0ed03 66
280d554c 67 /* Should be a list of [annotation class, [string, ...]]. */
0679f5bf 68 if (!PyList_Check(obj)) {
201a85a8 69 srd_err("Protocol decoder %s submitted an annotation that"
0679f5bf 70 " is not a list", di->decoder->name);
514b2edc 71 goto err;
d0a0ed03
BV
72 }
73
361fdcaa 74 /* Should have 2 elements. */
d0a0ed03 75 if (PyList_Size(obj) != 2) {
c9bfccc6 76 srd_err("Protocol decoder %s submitted annotation list with "
4916b173 77 "%zd elements instead of 2", di->decoder->name,
c9bfccc6 78 PyList_Size(obj));
514b2edc 79 goto err;
d0a0ed03
BV
80 }
81
c9bfccc6
UH
82 /*
83 * The first element should be an integer matching a previously
280d554c 84 * registered annotation class.
c9bfccc6 85 */
d0a0ed03
BV
86 py_tmp = PyList_GetItem(obj, 0);
87 if (!PyLong_Check(py_tmp)) {
c9bfccc6
UH
88 srd_err("Protocol decoder %s submitted annotation list, but "
89 "first element was not an integer.", di->decoder->name);
514b2edc 90 goto err;
d0a0ed03 91 }
280d554c
UH
92 ann_class = PyLong_AsLong(py_tmp);
93 if (!(pdo = g_slist_nth_data(di->decoder->annotations, ann_class))) {
d906d3f9 94 srd_err("Protocol decoder %s submitted data to unregistered "
280d554c 95 "annotation class %d.", di->decoder->name, ann_class);
514b2edc 96 goto err;
d0a0ed03 97 }
d0a0ed03 98
361fdcaa 99 /* Second element must be a list. */
d0a0ed03
BV
100 py_tmp = PyList_GetItem(obj, 1);
101 if (!PyList_Check(py_tmp)) {
d906d3f9 102 srd_err("Protocol decoder %s submitted annotation list, but "
c9bfccc6 103 "second element was not a list.", di->decoder->name);
514b2edc 104 goto err;
d0a0ed03 105 }
62a2b15c 106 if (py_strseq_to_char(py_tmp, &ann_text) != SRD_OK) {
d906d3f9 107 srd_err("Protocol decoder %s submitted annotation list, but "
c9bfccc6 108 "second element was malformed.", di->decoder->name);
514b2edc 109 goto err;
d0a0ed03
BV
110 }
111
ee63c5dd 112 pda = pdata->data;
280d554c 113 pda->ann_class = ann_class;
0b922460 114 pda->ann_text = ann_text;
0b922460 115
514b2edc
UH
116 PyGILState_Release(gstate);
117
d0a0ed03 118 return SRD_OK;
514b2edc
UH
119
120err:
121 PyGILState_Release(gstate);
122
123 return SRD_ERR_PYTHON;
d0a0ed03
BV
124}
125
c1b2bbc1
GS
126static void release_binary(struct srd_proto_data_binary *pdb)
127{
128 if (!pdb)
129 return;
8390f85a 130 g_free((void *)pdb->data);
c1b2bbc1
GS
131}
132
d75d8a7c
BV
133static int convert_binary(struct srd_decoder_inst *di, PyObject *obj,
134 struct srd_proto_data *pdata)
135{
136 struct srd_proto_data_binary *pdb;
137 PyObject *py_tmp;
138 Py_ssize_t size;
139 int bin_class;
140 char *class_name, *buf;
514b2edc
UH
141 PyGILState_STATE gstate;
142
143 gstate = PyGILState_Ensure();
d75d8a7c 144
2824e811
UH
145 /* Should be a list of [binary class, bytes]. */
146 if (!PyList_Check(obj)) {
147 srd_err("Protocol decoder %s submitted non-list for SRD_OUTPUT_BINARY.",
201a85a8 148 di->decoder->name);
514b2edc 149 goto err;
d75d8a7c
BV
150 }
151
152 /* Should have 2 elements. */
2824e811
UH
153 if (PyList_Size(obj) != 2) {
154 srd_err("Protocol decoder %s submitted SRD_OUTPUT_BINARY list "
4916b173 155 "with %zd elements instead of 2", di->decoder->name,
d75d8a7c 156 PyList_Size(obj));
514b2edc 157 goto err;
d75d8a7c
BV
158 }
159
160 /* The first element should be an integer. */
2824e811 161 py_tmp = PyList_GetItem(obj, 0);
d75d8a7c 162 if (!PyLong_Check(py_tmp)) {
2824e811 163 srd_err("Protocol decoder %s submitted SRD_OUTPUT_BINARY list, "
d75d8a7c 164 "but first element was not an integer.", di->decoder->name);
514b2edc 165 goto err;
d75d8a7c
BV
166 }
167 bin_class = PyLong_AsLong(py_tmp);
168 if (!(class_name = g_slist_nth_data(di->decoder->binary, bin_class))) {
169 srd_err("Protocol decoder %s submitted SRD_OUTPUT_BINARY with "
170 "unregistered binary class %d.", di->decoder->name, bin_class);
514b2edc 171 goto err;
d75d8a7c
BV
172 }
173
174 /* Second element should be bytes. */
2824e811 175 py_tmp = PyList_GetItem(obj, 1);
d75d8a7c 176 if (!PyBytes_Check(py_tmp)) {
2824e811 177 srd_err("Protocol decoder %s submitted SRD_OUTPUT_BINARY list, "
d75d8a7c 178 "but second element was not bytes.", di->decoder->name);
514b2edc 179 goto err;
d75d8a7c
BV
180 }
181
182 /* Consider an empty set of bytes a bug. */
183 if (PyBytes_Size(py_tmp) == 0) {
184 srd_err("Protocol decoder %s submitted SRD_OUTPUT_BINARY "
185 "with empty data set.", di->decoder->name);
514b2edc 186 goto err;
d75d8a7c
BV
187 }
188
d75d8a7c 189 if (PyBytes_AsStringAndSize(py_tmp, &buf, &size) == -1)
514b2edc
UH
190 goto err;
191
192 PyGILState_Release(gstate);
193
c94631f1 194 pdb = pdata->data;
d75d8a7c
BV
195 pdb->bin_class = bin_class;
196 pdb->size = size;
c94631f1 197 if (!(pdb->data = g_try_malloc(pdb->size)))
d75d8a7c
BV
198 return SRD_ERR_MALLOC;
199 memcpy((void *)pdb->data, (const void *)buf, pdb->size);
d75d8a7c
BV
200
201 return SRD_OK;
514b2edc
UH
202
203err:
204 PyGILState_Release(gstate);
205
206 return SRD_ERR_PYTHON;
d75d8a7c
BV
207}
208
29adc171 209static inline struct srd_decoder_inst *srd_sess_inst_find_by_obj(
a4e9ca6f
UH
210 struct srd_session *sess, const GSList *stack, const PyObject *obj)
211{
212 const GSList *l;
213 struct srd_decoder_inst *tmp, *di;
214
215 if (!sess)
216 return NULL;
217
218 di = NULL;
219 for (l = stack ? stack : sess->di_list; di == NULL && l != NULL; l = l->next) {
220 tmp = l->data;
221 if (tmp->py_inst == obj)
222 di = tmp;
223 else if (tmp->next_di)
224 di = srd_sess_inst_find_by_obj(sess, tmp->next_di, obj);
225 }
226
227 return di;
228}
229
230/**
231 * Find a decoder instance by its Python object.
232 *
233 * I.e. find that instance's instantiation of the sigrokdecode.Decoder class.
234 * This will recurse to find the instance anywhere in the stack tree of all
235 * sessions.
236 *
237 * @param stack Pointer to a GSList of struct srd_decoder_inst, indicating the
238 * stack to search. To start searching at the bottom level of
239 * decoder instances, pass NULL.
240 * @param obj The Python class instantiation.
241 *
242 * @return Pointer to struct srd_decoder_inst, or NULL if not found.
243 *
244 * @since 0.1.0
245 */
29adc171 246static inline struct srd_decoder_inst *srd_inst_find_by_obj(
a4e9ca6f
UH
247 const GSList *stack, const PyObject *obj)
248{
249 struct srd_decoder_inst *di;
250 struct srd_session *sess;
251 GSList *l;
252
996b17db
UH
253 /* Performance shortcut: Handle the most common case first. */
254 sess = sessions->data;
255 di = sess->di_list->data;
256 if (di->py_inst == obj)
257 return di;
258
a4e9ca6f
UH
259 di = NULL;
260 for (l = sessions; di == NULL && l != NULL; l = l->next) {
261 sess = l->data;
262 di = srd_sess_inst_find_by_obj(sess, stack, obj);
263 }
264
265 return di;
266}
267
7ee0c40b
BV
268static int convert_meta(struct srd_proto_data *pdata, PyObject *obj)
269{
270 long long intvalue;
271 double dvalue;
514b2edc
UH
272 PyGILState_STATE gstate;
273
274 gstate = PyGILState_Ensure();
7ee0c40b 275
ec31b982 276 if (g_variant_type_equal(pdata->pdo->meta_type, G_VARIANT_TYPE_INT64)) {
7ee0c40b
BV
277 if (!PyLong_Check(obj)) {
278 PyErr_Format(PyExc_TypeError, "This output was registered "
201a85a8 279 "as 'int', but something else was passed.");
514b2edc 280 goto err;
7ee0c40b
BV
281 }
282 intvalue = PyLong_AsLongLong(obj);
283 if (PyErr_Occurred())
514b2edc 284 goto err;
7ee0c40b 285 pdata->data = g_variant_new_int64(intvalue);
ec31b982 286 } else if (g_variant_type_equal(pdata->pdo->meta_type, G_VARIANT_TYPE_DOUBLE)) {
7ee0c40b
BV
287 if (!PyFloat_Check(obj)) {
288 PyErr_Format(PyExc_TypeError, "This output was registered "
201a85a8 289 "as 'float', but something else was passed.");
514b2edc 290 goto err;
7ee0c40b
BV
291 }
292 dvalue = PyFloat_AsDouble(obj);
293 if (PyErr_Occurred())
514b2edc 294 goto err;
7ee0c40b
BV
295 pdata->data = g_variant_new_double(dvalue);
296 }
297
514b2edc
UH
298 PyGILState_Release(gstate);
299
7ee0c40b 300 return SRD_OK;
514b2edc
UH
301
302err:
303 PyGILState_Release(gstate);
304
305 return SRD_ERR_PYTHON;
7ee0c40b
BV
306}
307
287e2788
UH
308static void release_meta(GVariant *gvar)
309{
310 if (!gvar)
311 return;
312 g_variant_unref(gvar);
313}
314
d0a0ed03
BV
315static PyObject *Decoder_put(PyObject *self, PyObject *args)
316{
317 GSList *l;
4f75f1c1 318 PyObject *py_data, *py_res;
a8b72b05 319 struct srd_decoder_inst *di, *next_di;
d0a0ed03 320 struct srd_pd_output *pdo;
8a9f60b1 321 struct srd_proto_data pdata;
ee63c5dd 322 struct srd_proto_data_annotation pda;
c94631f1 323 struct srd_proto_data_binary pdb;
d0a0ed03
BV
324 uint64_t start_sample, end_sample;
325 int output_id;
2994587f 326 struct srd_pd_callback *cb;
514b2edc
UH
327 PyGILState_STATE gstate;
328
287e2788
UH
329 py_data = NULL;
330
514b2edc 331 gstate = PyGILState_Ensure();
d0a0ed03 332
a8b72b05 333 if (!(di = srd_inst_find_by_obj(NULL, self))) {
58572aed 334 /* Shouldn't happen. */
7a1712c4 335 srd_dbg("put(): self instance not found.");
514b2edc 336 goto err;
58572aed 337 }
d0a0ed03 338
c9bfccc6 339 if (!PyArg_ParseTuple(args, "KKiO", &start_sample, &end_sample,
3d14e7c9 340 &output_id, &py_data)) {
c9bfccc6
UH
341 /*
342 * This throws an exception, but by returning NULL here we let
343 * Python raise it. This results in a much better trace in
344 * controller.c on the decode() method call.
345 */
514b2edc 346 goto err;
c9bfccc6 347 }
d0a0ed03
BV
348
349 if (!(l = g_slist_nth(di->pd_output, output_id))) {
d906d3f9 350 srd_err("Protocol decoder %s submitted invalid output ID %d.",
c9bfccc6 351 di->decoder->name, output_id);
514b2edc 352 goto err;
d0a0ed03
BV
353 }
354 pdo = l->data;
355
1c2b0d0b 356 srd_spew("Instance %s put %" PRIu64 "-%" PRIu64 " %s on oid %d.",
a8b72b05 357 di->inst_id, start_sample, end_sample,
201a85a8 358 output_type_name(pdo->output_type), output_id);
58572aed 359
8a9f60b1
UH
360 pdata.start_sample = start_sample;
361 pdata.end_sample = end_sample;
362 pdata.pdo = pdo;
363 pdata.data = NULL;
d0a0ed03
BV
364
365 switch (pdo->output_type) {
366 case SRD_OUTPUT_ANN:
367 /* Annotations are only fed to callbacks. */
32cfb920 368 if ((cb = srd_pd_output_callback_find(di->sess, pdo->output_type))) {
ee63c5dd 369 pdata.data = &pda;
d75d8a7c 370 /* Convert from PyDict to srd_proto_data_annotation. */
8a9f60b1 371 if (convert_annotation(di, py_data, &pdata) != SRD_OK) {
d0a0ed03
BV
372 /* An error was already logged. */
373 break;
374 }
514b2edc 375 Py_BEGIN_ALLOW_THREADS
8a9f60b1 376 cb->cb(&pdata, cb->cb_data);
514b2edc 377 Py_END_ALLOW_THREADS
c1b2bbc1 378 release_annotation(pdata.data);
d0a0ed03
BV
379 }
380 break;
f2a5df42 381 case SRD_OUTPUT_PYTHON:
d0a0ed03
BV
382 for (l = di->next_di; l; l = l->next) {
383 next_di = l->data;
4916b173 384 srd_spew("Sending %" PRIu64 "-%" PRIu64 " to instance %s",
3d14e7c9 385 start_sample, end_sample, next_di->inst_id);
c9bfccc6 386 if (!(py_res = PyObject_CallMethod(
3d14e7c9
BV
387 next_di->py_inst, "decode", "KKO", start_sample,
388 end_sample, py_data))) {
201a85a8 389 srd_exception_catch("Calling %s decode() failed",
3d14e7c9 390 next_di->inst_id);
d0a0ed03
BV
391 }
392 Py_XDECREF(py_res);
393 }
3d14e7c9 394 if ((cb = srd_pd_output_callback_find(di->sess, pdo->output_type))) {
7969d803
UH
395 /*
396 * Frontends aren't really supposed to get Python
397 * callbacks, but it's useful for testing.
398 */
8a9f60b1
UH
399 pdata.data = py_data;
400 cb->cb(&pdata, cb->cb_data);
3d14e7c9 401 }
d0a0ed03
BV
402 break;
403 case SRD_OUTPUT_BINARY:
d75d8a7c 404 if ((cb = srd_pd_output_callback_find(di->sess, pdo->output_type))) {
c94631f1 405 pdata.data = &pdb;
d75d8a7c 406 /* Convert from PyDict to srd_proto_data_binary. */
8a9f60b1 407 if (convert_binary(di, py_data, &pdata) != SRD_OK) {
d75d8a7c
BV
408 /* An error was already logged. */
409 break;
410 }
514b2edc 411 Py_BEGIN_ALLOW_THREADS
8a9f60b1 412 cb->cb(&pdata, cb->cb_data);
514b2edc 413 Py_END_ALLOW_THREADS
c1b2bbc1 414 release_binary(pdata.data);
d75d8a7c 415 }
d0a0ed03 416 break;
7ee0c40b
BV
417 case SRD_OUTPUT_META:
418 if ((cb = srd_pd_output_callback_find(di->sess, pdo->output_type))) {
419 /* Annotations need converting from PyObject. */
8a9f60b1 420 if (convert_meta(&pdata, py_data) != SRD_OK) {
7ee0c40b
BV
421 /* An exception was already set up. */
422 break;
423 }
514b2edc 424 Py_BEGIN_ALLOW_THREADS
8a9f60b1 425 cb->cb(&pdata, cb->cb_data);
514b2edc 426 Py_END_ALLOW_THREADS
287e2788 427 release_meta(pdata.data);
7ee0c40b
BV
428 }
429 break;
d0a0ed03 430 default:
d906d3f9 431 srd_err("Protocol decoder %s submitted invalid output type %d.",
c9bfccc6 432 di->decoder->name, pdo->output_type);
d0a0ed03
BV
433 break;
434 }
435
514b2edc
UH
436 PyGILState_Release(gstate);
437
d0a0ed03 438 Py_RETURN_NONE;
514b2edc
UH
439
440err:
441 PyGILState_Release(gstate);
442
443 return NULL;
d0a0ed03
BV
444}
445
7ee0c40b
BV
446static PyObject *Decoder_register(PyObject *self, PyObject *args,
447 PyObject *kwargs)
d0a0ed03 448{
a8b72b05 449 struct srd_decoder_inst *di;
7ee0c40b
BV
450 struct srd_pd_output *pdo;
451 PyObject *py_new_output_id;
452 PyTypeObject *meta_type_py;
453 const GVariantType *meta_type_gv;
454 int output_type;
455 char *proto_id, *meta_name, *meta_descr;
7969d803 456 char *keywords[] = { "output_type", "proto_id", "meta", NULL };
514b2edc 457 PyGILState_STATE gstate;
7d82e3c1
GS
458 gboolean is_meta;
459 GSList *l;
460 struct srd_pd_output *cmp;
514b2edc
UH
461
462 gstate = PyGILState_Ensure();
7ee0c40b
BV
463
464 meta_type_py = NULL;
465 meta_type_gv = NULL;
466 meta_name = meta_descr = NULL;
d0a0ed03 467
a8b72b05 468 if (!(di = srd_inst_find_by_obj(NULL, self))) {
d0a0ed03 469 PyErr_SetString(PyExc_Exception, "decoder instance not found");
514b2edc 470 goto err;
d0a0ed03
BV
471 }
472
7969d803 473 /* Default to instance ID, which defaults to class ID. */
7ee0c40b
BV
474 proto_id = di->inst_id;
475 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|s(Oss)", keywords,
476 &output_type, &proto_id,
477 &meta_type_py, &meta_name, &meta_descr)) {
511e2123 478 /* Let Python raise this exception. */
514b2edc 479 goto err;
d0a0ed03
BV
480 }
481
7ee0c40b 482 /* Check if the meta value's type is supported. */
7d82e3c1
GS
483 is_meta = output_type == SRD_OUTPUT_META;
484 if (is_meta) {
7ee0c40b
BV
485 if (meta_type_py == &PyLong_Type)
486 meta_type_gv = G_VARIANT_TYPE_INT64;
487 else if (meta_type_py == &PyFloat_Type)
488 meta_type_gv = G_VARIANT_TYPE_DOUBLE;
489 else {
201a85a8 490 PyErr_Format(PyExc_TypeError, "Unsupported type.");
514b2edc 491 goto err;
7ee0c40b
BV
492 }
493 }
494
7d82e3c1
GS
495 pdo = NULL;
496 for (l = di->pd_output; l; l = l->next) {
497 cmp = l->data;
498 if (cmp->output_type != output_type)
499 continue;
500 if (strcmp(cmp->proto_id, proto_id) != 0)
501 continue;
502 if (is_meta && cmp->meta_type != meta_type_gv)
503 continue;
504 if (is_meta && strcmp(cmp->meta_name, meta_name) != 0)
505 continue;
506 if (is_meta && strcmp(cmp->meta_descr, meta_descr) != 0)
507 continue;
508 pdo = cmp;
509 break;
510 }
511 if (pdo) {
512 py_new_output_id = Py_BuildValue("i", pdo->pdo_id);
513 PyGILState_Release(gstate);
514 return py_new_output_id;
515 }
516
7ee0c40b
BV
517 srd_dbg("Instance %s creating new output type %d for %s.",
518 di->inst_id, output_type, proto_id);
519
077fa8ac 520 pdo = g_malloc(sizeof(struct srd_pd_output));
7ee0c40b
BV
521
522 /* pdo_id is just a simple index, nothing is deleted from this list anyway. */
523 pdo->pdo_id = g_slist_length(di->pd_output);
524 pdo->output_type = output_type;
525 pdo->di = di;
526 pdo->proto_id = g_strdup(proto_id);
527
528 if (output_type == SRD_OUTPUT_META) {
529 pdo->meta_type = meta_type_gv;
530 pdo->meta_name = g_strdup(meta_name);
531 pdo->meta_descr = g_strdup(meta_descr);
532 }
533
534 di->pd_output = g_slist_append(di->pd_output, pdo);
535 py_new_output_id = Py_BuildValue("i", pdo->pdo_id);
536
514b2edc
UH
537 PyGILState_Release(gstate);
538
7ee0c40b 539 return py_new_output_id;
514b2edc
UH
540
541err:
542 PyGILState_Release(gstate);
543
544 return NULL;
7ee0c40b
BV
545}
546
21dfd91d
UH
547static int get_term_type(const char *v)
548{
549 switch (v[0]) {
550 case 'h':
551 return SRD_TERM_HIGH;
552 case 'l':
553 return SRD_TERM_LOW;
554 case 'r':
555 return SRD_TERM_RISING_EDGE;
556 case 'f':
557 return SRD_TERM_FALLING_EDGE;
558 case 'e':
559 return SRD_TERM_EITHER_EDGE;
560 case 'n':
561 return SRD_TERM_NO_EDGE;
4e7ccaf9
UH
562 default:
563 return -1;
21dfd91d
UH
564 }
565
566 return -1;
567}
568
569/**
570 * Get the pin values at the current sample number.
571 *
572 * @param di The decoder instance to use. Must not be NULL.
573 * The number of channels must be >= 1.
574 *
575 * @return A newly allocated PyTuple containing the pin values at the
576 * current sample number.
577 */
578static PyObject *get_current_pinvalues(const struct srd_decoder_inst *di)
579{
580 int i;
581 uint8_t sample;
582 const uint8_t *sample_pos;
583 int byte_offset, bit_offset;
584 PyObject *py_pinvalues;
514b2edc
UH
585 PyGILState_STATE gstate;
586
21dfd91d
UH
587 if (!di) {
588 srd_err("Invalid decoder instance.");
589 return NULL;
590 }
591
73578d2e
UH
592 gstate = PyGILState_Ensure();
593
21dfd91d
UH
594 py_pinvalues = PyTuple_New(di->dec_num_channels);
595
596 for (i = 0; i < di->dec_num_channels; i++) {
597 /* A channelmap value of -1 means "unused optional channel". */
598 if (di->dec_channelmap[i] == -1) {
599 /* Value of unused channel is 0xff, instead of 0 or 1. */
600 PyTuple_SetItem(py_pinvalues, i, PyLong_FromLong(0xff));
601 } else {
4564e8e5 602 sample_pos = di->inbuf + ((di->abs_cur_samplenum - di->abs_start_samplenum) * di->data_unitsize);
21dfd91d
UH
603 byte_offset = di->dec_channelmap[i] / 8;
604 bit_offset = di->dec_channelmap[i] % 8;
605 sample = *(sample_pos + byte_offset) & (1 << bit_offset) ? 1 : 0;
606 PyTuple_SetItem(py_pinvalues, i, PyLong_FromLong(sample));
607 }
608 }
609
514b2edc
UH
610 PyGILState_Release(gstate);
611
21dfd91d
UH
612 return py_pinvalues;
613}
614
615/**
616 * Create a list of terms in the specified condition.
617 *
618 * If there are no terms in the condition, 'term_list' will be NULL.
619 *
620 * @param py_dict A Python dict containing terms. Must not be NULL.
621 * @param term_list Pointer to a GSList which will be set to the newly
622 * created list of terms. Must not be NULL.
623 *
624 * @return SRD_OK upon success, a negative error code otherwise.
625 */
626static int create_term_list(PyObject *py_dict, GSList **term_list)
627{
628 Py_ssize_t pos = 0;
629 PyObject *py_key, *py_value;
630 struct srd_term *term;
631 uint64_t num_samples_to_skip;
632 char *term_str;
514b2edc 633 PyGILState_STATE gstate;
21dfd91d
UH
634
635 if (!py_dict || !term_list)
636 return SRD_ERR_ARG;
637
638 /* "Create" an empty GSList of terms. */
639 *term_list = NULL;
640
514b2edc
UH
641 gstate = PyGILState_Ensure();
642
21dfd91d
UH
643 /* Iterate over all items in the current dict. */
644 while (PyDict_Next(py_dict, &pos, &py_key, &py_value)) {
645 /* Check whether the current key is a string or a number. */
646 if (PyLong_Check(py_key)) {
647 /* The key is a number. */
648 /* TODO: Check if the number is a valid channel. */
649 /* Get the value string. */
650 if ((py_pydictitem_as_str(py_dict, py_key, &term_str)) != SRD_OK) {
651 srd_err("Failed to get the value.");
514b2edc 652 goto err;
21dfd91d 653 }
35c10c0e 654 term = g_malloc(sizeof(struct srd_term));
21dfd91d
UH
655 term->type = get_term_type(term_str);
656 term->channel = PyLong_AsLong(py_key);
657 g_free(term_str);
658 } else if (PyUnicode_Check(py_key)) {
659 /* The key is a string. */
660 /* TODO: Check if it's "skip". */
661 if ((py_pydictitem_as_long(py_dict, py_key, &num_samples_to_skip)) != SRD_OK) {
662 srd_err("Failed to get number of samples to skip.");
514b2edc 663 goto err;
21dfd91d 664 }
35c10c0e 665 term = g_malloc(sizeof(struct srd_term));
21dfd91d
UH
666 term->type = SRD_TERM_SKIP;
667 term->num_samples_to_skip = num_samples_to_skip;
668 term->num_samples_already_skipped = 0;
669 } else {
670 srd_err("Term key is neither a string nor a number.");
514b2edc 671 goto err;
21dfd91d
UH
672 }
673
674 /* Add the term to the list of terms. */
675 *term_list = g_slist_append(*term_list, term);
676 }
677
514b2edc
UH
678 PyGILState_Release(gstate);
679
21dfd91d 680 return SRD_OK;
514b2edc
UH
681
682err:
683 PyGILState_Release(gstate);
684
685 return SRD_ERR;
21dfd91d
UH
686}
687
688/**
689 * Replace the current condition list with the new one.
690 *
691 * @param self TODO. Must not be NULL.
692 * @param args TODO. Must not be NULL.
693 *
694 * @retval SRD_OK The new condition list was set successfully.
695 * @retval SRD_ERR There was an error setting the new condition list.
696 * The contents of di->condition_list are undefined.
697 * @retval 9999 TODO.
698 */
699static int set_new_condition_list(PyObject *self, PyObject *args)
700{
701 struct srd_decoder_inst *di;
702 GSList *term_list;
703 PyObject *py_conditionlist, *py_conds, *py_dict;
704 int i, num_conditions, ret;
514b2edc 705 PyGILState_STATE gstate;
21dfd91d
UH
706
707 if (!self || !args)
708 return SRD_ERR_ARG;
709
514b2edc
UH
710 gstate = PyGILState_Ensure();
711
21dfd91d
UH
712 /* Get the decoder instance. */
713 if (!(di = srd_inst_find_by_obj(NULL, self))) {
714 PyErr_SetString(PyExc_Exception, "decoder instance not found");
514b2edc 715 goto err;
21dfd91d
UH
716 }
717
04383ea8
GS
718 /*
719 * Return an error condition from .wait() when termination is
720 * requested, such that decode() will terminate.
721 */
722 if (di->want_wait_terminate) {
723 srd_dbg("%s: %s: Skip (want_term).", di->inst_id, __func__);
514b2edc 724 goto err;
04383ea8
GS
725 }
726
6e19f325
GS
727 /*
728 * Parse the argument of self.wait() into 'py_conds', and check
729 * the data type. The argument is optional, None is assumed in
730 * its absence. None or an empty dict or an empty list mean that
731 * there is no condition, and the next available sample shall
732 * get returned to the caller.
733 */
734 py_conds = Py_None;
735 if (!PyArg_ParseTuple(args, "|O", &py_conds)) {
21dfd91d 736 /* Let Python raise this exception. */
514b2edc 737 goto err;
21dfd91d 738 }
6e19f325
GS
739 if (py_conds == Py_None) {
740 /* 'py_conds' is None. */
514b2edc 741 goto ret_9999;
6e19f325 742 } else if (PyList_Check(py_conds)) {
21dfd91d
UH
743 /* 'py_conds' is a list. */
744 py_conditionlist = py_conds;
745 num_conditions = PyList_Size(py_conditionlist);
746 if (num_conditions == 0)
514b2edc 747 goto ret_9999; /* The PD invoked self.wait([]). */
066fbafd 748 Py_IncRef(py_conditionlist);
21dfd91d
UH
749 } else if (PyDict_Check(py_conds)) {
750 /* 'py_conds' is a dict. */
751 if (PyDict_Size(py_conds) == 0)
514b2edc 752 goto ret_9999; /* The PD invoked self.wait({}). */
21dfd91d
UH
753 /* Make a list and put the dict in there for convenience. */
754 py_conditionlist = PyList_New(1);
01f15bdf 755 Py_IncRef(py_conds);
21dfd91d
UH
756 PyList_SetItem(py_conditionlist, 0, py_conds);
757 num_conditions = 1;
758 } else {
759 srd_err("Condition list is neither a list nor a dict.");
514b2edc 760 goto err;
21dfd91d
UH
761 }
762
763 /* Free the old condition list. */
764 condition_list_free(di);
765
766 ret = SRD_OK;
767
768 /* Iterate over the conditions, set di->condition_list accordingly. */
769 for (i = 0; i < num_conditions; i++) {
770 /* Get a condition (dict) from the condition list. */
771 py_dict = PyList_GetItem(py_conditionlist, i);
772 if (!PyDict_Check(py_dict)) {
773 srd_err("Condition is not a dict.");
774 ret = SRD_ERR;
775 break;
776 }
777
778 /* Create the list of terms in this condition. */
779 if ((ret = create_term_list(py_dict, &term_list)) < 0)
780 break;
781
782 /* Add the new condition to the PD instance's condition list. */
783 di->condition_list = g_slist_append(di->condition_list, term_list);
784 }
785
786 Py_DecRef(py_conditionlist);
787
514b2edc
UH
788 PyGILState_Release(gstate);
789
21dfd91d 790 return ret;
514b2edc
UH
791
792err:
793 PyGILState_Release(gstate);
794
795 return SRD_ERR;
796
797ret_9999:
798 PyGILState_Release(gstate);
799
800 return 9999;
21dfd91d
UH
801}
802
96e1cee7
GS
803/**
804 * Create a SKIP condition list for condition-less .wait() calls.
805 *
806 * @param di Decoder instance.
807 * @param count Number of samples to skip.
808 *
809 * @retval SRD_OK The new condition list was set successfully.
810 * @retval SRD_ERR There was an error setting the new condition list.
811 * The contents of di->condition_list are undefined.
812 *
813 * This routine is a reduced and specialized version of the @ref
814 * set_new_condition_list() and @ref create_term_list() routines which
815 * gets invoked when .wait() was called without specifications for
816 * conditions. This minor duplication of the SKIP term list creation
817 * simplifies the logic and avoids the creation of expensive Python
818 * objects with "constant" values which the caller did not pass in the
819 * first place. It results in maximum sharing of match handling code
820 * paths.
821 */
822static int set_skip_condition(struct srd_decoder_inst *di, uint64_t count)
823{
824 struct srd_term *term;
825 GSList *term_list;
826
827 condition_list_free(di);
35c10c0e 828 term = g_malloc(sizeof(*term));
96e1cee7
GS
829 term->type = SRD_TERM_SKIP;
830 term->num_samples_to_skip = count;
831 term->num_samples_already_skipped = 0;
832 term_list = g_slist_append(NULL, term);
833 di->condition_list = g_slist_append(di->condition_list, term_list);
834
835 return SRD_OK;
836}
837
21dfd91d
UH
838static PyObject *Decoder_wait(PyObject *self, PyObject *args)
839{
840 int ret;
96e1cee7 841 uint64_t skip_count;
21dfd91d
UH
842 unsigned int i;
843 gboolean found_match;
844 struct srd_decoder_inst *di;
845 PyObject *py_pinvalues, *py_matched;
514b2edc 846 PyGILState_STATE gstate;
21dfd91d
UH
847
848 if (!self || !args)
849 return NULL;
850
514b2edc
UH
851 gstate = PyGILState_Ensure();
852
21dfd91d
UH
853 if (!(di = srd_inst_find_by_obj(NULL, self))) {
854 PyErr_SetString(PyExc_Exception, "decoder instance not found");
514b2edc 855 PyGILState_Release(gstate);
21dfd91d
UH
856 Py_RETURN_NONE;
857 }
858
859 ret = set_new_condition_list(self, args);
04383ea8
GS
860 if (ret < 0) {
861 srd_dbg("%s: %s: Aborting wait().", di->inst_id, __func__);
514b2edc 862 goto err;
04383ea8 863 }
21dfd91d 864 if (ret == 9999) {
96e1cee7
GS
865 /*
866 * Empty condition list, automatic match. Arrange for the
867 * execution of regular match handling code paths such that
868 * the next available sample is returned to the caller.
869 * Make sure to skip one sample when "anywhere within the
870 * stream", yet make sure to not skip sample number 0.
871 */
872 if (di->abs_cur_samplenum)
873 skip_count = 1;
874 else if (!di->condition_list)
875 skip_count = 0;
876 else
877 skip_count = 1;
878 ret = set_skip_condition(di, skip_count);
879 if (ret < 0) {
880 srd_dbg("%s: %s: Cannot setup condition-less wait().",
881 di->inst_id, __func__);
514b2edc 882 goto err;
96e1cee7 883 }
21dfd91d
UH
884 }
885
886 while (1) {
514b2edc
UH
887
888 Py_BEGIN_ALLOW_THREADS
889
04383ea8 890 /* Wait for new samples to process, or termination request. */
21dfd91d 891 g_mutex_lock(&di->data_mutex);
04383ea8 892 while (!di->got_new_samples && !di->want_wait_terminate)
21dfd91d
UH
893 g_cond_wait(&di->got_new_samples_cond, &di->data_mutex);
894
04383ea8
GS
895 /*
896 * Check whether any of the current condition(s) match.
897 * Arrange for termination requests to take a code path which
898 * won't find new samples to process, pretends to have processed
899 * previously stored samples, and returns to the main thread,
900 * while the termination request still gets signalled.
901 */
902 found_match = FALSE;
60d4764a
UH
903
904 /* Ignore return value for now, should never be negative. */
905 (void)process_samples_until_condition_match(di, &found_match);
21dfd91d 906
514b2edc
UH
907 Py_END_ALLOW_THREADS
908
21dfd91d
UH
909 /* If there's a match, set self.samplenum etc. and return. */
910 if (found_match) {
911 /* Set self.samplenum to the (absolute) sample number that matched. */
912 PyObject_SetAttrString(di->py_inst, "samplenum",
4564e8e5 913 PyLong_FromLong(di->abs_cur_samplenum));
21dfd91d
UH
914
915 if (di->match_array && di->match_array->len > 0) {
916 py_matched = PyTuple_New(di->match_array->len);
917 for (i = 0; i < di->match_array->len; i++)
918 PyTuple_SetItem(py_matched, i, PyBool_FromLong(di->match_array->data[i]));
919 PyObject_SetAttrString(di->py_inst, "matched", py_matched);
920 match_array_free(di);
921 } else {
922 PyObject_SetAttrString(di->py_inst, "matched", Py_None);
923 }
fa168be6 924
21dfd91d
UH
925 py_pinvalues = get_current_pinvalues(di);
926
927 g_mutex_unlock(&di->data_mutex);
928
514b2edc
UH
929 PyGILState_Release(gstate);
930
21dfd91d
UH
931 return py_pinvalues;
932 }
933
934 /* No match, reset state for the next chunk. */
935 di->got_new_samples = FALSE;
936 di->handled_all_samples = TRUE;
4564e8e5
UH
937 di->abs_start_samplenum = 0;
938 di->abs_end_samplenum = 0;
21dfd91d
UH
939 di->inbuf = NULL;
940 di->inbuflen = 0;
941
942 /* Signal the main thread that we handled all samples. */
943 g_cond_signal(&di->handled_all_samples_cond);
944
04383ea8
GS
945 /*
946 * When termination of wait() and decode() was requested,
947 * then exit the loop after releasing the mutex.
948 */
949 if (di->want_wait_terminate) {
950 srd_dbg("%s: %s: Will return from wait().",
951 di->inst_id, __func__);
952 g_mutex_unlock(&di->data_mutex);
514b2edc 953 goto err;
04383ea8
GS
954 }
955
21dfd91d
UH
956 g_mutex_unlock(&di->data_mutex);
957 }
958
514b2edc
UH
959 PyGILState_Release(gstate);
960
21dfd91d 961 Py_RETURN_NONE;
514b2edc
UH
962
963err:
964 PyGILState_Release(gstate);
965
966 return NULL;
21dfd91d
UH
967}
968
969/**
970 * Return whether the specified channel was supplied to the decoder.
971 *
972 * @param self TODO. Must not be NULL.
973 * @param args TODO. Must not be NULL.
974 *
975 * @retval Py_True The channel has been supplied by the frontend.
976 * @retval Py_False The channel has been supplied by the frontend.
977 * @retval NULL An error occurred.
978 */
979static PyObject *Decoder_has_channel(PyObject *self, PyObject *args)
980{
cd8d9188 981 int idx, count;
21dfd91d 982 struct srd_decoder_inst *di;
514b2edc 983 PyGILState_STATE gstate;
21dfd91d
UH
984
985 if (!self || !args)
986 return NULL;
987
514b2edc
UH
988 gstate = PyGILState_Ensure();
989
21dfd91d
UH
990 if (!(di = srd_inst_find_by_obj(NULL, self))) {
991 PyErr_SetString(PyExc_Exception, "decoder instance not found");
514b2edc 992 goto err;
21dfd91d
UH
993 }
994
cd8d9188
GS
995 /*
996 * Get the integer argument of self.has_channel(). Check for
997 * the range of supported PD input channel numbers.
998 */
999 if (!PyArg_ParseTuple(args, "i", &idx)) {
21dfd91d 1000 /* Let Python raise this exception. */
514b2edc 1001 goto err;
21dfd91d
UH
1002 }
1003
cd8d9188
GS
1004 count = g_slist_length(di->decoder->channels) +
1005 g_slist_length(di->decoder->opt_channels);
1006 if (idx < 0 || idx >= count) {
1007 srd_err("Invalid index %d, PD channel count %d.", idx, count);
1008 PyErr_SetString(PyExc_IndexError, "invalid channel index");
514b2edc 1009 goto err;
21dfd91d
UH
1010 }
1011
514b2edc
UH
1012 PyGILState_Release(gstate);
1013
21dfd91d 1014 return (di->dec_channelmap[idx] == -1) ? Py_False : Py_True;
514b2edc
UH
1015
1016err:
1017 PyGILState_Release(gstate);
1018
1019 return NULL;
21dfd91d
UH
1020}
1021
d0a0ed03 1022static PyMethodDef Decoder_methods[] = {
7969d803
UH
1023 { "put", Decoder_put, METH_VARARGS,
1024 "Accepts a dictionary with the following keys: startsample, endsample, data" },
1025 { "register", (PyCFunction)Decoder_register, METH_VARARGS|METH_KEYWORDS,
1026 "Register a new output stream" },
1027 { "wait", Decoder_wait, METH_VARARGS,
1028 "Wait for one or more conditions to occur" },
1029 { "has_channel", Decoder_has_channel, METH_VARARGS,
1030 "Report whether a channel was supplied" },
d0a0ed03
BV
1031 {NULL, NULL, 0, NULL}
1032};
1033
21dfd91d
UH
1034/**
1035 * Create the sigrokdecode.Decoder type.
1036 *
201a85a8 1037 * @return The new type object.
21dfd91d 1038 *
201a85a8
DE
1039 * @private
1040 */
1041SRD_PRIV PyObject *srd_Decoder_type_new(void)
1042{
1043 PyType_Spec spec;
1044 PyType_Slot slots[] = {
1045 { Py_tp_doc, "sigrok Decoder base class" },
1046 { Py_tp_methods, Decoder_methods },
1047 { Py_tp_new, (void *)&PyType_GenericNew },
1048 { 0, NULL }
1049 };
514b2edc
UH
1050 PyObject *py_obj;
1051 PyGILState_STATE gstate;
1052
1053 gstate = PyGILState_Ensure();
1054
201a85a8
DE
1055 spec.name = "sigrokdecode.Decoder";
1056 spec.basicsize = sizeof(srd_Decoder);
1057 spec.itemsize = 0;
1058 spec.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE;
1059 spec.slots = slots;
1060
514b2edc
UH
1061 py_obj = PyType_FromSpec(&spec);
1062
1063 PyGILState_Release(gstate);
1064
1065 return py_obj;
201a85a8 1066}