X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=util.c;h=c65cbfdde07e515f09b119419b37695074475e82;hb=f38ec2855ce41154bc1035dd7f1ab9a21f411f0d;hp=51b7cd685c4a36d6505b79c0a839e14002fc71b9;hpb=451680f192b97d652fb02186f5201efa0d668a2a;p=libsigrokdecode.git diff --git a/util.c b/util.c index 51b7cd6..c65cbfd 100644 --- a/util.c +++ b/util.c @@ -50,13 +50,58 @@ int py_attr_as_str(PyObject *py_obj, const char *attr, char **outstr) return SRD_ERR_PYTHON; } + if (!PyUnicode_Check(py_str)) { + srd_err("%s attribute should be a string, but is a %s.", + attr, py_str->ob_type->tp_name); + Py_DecRef(py_str); + return SRD_ERR_PYTHON; + } + ret = py_str_as_str(py_str, outstr); - Py_XDECREF(py_str); + Py_DecRef(py_str); return ret; } +/** + * Get the value of a python dictionary item, returned as a newly + * allocated char *. + * + * @param py_obj The dictionary to probe. + * @param attr Key of the item to retrieve. + * @param outstr ptr to char * storage to be filled in. + * + * @return SRD_OK upon success, a (negative) error code otherwise. + * The 'outstr' argument points to a malloc()ed string upon success. + */ +int py_dictitem_as_str(PyObject *py_obj, const char *key, char **outstr) +{ + PyObject *py_value; + int ret; + + if (!PyDict_Check(py_obj)) { + srd_err("Object is not a dictionary."); + return SRD_ERR_PYTHON; + } + + if (!(py_value = PyDict_GetItemString(py_obj, key))) { + srd_err("Dictionary has no attribute '%s'", key); + return SRD_ERR_PYTHON; + } + + if (!PyUnicode_Check(py_value)) { + srd_err("Dictionary value should be a string, but is a %s.", + key, py_value->ob_type->tp_name); + return SRD_ERR_PYTHON; + } + + ret = py_str_as_str(py_value, outstr); + + return SRD_OK; +} + + /** * Get the value of a python unicode string object, returned as a newly * allocated char *. @@ -99,8 +144,6 @@ int py_str_as_str(PyObject *py_str, char **outstr) } err_out: - if (py_str) - Py_XDECREF(py_str); if (py_encstr) Py_XDECREF(py_encstr);