]> sigrok.org Git - libsigrokdecode.git/blame_incremental - util.c
new srd_logic type implementation for PDs to iterate over.
[libsigrokdecode.git] / util.c
... / ...
CommitLineData
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5 * Copyright (C) 2011 Bert Vermeulen <bert@biot.com>
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 3 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, see <http://www.gnu.org/licenses/>.
19 */
20
21#include "config.h"
22#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
23
24
25/**
26 * Helper function to get the value of a python object's attribute,
27 * returned as a newly allocated char *.
28 *
29 * @param py_obj The object to probe.
30 * @param key Name of the attribute to retrieve.
31 * @param outstr ptr to char * storage to be filled in.
32 *
33 * @return SRD_OK upon success, a (negative) error code otherwise.
34 * The 'outstr' argument points to a malloc()ed string upon success.
35 */
36int h_str(PyObject *py_obj, const char *key, char **outstr)
37{
38 PyObject *py_str, *py_encstr;
39 char *str;
40 int ret;
41
42 py_str = py_encstr = NULL;
43 str = NULL;
44 ret = SRD_OK;
45
46 if (!(py_str = PyObject_GetAttrString(py_obj, (char *)key))) {
47 /* TODO: log level 4 debug message */
48 ret = SRD_ERR_PYTHON;
49 goto err_out;
50 }
51
52 if (!(py_encstr = PyUnicode_AsEncodedString(py_str, "utf-8", NULL))) {
53 /* TODO: log level 4 debug message */
54 ret = SRD_ERR_PYTHON;
55 goto err_out;
56 }
57 if (!(str = PyBytes_AS_STRING(py_encstr))) {
58 /* TODO: log level 4 debug message */
59 ret = SRD_ERR_PYTHON;
60 goto err_out;
61 }
62
63 if (!(*outstr = g_strdup(str))) {
64 /* TODO: log level 4 debug message */
65 ret = SRD_ERR_MALLOC;
66 goto err_out;
67 }
68
69err_out:
70 if (py_str)
71 Py_XDECREF(py_str);
72 if (py_encstr)
73 Py_XDECREF(py_encstr);
74
75 if (PyErr_Occurred())
76 PyErr_Print();
77
78 return ret;
79}
80