#include <glib.h>
#include <inttypes.h>
-/* TODO: this should probably be in sigrokdecode.h */
-/* Re-define some string functions for Python >= 3.0. */
-#if PY_VERSION_HEX >= 0x03000000
-#define PyString_AsString PyBytes_AsString
-#define PyString_FromString PyBytes_FromString
-#define PyString_Check PyBytes_Check
-#endif
-
/* TODO
static GSList *pipelines = NULL;
} sigrok_Decoder_object;
static PyTypeObject sigrok_Decoder_type = {
- PyObject_HEAD_INIT(NULL)
+ PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "sigrok.Decoder",
.tp_basicsize = sizeof(sigrok_Decoder_object),
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
.tp_methods = Decoder_methods,
};
-PyMODINIT_FUNC init_sigrok_Decoder(void)
+static struct PyModuleDef sigrok_Decoder_module = {
+ PyModuleDef_HEAD_INIT,
+ .m_name = "sigrok",
+ .m_doc = "sigrok base classes",
+ .m_size = -1,
+ .m_methods = no_methods,
+};
+
+PyMODINIT_FUNC PyInit_sigrok(void)
{
PyObject *mod;
/* assign this here, for compiler portability */
sigrok_Decoder_type.tp_new = PyType_GenericNew;
if (PyType_Ready(&sigrok_Decoder_type) < 0)
- return;
+ return NULL;
- mod = Py_InitModule3("sigrok", no_methods, "sigrok base classes");
+// mod = Py_InitModule3("sigrok", no_methods, "sigrok base classes");
+ mod = PyModule_Create(&sigrok_Decoder_module);
Py_INCREF(&sigrok_Decoder_type);
- PyModule_AddObject(mod, "Decoder", (PyObject *)&sigrok_Decoder_type);
+ if (PyModule_AddObject(mod, "Decoder", (PyObject *)&sigrok_Decoder_type) == -1)
+ return NULL;
+ return mod;
}
{
int ret;
+ PyImport_AppendInittab("sigrok", PyInit_sigrok);
+
/* Py_Initialize() returns void and usually cannot fail. */
Py_Initialize();
- init_sigrok_Decoder();
+ PyInit_sigrok();
PyRun_SimpleString("import sys;");
if ((ret = set_modulepath()) != SRD_OK) {
return SRD_ERR_PYTHON; /* TODO: More specific error? */
}
- probenum = PyInt_FromLong(num);
+ probenum = PyLong_FromLong(num);
PyMapping_SetItemString(probedict, (char *)probename, probenum);
Py_XDECREF(probenum);
duration = self.bitcount * self.period
else:
duration = self.period
- print "**", timeoffset, duration
+ print("**", timeoffset, duration)
super(Decoder, self).put(timeoffset, duration, output_id, data)
def decode(self, timeoffset, duration, data):
self.timeoffset = timeoffset
self.duration = duration
- print "++", timeoffset, duration, len(data)
+ print("++", timeoffset, duration, len(data))
# duration of one bit in ps, only valid for this call to decode()
- self.period = duration / len(data)
+ self.period = int(duration / len(data))
# We should accept a list of samples and iterate...
for sample in sampleiter(data, self.unitsize):
*/
int h_str(PyObject *py_res, PyObject *py_mod, const char *key, char **outstr)
{
- PyObject *py_str;
+ PyObject *py_str, *py_encstr;
char *str;
int ret;
- py_str = PyObject_GetAttrString(py_res, (char *)key); /* NEWREF */
- if (!py_str || !PyString_Check(py_str)) {
+ if (!(py_str = PyObject_GetAttrString(py_res, (char *)key))) {
ret = SRD_ERR_PYTHON; /* TODO: More specific error? */
goto err_h_decref_mod;
}
/*
- * PyString_AsString()'s returned string refers to an internal buffer
+ * PyBytes_AsString()'s returned string refers to an internal buffer
* (not a copy), i.e. the data must not be modified, and the memory
* must not be free()'d.
*/
- if (!(str = PyString_AsString(py_str))) {
+ if (!(py_encstr = PyUnicode_AsEncodedString(py_str, "utf-8", NULL))) {
+ ret = SRD_ERR_PYTHON; /* TODO: More specific error? */
+ goto err_h_decref_str;
+ }
+ if (!(str = PyBytes_AS_STRING(py_encstr))) {
ret = SRD_ERR_PYTHON; /* TODO: More specific error? */
goto err_h_decref_str;
}