1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/*
* This file is part of the sigrok project.
*
* Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
#include "sigrokdecode-internal.h"
#include "config.h"
/* type_decoder.c */
extern SRD_PRIV PyTypeObject srd_Decoder_type;
/* type_logic.c */
extern SRD_PRIV PyTypeObject srd_logic_type;
/*
* When initialized, a reference to this module inside the Python interpreter
* lives here.
*/
SRD_PRIV PyObject *mod_sigrokdecode = NULL;
static struct PyModuleDef sigrokdecode_module = {
PyModuleDef_HEAD_INIT,
.m_name = "sigrokdecode",
.m_doc = "sigrokdecode module",
.m_size = -1,
};
SRD_PRIV PyMODINIT_FUNC PyInit_sigrokdecode(void)
{
PyObject *mod;
/* tp_new needs to be assigned here for compiler portability */
srd_Decoder_type.tp_new = PyType_GenericNew;
if (PyType_Ready(&srd_Decoder_type) < 0)
return NULL;
srd_logic_type.tp_new = PyType_GenericNew;
if (PyType_Ready(&srd_logic_type) < 0)
return NULL;
mod = PyModule_Create(&sigrokdecode_module);
Py_INCREF(&srd_Decoder_type);
if (PyModule_AddObject(mod, "Decoder",
(PyObject *)&srd_Decoder_type) == -1)
return NULL;
Py_INCREF(&srd_logic_type);
if (PyModule_AddObject(mod, "srd_logic",
(PyObject *)&srd_logic_type) == -1)
return NULL;
/* expose output types as symbols in the sigrokdecode module */
if (PyModule_AddIntConstant(mod, "OUTPUT_ANN", SRD_OUTPUT_ANN) == -1)
return NULL;
if (PyModule_AddIntConstant(mod, "OUTPUT_PROTO",
SRD_OUTPUT_PROTO) == -1)
return NULL;
if (PyModule_AddIntConstant(mod, "OUTPUT_BINARY",
SRD_OUTPUT_BINARY) == -1)
return NULL;
mod_sigrokdecode = mod;
return mod;
}
|