]> sigrok.org Git - libsigrokdecode.git/blob - decode.c
Install decoders into a decoders/ subdir.
[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;
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 (!strstr(dp->d_name, ".py"))
64                         continue;
65                 if ((tmp = strdup(dp->d_name)))
66                         list_pds = g_slist_append(list_pds, tmp);
67         }
68         closedir(dir);
69
70         return SIGROKDECODE_OK;
71 }
72
73 /**
74  * Helper function to handle Python strings.
75  *
76  * TODO: @param entries.
77  *
78  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
79  *         The 'outstr' argument points to a malloc()ed string upon success.
80  */
81 static int h_str(PyObject *py_res, PyObject *py_func, PyObject *py_mod,
82                  const char *key, char **outstr)
83 {
84         PyObject *py_str;
85         char *str;
86
87         py_str = PyMapping_GetItemString(py_res, (char *)key);
88         if (!py_str || !PyString_Check(py_str)) {
89                 if (PyErr_Occurred())
90                         PyErr_Print();
91                 Py_DECREF(py_func);
92                 Py_DECREF(py_mod);
93                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
94         }
95
96         if (!(str = PyString_AsString(py_str))) {
97                 if (PyErr_Occurred())
98                         PyErr_Print();
99                 Py_DECREF(py_str);
100                 Py_DECREF(py_func);
101                 Py_DECREF(py_mod);
102                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
103         }
104
105         if (!(*outstr = strdup(str))) {
106                 if (PyErr_Occurred())
107                         PyErr_Print();
108                 Py_DECREF(py_str);
109                 Py_DECREF(py_func);
110                 Py_DECREF(py_mod);
111                 return SIGROKDECODE_ERR_MALLOC;
112         }
113
114         Py_DECREF(py_str);
115
116         return SIGROKDECODE_OK;
117 }
118
119 /**
120  * TODO
121  *
122  * @param name TODO
123  *
124  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
125  */
126 int sigrokdecode_load_decoder(const char *name,
127                               struct sigrokdecode_decoder **dec)
128 {
129         struct sigrokdecode_decoder *d;
130         PyObject *py_name, *py_mod, *py_func, *py_res /* , *py_tuple */;
131         int r;
132
133         /* Get the name of the decoder module as Python string. */
134         if (!(py_name = PyString_FromString(name))) {
135                 PyErr_Print();
136                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
137         }
138
139         /* "Import" the Python module. */
140         if (!(py_mod = PyImport_Import(py_name))) {
141                 PyErr_Print();
142                 Py_DECREF(py_name);
143                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
144         }
145         Py_DECREF(py_name);
146
147         /* Get the 'register' function name as Python callable object. */
148         py_func = PyObject_GetAttrString(py_mod, "register");
149         if (!py_func || !PyCallable_Check(py_func)) {
150                 if (PyErr_Occurred())
151                         PyErr_Print();
152                 Py_DECREF(py_mod);
153                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
154         }
155
156         /* Call the 'register' function without arguments, get the result. */
157         if (!(py_res = PyObject_CallFunction(py_func, NULL))) {
158                 PyErr_Print();
159                 Py_DECREF(py_func);
160                 Py_DECREF(py_mod);
161                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
162         }
163
164         if (!(d = malloc(sizeof(struct sigrokdecode_decoder))))
165                 return SIGROKDECODE_ERR_MALLOC;
166
167         if ((r = h_str(py_res, py_func, py_mod, "id", &(d->id))) < 0)
168                 return r;
169
170         if ((r = h_str(py_res, py_func, py_mod, "name", &(d->name))) < 0)
171                 return r;
172
173         if ((r = h_str(py_res, py_func, py_mod, "desc", &(d->desc))) < 0)
174                 return r;
175
176         d->py_mod = py_mod;
177
178         Py_DECREF(py_res);
179         Py_DECREF(py_func);
180
181         /* Get the 'decode' function name as Python callable object. */
182         py_func = PyObject_GetAttrString(py_mod, "decode");
183         if (!py_func || !PyCallable_Check(py_func)) {
184                 if (PyErr_Occurred())
185                         PyErr_Print();
186                 Py_DECREF(py_mod);
187                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
188         }
189
190         d->py_func = py_func;
191
192         /* TODO: Handle inputformats, outputformats. */
193
194         *dec = d;
195
196         return SIGROKDECODE_OK;
197 }
198
199 /**
200  * Run the specified decoder function.
201  *
202  * @param dec TODO
203  * @param inbuf TODO
204  * @param inbuflen TODO
205  * @param outbuf TODO
206  * @param outbuflen TODO
207  *
208  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
209  */
210 int sigrokdecode_run_decoder(struct sigrokdecode_decoder *dec,
211                              uint8_t *inbuf, uint64_t inbuflen,
212                              uint8_t **outbuf, uint64_t *outbuflen)
213 {
214         PyObject *py_mod, *py_func, *py_args, *py_value, *py_res;
215         int ret;
216
217         /* TODO: Use #defines for the return codes. */
218
219         /* Return an error upon unusable input. */
220         if (dec == NULL)
221                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
222         if (inbuf == NULL)
223                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
224         if (inbuflen == 0) /* No point in working on empty buffers. */
225                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
226         if (outbuf == NULL)
227                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
228         if (outbuflen == NULL)
229                 return SIGROKDECODE_ERR_ARGS; /* TODO: More specific error? */
230
231         /* TODO: Error handling. */
232         py_mod = dec->py_mod;
233         py_func = dec->py_func;
234
235         /* TODO: Really run Py_DECREF on py_mod/py_func? */
236
237         /* Create a Python tuple of size 1. */
238         if (!(py_args = PyTuple_New(1))) {
239                 PyErr_Print();
240                 Py_DECREF(py_func);
241                 Py_DECREF(py_mod);
242                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
243         }
244
245         /* Get the input buffer as Python "string" (byte array). */
246         /* TODO: int vs. uint64_t for 'inbuflen'? */
247         if (!(py_value = Py_BuildValue("s#", inbuf, inbuflen))) {
248                 PyErr_Print();
249                 Py_DECREF(py_args);
250                 Py_DECREF(py_func);
251                 Py_DECREF(py_mod);
252                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
253         }
254
255         if (PyTuple_SetItem(py_args, 0, py_value) != 0) {
256                 PyErr_Print();
257                 Py_DECREF(py_value);
258                 Py_DECREF(py_args);
259                 Py_DECREF(py_func);
260                 Py_DECREF(py_mod);
261                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
262         }
263
264         if (!(py_res = PyObject_CallObject(py_func, py_args))) {
265                 PyErr_Print();
266                 Py_DECREF(py_value);
267                 Py_DECREF(py_args);
268                 Py_DECREF(py_func);
269                 Py_DECREF(py_mod);
270                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
271         }
272
273         if ((ret = PyObject_AsCharBuffer(py_res, (const char **)outbuf,
274                                          (Py_ssize_t *)outbuflen))) {
275                 PyErr_Print();
276                 Py_DECREF(py_res);
277                 Py_DECREF(py_value);
278                 Py_DECREF(py_args);
279                 Py_DECREF(py_func);
280                 Py_DECREF(py_mod);
281                 return SIGROKDECODE_ERR_PYTHON; /* TODO: More specific error? */
282         }
283
284         Py_DECREF(py_res);
285         // Py_DECREF(py_value);
286         Py_DECREF(py_args);
287         Py_DECREF(py_func);
288         Py_DECREF(py_mod);
289
290         return SIGROKDECODE_OK;
291 }
292
293 /**
294  * Shutdown libsigrokdecode.
295  *
296  * @return LIBSIGROKDECODE_OK upon success, a (negative) error code otherwise.
297  */
298 int sigrokdecode_shutdown(void)
299 {
300         /* Py_Finalize() returns void, any finalization errors are ignored. */
301         Py_Finalize();
302
303         return SIGROKDECODE_OK;
304 }