diff options
author | Bert Vermeulen <bert@biot.com> | 2012-01-15 03:58:27 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2012-01-15 04:03:42 +0100 |
commit | 451680f192b97d652fb02186f5201efa0d668a2a (patch) | |
tree | 8a7330e084d2bb2027e2e288138f5e19645bd487 /sigrokdecode.h | |
parent | f8e458577f72a5b13fa83b6cd3675a7eefc83072 (diff) | |
download | libsigrokdecode-451680f192b97d652fb02186f5201efa0d668a2a.tar.gz libsigrokdecode-451680f192b97d652fb02186f5201efa0d668a2a.zip |
srd: clean up module loading/unloading, and the decoder struct
PDs are now checked for a proper Decoder object, with at least the
required attributes.
The author, long_desc and func attributes in the decoder object are gone.
Diffstat (limited to 'sigrokdecode.h')
-rw-r--r-- | sigrokdecode.h | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/sigrokdecode.h b/sigrokdecode.h index 71d0ae4..863608b 100644 --- a/sigrokdecode.h +++ b/sigrokdecode.h @@ -90,19 +90,10 @@ struct srd_decoder { /** A (short, one-line) description of the decoder. */ char *desc; - /** A (long, multi-line) description of the decoder. May be NULL. */ - char *longdesc; - - /** The author of the decoder. May be NULL. */ - char *author; - /** The license of the decoder. Valid values: "gplv2+", "gplv3+". */ char *license; /** TODO */ - char *func; - - /** TODO */ GSList *inputformats; /** TODO */ @@ -113,11 +104,11 @@ struct srd_decoder { */ GSList *annotations; - /** TODO */ + /** Python module */ PyObject *py_mod; - /** Python object that performs the decoding */ - PyObject *py_decobj; + /** sigrokdecode.Decoder class */ + PyObject *py_dec; }; struct srd_decoder_instance { @@ -191,20 +182,20 @@ int srd_register_callback(int output_type, void *cb); void *srd_find_callback(int output_type); /*--- decoder.c -------------------------------------------------------------*/ - GSList *srd_list_decoders(void); struct srd_decoder *srd_get_decoder_by_id(const char *id); int srd_load_decoder(const char *name, struct srd_decoder **dec); int srd_unload_decoder(struct srd_decoder *dec); int srd_load_all_decoders(void); int srd_unload_all_decoders(void); +char *srd_decoder_doc(struct srd_decoder *dec); /*--- util.c ----------------------------------------------------------------*/ -int h_str(PyObject *py_res, const char *key, char **outstr); +int py_attr_as_str(PyObject *py_obj, const char *attr, char **outstr); +int py_str_as_str(PyObject *py_str, char **outstr); int py_strlist_to_char(PyObject *py_strlist, char ***outstr); /*--- log.c -----------------------------------------------------------------*/ - int srd_set_loglevel(int loglevel); int srd_get_loglevel(void); |