]> sigrok.org Git - libsigrokdecode.git/blame - libsigrokdecode-internal.h
atsha204a: Shorten self.opcode to op in a few places.
[libsigrokdecode.git] / libsigrokdecode-internal.h
CommitLineData
43c0a640 1/*
50bd5d25 2 * This file is part of the libsigrokdecode project.
43c0a640
UH
3 *
4 * Copyright (C) 2011 Uwe Hermann <uwe@hermann-uwe.de>
12243c22 5 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
43c0a640
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
4539e9ca 18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
43c0a640
UH
19 */
20
c1f86f02
UH
21#ifndef LIBSIGROKDECODE_LIBSIGROKDECODE_INTERNAL_H
22#define LIBSIGROKDECODE_LIBSIGROKDECODE_INTERNAL_H
43c0a640 23
201a85a8
DE
24/* Use the stable ABI subset as per PEP 384. */
25#define Py_LIMITED_API 0x03020000
26
f6c7eade 27#include <Python.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
c1f86f02 28#include "libsigrokdecode.h"
43c0a640 29
21dfd91d
UH
30enum {
31 SRD_TERM_HIGH,
32 SRD_TERM_LOW,
33 SRD_TERM_RISING_EDGE,
34 SRD_TERM_FALLING_EDGE,
35 SRD_TERM_EITHER_EDGE,
36 SRD_TERM_NO_EDGE,
37 SRD_TERM_SKIP,
38};
39
40struct srd_term {
41 int type;
42 int channel;
43 uint64_t num_samples_to_skip;
44 uint64_t num_samples_already_skipped;
45};
46
f6c7eade
MC
47/* Custom Python types: */
48
49typedef struct {
50 PyObject_HEAD
51 struct srd_decoder_inst *di;
4564e8e5 52 uint64_t abs_start_samplenum;
f6c7eade
MC
53 unsigned int itercnt;
54 uint8_t *inbuf;
55 uint64_t inbuflen;
56 PyObject *sample;
57} srd_logic;
58
32cfb920
BV
59struct srd_session {
60 int session_id;
32cfb920
BV
61
62 /* List of decoder instances. */
63 GSList *di_list;
64
65 /* List of frontend callbacks to receive decoder output. */
66 GSList *callbacks;
67};
68
909fbf41 69/* srd.c */
aafeeaea 70SRD_PRIV int srd_decoder_searchpath_add(const char *path);
909fbf41
BV
71
72/* session.c */
909fbf41
BV
73SRD_PRIV struct srd_pd_callback *srd_pd_output_callback_find(struct srd_session *sess,
74 int output_type);
75
76/* instance.c */
ed416497 77SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di);
21dfd91d
UH
78SRD_PRIV void match_array_free(struct srd_decoder_inst *di);
79SRD_PRIV void condition_list_free(struct srd_decoder_inst *di);
80SRD_PRIV int srd_inst_decode(struct srd_decoder_inst *di,
4564e8e5 81 uint64_t abs_start_samplenum, uint64_t abs_end_samplenum,
cda2d36c 82 const uint8_t *inbuf, uint64_t inbuflen, uint64_t unitsize);
21dfd91d 83SRD_PRIV int process_samples_until_condition_match(struct srd_decoder_inst *di, gboolean *found_match);
9553e962 84SRD_PRIV int srd_inst_terminate_reset(struct srd_decoder_inst *di);
12243c22 85SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di);
3262ef02 86SRD_PRIV void srd_inst_free_all(struct srd_session *sess);
43c0a640 87
909fbf41 88/* log.c */
fd491810
DE
89#if defined(G_OS_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
90/*
91 * On MinGW, we need to specify the gnu_printf format flavor or GCC
92 * will assume non-standard Microsoft printf syntax.
93 */
94SRD_PRIV int srd_log(int loglevel, const char *format, ...)
95 __attribute__((__format__ (__gnu_printf__, 2, 3)));
96#else
97SRD_PRIV int srd_log(int loglevel, const char *format, ...) G_GNUC_PRINTF(2, 3);
98#endif
99
100#define srd_spew(...) srd_log(SRD_LOG_SPEW, __VA_ARGS__)
101#define srd_dbg(...) srd_log(SRD_LOG_DBG, __VA_ARGS__)
102#define srd_info(...) srd_log(SRD_LOG_INFO, __VA_ARGS__)
103#define srd_warn(...) srd_log(SRD_LOG_WARN, __VA_ARGS__)
104#define srd_err(...) srd_log(SRD_LOG_ERR, __VA_ARGS__)
43c0a640 105
40589f25
UH
106/* decoder.c */
107SRD_PRIV long srd_decoder_apiver(const struct srd_decoder *d);
108
201a85a8
DE
109/* type_decoder.c */
110SRD_PRIV PyObject *srd_Decoder_type_new(void);
111
112/* type_logic.c */
113SRD_PRIV PyObject *srd_logic_type_new(void);
114
4467372a
UH
115/* module_sigrokdecode.c */
116PyMODINIT_FUNC PyInit_sigrokdecode(void);
117
909fbf41 118/* util.c */
e9dd2fea 119SRD_PRIV PyObject *py_import_by_name(const char *name);
201a85a8 120SRD_PRIV int py_attr_as_str(PyObject *py_obj, const char *attr, char **outstr);
d480174d 121SRD_PRIV int py_attr_as_strlist(PyObject *py_obj, const char *attr, GSList **outstrlist);
201a85a8 122SRD_PRIV int py_dictitem_as_str(PyObject *py_obj, const char *key, char **outstr);
d480174d 123SRD_PRIV int py_listitem_as_str(PyObject *py_obj, Py_ssize_t idx, char **outstr);
21dfd91d
UH
124SRD_PRIV int py_pydictitem_as_str(PyObject *py_obj, PyObject *py_key, char **outstr);
125SRD_PRIV int py_pydictitem_as_long(PyObject *py_obj, PyObject *py_key, uint64_t *out);
201a85a8
DE
126SRD_PRIV int py_str_as_str(PyObject *py_str, char **outstr);
127SRD_PRIV int py_strseq_to_char(PyObject *py_strseq, char ***out_strv);
6d67d057 128SRD_PRIV GVariant *py_obj_to_variant(PyObject *py_obj);
a33a0e3b 129
909fbf41 130/* exception.c */
943f9176
DE
131#if defined(G_OS_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
132/*
133 * On MinGW, we need to specify the gnu_printf format flavor or GCC
134 * will assume non-standard Microsoft printf syntax.
135 */
136SRD_PRIV void srd_exception_catch(const char *format, ...)
137 __attribute__((__format__ (__gnu_printf__, 1, 2)));
138#else
139SRD_PRIV void srd_exception_catch(const char *format, ...) G_GNUC_PRINTF(1, 2);
140#endif
909fbf41 141
43c0a640 142#endif