X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Foutput.c;h=b3dfad197d9190e9bc7265eb7674454bd09c9f62;hb=9fc318d9ef1b3f2438e185d5a466dca03bcbcbb4;hp=6406fcaceb3e5c75b9763982f14084c7c78297d9;hpb=a755b0e122105d934c4e7b97435420eda6df6e8e;p=libsigrok.git diff --git a/src/output/output.c b/src/output/output.c index 6406fcac..b3dfad19 100644 --- a/src/output/output.c +++ b/src/output/output.c @@ -60,6 +60,7 @@ extern SR_PRIV struct sr_output_module output_gnuplot; extern SR_PRIV struct sr_output_module output_chronovu_la8; extern SR_PRIV struct sr_output_module output_csv; extern SR_PRIV struct sr_output_module output_analog; +extern SR_PRIV struct sr_output_module output_wav; /* @endcond */ static const struct sr_output_module *output_module_list[] = { @@ -73,11 +74,12 @@ static const struct sr_output_module *output_module_list[] = { &output_vcd, &output_chronovu_la8, &output_analog, + &output_wav, NULL, }; /** - * Returns a NULL-terminated list of all the available output modules. + * Returns a NULL-terminated list of all available output modules. * * @since 0.4.0 */ @@ -158,39 +160,52 @@ SR_API const struct sr_output_module *sr_output_find(char *id) * * @since 0.4.0 */ -SR_API const struct sr_option *sr_output_options_get(const struct sr_output_module *o) +SR_API const struct sr_option **sr_output_options_get(const struct sr_output_module *o) { + const struct sr_option *mod_opts, **opts; + int size, i; if (!o || !o->options) return NULL; - return o->options(FALSE); + mod_opts = o->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_output_options_get(), this function cleans up all - * the resources allocated by that call. + * resources returned by that call. * * @since 0.4.0 */ -SR_API void sr_output_options_free(const struct sr_output_module *o) +SR_API void sr_output_options_free(const struct sr_option **options) { - struct sr_option *opt; + int i; - if (!o || !o->options) + if (!options) return; - for (opt = o->options(TRUE); opt->id; opt++) { - if (opt->def) { - g_variant_unref(opt->def); - opt->def = NULL; + for (i = 0; options[i]; i++) { + if (options[i]->def) { + g_variant_unref(options[i]->def); + ((struct sr_option *)options[i])->def = NULL; } - if (opt->values) { - g_slist_free_full(opt->values, (GDestroyNotify)g_variant_unref); - opt->values = NULL; + if (options[i]->values) { + g_slist_free_full(options[i]->values, (GDestroyNotify)g_variant_unref); + ((struct sr_option *)options[i])->values = NULL; } } + g_free(options); } /** @@ -210,14 +225,60 @@ SR_API const struct sr_output *sr_output_new(const struct sr_output_module *o, GHashTable *options, const struct sr_dev_inst *sdi) { struct sr_output *op; + const struct sr_option *mod_opts; + const GVariantType *gvt; + GHashTable *new_opts; + GHashTableIter iter; + gpointer key, value; + int i; op = g_malloc(sizeof(struct sr_output)); op->module = o; op->sdi = sdi; - if (op->module->init && op->module->init(op, options) != SR_OK) { + + new_opts = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, + (GDestroyNotify)g_variant_unref); + if (o->options) { + mod_opts = o->options(); + for (i = 0; mod_opts[i].id; i++) { + if (options && g_hash_table_lookup_extended(options, + mod_opts[i].id, &key, &value)) { + /* Pass option along. */ + gvt = g_variant_get_type(mod_opts[i].def); + if (!g_variant_is_of_type(value, gvt)) { + sr_err("Invalid type for '%s' option.", key); + g_free(op); + return NULL; + } + g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id), + g_variant_ref(value)); + } else { + /* Option not given: insert the default value. */ + g_hash_table_insert(new_opts, g_strdup(mod_opts[i].id), + g_variant_ref(mod_opts[i].def)); + } + } + + /* Make sure no invalid options were given. */ + if (options) { + g_hash_table_iter_init(&iter, options); + while (g_hash_table_iter_next(&iter, &key, &value)) { + if (!g_hash_table_lookup(new_opts, key)) { + sr_err("Output module '%s' has no option '%s'", o->id, key); + g_hash_table_destroy(new_opts); + g_free(op); + return NULL; + } + } + } + } + + if (op->module->init && op->module->init(op, new_opts) != SR_OK) { g_free(op); op = NULL; } + if (new_opts) + g_hash_table_destroy(new_opts); return op; }