]> sigrok.org Git - libsigrokdecode.git/blame - decoder.c
Report invalid module name on decoder load
[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
21#include "config.h"
c1f86f02
UH
22#include "libsigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
23#include "libsigrokdecode-internal.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
b2c19614 42/* The list of protocol decoders. */
55c3c5f4 43SRD_PRIV GSList *pd_list = NULL;
b2c19614 44
32cfb920
BV
45extern GSList *sessions;
46
c9bfccc6 47/* module_sigrokdecode.c */
55c3c5f4 48extern SRD_PRIV PyObject *mod_sigrokdecode;
451680f1 49
57790bc8
UH
50/** @endcond */
51
b2c19614
BV
52/**
53 * Returns the list of supported/loaded protocol decoders.
54 *
55 * This is a GSList containing the names of the decoders as strings.
56 *
57 * @return List of decoders, NULL if none are supported or loaded.
8c664ca2
UH
58 *
59 * @since 0.1.0 (but the API changed in 0.2.0)
b2c19614 60 */
38ff5046 61SRD_API const GSList *srd_decoder_list(void)
b2c19614 62{
e5080882 63 return pd_list;
b2c19614
BV
64}
65
b2c19614
BV
66/**
67 * Get the decoder with the specified ID.
68 *
69 * @param id The ID string of the decoder to return.
582c8473 70 *
b2c19614 71 * @return The decoder with the specified ID, or NULL if not found.
8c664ca2
UH
72 *
73 * @since 0.1.0
b2c19614 74 */
9d122fd5 75SRD_API struct srd_decoder *srd_decoder_get_by_id(const char *id)
b2c19614
BV
76{
77 GSList *l;
78 struct srd_decoder *dec;
79
38ff5046 80 for (l = pd_list; l; l = l->next) {
b2c19614
BV
81 dec = l->data;
82 if (!strcmp(dec->id, id))
83 return dec;
84 }
85
86 return NULL;
87}
88
5a2c4dc4
UH
89static int get_probes(const struct srd_decoder *d, const char *attr,
90 GSList **pl)
f38ec285
BV
91{
92 PyObject *py_probelist, *py_entry;
93 struct srd_probe *p;
94 int ret, num_probes, i;
95
96 if (!PyObject_HasAttrString(d->py_dec, attr))
97 /* No probes of this type specified. */
98 return SRD_OK;
99
100 ret = SRD_ERR_PYTHON;
101 py_probelist = py_entry = NULL;
102
103 py_probelist = PyObject_GetAttrString(d->py_dec, attr);
104 if (!PyList_Check(py_probelist)) {
105 srd_err("Protocol decoder %s %s attribute is not "
c9bfccc6 106 "a list.", d->name, attr);
f38ec285
BV
107 goto err_out;
108 }
109
110 num_probes = PyList_Size(py_probelist);
111 if (num_probes == 0)
112 /* Empty probelist. */
113 return SRD_OK;
114
115 for (i = 0; i < num_probes; i++) {
116 py_entry = PyList_GetItem(py_probelist, i);
117 if (!PyDict_Check(py_entry)) {
118 srd_err("Protocol decoder %s %s attribute is not "
c9bfccc6 119 "a list with dict elements.", d->name, attr);
f38ec285
BV
120 goto err_out;
121 }
122
123 if (!(p = g_try_malloc(sizeof(struct srd_probe)))) {
a61ece20 124 srd_err("Failed to g_malloc() struct srd_probe.");
f38ec285
BV
125 ret = SRD_ERR_MALLOC;
126 goto err_out;
127 }
128
129 if ((py_dictitem_as_str(py_entry, "id", &p->id)) != SRD_OK)
130 goto err_out;
131 if ((py_dictitem_as_str(py_entry, "name", &p->name)) != SRD_OK)
132 goto err_out;
133 if ((py_dictitem_as_str(py_entry, "desc", &p->desc)) != SRD_OK)
134 goto err_out;
135 p->order = i;
136
137 *pl = g_slist_append(*pl, p);
138 }
139 ret = SRD_OK;
140
141err_out:
142 Py_DecRef(py_entry);
143 Py_DecRef(py_probelist);
144
145 return ret;
146}
147
2f395bff
BV
148static int get_options(struct srd_decoder *d)
149{
150 PyObject *py_opts, *py_keys, *py_values, *py_val, *py_desc, *py_default;
151 Py_ssize_t i;
152 struct srd_decoder_option *o;
153 gint64 def_long;
154 int num_keys, overflow, ret;
155 char *key, *def_str;
156
157 ret = SRD_ERR_PYTHON;
158 key = NULL;
159
160 if (!PyObject_HasAttrString(d->py_dec, "options"))
161 /* That's fine. */
162 return SRD_OK;
163
164 /* If present, options must be a dictionary. */
165 py_opts = PyObject_GetAttrString(d->py_dec, "options");
166 if (!PyDict_Check(py_opts)) {
167 srd_err("Protocol decoder %s options attribute is not "
168 "a dictionary.", d->name);
169 goto err_out;
170 }
171
172 py_keys = PyDict_Keys(py_opts);
173 py_values = PyDict_Values(py_opts);
174 num_keys = PyList_Size(py_keys);
175 for (i = 0; i < num_keys; i++) {
176 py_str_as_str(PyList_GetItem(py_keys, i), &key);
177 srd_dbg("option '%s'", key);
178 py_val = PyList_GetItem(py_values, i);
179 if (!PyList_Check(py_val) || PyList_Size(py_val) != 2) {
180 srd_err("Protocol decoder %s option '%s' value must be "
181 "a list with two elements.", d->name, key);
182 goto err_out;
183 }
184 py_desc = PyList_GetItem(py_val, 0);
185 if (!PyUnicode_Check(py_desc)) {
186 srd_err("Protocol decoder %s option '%s' has no "
187 "description.", d->name, key);
188 goto err_out;
189 }
190 py_default = PyList_GetItem(py_val, 1);
191 if (!PyUnicode_Check(py_default) && !PyLong_Check(py_default)) {
192 srd_err("Protocol decoder %s option '%s' has default "
193 "of unsupported type '%s'.", d->name, key,
194 Py_TYPE(py_default)->tp_name);
195 goto err_out;
196 }
197 if (!(o = g_try_malloc(sizeof(struct srd_decoder_option)))) {
198 srd_err("option malloc failed");
199 goto err_out;
200 }
201 o->id = g_strdup(key);
202 py_str_as_str(py_desc, &o->desc);
203 if (PyUnicode_Check(py_default)) {
204 /* UTF-8 string */
205 py_str_as_str(py_default, &def_str);
206 o->def = g_variant_new_string(def_str);
207 g_free(def_str);
208 } else {
209 /* Long */
210 def_long = PyLong_AsLongAndOverflow(py_default, &overflow);
211 if (overflow) {
212 /* Value is < LONG_MIN or > LONG_MAX */
213 PyErr_Clear();
214 srd_err("Protocol decoder %s option '%s' has "
215 "invalid default value.", d->name, key);
216 goto err_out;
217 }
218 o->def = g_variant_new_int64(def_long);
219 }
220 g_variant_ref_sink(o->def);
221 d->options = g_slist_append(d->options, o);
e592ac89 222 g_free(key);
ca3fc3c0 223 key = NULL;
2f395bff
BV
224 }
225 Py_DecRef(py_keys);
226 Py_DecRef(py_values);
227
228 ret = SRD_OK;
229
230err_out:
231 Py_XDECREF(py_opts);
232 g_free(key);
233
234 return ret;
235}
236
b2c19614 237/**
64c29e28 238 * Load a protocol decoder module into the embedded Python interpreter.
b2c19614 239 *
38ff5046 240 * @param module_name The module name to be loaded.
b2c19614
BV
241 *
242 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
243 *
244 * @since 0.1.0
b2c19614 245 */
9d122fd5 246SRD_API int srd_decoder_load(const char *module_name)
b2c19614 247{
11ea8ae1 248 PyObject *py_basedec, *py_method, *py_attr, *py_annlist, *py_ann;
b2c19614 249 struct srd_decoder *d;
451680f1 250 int alen, ret, i;
15969949 251 char **ann;
38ff5046
UH
252 struct srd_probe *p;
253 GSList *l;
b2c19614 254
8a014683
BV
255 if (!module_name)
256 return SRD_ERR_ARG;
257
8ad6e500 258 srd_dbg("Loading protocol decoder '%s'.", module_name);
64c29e28 259
d906d3f9 260 py_basedec = py_method = py_attr = NULL;
b2c19614 261
451680f1 262 if (!(d = g_try_malloc0(sizeof(struct srd_decoder)))) {
a61ece20 263 srd_dbg("Failed to g_malloc() struct srd_decoder.");
451680f1
BV
264 ret = SRD_ERR_MALLOC;
265 goto err_out;
b2c19614
BV
266 }
267
21481b66
BV
268 ret = SRD_ERR_PYTHON;
269
451680f1 270 /* Import the Python module. */
9b37109d 271 if (!(d->py_mod = PyImport_ImportModule(module_name))) {
aafeeaea 272 srd_exception_catch("Import of '%s' failed.", module_name);
451680f1
BV
273 goto err_out;
274 }
b2c19614 275
451680f1
BV
276 /* Get the 'Decoder' class as Python object. */
277 if (!(d->py_dec = PyObject_GetAttrString(d->py_mod, "Decoder"))) {
278 /* This generated an AttributeError exception. */
279 PyErr_Clear();
361fdcaa
UH
280 srd_err("Decoder class not found in protocol decoder %s.",
281 module_name);
451680f1
BV
282 goto err_out;
283 }
b2c19614 284
451680f1 285 if (!(py_basedec = PyObject_GetAttrString(mod_sigrokdecode, "Decoder"))) {
7a1712c4 286 srd_dbg("sigrokdecode module not loaded.");
451680f1
BV
287 goto err_out;
288 }
b2c19614 289
451680f1
BV
290 if (!PyObject_IsSubclass(d->py_dec, py_basedec)) {
291 srd_err("Decoder class in protocol decoder module %s is not "
9b37109d 292 "a subclass of sigrokdecode.Decoder.", module_name);
451680f1
BV
293 goto err_out;
294 }
ad022d94 295 Py_CLEAR(py_basedec);
b2c19614 296
1d552cd3
BV
297 /* Check for a proper start() method. */
298 if (!PyObject_HasAttrString(d->py_dec, "start")) {
299 srd_err("Protocol decoder %s has no start() method Decoder "
9b37109d 300 "class.", module_name);
1d552cd3
BV
301 goto err_out;
302 }
303 py_method = PyObject_GetAttrString(d->py_dec, "start");
304 if (!PyFunction_Check(py_method)) {
d906d3f9 305 srd_err("Protocol decoder %s Decoder class attribute 'start' "
9b37109d 306 "is not a method.", module_name);
1d552cd3
BV
307 goto err_out;
308 }
ad022d94 309 Py_CLEAR(py_method);
1d552cd3
BV
310
311 /* Check for a proper decode() method. */
312 if (!PyObject_HasAttrString(d->py_dec, "decode")) {
313 srd_err("Protocol decoder %s has no decode() method Decoder "
9b37109d 314 "class.", module_name);
1d552cd3
BV
315 goto err_out;
316 }
317 py_method = PyObject_GetAttrString(d->py_dec, "decode");
318 if (!PyFunction_Check(py_method)) {
319 srd_err("Protocol decoder %s Decoder class attribute 'decode' "
9b37109d 320 "is not a method.", module_name);
1d552cd3
BV
321 goto err_out;
322 }
ad022d94 323 Py_CLEAR(py_method);
1d552cd3 324
2f395bff
BV
325 if (get_options(d) != SRD_OK)
326 goto err_out;
11ea8ae1 327
f38ec285
BV
328 /* Check and import required probes. */
329 if (get_probes(d, "probes", &d->probes) != SRD_OK)
330 goto err_out;
331
332 /* Check and import optional probes. */
dcdf4883 333 if (get_probes(d, "optional_probes", &d->opt_probes) != SRD_OK)
f38ec285
BV
334 goto err_out;
335
38ff5046
UH
336 /*
337 * Fix order numbers for the optional probes.
338 *
339 * Example:
340 * Required probes: r1, r2, r3. Optional: o1, o2, o3, o4.
341 * 'order' fields in the d->probes list = 0, 1, 2.
342 * 'order' fields in the d->opt_probes list = 3, 4, 5, 6.
343 */
344 for (l = d->opt_probes; l; l = l->next) {
345 p = l->data;
346 p->order += g_slist_length(d->probes);
347 }
348
f38ec285 349 /* Store required fields in newly allocated strings. */
21481b66 350 if (py_attr_as_str(d->py_dec, "id", &(d->id)) != SRD_OK)
451680f1 351 goto err_out;
b2c19614 352
21481b66 353 if (py_attr_as_str(d->py_dec, "name", &(d->name)) != SRD_OK)
451680f1 354 goto err_out;
b2c19614 355
21481b66 356 if (py_attr_as_str(d->py_dec, "longname", &(d->longname)) != SRD_OK)
451680f1 357 goto err_out;
b2c19614 358
21481b66 359 if (py_attr_as_str(d->py_dec, "desc", &(d->desc)) != SRD_OK)
451680f1 360 goto err_out;
b2c19614 361
21481b66 362 if (py_attr_as_str(d->py_dec, "license", &(d->license)) != SRD_OK)
451680f1 363 goto err_out;
b2c19614 364
361fdcaa 365 /* Convert class annotation attribute to GSList of **char. */
e97b6ef5 366 d->annotations = NULL;
451680f1
BV
367 if (PyObject_HasAttrString(d->py_dec, "annotations")) {
368 py_annlist = PyObject_GetAttrString(d->py_dec, "annotations");
15969949 369 if (!PyList_Check(py_annlist)) {
c9bfccc6 370 srd_err("Protocol decoder module %s annotations "
9b37109d 371 "should be a list.", module_name);
451680f1 372 goto err_out;
15969949
BV
373 }
374 alen = PyList_Size(py_annlist);
375 for (i = 0; i < alen; i++) {
376 py_ann = PyList_GetItem(py_annlist, i);
377 if (!PyList_Check(py_ann) || PyList_Size(py_ann) != 2) {
c9bfccc6
UH
378 srd_err("Protocol decoder module %s "
379 "annotation %d should be a list with "
9b37109d 380 "two elements.", module_name, i + 1);
451680f1 381 goto err_out;
15969949
BV
382 }
383
451680f1 384 if (py_strlist_to_char(py_ann, &ann) != SRD_OK) {
451680f1
BV
385 goto err_out;
386 }
e97b6ef5 387 d->annotations = g_slist_append(d->annotations, ann);
15969949
BV
388 }
389 }
390
9b37109d
BV
391 /* Append it to the list of supported/loaded decoders. */
392 pd_list = g_slist_append(pd_list, d);
393
451680f1
BV
394 ret = SRD_OK;
395
396err_out:
397 if (ret != SRD_OK) {
1d552cd3 398 Py_XDECREF(py_method);
451680f1
BV
399 Py_XDECREF(py_basedec);
400 Py_XDECREF(d->py_dec);
401 Py_XDECREF(d->py_mod);
402 g_free(d);
403 }
b2c19614 404
451680f1
BV
405 return ret;
406}
407
582c8473
BV
408/**
409 * Return a protocol decoder's docstring.
410 *
411 * @param dec The loaded protocol decoder.
412 *
361fdcaa 413 * @return A newly allocated buffer containing the protocol decoder's
abeeed8b 414 * documentation. The caller is responsible for free'ing the buffer.
8c664ca2
UH
415 *
416 * @since 0.1.0
582c8473 417 */
b33b8aa5 418SRD_API char *srd_decoder_doc_get(const struct srd_decoder *dec)
451680f1 419{
e7edca07 420 PyObject *py_str;
451680f1
BV
421 char *doc;
422
e7edca07
BV
423 if (!PyObject_HasAttrString(dec->py_mod, "__doc__"))
424 return NULL;
425
426 if (!(py_str = PyObject_GetAttrString(dec->py_mod, "__doc__"))) {
aafeeaea 427 srd_exception_catch("");
e7edca07
BV
428 return NULL;
429 }
430
451680f1 431 doc = NULL;
e7edca07
BV
432 if (py_str != Py_None)
433 py_str_as_str(py_str, &doc);
434 Py_DecRef(py_str);
451680f1
BV
435
436 return doc;
b2c19614
BV
437}
438
fa12a21e
BV
439static void free_probes(GSList *probelist)
440{
441 GSList *l;
442 struct srd_probe *p;
443
444 if (probelist == NULL)
445 return;
446
447 for (l = probelist; l; l = l->next) {
448 p = l->data;
449 g_free(p->id);
450 g_free(p->name);
451 g_free(p->desc);
452 g_free(p);
453 }
454 g_slist_free(probelist);
fa12a21e
BV
455}
456
b2c19614 457/**
4cc0d9fe 458 * Unload the specified protocol decoder.
451680f1 459 *
fa12a21e 460 * @param dec The struct srd_decoder to be unloaded.
451680f1
BV
461 *
462 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
463 *
464 * @since 0.1.0
b2c19614 465 */
9d122fd5 466SRD_API int srd_decoder_unload(struct srd_decoder *dec)
b2c19614 467{
2f395bff 468 struct srd_decoder_option *o;
32cfb920 469 struct srd_session *sess;
2f395bff
BV
470 GSList *l;
471
8ad6e500 472 srd_dbg("Unloading protocol decoder '%s'.", dec->name);
fa12a21e 473
361fdcaa
UH
474 /*
475 * Since any instances of this decoder need to be released as well,
fa12a21e
BV
476 * but they could be anywhere in the stack, just free the entire
477 * stack. A frontend reloading a decoder thus has to restart all
361fdcaa
UH
478 * instances, and rebuild the stack.
479 */
32cfb920
BV
480 for (l = sessions; l; l = l->next) {
481 sess = l->data;
482 srd_inst_free_all(sess, NULL);
483 }
fa12a21e 484
2f395bff
BV
485 for (l = dec->options; l; l = l->next) {
486 o = l->data;
487 g_free(o->id);
488 g_free(o->desc);
489 g_variant_unref(o->def);
490 g_free(o);
491 }
492 g_slist_free(dec->options);
493
fa12a21e 494 free_probes(dec->probes);
dcdf4883 495 free_probes(dec->opt_probes);
b2c19614
BV
496 g_free(dec->id);
497 g_free(dec->name);
b231546d 498 g_free(dec->longname);
b2c19614 499 g_free(dec->desc);
b231546d 500 g_free(dec->license);
b2c19614 501
fa12a21e 502 /* The module's Decoder class. */
451680f1 503 Py_XDECREF(dec->py_dec);
fa12a21e 504 /* The module itself. */
b2c19614
BV
505 Py_XDECREF(dec->py_mod);
506
e592ac89 507 g_free(dec);
b2c19614
BV
508
509 return SRD_OK;
510}
511
582c8473 512/**
9b37109d 513 * Load all installed protocol decoders.
582c8473
BV
514 *
515 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
516 *
517 * @since 0.1.0
582c8473 518 */
8ad6e500 519SRD_API int srd_decoder_load_all(void)
b2c19614 520{
eb2bbd66
BV
521 GDir *dir;
522 GError *error;
eb2bbd66 523 const gchar *direntry;
b2c19614 524
eb2bbd66 525 if (!(dir = g_dir_open(DECODERS_DIR, 0, &error))) {
9b37109d 526 srd_err("Unable to open %s for reading.", DECODERS_DIR);
b2c19614
BV
527 return SRD_ERR_DECODERS_DIR;
528 }
529
eb2bbd66 530 while ((direntry = g_dir_read_name(dir)) != NULL) {
9b37109d 531 /* The directory name is the module name (e.g. "i2c"). */
9d122fd5 532 srd_decoder_load(direntry);
b2c19614 533 }
eb2bbd66 534 g_dir_close(dir);
b2c19614
BV
535
536 return SRD_OK;
537}
538
b2c19614 539/**
582c8473
BV
540 * Unload all loaded protocol decoders.
541 *
542 * @return SRD_OK upon success, a (negative) error code otherwise.
8c664ca2
UH
543 *
544 * @since 0.1.0
b2c19614 545 */
8ad6e500 546SRD_API int srd_decoder_unload_all(void)
b2c19614
BV
547{
548 GSList *l;
549 struct srd_decoder *dec;
550
38ff5046 551 for (l = pd_list; l; l = l->next) {
b2c19614 552 dec = l->data;
9d122fd5 553 srd_decoder_unload(dec);
b2c19614
BV
554 }
555
556 return SRD_OK;
557}
4895418c
UH
558
559/** @} */