]> sigrok.org Git - libsigrokdecode.git/blame - sigrokdecode.h
srd: List 'report()' in all PDs for consistency.
[libsigrokdecode.git] / sigrokdecode.h
CommitLineData
1c6fa20f
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
bc5f5a43 5 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
1c6fa20f
UH
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
3b5839d5
UH
22#ifndef LIBSIGROKDECODE_SIGROKDECODE_H
23#define LIBSIGROKDECODE_SIGROKDECODE_H
1c6fa20f
UH
24
25#include <Python.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
26#include <stdint.h>
5c55017c 27#include <glib.h>
1c6fa20f 28
253f9603
UH
29#ifdef __cplusplus
30extern "C" {
31#endif
32
a4898be7
UH
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 */
bc5f5a43
BV
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 */
47bd8dde
UH
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 */
7c24d086 57
43c0a640 58/* libsigrokdecode loglevels. */
bc5f5a43
BV
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. */
43c0a640 65
55c3c5f4
UH
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
c9bfccc6
UH
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 */
e5080882 91enum {
94d43b37
UH
92 SRD_OUTPUT_ANN,
93 SRD_OUTPUT_PROTO,
15969949 94 SRD_OUTPUT_BINARY,
e5080882
BV
95};
96
a61ece20 97#define SRD_MAX_NUM_PROBES 64
bc5f5a43 98
31b82285 99/* TODO: Documentation. */
d752b12b 100struct srd_decoder {
775dda7a 101 /** The decoder ID. Must be non-NULL and unique for all decoders. */
31b82285 102 char *id;
775dda7a 103
361fdcaa 104 /** The (short) decoder name. Must be non-NULL. */
31b82285 105 char *name;
775dda7a
UH
106
107 /** The (long) decoder name. May be NULL. */
75a282e5 108 char *longname;
775dda7a 109
361fdcaa 110 /** A (short, one-line) description of the decoder. Must be non-NULL. */
5c55017c 111 char *desc;
775dda7a 112
361fdcaa
UH
113 /**
114 * The license of the decoder. Valid values: "gplv2+", "gplv3+".
115 * Other values are currently not allowed. Must be non-NULL.
116 */
75a282e5
UH
117 char *license;
118
361fdcaa 119 /** List of probes required by this decoder. */
f38ec285
BV
120 GSList *probes;
121
361fdcaa 122 /** List of optional probes for this decoder. */
dcdf4883 123 GSList *opt_probes;
f38ec285 124
361fdcaa 125 /**
c9bfccc6 126 * List of NULL-terminated char[], containing descriptions of the
15969949
BV
127 * supported annotation output.
128 */
e97b6ef5 129 GSList *annotations;
15969949 130
361fdcaa 131 /** Python module. */
b2c19614
BV
132 PyObject *py_mod;
133
361fdcaa 134 /** sigrokdecode.Decoder class. */
451680f1 135 PyObject *py_dec;
74911b4c
GM
136};
137
361fdcaa
UH
138/**
139 * Structure which contains information about one protocol decoder probe.
140 * For example, I2C has two probes, SDA and SCL.
141 */
f38ec285 142struct srd_probe {
361fdcaa 143 /** The ID of the probe. Must be non-NULL. */
f38ec285 144 char *id;
361fdcaa 145 /** The name of the probe. Must not be NULL. */
f38ec285 146 char *name;
361fdcaa 147 /** The description of the probe. Must not be NULL. */
f38ec285 148 char *desc;
361fdcaa 149 /** The index of the probe, i.e. its order in the list of probes. */
f38ec285
BV
150 int order;
151};
152
a8b72b05 153struct srd_decoder_inst {
b2c19614 154 struct srd_decoder *decoder;
a8b72b05
BV
155 PyObject *py_inst;
156 char *inst_id;
b2c19614 157 GSList *pd_output;
f38ec285
BV
158 int dec_num_probes;
159 int *dec_probemap;
160 int data_num_probes;
161 int data_unitsize;
162 uint64_t data_samplerate;
7ce7775c 163 GSList *next_di;
31b82285 164};
165
e5080882
BV
166struct srd_pd_output {
167 int pdo_id;
168 int output_type;
a8b72b05 169 struct srd_decoder_inst *di;
94d43b37 170 char *proto_id;
e5080882
BV
171};
172
94d43b37 173struct srd_proto_data {
15969949
BV
174 uint64_t start_sample;
175 uint64_t end_sample;
176 struct srd_pd_output *pdo;
94d43b37 177 int ann_format;
983cb0f5 178 void *data;
15969949
BV
179};
180
ae53d0a5 181typedef void (*srd_pd_output_callback_t)(struct srd_proto_data *pdata,
41a5d962 182 void *cb_data);
ae53d0a5 183
983cb0f5
BV
184struct srd_pd_callback {
185 int output_type;
4c1d0670 186 srd_pd_output_callback_t cb;
41a5d962 187 void *cb_data;
983cb0f5 188};
bc5f5a43 189
361fdcaa
UH
190/* Custom Python types: */
191
f8e45857
BV
192typedef struct {
193 PyObject_HEAD
194} srd_Decoder;
43c0a640 195
f8e45857
BV
196typedef struct {
197 PyObject_HEAD
a8b72b05 198 struct srd_decoder_inst *di;
86528298 199 uint64_t start_samplenum;
f8e45857
BV
200 unsigned int itercnt;
201 uint8_t *inbuf;
202 uint64_t inbuflen;
203 PyObject *sample;
204} srd_logic;
205
f8e45857 206/*--- controller.c ----------------------------------------------------------*/
c9bfccc6 207
abeeed8b 208SRD_API int srd_init(const char *path);
55c3c5f4 209SRD_API int srd_exit(void);
9d122fd5 210SRD_API int srd_inst_options_set(struct srd_decoder_inst *di,
361fdcaa 211 GHashTable *options);
9d122fd5 212SRD_API int srd_inst_probes_set(struct srd_decoder_inst *di,
361fdcaa 213 GHashTable *probes);
a8b72b05 214SRD_API struct srd_decoder_inst *srd_inst_new(const char *id,
361fdcaa 215 GHashTable *options);
a8b72b05 216SRD_API int srd_inst_stack(struct srd_decoder_inst *di_from,
361fdcaa 217 struct srd_decoder_inst *di_to);
abeeed8b 218SRD_API struct srd_decoder_inst *srd_inst_find_by_id(const char *inst_id);
55c3c5f4
UH
219SRD_API int srd_session_start(int num_probes, int unitsize,
220 uint64_t samplerate);
29dad0ac 221SRD_API int srd_session_send(uint64_t start_samplenum, const uint8_t *inbuf,
55c3c5f4 222 uint64_t inbuflen);
ae53d0a5 223SRD_API int srd_register_callback(int output_type,
41a5d962 224 srd_pd_output_callback_t cb, void *cb_data);
b2c19614 225
43c0a640 226/*--- decoder.c -------------------------------------------------------------*/
c9bfccc6 227
8ad6e500 228SRD_API GSList *srd_decoder_list(void);
9d122fd5
BV
229SRD_API struct srd_decoder *srd_decoder_get_by_id(const char *id);
230SRD_API int srd_decoder_load(const char *name);
231SRD_API int srd_decoder_unload(struct srd_decoder *dec);
8ad6e500
UH
232SRD_API int srd_decoder_load_all(void);
233SRD_API int srd_decoder_unload_all(void);
abeeed8b 234SRD_API char *srd_decoder_doc(const struct srd_decoder *dec);
b2c19614 235
43c0a640 236/*--- log.c -----------------------------------------------------------------*/
c9bfccc6 237
0082d592
UH
238typedef int (*srd_log_callback_t)(void *cb_data, int loglevel,
239 const char *format, va_list args);
c9bfccc6 240
55c3c5f4
UH
241SRD_API int srd_log_loglevel_set(int loglevel);
242SRD_API int srd_log_loglevel_get(void);
0082d592
UH
243SRD_API int srd_log_callback_set(srd_log_callback_t cb, void *cb_data);
244SRD_API int srd_log_callback_set_default(void);
55c3c5f4
UH
245SRD_API int srd_log_logdomain_set(const char *logdomain);
246SRD_API char *srd_log_logdomain_get(void);
1c6fa20f 247
253f9603
UH
248#ifdef __cplusplus
249}
250#endif
251
1c6fa20f 252#endif