]> sigrok.org Git - libsigrokdecode.git/commitdiff
CLI: Support for running protocol decoders.
authorUwe Hermann <redacted>
Sat, 15 Jan 2011 00:44:41 +0000 (01:44 +0100)
committerUwe Hermann <redacted>
Sat, 15 Jan 2011 01:20:04 +0000 (02:20 +0100)
Add a new -A | --list-protocol-decoders option to show the list of
protocol decoders we could find.

Add -a | --protocol-decoders to specify a list of decoders that shall
be applied to the datastream. Currently only works for one decoder.

Define DECODERS_DIR, which is the directory where the decoders will be
installed upon 'make install', and where libsigrokdecode_init() will
search for them.

Thanks Olivier Fauchon <redacted> for the initial patch,
merged in slightly different form.

Makefile.am
decode.c
sigrokdecode.h

index c76c5c472c17e2b02ccc89b4d4de05d12a0d079e..6ae808f68e099c45cd02afdb56d98e92f75df161 100644 (file)
@@ -24,7 +24,8 @@ lib_LTLIBRARIES = libsigrokdecode.la
 
 libsigrokdecode_la_SOURCES = decode.c
 
-libsigrokdecode_la_CPPFLAGS = $(CPPFLAGS_PYTHON)
+libsigrokdecode_la_CPPFLAGS = $(CPPFLAGS_PYTHON) \
+                             -DDECODERS_DIR='"$(DECODERS_DIR)"'
 libsigrokdecode_la_LDFLAGS = $(LDFLAGS_PYTHON)
 
 include_HEADERS = sigrokdecode.h
index 337979dee0e1bc411e73fbb1198af65dfab57cb2..536be2c347315c4ac941d0490d5c307b17ab8733 100644 (file)
--- a/decode.c
+++ b/decode.c
@@ -21,6 +21,7 @@
 #include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
 #include <stdio.h>
 #include <string.h>
+#include <dirent.h>
 
 /* Re-define some string functions for Python >= 3.0. */
 #if PY_VERSION_HEX >= 0x03000000
@@ -29,6 +30,9 @@
 #define PyString_Check PyBytes_Check
 #endif
 
+/* The list of protocol decoders. */
+GSList *list_pds;
+
 /**
  * Initialize libsigrokdecode.
  *
  */
 int sigrokdecode_init(void)
 {
+       DIR *dir;
+       struct dirent *dp;
+       char *tmp;
+
        /* Py_Initialize() returns void and usually cannot fail. */
        Py_Initialize();
 
@@ -45,10 +53,20 @@ int sigrokdecode_init(void)
        PyRun_SimpleString(
                "import sys;"
                "sys.path.append('libsigrokdecode/decoders');"
-               "sys.path.append('../libsigrokdecode/decoders');"
-               "sys.path.append('/usr/local/share/sigrok');"
+               "sys.path.append('" DECODERS_DIR "');"
                );
 
+       if (!(dir = opendir(DECODERS_DIR)))
+               return SIGROKDECODE_ERR_DECODERS_DIR;
+
+       while ((dp = readdir(dir)) != NULL) {
+               if (!strstr(dp->d_name, ".py"))
+                       continue;
+               if ((tmp = strdup(dp->d_name)))
+                       list_pds = g_slist_append(list_pds, tmp);
+       }
+       closedir(dir);
+
        return SIGROKDECODE_OK;
 }
 
index 5112e0969e23ebe16995aa3d90bc1794e9de03c8..ecd141ae15a8f7a001406b664cf38330acee45d9 100644 (file)
 #define SIGROKDECODE_ERR_MALLOC                -2 /* Malloc/calloc/realloc error */
 #define SIGROKDECODE_ERR_ARGS          -3 /* Function argument error */
 #define SIGROKDECODE_ERR_PYTHON                -4 /* Python C API error */
+#define SIGROKDECODE_ERR_DECODERS_DIR  -5 /* Protocol decoder path invalid */
+
+/* The list of loaded protocol decoders. */
+GSList *list_pds;
 
 /* TODO: Documentation. */
 struct sigrokdecode_decoder {