]> sigrok.org Git - libsigrokdecode.git/blob - decode.c
Don't print .py suffix in protocol decoder names.
[libsigrokdecode.git] / decode.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
22 #include <stdio.h>
23 #include <string.h>
24 #include <dirent.h>
25
26 /* Re-define some string functions for Python >= 3.0. */
27 #if PY_VERSION_HEX >= 0x03000000
28 #define PyString_AsString PyBytes_AsString
29 #define PyString_FromString PyBytes_FromString
30 #define PyString_Check PyBytes_Check
31 #endif
32
33 /* The list of protocol decoders. */
34 GSList *list_pds = NULL;
35
36 /**
37  * Initialize libsigrokdecode.
38  *
39  * @return SIGROKDECODE_OK upon success, a (negative) error code otherwise.
40  */
41 int sigrokdecode_init(void)
42 {
43         DIR *dir;
44         struct dirent *dp;
45         char *tmp;
46
47         /* Py_Initialize() returns void and usually cannot fail. */
48         Py_Initialize();
49
50         /* Add some more search directories for convenience. */
51         /* FIXME: Check error code. */
52         /* FIXME: What happens if this function is called multiple times? */
53         PyRun_SimpleString(
54                 "import sys;"
55                 "sys.path.append('libsigrokdecode/decoders');"
56                 "sys.path.append('" DECODERS_DIR "');"
57                 );
58
59         if (!(dir = opendir(DECODERS_DIR)))
60                 return SIGROKDECODE_ERR_DECODERS_DIR;
61
62         while ((dp = readdir(dir)) != NULL) {
63                 if (!g_str_has_suffix(dp->d_name, ".py"))
64                         continue;
65                 /* For now use the filename (without .py) as decoder name. */
66                 if ((tmp = g_strndup(dp->d_name, strlen(dp->d_name) - 3)))
67                         list_pds = g_slist_append(list_pds, tmp);
68         }
69         closedir(dir);
70
71         return SIGROKDECODE_OK;
72 }
73
74 /**
75  * Returns the list of supported/loaded protocol decoders.
76  *
77  * This is a GSList containing the names of the decoders as strings.
78  *
79  * @return List of decoders, NULL if none are supported or loaded.
80  */
81 GSList *sigrokdecode_list_decoders(void)
82 {
83         return list_pds;
84 }
85
86 /**
87  * Helper function to handle Python strings.
88  *
89  * TODO: @param entries.
90  *
91  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
92  *         The 'outstr' argument points to a malloc()ed string upon success.
93  */
94 static int h_str(PyObject *py_res, PyObject *py_func, PyObject *py_mod,
95                  const char *key, char **outstr)
96 {
97         PyObject *py_str;
98         char *str;
99
100         py_str = PyMapping_GetItemString(py_res, (char *)key);
101         if (!py_str || !PyString_Check(py_str)) {
102                 if (PyErr_Occurred())
103                         PyErr_Print();
104                 Py_DECREF(py_func);
105                 Py_DECREF(py_mod);
106                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
107         }
108
109         if (!(str = PyString_AsString(py_str))) {
110                 if (PyErr_Occurred())
111                         PyErr_Print();
112                 Py_DECREF(py_str);
113                 Py_DECREF(py_func);
114                 Py_DECREF(py_mod);
115                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
116         }
117
118         if (!(*outstr = strdup(str))) {
119                 if (PyErr_Occurred())
120                         PyErr_Print();
121                 Py_DECREF(py_str);
122                 Py_DECREF(py_func);
123                 Py_DECREF(py_mod);
124                 return SIGROKDECODE_ERR_MALLOC;
125         }
126
127         Py_DECREF(py_str);
128
129         return SIGROKDECODE_OK;
130 }
131
132 /**
133  * TODO
134  *
135  * @param name TODO
136  *
137  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
138  */
139 int sigrokdecode_load_decoder(const char *name,
140                               struct sigrokdecode_decoder **dec)
141 {
142         struct sigrokdecode_decoder *d;
143         PyObject *py_name, *py_mod, *py_func, *py_res /* , *py_tuple */;
144         int r;
145
146         /* Get the name of the decoder module as Python string. */
147         if (!(py_name = PyString_FromString(name))) {
148                 PyErr_Print();
149                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
150         }
151
152         /* "Import" the Python module. */
153         if (!(py_mod = PyImport_Import(py_name))) {
154                 PyErr_Print();
155                 Py_DECREF(py_name);
156                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
157         }
158         Py_DECREF(py_name);
159
160         /* Get the 'register' function name as Python callable object. */
161         py_func = PyObject_GetAttrString(py_mod, "register");
162         if (!py_func || !PyCallable_Check(py_func)) {
163                 if (PyErr_Occurred())
164                         PyErr_Print();
165                 Py_DECREF(py_mod);
166                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
167         }
168
169         /* Call the 'register' function without arguments, get the result. */
170         if (!(py_res = PyObject_CallFunction(py_func, NULL))) {
171                 PyErr_Print();
172                 Py_DECREF(py_func);
173                 Py_DECREF(py_mod);
174                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
175         }
176
177         if (!(d = malloc(sizeof(struct sigrokdecode_decoder))))
178                 return SIGROKDECODE_ERR_MALLOC;
179
180         if ((r = h_str(py_res, py_func, py_mod, "id", &(d->id))) < 0)
181                 return r;
182
183         if ((r = h_str(py_res, py_func, py_mod, "name", &(d->name))) < 0)
184                 return r;
185
186         if ((r = h_str(py_res, py_func, py_mod, "desc", &(d->desc))) < 0)
187                 return r;
188
189         d->py_mod = py_mod;
190
191         Py_DECREF(py_res);
192         Py_DECREF(py_func);
193
194         /* Get the 'decode' function name as Python callable object. */
195         py_func = PyObject_GetAttrString(py_mod, "decode");
196         if (!py_func || !PyCallable_Check(py_func)) {
197                 if (PyErr_Occurred())
198                         PyErr_Print();
199                 Py_DECREF(py_mod);
200                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
201         }
202
203         d->py_func = py_func;
204
205         /* TODO: Handle inputformats, outputformats. */
206
207         *dec = d;
208
209         return SIGROKDECODE_OK;
210 }
211
212 /**
213  * Run the specified decoder function.
214  *
215  * @param dec TODO
216  * @param inbuf TODO
217  * @param inbuflen TODO
218  * @param outbuf TODO
219  * @param outbuflen TODO
220  *
221  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
222  */
223 int sigrokdecode_run_decoder(struct sigrokdecode_decoder *dec,
224                              uint8_t *inbuf, uint64_t inbuflen,
225                              uint8_t **outbuf, uint64_t *outbuflen)
226 {
227         PyObject *py_mod, *py_func, *py_args, *py_value, *py_res;
228         int ret;
229
230         /* TODO: Use #defines for the return codes. */
231
232         /* Return an error upon unusable input. */
233         if (dec == NULL)
234                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
235         if (inbuf == NULL)
236                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
237         if (inbuflen == 0) /* No point in working on empty buffers. */
238                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
239         if (outbuf == NULL)
240                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
241         if (outbuflen == NULL)
242                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
243
244         /* TODO: Error handling. */
245         py_mod = dec->py_mod;
246         py_func = dec->py_func;
247
248         /* TODO: Really run Py_DECREF on py_mod/py_func? */
249
250         /* Create a Python tuple of size 1. */
251         if (!(py_args = PyTuple_New(1))) {
252                 PyErr_Print();
253                 Py_DECREF(py_func);
254                 Py_DECREF(py_mod);
255                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
256         }
257
258         /* Get the input buffer as Python "string" (byte array). */
259         /* TODO: int vs. uint64_t for 'inbuflen'? */
260         if (!(py_value = Py_BuildValue("s#", inbuf, inbuflen))) {
261                 PyErr_Print();
262                 Py_DECREF(py_args);
263                 Py_DECREF(py_func);
264                 Py_DECREF(py_mod);
265                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
266         }
267
268         if (PyTuple_SetItem(py_args, 0, py_value) != 0) {
269                 PyErr_Print();
270                 Py_DECREF(py_value);
271                 Py_DECREF(py_args);
272                 Py_DECREF(py_func);
273                 Py_DECREF(py_mod);
274                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
275         }
276
277         if (!(py_res = PyObject_CallObject(py_func, py_args))) {
278                 PyErr_Print();
279                 Py_DECREF(py_value);
280                 Py_DECREF(py_args);
281                 Py_DECREF(py_func);
282                 Py_DECREF(py_mod);
283                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
284         }
285
286         if ((ret = PyObject_AsCharBuffer(py_res, (const char **)outbuf,
287                                          (Py_ssize_t *)outbuflen))) {
288                 PyErr_Print();
289                 Py_DECREF(py_res);
290                 Py_DECREF(py_value);
291                 Py_DECREF(py_args);
292                 Py_DECREF(py_func);
293                 Py_DECREF(py_mod);
294                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
295         }
296
297         Py_DECREF(py_res);
298         // Py_DECREF(py_value);
299         Py_DECREF(py_args);
300         Py_DECREF(py_func);
301         Py_DECREF(py_mod);
302
303         return SIGROKDECODE_OK;
304 }
305
306 /**
307  * Shutdown libsigrokdecode.
308  *
309  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
310  */
311 int sigrokdecode_shutdown(void)
312 {
313         /* Py_Finalize() returns void, any finalization errors are ignored. */
314         Py_Finalize();
315
316         return SIGROKDECODE_OK;
317 }