]> sigrok.org Git - libsigrokdecode.git/blame - decoder.c
srd: fix decoder loading, and back to using glib dirent wrappers
[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>
5 * Copyright (C) 2011 Bert Vermeulen <bert@biot.com>
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. */
e5080882 27GSList *pd_list = NULL;
b2c19614 28
451680f1
BV
29/* lives in module_sigrokdecode.c */
30extern PyObject *mod_sigrokdecode;
31
b2c19614
BV
32
33/**
34 * Returns the list of supported/loaded protocol decoders.
35 *
36 * This is a GSList containing the names of the decoders as strings.
37 *
38 * @return List of decoders, NULL if none are supported or loaded.
39 */
40GSList *srd_list_decoders(void)
41{
42
e5080882 43 return pd_list;
b2c19614
BV
44}
45
46
47/**
48 * Get the decoder with the specified ID.
49 *
50 * @param id The ID string of the decoder to return.
51 * @return The decoder with the specified ID, or NULL if not found.
52 */
53struct srd_decoder *srd_get_decoder_by_id(const char *id)
54{
55 GSList *l;
56 struct srd_decoder *dec;
57
58 for (l = srd_list_decoders(); l; l = l->next) {
59 dec = l->data;
60 if (!strcmp(dec->id, id))
61 return dec;
62 }
63
64 return NULL;
65}
66
67
68/**
64c29e28 69 * Load a protocol decoder module into the embedded Python interpreter.
b2c19614 70 *
15969949
BV
71 * @param name The module name to be loaded.
72 * @param dec Pointer to the struct srd_decoder filled with the loaded module.
b2c19614
BV
73 *
74 * @return SRD_OK upon success, a (negative) error code otherwise.
75 */
76int srd_load_decoder(const char *name, struct srd_decoder **dec)
77{
1d552cd3 78 PyObject *py_basedec, *py_method, *py_annlist, *py_ann;
b2c19614 79 struct srd_decoder *d;
451680f1 80 int alen, ret, i;
15969949 81 char **ann;
b2c19614 82
1d552cd3 83 py_basedec = py_method = NULL;
64c29e28
UH
84
85 srd_dbg("decoder: %s: loading module '%s'", __func__, name);
b2c19614 86
451680f1 87 if (!(d = g_try_malloc0(sizeof(struct srd_decoder)))) {
64c29e28 88 srd_err("decoder: %s: d malloc failed", __func__);
451680f1
BV
89 ret = SRD_ERR_MALLOC;
90 goto err_out;
b2c19614
BV
91 }
92
21481b66
BV
93 ret = SRD_ERR_PYTHON;
94
451680f1
BV
95 /* Import the Python module. */
96 if (!(d->py_mod = PyImport_ImportModule(name))) {
64c29e28
UH
97 /* TODO: Report exception message/traceback to err/dbg. */
98 srd_warn("decoder: %s: import of '%s' failed", __func__, name);
99 PyErr_Print();
451680f1 100 PyErr_Clear();
451680f1
BV
101 goto err_out;
102 }
b2c19614 103
451680f1
BV
104 /* Get the 'Decoder' class as Python object. */
105 if (!(d->py_dec = PyObject_GetAttrString(d->py_mod, "Decoder"))) {
106 /* This generated an AttributeError exception. */
64c29e28 107 PyErr_Print();
451680f1 108 PyErr_Clear();
1d552cd3 109 srd_err("Decoder class not found in protocol decoder %s", name);
451680f1
BV
110 goto err_out;
111 }
b2c19614 112
451680f1
BV
113 if (!(py_basedec = PyObject_GetAttrString(mod_sigrokdecode, "Decoder"))) {
114 srd_dbg("sigrokdecode module not loaded");
451680f1
BV
115 goto err_out;
116 }
b2c19614 117
451680f1
BV
118 if (!PyObject_IsSubclass(d->py_dec, py_basedec)) {
119 srd_err("Decoder class in protocol decoder module %s is not "
120 "a subclass of sigrokdecode.Decoder", name);
451680f1
BV
121 goto err_out;
122 }
123 Py_DecRef(py_basedec);
b2c19614 124
1d552cd3
BV
125 /* Check for a proper start() method. */
126 if (!PyObject_HasAttrString(d->py_dec, "start")) {
127 srd_err("Protocol decoder %s has no start() method Decoder "
128 "class.", name);
129 goto err_out;
130 }
131 py_method = PyObject_GetAttrString(d->py_dec, "start");
132 if (!PyFunction_Check(py_method)) {
133 srd_err("Protocol decoder %s Decoder class attribute 'start'"
134 "is not a method.", name);
135 goto err_out;
136 }
137 Py_DecRef(py_method);
138
139 /* Check for a proper decode() method. */
140 if (!PyObject_HasAttrString(d->py_dec, "decode")) {
141 srd_err("Protocol decoder %s has no decode() method Decoder "
142 "class.", name);
143 goto err_out;
144 }
145 py_method = PyObject_GetAttrString(d->py_dec, "decode");
146 if (!PyFunction_Check(py_method)) {
147 srd_err("Protocol decoder %s Decoder class attribute 'decode' "
148 "is not a method.", name);
149 goto err_out;
150 }
151 Py_DecRef(py_method);
152
21481b66 153 if (py_attr_as_str(d->py_dec, "id", &(d->id)) != SRD_OK)
451680f1 154 goto err_out;
b2c19614 155
21481b66 156 if (py_attr_as_str(d->py_dec, "name", &(d->name)) != SRD_OK)
451680f1 157 goto err_out;
b2c19614 158
21481b66 159 if (py_attr_as_str(d->py_dec, "longname", &(d->longname)) != SRD_OK)
451680f1 160 goto err_out;
b2c19614 161
21481b66 162 if (py_attr_as_str(d->py_dec, "desc", &(d->desc)) != SRD_OK)
451680f1 163 goto err_out;
b2c19614 164
21481b66 165 if (py_attr_as_str(d->py_dec, "license", &(d->license)) != SRD_OK)
451680f1 166 goto err_out;
b2c19614 167
451680f1 168 /* TODO: Handle inputformats, outputformats. */
b2c19614
BV
169 d->inputformats = NULL;
170 d->outputformats = NULL;
171
15969949 172 /* Convert class annotation attribute to GSList of **char */
e97b6ef5 173 d->annotations = NULL;
451680f1
BV
174 if (PyObject_HasAttrString(d->py_dec, "annotations")) {
175 py_annlist = PyObject_GetAttrString(d->py_dec, "annotations");
15969949 176 if (!PyList_Check(py_annlist)) {
e97b6ef5 177 srd_err("Protocol decoder module %s annotations should be a list", name);
451680f1 178 goto err_out;
15969949
BV
179 }
180 alen = PyList_Size(py_annlist);
181 for (i = 0; i < alen; i++) {
182 py_ann = PyList_GetItem(py_annlist, i);
183 if (!PyList_Check(py_ann) || PyList_Size(py_ann) != 2) {
184 srd_err("Protocol decoder module %s annotation %d should be a list with two elements",
185 name, i+1);
451680f1 186 goto err_out;
15969949
BV
187 }
188
451680f1 189 if (py_strlist_to_char(py_ann, &ann) != SRD_OK) {
451680f1
BV
190 goto err_out;
191 }
e97b6ef5 192 d->annotations = g_slist_append(d->annotations, ann);
15969949
BV
193 }
194 }
195
b2c19614 196 *dec = d;
451680f1
BV
197 ret = SRD_OK;
198
199err_out:
200 if (ret != SRD_OK) {
1d552cd3 201 Py_XDECREF(py_method);
451680f1
BV
202 Py_XDECREF(py_basedec);
203 Py_XDECREF(d->py_dec);
204 Py_XDECREF(d->py_mod);
205 g_free(d);
206 }
b2c19614 207
451680f1
BV
208 return ret;
209}
210
211char *srd_decoder_doc(struct srd_decoder *dec)
212{
e7edca07 213 PyObject *py_str;
451680f1
BV
214 char *doc;
215
e7edca07
BV
216 if (!PyObject_HasAttrString(dec->py_mod, "__doc__"))
217 return NULL;
218
219 if (!(py_str = PyObject_GetAttrString(dec->py_mod, "__doc__"))) {
220 PyErr_Clear();
221 return NULL;
222 }
223
451680f1 224 doc = NULL;
e7edca07
BV
225 if (py_str != Py_None)
226 py_str_as_str(py_str, &doc);
227 Py_DecRef(py_str);
451680f1
BV
228
229 return doc;
b2c19614
BV
230}
231
232
233/**
451680f1
BV
234 * Unload decoder module.
235 *
236 * @param dec The decoder struct to be unloaded.
237 *
238 * @return SRD_OK upon success, a (negative) error code otherwise.
b2c19614
BV
239 */
240int srd_unload_decoder(struct srd_decoder *dec)
241{
451680f1 242
b2c19614
BV
243 g_free(dec->id);
244 g_free(dec->name);
b231546d 245 g_free(dec->longname);
b2c19614 246 g_free(dec->desc);
b231546d 247 g_free(dec->license);
b2c19614
BV
248
249 /* TODO: Free everything in inputformats and outputformats. */
b2c19614
BV
250 if (dec->inputformats != NULL)
251 g_slist_free(dec->inputformats);
252 if (dec->outputformats != NULL)
253 g_slist_free(dec->outputformats);
254
451680f1 255 Py_XDECREF(dec->py_dec);
b2c19614
BV
256 Py_XDECREF(dec->py_mod);
257
258 /* TODO: (g_)free dec itself? */
259
260 return SRD_OK;
261}
262
b2c19614
BV
263int srd_load_all_decoders(void)
264{
eb2bbd66
BV
265 GDir *dir;
266 GError *error;
267 struct srd_decoder *dec;
b2c19614 268 int ret;
eb2bbd66 269 const gchar *direntry;
b2c19614 270 char *decodername;
b2c19614 271
eb2bbd66 272 if (!(dir = g_dir_open(DECODERS_DIR, 0, &error))) {
b2c19614
BV
273 return SRD_ERR_DECODERS_DIR;
274 }
275
eb2bbd66 276 while ((direntry = g_dir_read_name(dir)) != NULL) {
64c29e28 277 /* The decoder name is the PD directory name (e.g. "i2c"). */
eb2bbd66 278 decodername = g_strdup(direntry);
b2c19614
BV
279
280 /* TODO: Error handling. Use g_try_malloc(). */
281 if (!(dec = malloc(sizeof(struct srd_decoder)))) {
282 Py_Finalize(); /* Returns void. */
283 return SRD_ERR_MALLOC;
284 }
285
286 /* Load the decoder. */
287 /* TODO: Warning if loading fails for a decoder. */
288 if ((ret = srd_load_decoder(decodername, &dec)) == SRD_OK) {
289 /* Append it to the list of supported/loaded decoders. */
e5080882 290 pd_list = g_slist_append(pd_list, dec);
b2c19614
BV
291 }
292 }
eb2bbd66 293 g_dir_close(dir);
b2c19614
BV
294
295 return SRD_OK;
296}
297
b2c19614
BV
298/**
299 * TODO
300 */
301int srd_unload_all_decoders(void)
302{
303 GSList *l;
304 struct srd_decoder *dec;
305
306 for (l = srd_list_decoders(); l; l = l->next) {
307 dec = l->data;
308 /* TODO: Error handling. */
309 srd_unload_decoder(dec);
310 }
311
312 return SRD_OK;
313}
314
315
316