]> sigrok.org Git - libsigrokdecode.git/blame - decoder.c
srd: last public/private fix, and docs for all publis functions.
[libsigrokdecode.git] / decoder.c
CommitLineData
b2c19614
BV
1/*
2 * This file is part of the sigrok project.
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"
73191416 22#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
15969949 23#include "sigrokdecode-internal.h"
eb2bbd66 24#include <glib.h>
b2c19614
BV
25
26/* The list of protocol decoders. */
55c3c5f4 27SRD_PRIV GSList *pd_list = NULL;
b2c19614 28
c9bfccc6 29/* module_sigrokdecode.c */
55c3c5f4 30extern SRD_PRIV PyObject *mod_sigrokdecode;
451680f1 31
b2c19614
BV
32/**
33 * Returns the list of supported/loaded protocol decoders.
34 *
35 * This is a GSList containing the names of the decoders as strings.
36 *
37 * @return List of decoders, NULL if none are supported or loaded.
38 */
55c3c5f4 39SRD_API GSList *srd_list_decoders(void)
b2c19614 40{
e5080882 41 return pd_list;
b2c19614
BV
42}
43
b2c19614
BV
44/**
45 * Get the decoder with the specified ID.
46 *
47 * @param id The ID string of the decoder to return.
582c8473 48 *
b2c19614
BV
49 * @return The decoder with the specified ID, or NULL if not found.
50 */
55c3c5f4 51SRD_API struct srd_decoder *srd_get_decoder_by_id(const char *id)
b2c19614
BV
52{
53 GSList *l;
54 struct srd_decoder *dec;
55
56 for (l = srd_list_decoders(); l; l = l->next) {
57 dec = l->data;
58 if (!strcmp(dec->id, id))
59 return dec;
60 }
61
62 return NULL;
63}
64
f38ec285
BV
65static int get_probes(struct srd_decoder *d, char *attr, GSList **pl)
66{
67 PyObject *py_probelist, *py_entry;
68 struct srd_probe *p;
69 int ret, num_probes, i;
70
71 if (!PyObject_HasAttrString(d->py_dec, attr))
72 /* No probes of this type specified. */
73 return SRD_OK;
74
75 ret = SRD_ERR_PYTHON;
76 py_probelist = py_entry = NULL;
77
78 py_probelist = PyObject_GetAttrString(d->py_dec, attr);
79 if (!PyList_Check(py_probelist)) {
80 srd_err("Protocol decoder %s %s attribute is not "
c9bfccc6 81 "a list.", d->name, attr);
f38ec285
BV
82 goto err_out;
83 }
84
85 num_probes = PyList_Size(py_probelist);
86 if (num_probes == 0)
87 /* Empty probelist. */
88 return SRD_OK;
89
90 for (i = 0; i < num_probes; i++) {
91 py_entry = PyList_GetItem(py_probelist, i);
92 if (!PyDict_Check(py_entry)) {
93 srd_err("Protocol decoder %s %s attribute is not "
c9bfccc6 94 "a list with dict elements.", d->name, attr);
f38ec285
BV
95 goto err_out;
96 }
97
98 if (!(p = g_try_malloc(sizeof(struct srd_probe)))) {
a61ece20 99 srd_err("Failed to g_malloc() struct srd_probe.");
f38ec285
BV
100 ret = SRD_ERR_MALLOC;
101 goto err_out;
102 }
103
104 if ((py_dictitem_as_str(py_entry, "id", &p->id)) != SRD_OK)
105 goto err_out;
106 if ((py_dictitem_as_str(py_entry, "name", &p->name)) != SRD_OK)
107 goto err_out;
108 if ((py_dictitem_as_str(py_entry, "desc", &p->desc)) != SRD_OK)
109 goto err_out;
110 p->order = i;
111
112 *pl = g_slist_append(*pl, p);
113 }
114 ret = SRD_OK;
115
116err_out:
117 Py_DecRef(py_entry);
118 Py_DecRef(py_probelist);
119
120 return ret;
121}
122
b2c19614 123/**
64c29e28 124 * Load a protocol decoder module into the embedded Python interpreter.
b2c19614 125 *
15969949
BV
126 * @param name The module name to be loaded.
127 * @param dec Pointer to the struct srd_decoder filled with the loaded module.
b2c19614
BV
128 *
129 * @return SRD_OK upon success, a (negative) error code otherwise.
130 */
55c3c5f4 131SRD_API int srd_load_decoder(const char *name, struct srd_decoder **dec)
b2c19614 132{
11ea8ae1 133 PyObject *py_basedec, *py_method, *py_attr, *py_annlist, *py_ann;
b2c19614 134 struct srd_decoder *d;
451680f1 135 int alen, ret, i;
15969949 136 char **ann;
b2c19614 137
7a1712c4 138 srd_dbg("Loading module '%s'.", name);
64c29e28 139
d906d3f9 140 py_basedec = py_method = py_attr = NULL;
b2c19614 141
451680f1 142 if (!(d = g_try_malloc0(sizeof(struct srd_decoder)))) {
a61ece20 143 srd_dbg("Failed to g_malloc() struct srd_decoder.");
451680f1
BV
144 ret = SRD_ERR_MALLOC;
145 goto err_out;
b2c19614
BV
146 }
147
21481b66
BV
148 ret = SRD_ERR_PYTHON;
149
451680f1
BV
150 /* Import the Python module. */
151 if (!(d->py_mod = PyImport_ImportModule(name))) {
2086c684 152 catch_exception("import of '%s' failed.", name);
451680f1
BV
153 goto err_out;
154 }
b2c19614 155
451680f1
BV
156 /* Get the 'Decoder' class as Python object. */
157 if (!(d->py_dec = PyObject_GetAttrString(d->py_mod, "Decoder"))) {
158 /* This generated an AttributeError exception. */
159 PyErr_Clear();
d906d3f9 160 srd_err("Decoder class not found in protocol decoder %s.", name);
451680f1
BV
161 goto err_out;
162 }
b2c19614 163
451680f1 164 if (!(py_basedec = PyObject_GetAttrString(mod_sigrokdecode, "Decoder"))) {
7a1712c4 165 srd_dbg("sigrokdecode module not loaded.");
451680f1
BV
166 goto err_out;
167 }
b2c19614 168
451680f1
BV
169 if (!PyObject_IsSubclass(d->py_dec, py_basedec)) {
170 srd_err("Decoder class in protocol decoder module %s is not "
c9bfccc6 171 "a subclass of sigrokdecode.Decoder.", name);
451680f1
BV
172 goto err_out;
173 }
ad022d94 174 Py_CLEAR(py_basedec);
b2c19614 175
1d552cd3
BV
176 /* Check for a proper start() method. */
177 if (!PyObject_HasAttrString(d->py_dec, "start")) {
178 srd_err("Protocol decoder %s has no start() method Decoder "
c9bfccc6 179 "class.", name);
1d552cd3
BV
180 goto err_out;
181 }
182 py_method = PyObject_GetAttrString(d->py_dec, "start");
183 if (!PyFunction_Check(py_method)) {
d906d3f9 184 srd_err("Protocol decoder %s Decoder class attribute 'start' "
c9bfccc6 185 "is not a method.", name);
1d552cd3
BV
186 goto err_out;
187 }
ad022d94 188 Py_CLEAR(py_method);
1d552cd3
BV
189
190 /* Check for a proper decode() method. */
191 if (!PyObject_HasAttrString(d->py_dec, "decode")) {
192 srd_err("Protocol decoder %s has no decode() method Decoder "
c9bfccc6 193 "class.", name);
1d552cd3
BV
194 goto err_out;
195 }
196 py_method = PyObject_GetAttrString(d->py_dec, "decode");
197 if (!PyFunction_Check(py_method)) {
198 srd_err("Protocol decoder %s Decoder class attribute 'decode' "
c9bfccc6 199 "is not a method.", name);
1d552cd3
BV
200 goto err_out;
201 }
ad022d94 202 Py_CLEAR(py_method);
1d552cd3 203
11ea8ae1
BV
204 /* If present, options must be a dictionary. */
205 if (PyObject_HasAttrString(d->py_dec, "options")) {
206 py_attr = PyObject_GetAttrString(d->py_dec, "options");
207 if (!PyDict_Check(py_attr)) {
208 srd_err("Protocol decoder %s options attribute is not "
c9bfccc6 209 "a dictionary.", d->name);
ad022d94 210 Py_DecRef(py_attr);
11ea8ae1
BV
211 goto err_out;
212 }
213 Py_DecRef(py_attr);
214 }
215
f38ec285
BV
216 /* Check and import required probes. */
217 if (get_probes(d, "probes", &d->probes) != SRD_OK)
218 goto err_out;
219
220 /* Check and import optional probes. */
dcdf4883 221 if (get_probes(d, "optional_probes", &d->opt_probes) != SRD_OK)
f38ec285
BV
222 goto err_out;
223
224 /* Store required fields in newly allocated strings. */
21481b66 225 if (py_attr_as_str(d->py_dec, "id", &(d->id)) != SRD_OK)
451680f1 226 goto err_out;
b2c19614 227
21481b66 228 if (py_attr_as_str(d->py_dec, "name", &(d->name)) != SRD_OK)
451680f1 229 goto err_out;
b2c19614 230
21481b66 231 if (py_attr_as_str(d->py_dec, "longname", &(d->longname)) != SRD_OK)
451680f1 232 goto err_out;
b2c19614 233
21481b66 234 if (py_attr_as_str(d->py_dec, "desc", &(d->desc)) != SRD_OK)
451680f1 235 goto err_out;
b2c19614 236
21481b66 237 if (py_attr_as_str(d->py_dec, "license", &(d->license)) != SRD_OK)
451680f1 238 goto err_out;
b2c19614 239
451680f1 240 /* TODO: Handle inputformats, outputformats. */
b2c19614
BV
241 d->inputformats = NULL;
242 d->outputformats = NULL;
243
15969949 244 /* Convert class annotation attribute to GSList of **char */
e97b6ef5 245 d->annotations = NULL;
451680f1
BV
246 if (PyObject_HasAttrString(d->py_dec, "annotations")) {
247 py_annlist = PyObject_GetAttrString(d->py_dec, "annotations");
15969949 248 if (!PyList_Check(py_annlist)) {
c9bfccc6
UH
249 srd_err("Protocol decoder module %s annotations "
250 "should be a list.", name);
451680f1 251 goto err_out;
15969949
BV
252 }
253 alen = PyList_Size(py_annlist);
254 for (i = 0; i < alen; i++) {
255 py_ann = PyList_GetItem(py_annlist, i);
256 if (!PyList_Check(py_ann) || PyList_Size(py_ann) != 2) {
c9bfccc6
UH
257 srd_err("Protocol decoder module %s "
258 "annotation %d should be a list with "
259 "two elements.", name, i + 1);
451680f1 260 goto err_out;
15969949
BV
261 }
262
451680f1 263 if (py_strlist_to_char(py_ann, &ann) != SRD_OK) {
451680f1
BV
264 goto err_out;
265 }
e97b6ef5 266 d->annotations = g_slist_append(d->annotations, ann);
15969949
BV
267 }
268 }
269
b2c19614 270 *dec = d;
451680f1
BV
271 ret = SRD_OK;
272
273err_out:
274 if (ret != SRD_OK) {
1d552cd3 275 Py_XDECREF(py_method);
451680f1
BV
276 Py_XDECREF(py_basedec);
277 Py_XDECREF(d->py_dec);
278 Py_XDECREF(d->py_mod);
279 g_free(d);
280 }
b2c19614 281
451680f1
BV
282 return ret;
283}
284
582c8473
BV
285/**
286 * Return a protocol decoder's docstring.
287 *
288 * @param dec The loaded protocol decoder.
289 *
290 * @return A newly allocated buffer containing the docstring. The caller should
291 * free this after use.
292 */
55c3c5f4 293SRD_API char *srd_decoder_doc(struct srd_decoder *dec)
451680f1 294{
e7edca07 295 PyObject *py_str;
451680f1
BV
296 char *doc;
297
e7edca07
BV
298 if (!PyObject_HasAttrString(dec->py_mod, "__doc__"))
299 return NULL;
300
301 if (!(py_str = PyObject_GetAttrString(dec->py_mod, "__doc__"))) {
2086c684 302 catch_exception("");
e7edca07
BV
303 return NULL;
304 }
305
451680f1 306 doc = NULL;
e7edca07
BV
307 if (py_str != Py_None)
308 py_str_as_str(py_str, &doc);
309 Py_DecRef(py_str);
451680f1
BV
310
311 return doc;
b2c19614
BV
312}
313
fa12a21e
BV
314static void free_probes(GSList *probelist)
315{
316 GSList *l;
317 struct srd_probe *p;
318
319 if (probelist == NULL)
320 return;
321
322 for (l = probelist; l; l = l->next) {
323 p = l->data;
324 g_free(p->id);
325 g_free(p->name);
326 g_free(p->desc);
327 g_free(p);
328 }
329 g_slist_free(probelist);
330
331}
332
b2c19614 333/**
451680f1
BV
334 * Unload decoder module.
335 *
fa12a21e 336 * @param dec The struct srd_decoder to be unloaded.
451680f1
BV
337 *
338 * @return SRD_OK upon success, a (negative) error code otherwise.
b2c19614 339 */
55c3c5f4 340SRD_API int srd_unload_decoder(struct srd_decoder *dec)
b2c19614 341{
fa12a21e
BV
342 srd_dbg("unloading decoder %s", dec->name);
343
344 /* Since any instances of this decoder need to be released as well,
345 * but they could be anywhere in the stack, just free the entire
346 * stack. A frontend reloading a decoder thus has to restart all
347 * instances, and rebuild the stack. */
a8b72b05 348 srd_inst_free_all(NULL);
fa12a21e
BV
349
350 free_probes(dec->probes);
dcdf4883 351 free_probes(dec->opt_probes);
b2c19614
BV
352 g_free(dec->id);
353 g_free(dec->name);
b231546d 354 g_free(dec->longname);
b2c19614 355 g_free(dec->desc);
b231546d 356 g_free(dec->license);
b2c19614
BV
357
358 /* TODO: Free everything in inputformats and outputformats. */
b2c19614
BV
359 if (dec->inputformats != NULL)
360 g_slist_free(dec->inputformats);
361 if (dec->outputformats != NULL)
362 g_slist_free(dec->outputformats);
363
fa12a21e 364 /* The module's Decoder class. */
451680f1 365 Py_XDECREF(dec->py_dec);
fa12a21e 366 /* The module itself. */
b2c19614
BV
367 Py_XDECREF(dec->py_mod);
368
369 /* TODO: (g_)free dec itself? */
370
371 return SRD_OK;
372}
373
582c8473
BV
374/**
375 * Load all protocol decoders libsigrokdecode knows about.
376 *
377 * @return SRD_OK upon success, a (negative) error code otherwise.
378 */
55c3c5f4 379SRD_API int srd_load_all_decoders(void)
b2c19614 380{
eb2bbd66
BV
381 GDir *dir;
382 GError *error;
383 struct srd_decoder *dec;
b2c19614 384 int ret;
eb2bbd66 385 const gchar *direntry;
b2c19614 386 char *decodername;
b2c19614 387
eb2bbd66 388 if (!(dir = g_dir_open(DECODERS_DIR, 0, &error))) {
b2c19614
BV
389 return SRD_ERR_DECODERS_DIR;
390 }
391
eb2bbd66 392 while ((direntry = g_dir_read_name(dir)) != NULL) {
64c29e28 393 /* The decoder name is the PD directory name (e.g. "i2c"). */
eb2bbd66 394 decodername = g_strdup(direntry);
b2c19614 395
b2c19614
BV
396 if ((ret = srd_load_decoder(decodername, &dec)) == SRD_OK) {
397 /* Append it to the list of supported/loaded decoders. */
e5080882 398 pd_list = g_slist_append(pd_list, dec);
b2c19614
BV
399 }
400 }
eb2bbd66 401 g_dir_close(dir);
b2c19614
BV
402
403 return SRD_OK;
404}
405
b2c19614 406/**
582c8473
BV
407 * Unload all loaded protocol decoders.
408 *
409 * @return SRD_OK upon success, a (negative) error code otherwise.
b2c19614 410 */
55c3c5f4 411SRD_API int srd_unload_all_decoders(void)
b2c19614
BV
412{
413 GSList *l;
414 struct srd_decoder *dec;
415
416 for (l = srd_list_decoders(); l; l = l->next) {
417 dec = l->data;
b2c19614
BV
418 srd_unload_decoder(dec);
419 }
420
421 return SRD_OK;
422}