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