]> sigrok.org Git - libsigrokdecode.git/blame_incremental - libsigrokdecode.h
dali: Use a slightly better variable name.
[libsigrokdecode.git] / libsigrokdecode.h
... / ...
CommitLineData
1/*
2 * This file is part of the libsigrokdecode 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, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef LIBSIGROKDECODE_LIBSIGROKDECODE_H
22#define LIBSIGROKDECODE_LIBSIGROKDECODE_H
23
24#include <stdint.h>
25#include <glib.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31struct srd_session;
32
33/**
34 * @file
35 *
36 * The public libsigrokdecode header file to be used by frontends.
37 *
38 * This is the only file that libsigrokdecode users (frontends) are supposed
39 * to use and include. There are other header files which get installed with
40 * libsigrokdecode, but those are not meant to be used directly by frontends.
41 *
42 * The correct way to get/use the libsigrokdecode API functions is:
43 *
44 * @code{.c}
45 * #include <libsigrokdecode/libsigrokdecode.h>
46 * @endcode
47 */
48
49/*
50 * All possible return codes of libsigrokdecode functions must be listed here.
51 * Functions should never return hardcoded numbers as status, but rather
52 * use these enum values. All error codes are negative numbers.
53 *
54 * The error codes are globally unique in libsigrokdecode, i.e. if one of the
55 * libsigrokdecode functions returns a "malloc error" it must be exactly the
56 * same return value as used by all other functions to indicate "malloc error".
57 * There must be no functions which indicate two different errors via the
58 * same return code.
59 *
60 * Also, for compatibility reasons, no defined return codes are ever removed
61 * or reused for different errors later. You can only add new entries and
62 * return codes, but never remove or redefine existing ones.
63 */
64
65/** Status/error codes returned by libsigrokdecode functions. */
66enum srd_error_code {
67 SRD_OK = 0, /**< No error */
68 SRD_ERR = -1, /**< Generic/unspecified error */
69 SRD_ERR_MALLOC = -2, /**< Malloc/calloc/realloc error */
70 SRD_ERR_ARG = -3, /**< Function argument error */
71 SRD_ERR_BUG = -4, /**< Errors hinting at internal bugs */
72 SRD_ERR_PYTHON = -5, /**< Python C API error */
73 SRD_ERR_DECODERS_DIR = -6, /**< Protocol decoder path invalid */
74
75 /*
76 * Note: When adding entries here, don't forget to also update the
77 * srd_strerror() and srd_strerror_name() functions in error.c.
78 */
79};
80
81/* libsigrokdecode loglevels. */
82enum srd_loglevel {
83 SRD_LOG_NONE = 0, /**< Output no messages at all. */
84 SRD_LOG_ERR = 1, /**< Output error messages. */
85 SRD_LOG_WARN = 2, /**< Output warnings. */
86 SRD_LOG_INFO = 3, /**< Output informational messages. */
87 SRD_LOG_DBG = 4, /**< Output debug messages. */
88 SRD_LOG_SPEW = 5, /**< Output very noisy debug messages. */
89};
90
91/*
92 * Use SRD_API to mark public API symbols, and SRD_PRIV for private symbols.
93 *
94 * Variables and functions marked 'static' are private already and don't
95 * need SRD_PRIV. However, functions which are not static (because they need
96 * to be used in other libsigrokdecode-internal files) but are also not
97 * meant to be part of the public libsigrokdecode API, must use SRD_PRIV.
98 *
99 * This uses the 'visibility' feature of gcc (requires gcc >= 4.0).
100 *
101 * This feature is not available on MinGW/Windows, as it is a feature of
102 * ELF files and MinGW/Windows uses PE files.
103 *
104 * Details: http://gcc.gnu.org/wiki/Visibility
105 */
106
107/* Marks public libsigrokdecode API symbols. */
108#ifndef _WIN32
109#define SRD_API __attribute__((visibility("default")))
110#else
111#define SRD_API
112#endif
113
114/* Marks private, non-public libsigrokdecode symbols (not part of the API). */
115#ifndef _WIN32
116#define SRD_PRIV __attribute__((visibility("hidden")))
117#else
118#define SRD_PRIV
119#endif
120
121/*
122 * When adding an output type, don't forget to...
123 * - expose it to PDs in controller.c:PyInit_sigrokdecode()
124 * - add a check in module_sigrokdecode.c:Decoder_put()
125 * - add a debug string in type_decoder.c:OUTPUT_TYPES
126 */
127enum srd_output_type {
128 SRD_OUTPUT_ANN,
129 SRD_OUTPUT_PYTHON,
130 SRD_OUTPUT_BINARY,
131 SRD_OUTPUT_META,
132};
133
134enum srd_configkey {
135 SRD_CONF_SAMPLERATE = 10000,
136};
137
138struct srd_decoder {
139 /** The decoder ID. Must be non-NULL and unique for all decoders. */
140 char *id;
141
142 /** The (short) decoder name. Must be non-NULL. */
143 char *name;
144
145 /** The (long) decoder name. Must be non-NULL. */
146 char *longname;
147
148 /** A (short, one-line) description of the decoder. Must be non-NULL. */
149 char *desc;
150
151 /**
152 * The license of the decoder. Valid values: "gplv2+", "gplv3+".
153 * Other values are currently not allowed. Must be non-NULL.
154 */
155 char *license;
156
157 /** List of channels required by this decoder. */
158 GSList *channels;
159
160 /** List of optional channels for this decoder. */
161 GSList *opt_channels;
162
163 /**
164 * List of NULL-terminated char[], containing descriptions of the
165 * supported annotation output.
166 */
167 GSList *annotations;
168
169 /**
170 * List of annotation rows (row items: id, description, and a list
171 * of annotation classes belonging to this row).
172 */
173 GSList *annotation_rows;
174
175 /**
176 * List of NULL-terminated char[], containing descriptions of the
177 * supported binary output.
178 */
179 GSList *binary;
180
181 /** List of decoder options. */
182 GSList *options;
183
184 /** Python module. */
185 void *py_mod;
186
187 /** sigrokdecode.Decoder class. */
188 void *py_dec;
189};
190
191/**
192 * Structure which contains information about one protocol decoder channel.
193 * For example, I2C has two channels, SDA and SCL.
194 */
195struct srd_channel {
196 /** The ID of the channel. Must be non-NULL. */
197 char *id;
198 /** The name of the channel. Must not be NULL. */
199 char *name;
200 /** The description of the channel. Must not be NULL. */
201 char *desc;
202 /** The index of the channel, i.e. its order in the list of channels. */
203 int order;
204};
205
206struct srd_decoder_option {
207 char *id;
208 char *desc;
209 GVariant *def;
210 GSList *values;
211};
212
213struct srd_decoder_annotation_row {
214 char *id;
215 char *desc;
216 GSList *ann_classes;
217};
218
219struct srd_decoder_inst {
220 struct srd_decoder *decoder;
221 struct srd_session *sess;
222 void *py_inst;
223 char *inst_id;
224 GSList *pd_output;
225 int dec_num_channels;
226 int *dec_channelmap;
227 int data_unitsize;
228 uint8_t *channel_samples;
229 GSList *next_di;
230
231 /** List of conditions a PD wants to wait for. */
232 GSList *condition_list;
233
234 /** Array of booleans denoting which conditions matched. */
235 GArray *match_array;
236
237 /** Absolute start sample number. */
238 uint64_t abs_start_samplenum;
239
240 /** Absolute end sample number. */
241 uint64_t abs_end_samplenum;
242
243 /** Pointer to the buffer/chunk of input samples. */
244 const uint8_t *inbuf;
245
246 /** Length (in bytes) of the input sample buffer. */
247 uint64_t inbuflen;
248
249 /** Absolute current samplenumber. */
250 uint64_t abs_cur_samplenum;
251
252 /** Array of "old" (previous sample) pin values. */
253 GArray *old_pins_array;
254
255 /** Handle for this PD stack's worker thread. */
256 GThread *thread_handle;
257
258 /** Indicates whether new samples are available for processing. */
259 gboolean got_new_samples;
260
261 /** Indicates whether the worker thread has handled all samples. */
262 gboolean handled_all_samples;
263
264 /** Requests termination of wait() and decode(). */
265 gboolean want_wait_terminate;
266
267 GCond got_new_samples_cond;
268 GCond handled_all_samples_cond;
269 GMutex data_mutex;
270};
271
272struct srd_pd_output {
273 int pdo_id;
274 int output_type;
275 struct srd_decoder_inst *di;
276 char *proto_id;
277 /* Only used for OUTPUT_META. */
278 const GVariantType *meta_type;
279 char *meta_name;
280 char *meta_descr;
281};
282
283struct srd_proto_data {
284 uint64_t start_sample;
285 uint64_t end_sample;
286 struct srd_pd_output *pdo;
287 void *data;
288};
289struct srd_proto_data_annotation {
290 int ann_class;
291 char **ann_text;
292};
293struct srd_proto_data_binary {
294 int bin_class;
295 uint64_t size;
296 const unsigned char *data;
297};
298
299typedef void (*srd_pd_output_callback)(struct srd_proto_data *pdata,
300 void *cb_data);
301
302struct srd_pd_callback {
303 int output_type;
304 srd_pd_output_callback cb;
305 void *cb_data;
306};
307
308/* srd.c */
309SRD_API int srd_init(const char *path);
310SRD_API int srd_exit(void);
311
312/* session.c */
313SRD_API int srd_session_new(struct srd_session **sess);
314SRD_API int srd_session_start(struct srd_session *sess);
315SRD_API int srd_session_metadata_set(struct srd_session *sess, int key,
316 GVariant *data);
317SRD_API int srd_session_send(struct srd_session *sess,
318 uint64_t abs_start_samplenum, uint64_t abs_end_samplenum,
319 const uint8_t *inbuf, uint64_t inbuflen, uint64_t unitsize);
320SRD_API int srd_session_destroy(struct srd_session *sess);
321SRD_API int srd_pd_output_callback_add(struct srd_session *sess,
322 int output_type, srd_pd_output_callback cb, void *cb_data);
323
324/* decoder.c */
325SRD_API const GSList *srd_decoder_list(void);
326SRD_API struct srd_decoder *srd_decoder_get_by_id(const char *id);
327SRD_API int srd_decoder_load(const char *name);
328SRD_API char *srd_decoder_doc_get(const struct srd_decoder *dec);
329SRD_API int srd_decoder_unload(struct srd_decoder *dec);
330SRD_API int srd_decoder_load_all(void);
331SRD_API int srd_decoder_unload_all(void);
332
333/* instance.c */
334SRD_API int srd_inst_option_set(struct srd_decoder_inst *di,
335 GHashTable *options);
336SRD_API int srd_inst_channel_set_all(struct srd_decoder_inst *di,
337 GHashTable *channels);
338SRD_API struct srd_decoder_inst *srd_inst_new(struct srd_session *sess,
339 const char *id, GHashTable *options);
340SRD_API int srd_inst_stack(struct srd_session *sess,
341 struct srd_decoder_inst *di_from, struct srd_decoder_inst *di_to);
342SRD_API struct srd_decoder_inst *srd_inst_find_by_id(struct srd_session *sess,
343 const char *inst_id);
344
345/* log.c */
346typedef int (*srd_log_callback)(void *cb_data, int loglevel,
347 const char *format, va_list args);
348SRD_API int srd_log_loglevel_set(int loglevel);
349SRD_API int srd_log_loglevel_get(void);
350SRD_API int srd_log_callback_set(srd_log_callback cb, void *cb_data);
351SRD_API int srd_log_callback_set_default(void);
352
353/* error.c */
354SRD_API const char *srd_strerror(int error_code);
355SRD_API const char *srd_strerror_name(int error_code);
356
357/* version.c */
358SRD_API int srd_package_version_major_get(void);
359SRD_API int srd_package_version_minor_get(void);
360SRD_API int srd_package_version_micro_get(void);
361SRD_API const char *srd_package_version_string_get(void);
362SRD_API int srd_lib_version_current_get(void);
363SRD_API int srd_lib_version_revision_get(void);
364SRD_API int srd_lib_version_age_get(void);
365SRD_API const char *srd_lib_version_string_get(void);
366
367#include "version.h"
368
369#ifdef __cplusplus
370}
371#endif
372
373#endif