]> sigrok.org Git - libsigrokdecode.git/blame - decoder.c
avr_isp: Add more parts
[libsigrokdecode.git] / decoder.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>
4fadb128 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"
eb2bbd66 24#include <glib.h>
b2c19614 25
54fdeeef
UH
26/**
27 * @file
28 *
29 * Listing, loading, unloading, and handling protocol decoders.
30 */
31
4895418c
UH
32/**
33 * @defgroup grp_decoder Protocol decoders
34 *
35 * Handling protocol decoders.
36 *
37 * @{
38 */
39
57790bc8
UH
40/** @cond PRIVATE */
41
c63f5a87 42/* The list of loaded protocol decoders. */
2060510a 43static GSList *pd_list = NULL;
b2c19614 44
ea81b49a 45/* srd.c */
23a29d24 46extern SRD_PRIV GSList *searchpaths;
ea81b49a
BV
47
48/* session.c */
23a29d24
UH
49extern SRD_PRIV GSList *sessions;
50extern SRD_PRIV int max_session_id;
32cfb920 51
c9bfccc6 52/* module_sigrokdecode.c */
55c3c5f4 53extern SRD_PRIV PyObject *mod_sigrokdecode;
451680f1 54
57790bc8
UH
55/** @endcond */
56
f6527cc4
UH
57static gboolean srd_check_init(void)
58{
59 if (max_session_id < 0) {
60 srd_err("Library is not initialized.");
61 return FALSE;
62 } else
63 return TRUE;
64}
65
b2c19614 66/**
c63f5a87 67 * Returns the list of loaded protocol decoders.
b2c19614 68 *
3a1501e9 69 * This is a GSList of pointers to struct srd_decoder items.
b2c19614
BV
70 *
71 * @return List of decoders, NULL if none are supported or loaded.
8c664ca2 72 *
c57d1013 73 * @since 0.2.0
b2c19614 74 */
38ff5046 75SRD_API const GSList *srd_decoder_list(void)
b2c19614 76{
e5080882 77 return pd_list;
b2c19614
BV
78}
79
b2c19614
BV
80/**
81 * Get the decoder with the specified ID.
82 *
83 * @param id The ID string of the decoder to return.
582c8473 84 *
b2c19614 85 * @return The decoder with the specified ID, or NULL if not found.
8c664ca2
UH
86 *
87 * @since 0.1.0
b2c19614 88 */
9d122fd5 89SRD_API struct srd_decoder *srd_decoder_get_by_id(const char *id)
b2c19614
BV
90{
91 GSList *l;
92 struct srd_decoder *dec;
93
38ff5046 94 for (l = pd_list; l; l = l->next) {
b2c19614
BV
95 dec = l->data;
96 if (!strcmp(dec->id, id))
97 return dec;
98 }
99
100 return NULL;
101}
102
6d67d057
DE
103static void channel_free(void *data)
104{
105 struct srd_channel *ch = data;
106
107 if (!ch)
108 return;
109
110 g_free(ch->desc);
111 g_free(ch->name);
112 g_free(ch->id);
113 g_free(ch);
114}
115
116static void variant_free(void *data)
117{
118 GVariant *var = data;
119
120 if (!var)
121 return;
122
123 g_variant_unref(var);
124}
125
126static void annotation_row_free(void *data)
127{
128 struct srd_decoder_annotation_row *row = data;
129
130 if (!row)
131 return;
132
133 g_slist_free(row->ann_classes);
134 g_free(row->desc);
135 g_free(row->id);
136 g_free(row);
137}
138
ddcde186
UH
139static void logic_output_channel_free(void *data)
140{
141 struct srd_decoder_logic_output_channel *logic_out_ch = data;
142
143 if (!logic_out_ch)
144 return;
145
146 g_free(logic_out_ch->desc);
147 g_free(logic_out_ch->id);
148 g_free(logic_out_ch);
149}
150
6d67d057
DE
151static void decoder_option_free(void *data)
152{
153 struct srd_decoder_option *opt = data;
154
155 if (!opt)
156 return;
157
158 g_slist_free_full(opt->values, &variant_free);
159 variant_free(opt->def);
160 g_free(opt->desc);
161 g_free(opt->id);
162 g_free(opt);
163}
164
165static void decoder_free(struct srd_decoder *dec)
166{
514b2edc
UH
167 PyGILState_STATE gstate;
168
6d67d057
DE
169 if (!dec)
170 return;
171
514b2edc 172 gstate = PyGILState_Ensure();
6d67d057
DE
173 Py_XDECREF(dec->py_dec);
174 Py_XDECREF(dec->py_mod);
514b2edc 175 PyGILState_Release(gstate);
6d67d057
DE
176
177 g_slist_free_full(dec->options, &decoder_option_free);
178 g_slist_free_full(dec->binary, (GDestroyNotify)&g_strfreev);
179 g_slist_free_full(dec->annotation_rows, &annotation_row_free);
180 g_slist_free_full(dec->annotations, (GDestroyNotify)&g_strfreev);
181 g_slist_free_full(dec->opt_channels, &channel_free);
182 g_slist_free_full(dec->channels, &channel_free);
183
d480174d
UH
184 g_slist_free_full(dec->outputs, g_free);
185 g_slist_free_full(dec->inputs, g_free);
4c180223 186 g_slist_free_full(dec->tags, g_free);
6d67d057
DE
187 g_free(dec->license);
188 g_free(dec->desc);
189 g_free(dec->longname);
190 g_free(dec->name);
191 g_free(dec->id);
192
193 g_free(dec);
194}
195
6a15597a 196static int get_channels(const struct srd_decoder *d, const char *attr,
6d67d057 197 GSList **out_pdchl, int offset)
f38ec285 198{
6a15597a
UH
199 PyObject *py_channellist, *py_entry;
200 struct srd_channel *pdch;
6d67d057 201 GSList *pdchl;
da253ef5 202 ssize_t ch_idx;
514b2edc
UH
203 PyGILState_STATE gstate;
204
205 gstate = PyGILState_Ensure();
f38ec285 206
514b2edc 207 if (!PyObject_HasAttrString(d->py_dec, attr)) {
6a15597a 208 /* No channels of this type specified. */
514b2edc 209 PyGILState_Release(gstate);
f38ec285 210 return SRD_OK;
514b2edc 211 }
f38ec285 212
6d67d057
DE
213 pdchl = NULL;
214
6a15597a 215 py_channellist = PyObject_GetAttrString(d->py_dec, attr);
6d67d057
DE
216 if (!py_channellist)
217 goto except_out;
218
6a15597a 219 if (!PyTuple_Check(py_channellist)) {
da9bcbd9 220 srd_err("Protocol decoder %s %s attribute is not a tuple.",
6d67d057
DE
221 d->name, attr);
222 goto err_out;
f38ec285
BV
223 }
224
da253ef5
GS
225 ch_idx = PyTuple_Size(py_channellist);
226 while (ch_idx--) {
227 py_entry = PyTuple_GetItem(py_channellist, ch_idx);
6d67d057
DE
228 if (!py_entry)
229 goto except_out;
230
f38ec285
BV
231 if (!PyDict_Check(py_entry)) {
232 srd_err("Protocol decoder %s %s attribute is not "
6d67d057
DE
233 "a list of dict elements.", d->name, attr);
234 goto err_out;
f38ec285 235 }
35c10c0e 236 pdch = g_malloc(sizeof(struct srd_channel));
6d67d057
DE
237 /* Add to list right away so it doesn't get lost. */
238 pdchl = g_slist_prepend(pdchl, pdch);
f38ec285 239
6d67d057
DE
240 if (py_dictitem_as_str(py_entry, "id", &pdch->id) != SRD_OK)
241 goto err_out;
242 if (py_dictitem_as_str(py_entry, "name", &pdch->name) != SRD_OK)
243 goto err_out;
244 if (py_dictitem_as_str(py_entry, "desc", &pdch->desc) != SRD_OK)
245 goto err_out;
f38ec285 246
da253ef5 247 pdch->order = offset + ch_idx;
f38ec285 248 }
f38ec285 249
6d67d057
DE
250 Py_DECREF(py_channellist);
251 *out_pdchl = pdchl;
252
514b2edc
UH
253 PyGILState_Release(gstate);
254
6d67d057 255 return SRD_OK;
f38ec285 256
6d67d057
DE
257except_out:
258 srd_exception_catch("Failed to get %s list of %s decoder",
259 attr, d->name);
7969d803 260
6d67d057
DE
261err_out:
262 g_slist_free_full(pdchl, &channel_free);
263 Py_XDECREF(py_channellist);
514b2edc 264 PyGILState_Release(gstate);
6d67d057
DE
265
266 return SRD_ERR_PYTHON;
f38ec285
BV
267}
268
2f395bff
BV
269static int get_options(struct srd_decoder *d)
270{
6d67d057
DE
271 PyObject *py_opts, *py_opt, *py_str, *py_values, *py_default, *py_item;
272 GSList *options;
2f395bff 273 struct srd_decoder_option *o;
84c1c0b5 274 GVariant *gvar;
da253ef5 275 ssize_t opt, val_idx;
514b2edc 276 PyGILState_STATE gstate;
2f395bff 277
514b2edc
UH
278 gstate = PyGILState_Ensure();
279
280 if (!PyObject_HasAttrString(d->py_dec, "options")) {
84c1c0b5 281 /* No options, that's fine. */
514b2edc 282 PyGILState_Release(gstate);
2f395bff 283 return SRD_OK;
514b2edc 284 }
2f395bff 285
6d67d057
DE
286 options = NULL;
287
84c1c0b5 288 /* If present, options must be a tuple. */
2f395bff 289 py_opts = PyObject_GetAttrString(d->py_dec, "options");
6d67d057
DE
290 if (!py_opts)
291 goto except_out;
292
84c1c0b5
BV
293 if (!PyTuple_Check(py_opts)) {
294 srd_err("Protocol decoder %s: options attribute is not "
295 "a tuple.", d->id);
6d67d057 296 goto err_out;
2f395bff
BV
297 }
298
6d67d057 299 for (opt = PyTuple_Size(py_opts) - 1; opt >= 0; opt--) {
84c1c0b5 300 py_opt = PyTuple_GetItem(py_opts, opt);
6d67d057
DE
301 if (!py_opt)
302 goto except_out;
303
84c1c0b5
BV
304 if (!PyDict_Check(py_opt)) {
305 srd_err("Protocol decoder %s options: each option "
306 "must consist of a dictionary.", d->name);
6d67d057 307 goto err_out;
2f395bff 308 }
6d67d057 309
84c1c0b5 310 o = g_malloc0(sizeof(struct srd_decoder_option));
6d67d057
DE
311 /* Add to list right away so it doesn't get lost. */
312 options = g_slist_prepend(options, o);
313
314 py_str = PyDict_GetItemString(py_opt, "id");
315 if (!py_str) {
fa168be6 316 srd_err("Protocol decoder %s option %zd has no ID.",
6d67d057
DE
317 d->name, opt);
318 goto err_out;
319 }
320 if (py_str_as_str(py_str, &o->id) != SRD_OK)
321 goto err_out;
322
323 py_str = PyDict_GetItemString(py_opt, "desc");
324 if (py_str) {
325 if (py_str_as_str(py_str, &o->desc) != SRD_OK)
326 goto err_out;
327 }
328
329 py_default = PyDict_GetItemString(py_opt, "default");
330 if (py_default) {
331 gvar = py_obj_to_variant(py_default);
332 if (!gvar) {
84c1c0b5 333 srd_err("Protocol decoder %s option 'default' has "
6d67d057
DE
334 "invalid default value.", d->name);
335 goto err_out;
84c1c0b5 336 }
6d67d057 337 o->def = g_variant_ref_sink(gvar);
2f395bff 338 }
84c1c0b5 339
6d67d057
DE
340 py_values = PyDict_GetItemString(py_opt, "values");
341 if (py_values) {
7969d803
UH
342 /*
343 * A default is required if a list of values is
344 * given, since it's used to verify their type.
345 */
84c1c0b5 346 if (!o->def) {
6d67d057
DE
347 srd_err("No default for option '%s'.", o->id);
348 goto err_out;
84c1c0b5 349 }
6d67d057 350 if (!PyTuple_Check(py_values)) {
84c1c0b5 351 srd_err("Option '%s' values should be a tuple.", o->id);
6d67d057 352 goto err_out;
84c1c0b5 353 }
6d67d057 354
da253ef5
GS
355 val_idx = PyTuple_Size(py_values);
356 while (val_idx--) {
357 py_item = PyTuple_GetItem(py_values, val_idx);
6d67d057
DE
358 if (!py_item)
359 goto except_out;
360
2d661bcb 361 if (py_default && (Py_TYPE(py_default) != Py_TYPE(py_item))) {
84c1c0b5 362 srd_err("All values for option '%s' must be "
6d67d057
DE
363 "of the same type as the default.",
364 o->id);
365 goto err_out;
84c1c0b5 366 }
6d67d057
DE
367 gvar = py_obj_to_variant(py_item);
368 if (!gvar) {
369 srd_err("Protocol decoder %s option 'values' "
370 "contains invalid value.", d->name);
371 goto err_out;
84c1c0b5 372 }
6d67d057
DE
373 o->values = g_slist_prepend(o->values,
374 g_variant_ref_sink(gvar));
2f395bff 375 }
2f395bff 376 }
6d67d057
DE
377 }
378 d->options = options;
379 Py_DECREF(py_opts);
514b2edc 380 PyGILState_Release(gstate);
6d67d057
DE
381
382 return SRD_OK;
383
384except_out:
385 srd_exception_catch("Failed to get %s decoder options", d->name);
7969d803 386
6d67d057
DE
387err_out:
388 g_slist_free_full(options, &decoder_option_free);
389 Py_XDECREF(py_opts);
514b2edc 390 PyGILState_Release(gstate);
6d67d057
DE
391
392 return SRD_ERR_PYTHON;
393}
394
7969d803 395/* Convert annotation class attribute to GSList of char **. */
8ab7ede6 396static int get_annotations(struct srd_decoder *dec, size_t *ret_count)
6d67d057
DE
397{
398 PyObject *py_annlist, *py_ann;
399 GSList *annotations;
400 char **annpair;
da253ef5 401 ssize_t ann_idx;
514b2edc
UH
402 PyGILState_STATE gstate;
403
8ab7ede6
GS
404 if (ret_count)
405 *ret_count = 0;
406
514b2edc 407 gstate = PyGILState_Ensure();
6d67d057 408
514b2edc
UH
409 if (!PyObject_HasAttrString(dec->py_dec, "annotations")) {
410 PyGILState_Release(gstate);
6d67d057 411 return SRD_OK;
514b2edc 412 }
6d67d057
DE
413
414 annotations = NULL;
415
416 py_annlist = PyObject_GetAttrString(dec->py_dec, "annotations");
417 if (!py_annlist)
418 goto except_out;
419
420 if (!PyTuple_Check(py_annlist)) {
fdb1a907
GS
421 srd_err("Protocol decoder %s annotations should be a tuple.",
422 dec->name);
6d67d057
DE
423 goto err_out;
424 }
425
da253ef5 426 ann_idx = PyTuple_Size(py_annlist);
8ab7ede6 427 if (ret_count)
da253ef5
GS
428 *ret_count = ann_idx;
429 while (ann_idx--) {
430 py_ann = PyTuple_GetItem(py_annlist, ann_idx);
6d67d057
DE
431 if (!py_ann)
432 goto except_out;
433
434 if (!PyTuple_Check(py_ann) || PyTuple_Size(py_ann) != 2) {
fdb1a907 435 srd_err("Protocol decoder %s annotation %zd should be a tuple with two elements.",
da253ef5 436 dec->name, ann_idx + 1);
6d67d057
DE
437 goto err_out;
438 }
439 if (py_strseq_to_char(py_ann, &annpair) != SRD_OK)
440 goto err_out;
441
442 annotations = g_slist_prepend(annotations, annpair);
443 }
444 dec->annotations = annotations;
445 Py_DECREF(py_annlist);
514b2edc 446 PyGILState_Release(gstate);
6d67d057
DE
447
448 return SRD_OK;
449
450except_out:
451 srd_exception_catch("Failed to get %s decoder annotations", dec->name);
7969d803 452
6d67d057
DE
453err_out:
454 g_slist_free_full(annotations, (GDestroyNotify)&g_strfreev);
455 Py_XDECREF(py_annlist);
514b2edc 456 PyGILState_Release(gstate);
6d67d057
DE
457
458 return SRD_ERR_PYTHON;
459}
460
7969d803 461/* Convert annotation_rows to GSList of 'struct srd_decoder_annotation_row'. */
8ab7ede6 462static int get_annotation_rows(struct srd_decoder *dec, size_t cls_count)
6d67d057 463{
fdb1a907
GS
464 const char *py_member_name = "annotation_rows";
465
6d67d057
DE
466 PyObject *py_ann_rows, *py_ann_row, *py_ann_classes, *py_item;
467 GSList *annotation_rows;
468 struct srd_decoder_annotation_row *ann_row;
da253ef5 469 ssize_t row_idx, item_idx;
6d67d057 470 size_t class_idx;
514b2edc
UH
471 PyGILState_STATE gstate;
472
473 gstate = PyGILState_Ensure();
6d67d057 474
fdb1a907 475 if (!PyObject_HasAttrString(dec->py_dec, py_member_name)) {
514b2edc 476 PyGILState_Release(gstate);
6d67d057 477 return SRD_OK;
514b2edc 478 }
6d67d057
DE
479
480 annotation_rows = NULL;
481
fdb1a907 482 py_ann_rows = PyObject_GetAttrString(dec->py_dec, py_member_name);
6d67d057
DE
483 if (!py_ann_rows)
484 goto except_out;
485
486 if (!PyTuple_Check(py_ann_rows)) {
fdb1a907
GS
487 srd_err("Protocol decoder %s %s must be a tuple.",
488 dec->name, py_member_name);
6d67d057
DE
489 goto err_out;
490 }
491
da253ef5
GS
492 row_idx = PyTuple_Size(py_ann_rows);
493 while (row_idx--) {
494 py_ann_row = PyTuple_GetItem(py_ann_rows, row_idx);
6d67d057
DE
495 if (!py_ann_row)
496 goto except_out;
497
498 if (!PyTuple_Check(py_ann_row) || PyTuple_Size(py_ann_row) != 3) {
fdb1a907
GS
499 srd_err("Protocol decoder %s %s must contain only tuples of 3 elements.",
500 dec->name, py_member_name);
6d67d057
DE
501 goto err_out;
502 }
503 ann_row = g_malloc0(sizeof(struct srd_decoder_annotation_row));
504 /* Add to list right away so it doesn't get lost. */
505 annotation_rows = g_slist_prepend(annotation_rows, ann_row);
506
507 py_item = PyTuple_GetItem(py_ann_row, 0);
508 if (!py_item)
509 goto except_out;
510 if (py_str_as_str(py_item, &ann_row->id) != SRD_OK)
511 goto err_out;
512
513 py_item = PyTuple_GetItem(py_ann_row, 1);
514 if (!py_item)
515 goto except_out;
516 if (py_str_as_str(py_item, &ann_row->desc) != SRD_OK)
517 goto err_out;
518
519 py_ann_classes = PyTuple_GetItem(py_ann_row, 2);
520 if (!py_ann_classes)
521 goto except_out;
522
523 if (!PyTuple_Check(py_ann_classes)) {
fdb1a907
GS
524 srd_err("Protocol decoder %s %s tuples must have a tuple of numbers as 3rd element.",
525 dec->name, py_member_name);
6d67d057
DE
526 goto err_out;
527 }
528
da253ef5
GS
529 item_idx = PyTuple_Size(py_ann_classes);
530 while (item_idx--) {
531 py_item = PyTuple_GetItem(py_ann_classes, item_idx);
6d67d057
DE
532 if (!py_item)
533 goto except_out;
534
535 if (!PyLong_Check(py_item)) {
fdb1a907 536 srd_err("Protocol decoder %s annotation row class tuple must only contain numbers.",
6d67d057
DE
537 dec->name);
538 goto err_out;
539 }
540 class_idx = PyLong_AsSize_t(py_item);
541 if (PyErr_Occurred())
542 goto except_out;
8ab7ede6
GS
543 if (class_idx >= cls_count) {
544 srd_err("Protocol decoder %s annotation row %zd references invalid class %zu.",
da253ef5 545 dec->name, row_idx, class_idx);
8ab7ede6
GS
546 goto err_out;
547 }
6d67d057
DE
548
549 ann_row->ann_classes = g_slist_prepend(ann_row->ann_classes,
550 GSIZE_TO_POINTER(class_idx));
551 }
552 }
553 dec->annotation_rows = annotation_rows;
554 Py_DECREF(py_ann_rows);
514b2edc 555 PyGILState_Release(gstate);
6d67d057
DE
556
557 return SRD_OK;
558
559except_out:
560 srd_exception_catch("Failed to get %s decoder annotation rows",
561 dec->name);
7969d803 562
6d67d057
DE
563err_out:
564 g_slist_free_full(annotation_rows, &annotation_row_free);
565 Py_XDECREF(py_ann_rows);
514b2edc 566 PyGILState_Release(gstate);
6d67d057
DE
567
568 return SRD_ERR_PYTHON;
569}
570
7969d803 571/* Convert binary classes to GSList of char **. */
6d67d057
DE
572static int get_binary_classes(struct srd_decoder *dec)
573{
574 PyObject *py_bin_classes, *py_bin_class;
575 GSList *bin_classes;
576 char **bin;
da253ef5 577 ssize_t bin_idx;
514b2edc 578 PyGILState_STATE gstate;
6d67d057 579
514b2edc
UH
580 gstate = PyGILState_Ensure();
581
582 if (!PyObject_HasAttrString(dec->py_dec, "binary")) {
583 PyGILState_Release(gstate);
6d67d057 584 return SRD_OK;
514b2edc 585 }
6d67d057
DE
586
587 bin_classes = NULL;
588
589 py_bin_classes = PyObject_GetAttrString(dec->py_dec, "binary");
590 if (!py_bin_classes)
591 goto except_out;
592
593 if (!PyTuple_Check(py_bin_classes)) {
594 srd_err("Protocol decoder %s binary classes should "
595 "be a tuple.", dec->name);
596 goto err_out;
597 }
598
da253ef5
GS
599 bin_idx = PyTuple_Size(py_bin_classes);
600 while (bin_idx--) {
601 py_bin_class = PyTuple_GetItem(py_bin_classes, bin_idx);
6d67d057
DE
602 if (!py_bin_class)
603 goto except_out;
604
605 if (!PyTuple_Check(py_bin_class)
606 || PyTuple_Size(py_bin_class) != 2) {
607 srd_err("Protocol decoder %s binary classes should "
608 "consist only of tuples of 2 elements.",
609 dec->name);
610 goto err_out;
611 }
612 if (py_strseq_to_char(py_bin_class, &bin) != SRD_OK)
613 goto err_out;
614
615 bin_classes = g_slist_prepend(bin_classes, bin);
616 }
617 dec->binary = bin_classes;
618 Py_DECREF(py_bin_classes);
514b2edc 619 PyGILState_Release(gstate);
6d67d057
DE
620
621 return SRD_OK;
622
623except_out:
624 srd_exception_catch("Failed to get %s decoder binary classes",
625 dec->name);
7969d803 626
6d67d057
DE
627err_out:
628 g_slist_free_full(bin_classes, (GDestroyNotify)&g_strfreev);
629 Py_XDECREF(py_bin_classes);
514b2edc 630 PyGILState_Release(gstate);
6d67d057
DE
631
632 return SRD_ERR_PYTHON;
633}
634
ddcde186
UH
635/* Convert logic_output_channels to GSList of 'struct srd_decoder_logic_output_channel'. */
636static int get_logic_output_channels(struct srd_decoder *dec)
637{
460e6cfa 638 PyObject *py_logic_out_chs, *py_logic_out_ch, *py_item;
ddcde186
UH
639 GSList *logic_out_chs;
640 struct srd_decoder_logic_output_channel *logic_out_ch;
641 ssize_t i;
642 PyGILState_STATE gstate;
643
644 gstate = PyGILState_Ensure();
645
646 if (!PyObject_HasAttrString(dec->py_dec, "logic_output_channels")) {
647 PyGILState_Release(gstate);
648 return SRD_OK;
649 }
650
651 logic_out_chs = NULL;
652
653 py_logic_out_chs = PyObject_GetAttrString(dec->py_dec, "logic_output_channels");
654 if (!py_logic_out_chs)
655 goto except_out;
656
657 if (!PyTuple_Check(py_logic_out_chs)) {
658 srd_err("Protocol decoder %s logic_output_channels "
659 "must be a tuple.", dec->name);
660 goto err_out;
661 }
662
663 for (i = PyTuple_Size(py_logic_out_chs) - 1; i >= 0; i--) {
664 py_logic_out_ch = PyTuple_GetItem(py_logic_out_chs, i);
665 if (!py_logic_out_ch)
666 goto except_out;
667
460e6cfa 668 if (!PyTuple_Check(py_logic_out_ch) || PyTuple_Size(py_logic_out_ch) != 2) {
ddcde186 669 srd_err("Protocol decoder %s logic_output_channels "
460e6cfa 670 "must contain only tuples of 2 elements.",
ddcde186
UH
671 dec->name);
672 goto err_out;
673 }
674 logic_out_ch = g_malloc0(sizeof(*logic_out_ch));
675 /* Add to list right away so it doesn't get lost. */
676 logic_out_chs = g_slist_prepend(logic_out_chs, logic_out_ch);
677
678 py_item = PyTuple_GetItem(py_logic_out_ch, 0);
679 if (!py_item)
680 goto except_out;
681 if (py_str_as_str(py_item, &logic_out_ch->id) != SRD_OK)
682 goto err_out;
683
684 py_item = PyTuple_GetItem(py_logic_out_ch, 1);
685 if (!py_item)
686 goto except_out;
687 if (py_str_as_str(py_item, &logic_out_ch->desc) != SRD_OK)
688 goto err_out;
ddcde186
UH
689 }
690 dec->logic_output_channels = logic_out_chs;
691 Py_DECREF(py_logic_out_chs);
692 PyGILState_Release(gstate);
693
694 return SRD_OK;
695
696except_out:
697 srd_exception_catch("Failed to get %s decoder logic output channels",
698 dec->name);
699
700err_out:
701 g_slist_free_full(logic_out_chs, &logic_output_channel_free);
702 Py_XDECREF(py_logic_out_chs);
703 PyGILState_Release(gstate);
704
705 return SRD_ERR_PYTHON;
706}
707
7969d803 708/* Check whether the Decoder class defines the named method. */
6d67d057
DE
709static int check_method(PyObject *py_dec, const char *mod_name,
710 const char *method_name)
711{
712 PyObject *py_method;
713 int is_callable;
514b2edc
UH
714 PyGILState_STATE gstate;
715
716 gstate = PyGILState_Ensure();
6d67d057
DE
717
718 py_method = PyObject_GetAttrString(py_dec, method_name);
719 if (!py_method) {
720 srd_exception_catch("Protocol decoder %s Decoder class "
721 "has no %s() method", mod_name, method_name);
514b2edc 722 PyGILState_Release(gstate);
6d67d057
DE
723 return SRD_ERR_PYTHON;
724 }
725
726 is_callable = PyCallable_Check(py_method);
727 Py_DECREF(py_method);
728
514b2edc
UH
729 PyGILState_Release(gstate);
730
6d67d057
DE
731 if (!is_callable) {
732 srd_err("Protocol decoder %s Decoder class attribute '%s' "
733 "is not a method.", mod_name, method_name);
734 return SRD_ERR_PYTHON;
2f395bff 735 }
2f395bff 736
84c1c0b5 737 return SRD_OK;
2f395bff
BV
738}
739
40589f25
UH
740/**
741 * Get the API version of the specified decoder.
742 *
743 * @param d The decoder to use. Must not be NULL.
744 *
745 * @return The API version of the decoder, or 0 upon errors.
c947ab01
UH
746 *
747 * @private
40589f25
UH
748 */
749SRD_PRIV long srd_decoder_apiver(const struct srd_decoder *d)
750{
751 PyObject *py_apiver;
752 long apiver;
514b2edc 753 PyGILState_STATE gstate;
40589f25
UH
754
755 if (!d)
756 return 0;
757
514b2edc
UH
758 gstate = PyGILState_Ensure();
759
40589f25
UH
760 py_apiver = PyObject_GetAttrString(d->py_dec, "api_version");
761 apiver = (py_apiver && PyLong_Check(py_apiver))
762 ? PyLong_AsLong(py_apiver) : 0;
763 Py_XDECREF(py_apiver);
764
514b2edc
UH
765 PyGILState_Release(gstate);
766
40589f25
UH
767 return apiver;
768}
769
1734f4c2
UH
770static gboolean contains_duplicates(GSList *list)
771{
772 for (GSList *l1 = list; l1; l1 = l1->next) {
773 for (GSList *l2 = l1->next; l2; l2 = l2->next)
774 if (!strcmp(l1->data, l2->data))
775 return TRUE;
776 }
777
778 return FALSE;
779}
780
781static gboolean contains_duplicate_ids(GSList *list1, GSList *list2)
782{
783 for (GSList *l1 = list1; l1; l1 = l1->next) {
784 unsigned int cnt = 0;
785 const char **s1 = l1->data;
786 for (GSList *l2 = list2; l2; l2 = l2->next) {
787 const char **s2 = l2->data;
788 if (!strcmp(s1[0], s2[0]))
789 cnt++;
790 if ((list1 == list2) && cnt > 1)
791 return TRUE;
792 if ((list1 != list2) && cnt > 0)
793 return TRUE;
794 }
795 }
796
797 return FALSE;
798}
799
800static gboolean contains_duplicate_row_ids(GSList *list1, GSList *list2)
801{
802 for (GSList *l1 = list1; l1; l1 = l1->next) {
803 unsigned int cnt = 0;
804 const struct srd_decoder_annotation_row *r1 = l1->data;
805 for (GSList *l2 = list2; l2; l2 = l2->next) {
806 const struct srd_decoder_annotation_row *r2 = l2->data;
807 if (!strcmp(r1->id, r2->id))
808 cnt++;
809 if (cnt > 1)
810 return TRUE;
811 }
812 }
813
814 return FALSE;
815}
816
b2c19614 817/**
64c29e28 818 * Load a protocol decoder module into the embedded Python interpreter.
b2c19614 819 *
38ff5046 820 * @param module_name The module name to be loaded.
b2c19614
BV
821 *
822 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
823 *
824 * @since 0.1.0
b2c19614 825 */
9d122fd5 826SRD_API int srd_decoder_load(const char *module_name)
b2c19614 827{
40589f25 828 PyObject *py_basedec;
b2c19614 829 struct srd_decoder *d;
6d67d057
DE
830 long apiver;
831 int is_subclass;
60697682 832 const char *fail_txt;
514b2edc 833 PyGILState_STATE gstate;
8ab7ede6 834 size_t ann_cls_count;
b2c19614 835
e195c025
BV
836 if (!srd_check_init())
837 return SRD_ERR;
838
8a014683
BV
839 if (!module_name)
840 return SRD_ERR_ARG;
841
514b2edc
UH
842 gstate = PyGILState_Ensure();
843
aac68131
BV
844 if (PyDict_GetItemString(PyImport_GetModuleDict(), module_name)) {
845 /* Module was already imported. */
514b2edc 846 PyGILState_Release(gstate);
aac68131
BV
847 return SRD_OK;
848 }
849
077fa8ac 850 d = g_malloc0(sizeof(struct srd_decoder));
60697682 851 fail_txt = NULL;
b2c19614 852
e9dd2fea 853 d->py_mod = py_import_by_name(module_name);
60697682
GS
854 if (!d->py_mod) {
855 fail_txt = "import by name failed";
6d67d057 856 goto except_out;
60697682 857 }
6d67d057
DE
858
859 if (!mod_sigrokdecode) {
860 srd_err("sigrokdecode module not loaded.");
60697682 861 fail_txt = "sigrokdecode(3) not loaded";
451680f1
BV
862 goto err_out;
863 }
b2c19614 864
451680f1 865 /* Get the 'Decoder' class as Python object. */
6d67d057 866 d->py_dec = PyObject_GetAttrString(d->py_mod, "Decoder");
60697682
GS
867 if (!d->py_dec) {
868 fail_txt = "no 'Decoder' attribute in imported module";
6d67d057 869 goto except_out;
60697682 870 }
b2c19614 871
6d67d057 872 py_basedec = PyObject_GetAttrString(mod_sigrokdecode, "Decoder");
60697682
GS
873 if (!py_basedec) {
874 fail_txt = "no 'Decoder' attribute in sigrokdecode(3)";
6d67d057 875 goto except_out;
60697682 876 }
6d67d057
DE
877
878 is_subclass = PyObject_IsSubclass(d->py_dec, py_basedec);
879 Py_DECREF(py_basedec);
b2c19614 880
6d67d057 881 if (!is_subclass) {
451680f1 882 srd_err("Decoder class in protocol decoder module %s is not "
9b37109d 883 "a subclass of sigrokdecode.Decoder.", module_name);
60697682 884 fail_txt = "not a subclass of sigrokdecode.Decoder";
451680f1
BV
885 goto err_out;
886 }
b2c19614 887
5c0c9cb3 888 /*
077fa8ac 889 * Check that this decoder has the correct PD API version.
5c0c9cb3
UH
890 * PDs of different API versions are incompatible and cannot work.
891 */
40589f25 892 apiver = srd_decoder_apiver(d);
eb883723
UH
893 if (apiver != 3) {
894 srd_exception_catch("Only PD API version 3 is supported, "
60697682
GS
895 "decoder %s has version %ld", module_name, apiver);
896 fail_txt = "API version mismatch";
1d552cd3
BV
897 goto err_out;
898 }
1d552cd3 899
7969d803
UH
900 /* Check Decoder class for required methods. */
901
be760e59
GS
902 if (check_method(d->py_dec, module_name, "reset") != SRD_OK) {
903 fail_txt = "no 'reset()' method";
904 goto err_out;
905 }
906
60697682
GS
907 if (check_method(d->py_dec, module_name, "start") != SRD_OK) {
908 fail_txt = "no 'start()' method";
1d552cd3 909 goto err_out;
60697682 910 }
6d67d057 911
60697682
GS
912 if (check_method(d->py_dec, module_name, "decode") != SRD_OK) {
913 fail_txt = "no 'decode()' method";
1d552cd3 914 goto err_out;
60697682 915 }
1d552cd3 916
84c1c0b5 917 /* Store required fields in newly allocated strings. */
60697682
GS
918 if (py_attr_as_str(d->py_dec, "id", &(d->id)) != SRD_OK) {
919 fail_txt = "no 'id' attribute";
84c1c0b5 920 goto err_out;
60697682 921 }
84c1c0b5 922
60697682
GS
923 if (py_attr_as_str(d->py_dec, "name", &(d->name)) != SRD_OK) {
924 fail_txt = "no 'name' attribute";
84c1c0b5 925 goto err_out;
60697682 926 }
84c1c0b5 927
60697682
GS
928 if (py_attr_as_str(d->py_dec, "longname", &(d->longname)) != SRD_OK) {
929 fail_txt = "no 'longname' attribute";
84c1c0b5 930 goto err_out;
60697682 931 }
84c1c0b5 932
60697682
GS
933 if (py_attr_as_str(d->py_dec, "desc", &(d->desc)) != SRD_OK) {
934 fail_txt = "no 'desc' attribute";
84c1c0b5 935 goto err_out;
60697682 936 }
84c1c0b5 937
60697682
GS
938 if (py_attr_as_str(d->py_dec, "license", &(d->license)) != SRD_OK) {
939 fail_txt = "no 'license' attribute";
84c1c0b5 940 goto err_out;
60697682 941 }
84c1c0b5 942
d480174d
UH
943 if (py_attr_as_strlist(d->py_dec, "inputs", &(d->inputs)) != SRD_OK) {
944 fail_txt = "missing or malformed 'inputs' attribute";
945 goto err_out;
946 }
947
948 if (py_attr_as_strlist(d->py_dec, "outputs", &(d->outputs)) != SRD_OK) {
949 fail_txt = "missing or malformed 'outputs' attribute";
950 goto err_out;
951 }
952
4c180223
SA
953 if (py_attr_as_strlist(d->py_dec, "tags", &(d->tags)) != SRD_OK) {
954 fail_txt = "missing or malformed 'tags' attribute";
955 goto err_out;
956 }
957
84c1c0b5 958 /* All options and their default values. */
60697682
GS
959 if (get_options(d) != SRD_OK) {
960 fail_txt = "cannot get options";
2f395bff 961 goto err_out;
60697682 962 }
11ea8ae1 963
6a15597a 964 /* Check and import required channels. */
60697682
GS
965 if (get_channels(d, "channels", &d->channels, 0) != SRD_OK) {
966 fail_txt = "cannot get channels";
f38ec285 967 goto err_out;
60697682 968 }
f38ec285 969
6a15597a 970 /* Check and import optional channels. */
6d67d057 971 if (get_channels(d, "optional_channels", &d->opt_channels,
60697682
GS
972 g_slist_length(d->channels)) != SRD_OK) {
973 fail_txt = "cannot get optional channels";
f38ec285 974 goto err_out;
60697682 975 }
f38ec285 976
8ab7ede6 977 if (get_annotations(d, &ann_cls_count) != SRD_OK) {
60697682 978 fail_txt = "cannot get annotations";
6d67d057 979 goto err_out;
60697682 980 }
1ce46817 981
8ab7ede6 982 if (get_annotation_rows(d, ann_cls_count) != SRD_OK) {
60697682 983 fail_txt = "cannot get annotation rows";
6d67d057 984 goto err_out;
60697682 985 }
d75d8a7c 986
60697682
GS
987 if (get_binary_classes(d) != SRD_OK) {
988 fail_txt = "cannot get binary classes";
6d67d057 989 goto err_out;
60697682 990 }
d75d8a7c 991
1734f4c2
UH
992 if (contains_duplicates(d->inputs)) {
993 fail_txt = "duplicate input IDs";
994 goto err_out;
995 }
996
997 if (contains_duplicates(d->outputs)) {
998 fail_txt = "duplicate output IDs";
999 goto err_out;
1000 }
1001
1002 if (contains_duplicates(d->tags)) {
1003 fail_txt = "duplicate tags";
1004 goto err_out;
1005 }
1006
1007 if (contains_duplicate_ids(d->channels, d->channels)) {
1008 fail_txt = "duplicate channel IDs";
1009 goto err_out;
1010 }
1011
1012 if (contains_duplicate_ids(d->opt_channels, d->opt_channels)) {
1013 fail_txt = "duplicate optional channel IDs";
1014 goto err_out;
1015 }
1016
1017 if (contains_duplicate_ids(d->channels, d->opt_channels)) {
1018 fail_txt = "channel and optional channel IDs contain duplicates";
1019 goto err_out;
1020 }
1021
1022 if (contains_duplicate_ids(d->options, d->options)) {
1023 fail_txt = "duplicate option IDs";
1024 goto err_out;
1025 }
1026
1027 if (contains_duplicate_ids(d->annotations, d->annotations)) {
1028 fail_txt = "duplicate annotation class IDs";
1029 goto err_out;
1030 }
1031
1032 if (contains_duplicate_row_ids(d->annotation_rows, d->annotation_rows)) {
1033 fail_txt = "duplicate annotation row IDs";
1034 goto err_out;
1035 }
1036
1037 if (contains_duplicate_ids(d->annotations, d->annotation_rows)) {
1038 fail_txt = "annotation class/row IDs contain duplicates";
1039 goto err_out;
1040 }
1041
1042 if (contains_duplicate_ids(d->binary, d->binary)) {
1043 fail_txt = "duplicate binary class IDs";
1044 goto err_out;
1045 }
1046
ddcde186
UH
1047 if (get_logic_output_channels(d) != SRD_OK) {
1048 fail_txt = "cannot get logic output channels";
1049 goto err_out;
1050 }
1051
514b2edc
UH
1052 PyGILState_Release(gstate);
1053
c63f5a87 1054 /* Append it to the list of loaded decoders. */
9b37109d
BV
1055 pd_list = g_slist_append(pd_list, d);
1056
6d67d057 1057 return SRD_OK;
451680f1 1058
6d67d057 1059except_out:
e51475ad
UH
1060 /* Don't show a message for the "common" directory, it's not a PD. */
1061 if (strcmp(module_name, "common")) {
1062 srd_exception_catch("Failed to load decoder %s: %s",
1063 module_name, fail_txt);
1064 }
01b60707 1065 fail_txt = NULL;
7969d803 1066
451680f1 1067err_out:
60697682
GS
1068 if (fail_txt)
1069 srd_err("Failed to load decoder %s: %s", module_name, fail_txt);
6d67d057 1070 decoder_free(d);
514b2edc 1071 PyGILState_Release(gstate);
b2c19614 1072
6d67d057 1073 return SRD_ERR_PYTHON;
451680f1
BV
1074}
1075
582c8473
BV
1076/**
1077 * Return a protocol decoder's docstring.
1078 *
f8c24e2e 1079 * @param dec The loaded protocol decoder. Must not be NULL.
582c8473 1080 *
361fdcaa 1081 * @return A newly allocated buffer containing the protocol decoder's
abeeed8b 1082 * documentation. The caller is responsible for free'ing the buffer.
8c664ca2
UH
1083 *
1084 * @since 0.1.0
582c8473 1085 */
b33b8aa5 1086SRD_API char *srd_decoder_doc_get(const struct srd_decoder *dec)
451680f1 1087{
e7edca07 1088 PyObject *py_str;
451680f1 1089 char *doc;
514b2edc 1090 PyGILState_STATE gstate;
451680f1 1091
e195c025
BV
1092 if (!srd_check_init())
1093 return NULL;
1094
f8c24e2e 1095 if (!dec || !dec->py_mod)
e195c025
BV
1096 return NULL;
1097
514b2edc
UH
1098 gstate = PyGILState_Ensure();
1099
e7edca07 1100 if (!PyObject_HasAttrString(dec->py_mod, "__doc__"))
514b2edc 1101 goto err;
e7edca07
BV
1102
1103 if (!(py_str = PyObject_GetAttrString(dec->py_mod, "__doc__"))) {
201a85a8 1104 srd_exception_catch("Failed to get docstring");
514b2edc 1105 goto err;
e7edca07
BV
1106 }
1107
451680f1 1108 doc = NULL;
e7edca07
BV
1109 if (py_str != Py_None)
1110 py_str_as_str(py_str, &doc);
6d67d057 1111 Py_DECREF(py_str);
451680f1 1112
514b2edc
UH
1113 PyGILState_Release(gstate);
1114
451680f1 1115 return doc;
514b2edc
UH
1116
1117err:
1118 PyGILState_Release(gstate);
1119
1120 return NULL;
b2c19614
BV
1121}
1122
b2c19614 1123/**
4cc0d9fe 1124 * Unload the specified protocol decoder.
451680f1 1125 *
fa12a21e 1126 * @param dec The struct srd_decoder to be unloaded.
451680f1
BV
1127 *
1128 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
1129 *
1130 * @since 0.1.0
b2c19614 1131 */
9d122fd5 1132SRD_API int srd_decoder_unload(struct srd_decoder *dec)
b2c19614 1133{
32cfb920 1134 struct srd_session *sess;
2f395bff
BV
1135 GSList *l;
1136
e195c025
BV
1137 if (!srd_check_init())
1138 return SRD_ERR;
1139
1140 if (!dec)
1141 return SRD_ERR_ARG;
1142
361fdcaa
UH
1143 /*
1144 * Since any instances of this decoder need to be released as well,
fa12a21e
BV
1145 * but they could be anywhere in the stack, just free the entire
1146 * stack. A frontend reloading a decoder thus has to restart all
361fdcaa
UH
1147 * instances, and rebuild the stack.
1148 */
32cfb920
BV
1149 for (l = sessions; l; l = l->next) {
1150 sess = l->data;
3262ef02 1151 srd_inst_free_all(sess);
32cfb920 1152 }
fa12a21e 1153
c63f5a87
UH
1154 /* Remove the PD from the list of loaded decoders. */
1155 pd_list = g_slist_remove(pd_list, dec);
1156
6d67d057 1157 decoder_free(dec);
b2c19614
BV
1158
1159 return SRD_OK;
1160}
1161
1d757906 1162static void srd_decoder_load_all_zip_path(char *zip_path)
6a034159
MC
1163{
1164 PyObject *zipimport_mod, *zipimporter_class, *zipimporter;
1165 PyObject *prefix_obj, *files, *key, *value, *set, *modname;
1166 Py_ssize_t pos = 0;
1167 char *prefix;
1168 size_t prefix_len;
514b2edc 1169 PyGILState_STATE gstate;
6a034159
MC
1170
1171 set = files = prefix_obj = zipimporter = zipimporter_class = NULL;
1172
514b2edc
UH
1173 gstate = PyGILState_Ensure();
1174
e9dd2fea 1175 zipimport_mod = py_import_by_name("zipimport");
6a034159
MC
1176 if (zipimport_mod == NULL)
1177 goto err_out;
1178
1179 zipimporter_class = PyObject_GetAttrString(zipimport_mod, "zipimporter");
1180 if (zipimporter_class == NULL)
1181 goto err_out;
1182
1d757906 1183 zipimporter = PyObject_CallFunction(zipimporter_class, "s", zip_path);
6a034159
MC
1184 if (zipimporter == NULL)
1185 goto err_out;
1186
1187 prefix_obj = PyObject_GetAttrString(zipimporter, "prefix");
1188 if (prefix_obj == NULL)
1189 goto err_out;
1190
1191 files = PyObject_GetAttrString(zipimporter, "_files");
6d67d057 1192 if (files == NULL || !PyDict_Check(files))
6a034159
MC
1193 goto err_out;
1194
1195 set = PySet_New(NULL);
1196 if (set == NULL)
1197 goto err_out;
1198
1199 if (py_str_as_str(prefix_obj, &prefix) != SRD_OK)
1200 goto err_out;
1201
1202 prefix_len = strlen(prefix);
1203
1204 while (PyDict_Next(files, &pos, &key, &value)) {
1205 char *path, *slash;
1206 if (py_str_as_str(key, &path) == SRD_OK) {
6d67d057
DE
1207 if (strlen(path) > prefix_len
1208 && memcmp(path, prefix, prefix_len) == 0
1209 && (slash = strchr(path + prefix_len, '/'))) {
1210
1211 modname = PyUnicode_FromStringAndSize(path + prefix_len,
1212 slash - (path + prefix_len));
6a034159
MC
1213 if (modname == NULL) {
1214 PyErr_Clear();
1215 } else {
1216 PySet_Add(set, modname);
6d67d057 1217 Py_DECREF(modname);
6a034159
MC
1218 }
1219 }
6d67d057 1220 g_free(path);
6a034159
MC
1221 }
1222 }
6d67d057 1223 g_free(prefix);
6a034159
MC
1224
1225 while ((modname = PySet_Pop(set))) {
1226 char *modname_str;
1227 if (py_str_as_str(modname, &modname_str) == SRD_OK) {
1228 /* The directory name is the module name (e.g. "i2c"). */
1229 srd_decoder_load(modname_str);
6d67d057 1230 g_free(modname_str);
6a034159 1231 }
6d67d057 1232 Py_DECREF(modname);
6a034159
MC
1233 }
1234
1235err_out:
1236 Py_XDECREF(set);
1237 Py_XDECREF(files);
1238 Py_XDECREF(prefix_obj);
1239 Py_XDECREF(zipimporter);
1240 Py_XDECREF(zipimporter_class);
1241 Py_XDECREF(zipimport_mod);
1242 PyErr_Clear();
514b2edc 1243 PyGILState_Release(gstate);
6a034159
MC
1244}
1245
ea81b49a
BV
1246static void srd_decoder_load_all_path(char *path)
1247{
1248 GDir *dir;
1249 const gchar *direntry;
1250
6a034159 1251 if (!(dir = g_dir_open(path, 0, NULL))) {
7969d803 1252 /* Not really fatal. Try zipimport method too. */
6a034159 1253 srd_decoder_load_all_zip_path(path);
ea81b49a 1254 return;
6a034159 1255 }
ea81b49a 1256
7969d803
UH
1257 /*
1258 * This ignores errors returned by srd_decoder_load(). That
ea81b49a 1259 * function will have logged the cause, but in any case we
7969d803
UH
1260 * want to continue anyway.
1261 */
ea81b49a
BV
1262 while ((direntry = g_dir_read_name(dir)) != NULL) {
1263 /* The directory name is the module name (e.g. "i2c"). */
1264 srd_decoder_load(direntry);
1265 }
1266 g_dir_close(dir);
ea81b49a
BV
1267}
1268
582c8473 1269/**
9b37109d 1270 * Load all installed protocol decoders.
582c8473
BV
1271 *
1272 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
1273 *
1274 * @since 0.1.0
582c8473 1275 */
8ad6e500 1276SRD_API int srd_decoder_load_all(void)
b2c19614 1277{
ea81b49a 1278 GSList *l;
b2c19614 1279
e195c025
BV
1280 if (!srd_check_init())
1281 return SRD_ERR;
1282
ea81b49a
BV
1283 for (l = searchpaths; l; l = l->next)
1284 srd_decoder_load_all_path(l->data);
b2c19614
BV
1285
1286 return SRD_OK;
1287}
1288
611a7340
JB
1289static void srd_decoder_unload_cb(void *arg, void *ignored)
1290{
1291 (void)ignored;
1292
1293 srd_decoder_unload((struct srd_decoder *)arg);
1294}
1295
b2c19614 1296/**
582c8473
BV
1297 * Unload all loaded protocol decoders.
1298 *
1299 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
1300 *
1301 * @since 0.1.0
b2c19614 1302 */
8ad6e500 1303SRD_API int srd_decoder_unload_all(void)
b2c19614 1304{
611a7340 1305 g_slist_foreach(pd_list, srd_decoder_unload_cb, NULL);
820bf448
BV
1306 g_slist_free(pd_list);
1307 pd_list = NULL;
b2c19614
BV
1308
1309 return SRD_OK;
1310}
4895418c
UH
1311
1312/** @} */