if (!(ci = sr_key_info_name_get(SR_KEY_CONFIG, opt_get)))
g_critical("Unknown option '%s'", opt_get);
- if ((devargs = parse_generic_arg(opt_config, FALSE)))
+ if ((devargs = parse_generic_arg(opt_config, FALSE, NULL)))
set_dev_options(sdi, devargs);
else
devargs = NULL;
return;
}
- if (!(devargs = parse_generic_arg(opt_config, FALSE)))
+ if (!(devargs = parse_generic_arg(opt_config, FALSE, NULL)))
return;
if (!(devices = device_scan())) {
return !error;
}
-GHashTable *parse_generic_arg(const char *arg, gboolean sep_first)
+/**
+ * Create hash table from colon separated key-value pairs input text.
+ *
+ * Accepts input text as it was specified by users. Splits the colon
+ * separated key-value pairs and creates a hash table from these items.
+ * Optionally supports special forms which are useful for different CLI
+ * features.
+ *
+ * Typical form: <key>=<val>[:<key>=<val>]*
+ * Generic list of key-value pairs, all items being equal. Mere set.
+ *
+ * ID form: <id>[:<key>=<val>]*
+ * First item is not a key-value pair, instead it's an identifier. Used
+ * to specify a protocol decoder, or a device driver, or an input/output
+ * file format, optionally followed by more parameters' values. The ID
+ * part of the input spec is not optional.
+ *
+ * Optional ID: [<sel>=<id>][:<key>=<val>]*
+ * All items are key-value pairs. The first item _may_ be an identifier,
+ * if its key matches a caller specified key name. Otherwise the input
+ * text is the above typical form, a mere list of key-value pairs while
+ * none of them is special.
+ *
+ * @param[in] arg Input text.
+ * @param[in] sep_first Boolean, whether ID form is required.
+ * @param[in] key_first Keyword name if optional ID is applicable.
+ *
+ * @returns A hash table which contains the key/value pairs, or #NULL
+ * when the input is invalid.
+ */
+GHashTable *parse_generic_arg(const char *arg,
+ gboolean sep_first, const char *key_first)
{
GHashTable *hash;
int i;
char **elements, *e;
+ int l;
+ const char *s;
if (!arg || !arg[0])
return NULL;
hash = g_hash_table_new_full(g_str_hash, g_str_equal,
g_free, g_free);
elements = g_strsplit(arg, ":", 0);
- if (sep_first)
+ if (sep_first) {
+ /*
+ * Caller requested "<id>[:<key>=<val>]*" case, Consume the
+ * first item, before processing more key-value pairs below.
+ */
g_hash_table_insert(hash, g_strdup("sigrok_key"),
g_strdup(elements[i++]));
+ } else if (key_first && *key_first) {
+ /*
+ * Caller requested "[<sig>=<id>][:<key>=<val>]*" case.
+ * Optional special handling of the first item, but only
+ * consume this first item here when its keyword matched
+ * the caller's specification.
+ */
+ l = strlen(key_first);
+ s = elements[i];
+ e = strchr(s, '=');
+ if (e && e - s == l && g_str_has_prefix(s, key_first)) {
+ g_hash_table_insert(hash,
+ g_strdup("sigrok_key"), g_strdup(++e));
+ i++;
+ }
+ }
for (; elements[i]; i++) {
e = strchr(elements[i], '=');
if (!e)
if (!arg)
return FALSE;
- drvargs = parse_generic_arg(arg, TRUE);
+ drvargs = parse_generic_arg(arg, TRUE, NULL);
drvname = g_strdup(g_hash_table_lookup(drvargs, "sigrok_key"));
g_hash_table_remove(drvargs, "sigrok_key");
}
}
- fmtargs = parse_generic_arg(opt_output_format, TRUE);
+ fmtargs = parse_generic_arg(opt_output_format, TRUE, NULL);
fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
if (!fmtspec)
g_critical("Invalid output format.");
GHashTable *fmtargs, *fmtopts;
char *fmtspec;
- fmtargs = parse_generic_arg(opt_transform_module, TRUE);
+ fmtargs = parse_generic_arg(opt_transform_module, TRUE, NULL);
fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
if (!fmtspec)
g_critical("Invalid transform module.");
}
if (opt_config) {
- if ((devargs = parse_generic_arg(opt_config, FALSE))) {
+ if ((devargs = parse_generic_arg(opt_config, FALSE, NULL))) {
if (set_dev_options(sdi, devargs) != SR_OK)
return;
g_hash_table_destroy(devargs);
GSList *parse_channelstring(struct sr_dev_inst *sdi, const char *channelstring);
int parse_triggerstring(const struct sr_dev_inst *sdi, const char *s,
struct sr_trigger **trigger);
-GHashTable *parse_generic_arg(const char *arg, gboolean sep_first);
+GHashTable *parse_generic_arg(const char *arg,
+ gboolean sep_first, const char *key_first);
GHashTable *generic_arg_to_opt(const struct sr_option **opts, GHashTable *genargs);
GSList *check_unknown_keys(const struct sr_option **avail, GHashTable *used);
gboolean warn_unknown_keys(const struct sr_option **avail, GHashTable *used,