]> sigrok.org Git - libsigrokdecode.git/blob - sigrokdecode.h
69fc2ce72304675d69a8c19f443694c16418a800
[libsigrokdecode.git] / sigrokdecode.h
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5  * Copyright (C) 2012 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 2 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, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #ifndef LIBSIGROKDECODE_SIGROKDECODE_H
23 #define LIBSIGROKDECODE_SIGROKDECODE_H
24
25 #include <Python.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
26 #include <stdint.h>
27 #include <glib.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /*
34  * Status/error codes returned by libsigrokdecode functions.
35  *
36  * All possible return codes of libsigrokdecode functions must be listed here.
37  * Functions should never return hardcoded numbers as status, but rather
38  * use these #defines instead. All error codes are negative numbers.
39  *
40  * The error codes are globally unique in libsigrokdecode, i.e. if one of the
41  * libsigrokdecode functions returns a "malloc error" it must be exactly the
42  * same return value as used by all other functions to indicate "malloc error".
43  * There must be no functions which indicate two different errors via the
44  * same return code.
45  *
46  * Also, for compatibility reasons, no defined return codes are ever removed
47  * or reused for different #defines later. You can only add new #defines and
48  * return codes, but never remove or redefine existing ones.
49  */
50 #define SRD_OK                 0 /**< No error */
51 #define SRD_ERR               -1 /**< Generic/unspecified error */
52 #define SRD_ERR_MALLOC        -2 /**< Malloc/calloc/realloc error */
53 #define SRD_ERR_ARG           -3 /**< Function argument error */
54 #define SRD_ERR_BUG           -4 /**< Errors hinting at internal bugs */
55 #define SRD_ERR_PYTHON        -5 /**< Python C API error */
56 #define SRD_ERR_DECODERS_DIR  -6 /**< Protocol decoder path invalid */
57
58 /* libsigrokdecode loglevels. */
59 #define SRD_LOG_NONE   0 /**< Output no messages at all. */
60 #define SRD_LOG_ERR    1 /**< Output error messages. */
61 #define SRD_LOG_WARN   2 /**< Output warnings. */
62 #define SRD_LOG_INFO   3 /**< Output informational messages. */
63 #define SRD_LOG_DBG    4 /**< Output debug messages. */
64 #define SRD_LOG_SPEW   5 /**< Output very noisy debug messages. */
65
66 /*
67  * Use SRD_API to mark public API symbols, and SRD_PRIV for private symbols.
68  *
69  * Variables and functions marked 'static' are private already and don't
70  * need SR_PRIV. However, functions which are not static (because they need
71  * to be used in other libsigrokdecode-internal files) but are also not
72  * meant to be part of the public libsigrokdecode API, must use SRD_PRIV.
73  *
74  * This uses the 'visibility' feature of gcc (requires gcc >= 4.0).
75  *
76  * Details: http://gcc.gnu.org/wiki/Visibility
77  */
78
79 /* Marks public libsigrokdecode API symbols. */
80 #define SRD_API __attribute__((visibility("default")))
81
82 /* Marks private, non-public libsigrokdecode symbols (not part of the API). */
83 #define SRD_PRIV __attribute__((visibility("hidden")))
84
85 /*
86  * When adding an output type, don't forget to...
87  *   - expose it to PDs in controller.c:PyInit_sigrokdecode()
88  *   - add a check in module_sigrokdecode.c:Decoder_put()
89  *   - add a debug string in type_decoder.c:OUTPUT_TYPES
90  */
91 enum {
92         SRD_OUTPUT_ANN,
93         SRD_OUTPUT_PROTO,
94         SRD_OUTPUT_BINARY,
95 };
96
97 #define SRD_MAX_NUM_PROBES   64
98
99 /* TODO: Documentation. */
100 struct srd_decoder {
101         /** The decoder ID. Must be non-NULL and unique for all decoders. */
102         char *id;
103
104         /** The (short) decoder name. */
105         char *name;
106
107         /** The (long) decoder name. May be NULL. */
108         char *longname;
109
110         /** A (short, one-line) description of the decoder. */
111         char *desc;
112
113         /** The license of the decoder. Valid values: "gplv2+", "gplv3+". */
114         char *license;
115
116         /** TODO */
117         GSList *inputformats;
118
119         /** TODO */
120         GSList *outputformats;
121
122         /** Probes */
123         GSList *probes;
124
125         /** Optional probes */
126         GSList *opt_probes;
127
128         /*
129          * List of NULL-terminated char[], containing descriptions of the
130          * supported annotation output.
131          */
132         GSList *annotations;
133
134         /** Python module */
135         PyObject *py_mod;
136
137         /** sigrokdecode.Decoder class */
138         PyObject *py_dec;
139 };
140
141 struct srd_probe {
142         char *id;
143         char *name;
144         char *desc;
145         int order;
146 };
147
148 struct srd_decoder_instance {
149         struct srd_decoder *decoder;
150         PyObject *py_instance;
151         char *instance_id;
152         GSList *pd_output;
153         int dec_num_probes;
154         int *dec_probemap;
155         int data_num_probes;
156         int data_unitsize;
157         uint64_t data_samplerate;
158         GSList *next_di;
159 };
160
161 struct srd_pd_output {
162         int pdo_id;
163         int output_type;
164         struct srd_decoder_instance *di;
165         char *proto_id;
166 };
167
168 struct srd_proto_data {
169         uint64_t start_sample;
170         uint64_t end_sample;
171         struct srd_pd_output *pdo;
172         int ann_format;
173         void *data;
174 };
175
176 struct srd_pd_callback {
177         int output_type;
178         void (*callback)(struct srd_proto_data *);
179 };
180
181 /* custom python types */
182 typedef struct {
183         PyObject_HEAD
184 } srd_Decoder;
185
186 typedef struct {
187         PyObject_HEAD
188         struct srd_decoder_instance *di;
189         uint64_t start_samplenum;
190         unsigned int itercnt;
191         uint8_t *inbuf;
192         uint64_t inbuflen;
193         PyObject *sample;
194 } srd_logic;
195
196 /*--- controller.c ----------------------------------------------------------*/
197
198 SRD_API int srd_init(void);
199 SRD_API int srd_exit(void);
200 SRD_API int set_modulepath(void);
201 SRD_API int srd_instance_set_options(struct srd_decoder_instance *di,
202                                      GHashTable *options);
203 SRD_API int srd_instance_set_probes(struct srd_decoder_instance *di,
204                                     GHashTable *probes);
205 SRD_API struct srd_decoder_instance *srd_instance_new(const char *id,
206                                                       GHashTable *options);
207 SRD_API int srd_instance_stack(struct srd_decoder_instance *di_from,
208                                struct srd_decoder_instance *di_to);
209 SRD_API struct srd_decoder_instance *srd_instance_find_by_id(char *instance_id);
210 SRD_API struct srd_decoder_instance *srd_instance_find_by_obj(GSList *stack,
211                                                               PyObject *obj);
212 SRD_API int srd_instance_start(struct srd_decoder_instance *di, PyObject *args);
213 SRD_API int srd_instance_decode(uint64_t start_samplenum,
214                                 struct srd_decoder_instance *dec,
215                                 uint8_t *inbuf, uint64_t inbuflen);
216 SRD_API void srd_instance_free(struct srd_decoder_instance *di);
217 SRD_API void srd_instance_free_all(GSList *stack);
218 SRD_API int srd_session_start(int num_probes, int unitsize,
219                               uint64_t samplerate);
220 SRD_API int srd_session_feed(uint64_t start_samplenum, uint8_t *inbuf,
221                              uint64_t inbuflen);
222 SRD_PRIV int pd_add(struct srd_decoder_instance *di, int output_type,
223                     char *output_id);
224 SRD_API struct srd_decoder_instance *get_di_by_decobject(void *decobject);
225 typedef void (*srd_pd_output_callback_t)(struct srd_proto_data *pdata);
226 SRD_API int srd_register_callback(int output_type, srd_pd_output_callback_t cb);
227 SRD_API void *srd_find_callback(int output_type);
228
229 /*--- decoder.c -------------------------------------------------------------*/
230
231 SRD_API GSList *srd_list_decoders(void);
232 SRD_API struct srd_decoder *srd_get_decoder_by_id(const char *id);
233 SRD_API int srd_load_decoder(const char *name, struct srd_decoder **dec);
234 SRD_API int srd_unload_decoder(struct srd_decoder *dec);
235 SRD_API int srd_load_all_decoders(void);
236 SRD_API int srd_unload_all_decoders(void);
237 SRD_API char *srd_decoder_doc(struct srd_decoder *dec);
238
239 /*--- exception.c -----------------------------------------------------------*/
240
241 SRD_PRIV void catch_exception(const char *format, ...);
242
243 /*--- util.c ----------------------------------------------------------------*/
244
245 SRD_PRIV int py_attr_as_str(PyObject *py_obj, const char *attr, char **outstr);
246 SRD_PRIV int py_dictitem_as_str(PyObject *py_obj, const char *key, char **outstr);
247 SRD_PRIV int py_str_as_str(PyObject *py_str, char **outstr);
248 SRD_PRIV int py_strlist_to_char(PyObject *py_strlist, char ***outstr);
249
250 /*--- log.c -----------------------------------------------------------------*/
251
252 typedef int (*srd_log_handler_t)(void *data, int loglevel, const char *format,
253                                  va_list args);
254
255 SRD_API int srd_log_loglevel_set(int loglevel);
256 SRD_API int srd_log_loglevel_get(void);
257 SRD_API int srd_log_handler_set(srd_log_handler_t handler, void *data);
258 SRD_API int srd_log_handler_set_default(void);
259 SRD_API int srd_log_logdomain_set(const char *logdomain);
260 SRD_API char *srd_log_logdomain_get(void);
261
262 #ifdef __cplusplus
263 }
264 #endif
265
266 #endif