diff options
author | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-06 22:30:14 +0200 |
---|---|---|
committer | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-06 23:25:40 +0200 |
commit | e9dd2fea0514df9316a12bae191b810811fc9f01 (patch) | |
tree | d9da0d07b1c8e9076856ae5cbc8500b1502264f2 /util.c | |
parent | 6d67d057d13318deb0a11de2589b5442df389092 (diff) | |
download | libsigrokdecode-e9dd2fea0514df9316a12bae191b810811fc9f01.tar.gz libsigrokdecode-e9dd2fea0514df9316a12bae191b810811fc9f01.zip |
util: Factor out Python module load
Create a utility function for loading a Python module by its name
in UTF-8.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -22,6 +22,32 @@ #include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ /** + * Import a Python module by name. + * + * This function is implemented in terms of PyImport_Import() rather than + * PyImport_ImportModule(), so that the import hooks are not bypassed. + * + * @param[in] name The name of the module to load as UTF-8 string. + * @return The Python module object, or NULL if an exception occurred. The + * caller is responsible for evaluating and clearing the Python error state. + * + * @private + */ +SRD_PRIV PyObject *py_import_by_name(const char *name) +{ + PyObject *py_mod, *py_modname; + + py_modname = PyUnicode_FromString(name); + if (!py_modname) + return NULL; + + py_mod = PyImport_Import(py_modname); + Py_DECREF(py_modname); + + return py_mod; +} + +/** * Get the value of a Python object's attribute, returned as a newly * allocated char *. * @@ -196,6 +222,8 @@ err_out: * * @param[in] py_obj The Python object. Must not be NULL. * @return A floating reference to a new variant, or NULL on failure. + * + * @private */ SRD_PRIV GVariant *py_obj_to_variant(PyObject *py_obj) { |