]> sigrok.org Git - libsigrok.git/commitdiff
input: Actually return a NULL-terminated array.
authorBert Vermeulen <redacted>
Fri, 15 Aug 2014 21:31:20 +0000 (23:31 +0200)
committerBert Vermeulen <redacted>
Mon, 25 Aug 2014 23:55:41 +0000 (01:55 +0200)
include/libsigrok/proto.h
src/input/input.c

index 5ca98d402da9b0c5892967c6ef07d808164629ac..c99d4c65f2c0065c7091f15f4611b8d41ade75a6 100644 (file)
@@ -129,8 +129,8 @@ SR_API const char *sr_input_id_get(const struct sr_input_module *in);
 SR_API const char *sr_input_name_get(const struct sr_input_module *in);
 SR_API const char *sr_input_description_get(const struct sr_input_module *in);
 SR_API const struct sr_input_module *sr_input_find(char *id);
-SR_API const struct sr_option *sr_input_options_get(const struct sr_input_module *in);
-SR_API void sr_input_options_free(const struct sr_input_module *in);
+SR_API const struct sr_option **sr_input_options_get(const struct sr_input_module *in);
+SR_API void sr_input_options_free(const struct sr_option **options);
 SR_API struct sr_input *sr_input_new(const struct sr_input_module *imod,
                GHashTable *options);
 SR_API const struct sr_input *sr_input_scan_buffer(GString *buf);
index c7855434e56ff9eaaf41660a19f0f437252f3336..46bff0e39de22886dae44e789aac8cffaf77183e 100644 (file)
@@ -157,29 +157,41 @@ SR_API const struct sr_input_module *sr_input_find(char *id)
  *
  * @since 0.4.0
  */
-SR_API const struct sr_option *sr_input_options_get(const struct sr_input_module *o)
+SR_API const struct sr_option **sr_input_options_get(const struct sr_input_module *imod)
 {
+       const struct sr_option *mod_opts, **opts;
+       int size, i;
 
-       if (!o || !o->options)
+       if (!imod || !imod->options)
                return NULL;
 
-       return o->options();
+       mod_opts = imod->options();
+
+       for (size = 1; mod_opts[size].id; size++)
+               ;
+       opts = g_malloc(size * sizeof(struct sr_option *));
+
+       for (i = 0; i < size; i++)
+               opts[i] = &mod_opts[i];
+       opts[i] = NULL;
+
+       return opts;
 }
 
 /**
  * After a call to sr_input_options_get(), this function cleans up all
- * resources allocated by that call.
+ * resources returned by that call.
  *
  * @since 0.4.0
  */
-SR_API void sr_input_options_free(const struct sr_input_module *o)
+SR_API void sr_input_options_free(const struct sr_option **options)
 {
        struct sr_option *opt;
 
-       if (!o || !o->options)
+       if (!options)
                return;
 
-       for (opt = o->options(); opt->id; opt++) {
+       for (opt = (struct sr_option *)options[0]; opt; opt++) {
                if (opt->def) {
                        g_variant_unref(opt->def);
                        opt->def = NULL;
@@ -190,6 +202,7 @@ SR_API void sr_input_options_free(const struct sr_input_module *o)
                        opt->values = NULL;
                }
        }
+       g_free(options);
 }
 
 /**