X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=sigrok-cli.c;h=0b5a01fbcb6464b013f9bcde9574d54aee01b49d;hp=7354ca848824bc4759b3241ca5670aa20b54df44;hb=905766867972aa1177cf6a23f42d0ceda096bbc8;hpb=41bc9e4f7d6521c05d9226f4f2e38f779d984e6c diff --git a/sigrok-cli.c b/sigrok-cli.c index 7354ca8..0b5a01f 100644 --- a/sigrok-cli.c +++ b/sigrok-cli.c @@ -1,7 +1,7 @@ /* * This file is part of the sigrok project. * - * Copyright (C) 2010 Bert Vermeulen + * Copyright (C) 2012 Bert Vermeulen * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -159,7 +159,7 @@ static void show_device_list(void) demo_device = NULL; for (l = devices; l; l = l->next) { device = l->data; - if (strstr(device->plugin->name, "demo")) { + if (sr_device_has_hwcap(device, SR_HWCAP_DEMO_DEVICE)) { demo_device = device; continue; } @@ -446,7 +446,7 @@ static void datafeed_in(struct sr_device *device, struct sr_datafeed_packet *pac if (opt_pds) { if (srd_session_feed(received_samples, (uint8_t*)filter_out, filter_out_len) != SRD_OK) - abort(); + sr_session_halt(); } else { output_len = 0; if (o->format->data && packet->type == o->format->df_type) @@ -470,51 +470,46 @@ cleanup: */ static int register_pds(struct sr_device *device, const char *pdstring) { - gpointer dummy; - char **pdtokens, **pdtok; + GHashTable *pd; + struct srd_decoder_instance *di; + char **pdtokens, **pdtok, *pd_name; /* Avoid compiler warnings. */ (void)device; g_datalist_init(&pd_ann_visible); pdtokens = g_strsplit(pdstring, ",", -1); + pd = NULL; + pd_name = NULL; - /* anything, but not NULL */ - dummy = register_pds; for (pdtok = pdtokens; *pdtok; pdtok++) { - struct srd_decoder_instance *di; - - /* Configure probes from command line */ - char **optokens, **optok; - optokens = g_strsplit(*pdtok, ":", -1); - di = srd_instance_new(optokens[0], NULL); - if(!di) { - fprintf(stderr, "Failed to instantiate PD: %s\n", - optokens[0]); - g_strfreev(optokens); - g_strfreev(pdtokens); - return -1; + if (!(pd = parse_generic_arg(*pdtok))) { + fprintf(stderr, "Invalid protocol decoder option '%s'.\n", *pdtok); + goto err_out; } - g_datalist_set_data(&pd_ann_visible, optokens[0], dummy); - for (optok = optokens+1; *optok; optok++) { - char probe[strlen(*optok)]; - int num; - if (sscanf(*optok, "%[^=]=%d", probe, &num) == 2) { - printf("Setting probe '%s' to %d\n", probe, num); - srd_instance_set_probe(di, probe, num); - } else { - fprintf(stderr, "Error: Couldn't parse decoder " - "options correctly! Aborting.\n"); - /* FIXME: Better error handling. */ - exit(EXIT_FAILURE); - } - } - g_strfreev(optokens); - /* TODO: Handle errors. */ + pd_name = g_strdup(g_hash_table_lookup(pd, "sigrok_key")); + g_hash_table_remove(pd, "sigrok_key"); + if (!(di = srd_instance_new(pd_name, pd))) { + fprintf(stderr, "Failed to instantiate PD %s\n", pd_name); + goto err_out; + } + g_datalist_set_data(&pd_ann_visible, di->instance_id, pd_name); } + /* Any keys left in the options hash are probes, where the key + * is the probe name as specified in the decoder class, and the + * value is the probe number i.e. the order in which the PD's + * incoming samples are arranged. */ + if (srd_instance_set_probes(di, pd) != SRD_OK) + return 1; + +err_out: g_strfreev(pdtokens); + if (pd) + g_hash_table_destroy(pd); + if (pd_name) + g_free(pd_name); return 0; } @@ -530,7 +525,7 @@ void show_pd_annotation(struct srd_proto_data *pdata) return; } - if (!g_datalist_get_data(&pd_ann_visible, pdata->pdo->proto_id)) { + if (!g_datalist_get_data(&pd_ann_visible, pdata->pdo->di->instance_id)) { /* not in the list of PDs whose annotations we're showing */ return; } @@ -715,7 +710,7 @@ int num_real_devices(void) devices = sr_device_list(); for (l = devices; l; l = l->next) { device = l->data; - if (!strstr(device->plugin->name, "demo")) + if (!sr_device_has_hwcap(device, SR_HWCAP_DEMO_DEVICE)) num_devices++; } @@ -1026,7 +1021,7 @@ int main(int argc, char **argv) } if (opt_pd_stack) { - pds = g_strsplit(opt_pd_stack, ":", 0); + pds = g_strsplit(opt_pd_stack, ",", 0); if (g_strv_length(pds) < 2) { printf("Specify at least two protocol decoders to stack.\n"); return 1;