diff options
author | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-03 11:40:33 +0200 |
---|---|---|
committer | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-03 11:40:33 +0200 |
commit | d8d409590ce21116d85800c0eb8be287817a0eed (patch) | |
tree | c2fb4f49c5268c0f5c0dd2971c7bd2cea01f578c | |
parent | 750e122d2bcdf05e600112ffda431f97608db387 (diff) | |
download | libsigrokdecode-d8d409590ce21116d85800c0eb8be287817a0eed.tar.gz libsigrokdecode-d8d409590ce21116d85800c0eb8be287817a0eed.zip |
init: Simplify srd_decoder_searchpath_add()
Don't mess with colon-separated search path strings -- instead,
simply prepend items to the sys.path list object. Also keep the
internal decoder path list in the same order as the items added
to sys.path.
-rw-r--r-- | srd.c | 38 |
1 files changed, 14 insertions, 24 deletions
@@ -224,36 +224,26 @@ SRD_API int srd_exit(void) SRD_PRIV int srd_decoder_searchpath_add(const char *path) { PyObject *py_cur_path, *py_item; - GString *new_path; - int wc_len, i; - wchar_t *wc_new_path; - char *item; srd_dbg("Adding '%s' to module path.", path); - new_path = g_string_sized_new(256); - g_string_assign(new_path, path); py_cur_path = PySys_GetObject("path"); - for (i = 0; i < PyList_Size(py_cur_path); i++) { - g_string_append(new_path, G_SEARCHPATH_SEPARATOR_S); - py_item = PyList_GetItem(py_cur_path, i); - if (!PyUnicode_Check(py_item)) - /* Shouldn't happen. */ - continue; - if (py_str_as_str(py_item, &item) != SRD_OK) - continue; - g_string_append(new_path, item); - g_free(item); + if (!py_cur_path) + return SRD_ERR_PYTHON; + + py_item = PyUnicode_FromString(path); + if (!py_item) { + srd_exception_catch("Failed to create Unicode object"); + return SRD_ERR_PYTHON; + } + if (PyList_Insert(py_cur_path, 0, py_item) < 0) { + srd_exception_catch("Failed to insert path element"); + Py_DECREF(py_item); + return SRD_ERR_PYTHON; } + Py_DECREF(py_item); - /* Convert to wide chars. */ - wc_len = sizeof(wchar_t) * (new_path->len + 1); - wc_new_path = g_malloc(wc_len); - mbstowcs(wc_new_path, new_path->str, wc_len); - PySys_SetPath(wc_new_path); - g_string_free(new_path, TRUE); - g_free(wc_new_path); - searchpaths = g_slist_append(searchpaths, g_strdup(path)); + searchpaths = g_slist_prepend(searchpaths, g_strdup(path)); return SRD_OK; } |