]> sigrok.org Git - sigrok-cli.git/blob - sigrok-cli.c
Adjust to libsigrokdecode API changes
[sigrok-cli.git] / sigrok-cli.c
1 /*
2  * This file is part of the sigrok-cli project.
3  *
4  * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include "config.h"
21 #ifdef HAVE_SRD
22 #include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
23 #endif
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <time.h>
29 #include <sys/time.h>
30 #include <inttypes.h>
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #include <errno.h>
34 #include <glib.h>
35 #include <glib/gstdio.h>
36 #include <libsigrok/libsigrok.h>
37 #include "sigrok-cli.h"
38
39 #define DEFAULT_OUTPUT_FORMAT "bits:width=64"
40
41 static struct sr_context *sr_ctx = NULL;
42
43 static uint64_t limit_samples = 0;
44 static uint64_t limit_frames = 0;
45 static struct sr_output_format *output_format = NULL;
46 static int default_output_format = FALSE;
47 static char *output_format_param = NULL;
48 #ifdef HAVE_SRD
49 static struct srd_session *srd_sess = NULL;
50 static GHashTable *pd_ann_visible = NULL;
51 #endif
52 static GByteArray *savebuf;
53
54 static gboolean opt_version = FALSE;
55 static gint opt_loglevel = SR_LOG_WARN; /* Show errors+warnings per default. */
56 static gboolean opt_scan_devs = FALSE;
57 static gboolean opt_wait_trigger = FALSE;
58 static gchar *opt_input_file = NULL;
59 static gchar *opt_output_file = NULL;
60 static gchar *opt_drv = NULL;
61 static gchar *opt_config = NULL;
62 static gchar *opt_probes = NULL;
63 static gchar *opt_triggers = NULL;
64 static gchar *opt_pds = NULL;
65 #ifdef HAVE_SRD
66 static gchar *opt_pd_stack = NULL;
67 static gchar *opt_pd_annotations = NULL;
68 #endif
69 static gchar *opt_input_format = NULL;
70 static gchar *opt_output_format = NULL;
71 static gchar *opt_show = NULL;
72 static gchar *opt_time = NULL;
73 static gchar *opt_samples = NULL;
74 static gchar *opt_frames = NULL;
75 static gchar *opt_continuous = NULL;
76 static gchar *opt_set = NULL;
77
78 static GOptionEntry optargs[] = {
79         {"version", 'V', 0, G_OPTION_ARG_NONE, &opt_version,
80                         "Show version and support list", NULL},
81         {"loglevel", 'l', 0, G_OPTION_ARG_INT, &opt_loglevel,
82                         "Set loglevel (5 is most verbose)", NULL},
83         {"driver", 'd', 0, G_OPTION_ARG_STRING, &opt_drv,
84                         "The driver to use", NULL},
85         {"config", 'c', 0, G_OPTION_ARG_STRING, &opt_config,
86                         "Specify device configuration options", NULL},
87         {"input-file", 'i', 0, G_OPTION_ARG_FILENAME, &opt_input_file,
88                         "Load input from file", NULL},
89         {"input-format", 'I', 0, G_OPTION_ARG_STRING, &opt_input_format,
90                         "Input format", NULL},
91         {"output-file", 'o', 0, G_OPTION_ARG_FILENAME, &opt_output_file,
92                         "Save output to file", NULL},
93         {"output-format", 'O', 0, G_OPTION_ARG_STRING, &opt_output_format,
94                         "Output format", NULL},
95         {"probes", 'p', 0, G_OPTION_ARG_STRING, &opt_probes,
96                         "Probes to use", NULL},
97         {"triggers", 't', 0, G_OPTION_ARG_STRING, &opt_triggers,
98                         "Trigger configuration", NULL},
99         {"wait-trigger", 'w', 0, G_OPTION_ARG_NONE, &opt_wait_trigger,
100                         "Wait for trigger", NULL},
101 #ifdef HAVE_SRD
102         {"protocol-decoders", 'P', 0, G_OPTION_ARG_STRING, &opt_pds,
103                         "Protocol decoders to run", NULL},
104         {"protocol-decoder-stack", 'S', 0, G_OPTION_ARG_STRING, &opt_pd_stack,
105                         "Protocol decoder stack", NULL},
106         {"protocol-decoder-annotations", 'A', 0, G_OPTION_ARG_STRING, &opt_pd_annotations,
107                         "Protocol decoder annotation(s) to show", NULL},
108 #endif
109         {"scan", 0, 0, G_OPTION_ARG_NONE, &opt_scan_devs,
110                         "Scan for devices", NULL},
111         {"show", 0, 0, G_OPTION_ARG_NONE, &opt_show,
112                         "Show device detail", NULL},
113         {"time", 0, 0, G_OPTION_ARG_STRING, &opt_time,
114                         "How long to sample (ms)", NULL},
115         {"samples", 0, 0, G_OPTION_ARG_STRING, &opt_samples,
116                         "Number of samples to acquire", NULL},
117         {"frames", 0, 0, G_OPTION_ARG_STRING, &opt_frames,
118                         "Number of frames to acquire", NULL},
119         {"continuous", 0, 0, G_OPTION_ARG_NONE, &opt_continuous,
120                         "Sample continuously", NULL},
121         {"set", 0, 0, G_OPTION_ARG_NONE, &opt_set, "Set device options only", NULL},
122         {NULL, 0, 0, 0, NULL, NULL, NULL}
123 };
124
125
126 /* Convert driver options hash to GSList of struct sr_config. */
127 static GSList *hash_to_hwopt(GHashTable *hash)
128 {
129         const struct sr_config_info *srci;
130         struct sr_config *src;
131         GList *gl, *keys;
132         GSList *opts;
133         char *key, *value;
134
135         keys = g_hash_table_get_keys(hash);
136         opts = NULL;
137         for (gl = keys; gl; gl = gl->next) {
138                 key = gl->data;
139                 if (!(srci = sr_config_info_name_get(key))) {
140                         g_critical("Unknown option %s", key);
141                         return NULL;
142                 }
143                 src = g_try_malloc(sizeof(struct sr_config));
144                 src->key = srci->key;
145                 value = g_hash_table_lookup(hash, key);
146                 src->data = g_variant_new_string(value);
147                 opts = g_slist_append(opts, src);
148         }
149         g_list_free(keys);
150
151         return opts;
152 }
153
154 static void free_drvopts(struct sr_config *src)
155 {
156         g_variant_unref(src->data);
157         g_free(src);
158 }
159
160 static GSList *device_scan(void)
161 {
162         struct sr_dev_driver **drivers, *driver;
163         GHashTable *drvargs;
164         GSList *drvopts, *devices, *tmpdevs, *l;
165         int i;
166         char *drvname;
167
168         if (opt_drv) {
169                 drvargs = parse_generic_arg(opt_drv, TRUE);
170                 drvname = g_strdup(g_hash_table_lookup(drvargs, "sigrok_key"));
171                 g_hash_table_remove(drvargs, "sigrok_key");
172                 driver = NULL;
173                 drivers = sr_driver_list();
174                 for (i = 0; drivers[i]; i++) {
175                         if (strcmp(drivers[i]->name, drvname))
176                                 continue;
177                         driver = drivers[i];
178                 }
179                 if (!driver) {
180                         g_critical("Driver %s not found.", drvname);
181                         return NULL;
182                 }
183                 g_free(drvname);
184                 if (sr_driver_init(sr_ctx, driver) != SR_OK) {
185                         g_critical("Failed to initialize driver.");
186                         return NULL;
187                 }
188                 drvopts = NULL;
189                 if (g_hash_table_size(drvargs) > 0) {
190                         if (!(drvopts = hash_to_hwopt(drvargs))) {
191                                 /* Unknown options, already logged. */
192                                 g_hash_table_destroy(drvargs);
193                                 return NULL;
194                         }
195                 }
196                 g_hash_table_destroy(drvargs); 
197                 devices = sr_driver_scan(driver, drvopts);
198                 g_slist_free_full(drvopts, (GDestroyNotify)free_drvopts);
199         } else {
200                 /* No driver specified, let them all scan on their own. */
201                 devices = NULL;
202                 drivers = sr_driver_list();
203                 for (i = 0; drivers[i]; i++) {
204                         driver = drivers[i];
205                         if (sr_driver_init(sr_ctx, driver) != SR_OK) {
206                                 g_critical("Failed to initialize driver.");
207                                 return NULL;
208                         }
209                         tmpdevs = sr_driver_scan(driver, NULL);
210                         for (l = tmpdevs; l; l = l->next)
211                                 devices = g_slist_append(devices, l->data);
212                         g_slist_free(tmpdevs);
213                 }
214         }
215
216         return devices;
217 }
218
219 static void show_version(void)
220 {
221         struct sr_dev_driver **drivers;
222         struct sr_input_format **inputs;
223         struct sr_output_format **outputs;
224         int i;
225 #ifdef HAVE_SRD
226         struct srd_decoder *dec;
227         const GSList *l;
228 #endif
229
230         printf("sigrok-cli %s\n\n", VERSION);
231
232         printf("Using libsigrok %s (lib version %s).\n",
233                sr_package_version_string_get(), sr_lib_version_string_get());
234 #ifdef HAVE_SRD
235         printf("Using libsigrokdecode %s (lib version %s).\n\n",
236                srd_package_version_string_get(), srd_lib_version_string_get());
237 #endif
238
239         printf("Supported hardware drivers:\n");
240         drivers = sr_driver_list();
241         for (i = 0; drivers[i]; i++) {
242                 printf("  %-20s %s\n", drivers[i]->name, drivers[i]->longname);
243         }
244         printf("\n");
245
246         printf("Supported input formats:\n");
247         inputs = sr_input_list();
248         for (i = 0; inputs[i]; i++)
249                 printf("  %-20s %s\n", inputs[i]->id, inputs[i]->description);
250         printf("\n");
251
252         printf("Supported output formats:\n");
253         outputs = sr_output_list();
254         for (i = 0; outputs[i]; i++)
255                 printf("  %-20s %s\n", outputs[i]->id, outputs[i]->description);
256         printf("  %-20s %s\n", "sigrok", "Default file output format");
257         printf("\n");
258
259 #ifdef HAVE_SRD
260         if (srd_init(NULL) == SRD_OK) {
261                 printf("Supported protocol decoders:\n");
262                 srd_decoder_load_all();
263                 for (l = srd_decoder_list(); l; l = l->next) {
264                         dec = l->data;
265                         printf("  %-20s %s\n", dec->id, dec->longname);
266                         /* Print protocol description upon "-l 3" or higher. */
267                         if (opt_loglevel >= SR_LOG_INFO)
268                                 printf("  %-20s %s\n", "", dec->desc);
269                 }
270                 srd_exit();
271         }
272         printf("\n");
273 #endif
274 }
275
276 static void print_dev_line(const struct sr_dev_inst *sdi)
277 {
278         struct sr_probe *probe;
279         GSList *l;
280         GString *s;
281         GVariant *gvar;
282
283         s = g_string_sized_new(128);
284         g_string_assign(s, sdi->driver->name);
285         if (sr_config_get(sdi->driver, SR_CONF_CONN, &gvar, sdi) == SR_OK) {
286                 g_string_append(s, ":conn=");
287                 g_string_append(s, g_variant_get_string(gvar, NULL));
288                 g_variant_unref(gvar);
289         }
290         g_string_append(s, " - ");
291         if (sdi->vendor && sdi->vendor[0])
292                 g_string_append_printf(s, "%s ", sdi->vendor);
293         if (sdi->model && sdi->model[0])
294                 g_string_append_printf(s, "%s ", sdi->model);
295         if (sdi->version && sdi->version[0])
296                 g_string_append_printf(s, "%s ", sdi->version);
297         if (sdi->probes) {
298                 if (g_slist_length(sdi->probes) == 1) {
299                         probe = sdi->probes->data;
300                         g_string_append_printf(s, "with 1 probe: %s", probe->name);
301                 } else {
302                         g_string_append_printf(s, "with %d probes:", g_slist_length(sdi->probes));
303                         for (l = sdi->probes; l; l = l->next) {
304                                 probe = l->data;
305                                 g_string_append_printf(s, " %s", probe->name);
306                         }
307                 }
308         }
309         g_string_append_printf(s, "\n");
310         printf("%s", s->str);
311         g_string_free(s, TRUE);
312
313 }
314
315 static void show_dev_list(void)
316 {
317         struct sr_dev_inst *sdi;
318         GSList *devices, *l;
319
320         if (!(devices = device_scan()))
321                 return;
322
323         printf("The following devices were found:\n");
324         for (l = devices; l; l = l->next) {
325                 sdi = l->data;
326                 print_dev_line(sdi);
327         }
328         g_slist_free(devices);
329
330 }
331
332 static void show_dev_detail(void)
333 {
334         struct sr_dev_inst *sdi;
335         const struct sr_config_info *srci;
336         GSList *devices;
337         GVariant *gvar_opts, *gvar_dict, *gvar_list, *gvar;
338         gsize num_opts, num_elements;
339         const uint64_t *uint64, p, q, low, high;
340         uint64_t cur_low, cur_high;
341         const int32_t *opts;
342         unsigned int num_devices, o, i;
343         char *tmp_str;
344         char *s;
345         const char *charopts, **stropts;
346
347         if (!(devices = device_scan())) {
348                 g_critical("No devices found.");
349                 return;
350         }
351
352         num_devices = g_slist_length(devices);
353         if (num_devices > 1) {
354                 g_critical("%d devices found. Use --scan to show them, "
355                                 "and select one to show.", num_devices);
356                 return;
357         }
358
359         sdi = devices->data;
360         print_dev_line(sdi);
361
362         if (sr_dev_open(sdi) != SR_OK) {
363                 g_critical("Failed to open device.");
364                 return;
365         }
366
367         if ((sr_config_list(sdi->driver, SR_CONF_SCAN_OPTIONS, &gvar_opts,
368                         NULL) == SR_OK)) {
369                 opts = g_variant_get_fixed_array(gvar_opts, &num_elements,
370                                 sizeof(int32_t));
371                 printf("Supported driver options:\n");
372                 for (i = 0; i < num_elements; i++) {
373                         if (!(srci = sr_config_info_get(opts[i])))
374                                 continue;
375                         printf("    %s\n", srci->id);
376                 }
377                 g_variant_unref(gvar_opts);
378         }
379
380         if ((sr_config_list(sdi->driver, SR_CONF_DEVICE_OPTIONS, &gvar_opts,
381                         sdi) != SR_OK))
382                 /* Driver supports no device instance options. */
383                 return;
384
385         printf("Supported configuration options:\n");
386         opts = g_variant_get_fixed_array(gvar_opts, &num_opts, sizeof(int32_t));
387         for (o = 0; o < num_opts; o++) {
388                 if (!(srci = sr_config_info_get(opts[o])))
389                         continue;
390
391                 if (srci->key == SR_CONF_TRIGGER_TYPE) {
392                         if (sr_config_list(sdi->driver, srci->key, &gvar,
393                                         sdi) != SR_OK) {
394                                 printf("\n");
395                                 continue;
396                         }
397                         charopts = g_variant_get_string(gvar, NULL);
398                         printf("    Supported triggers: ");
399                         while (*charopts) {
400                                 printf("%c ", *charopts);
401                                 charopts++;
402                         }
403                         printf("\n");
404                         g_variant_unref(gvar);
405
406                 } else if (srci->key == SR_CONF_PATTERN_MODE) {
407                         /* Pattern generator modes */
408                         printf("    %s", srci->id);
409                         if (sr_config_list(sdi->driver, srci->key, &gvar,
410                                         sdi) == SR_OK) {
411                                 printf(" - supported patterns:\n");
412                                 stropts = g_variant_get_strv(gvar, &num_elements);
413                                 for (i = 0; i < num_elements; i++)
414                                         printf("      %s\n", stropts[i]);
415                                 g_variant_unref(gvar);
416                         } else {
417                                 printf("\n");
418                         }
419
420                 } else if (srci->key == SR_CONF_SAMPLERATE) {
421                         /* Supported samplerates */
422                         printf("    %s", srci->id);
423                         if (sr_config_list(sdi->driver, SR_CONF_SAMPLERATE,
424                                         &gvar_dict, sdi) != SR_OK) {
425                                 printf("\n");
426                                 continue;
427                         }
428                         if ((gvar_list = g_variant_lookup_value(gvar_dict,
429                                         "samplerates", G_VARIANT_TYPE("at")))) {
430                                 uint64 = g_variant_get_fixed_array(gvar_list,
431                                                 &num_elements, sizeof(uint64_t));
432                                 printf(" - supported samplerates:\n");
433                                 for (i = 0; i < num_elements; i++) {
434                                         if (!(s = sr_samplerate_string(uint64[i])))
435                                                 continue;
436                                         printf("      %s\n", s);
437                                         g_free(s);
438                                 }
439                                 g_variant_unref(gvar_list);
440                         } else if ((gvar_list = g_variant_lookup_value(gvar_dict,
441                                         "samplerate-steps", G_VARIANT_TYPE("at")))) {
442                                 uint64 = g_variant_get_fixed_array(gvar_list,
443                                                 &num_elements, sizeof(uint64_t));
444                                 /* low */
445                                 if (!(s = sr_samplerate_string(uint64[0])))
446                                         continue;
447                                 printf(" (%s", s);
448                                 g_free(s);
449                                 /* high */
450                                 if (!(s = sr_samplerate_string(uint64[1])))
451                                         continue;
452                                 printf(" - %s", s);
453                                 g_free(s);
454                                 /* step */
455                                 if (!(s = sr_samplerate_string(uint64[2])))
456                                         continue;
457                                 printf(" in steps of %s)\n", s);
458                                 g_free(s);
459                                 g_variant_unref(gvar_list);
460                         }
461                         g_variant_unref(gvar_dict);
462
463                 } else if (srci->key == SR_CONF_BUFFERSIZE) {
464                         /* Supported buffer sizes */
465                         printf("    %s", srci->id);
466                         if (sr_config_list(sdi->driver, SR_CONF_BUFFERSIZE,
467                                         &gvar_list, sdi) != SR_OK) {
468                                 printf("\n");
469                                 continue;
470                         }
471                         uint64 = g_variant_get_fixed_array(gvar_list,
472                                         &num_elements, sizeof(uint64_t));
473                         printf(" - supported buffer sizes:\n");
474                         for (i = 0; i < num_elements; i++)
475                                 printf("      %"PRIu64"\n", uint64[i]);
476                         g_variant_unref(gvar_list);
477
478                 } else if (srci->key == SR_CONF_TIMEBASE) {
479                         /* Supported time bases */
480                         printf("    %s", srci->id);
481                         if (sr_config_list(sdi->driver, SR_CONF_TIMEBASE,
482                                         &gvar_list, sdi) != SR_OK) {
483                                 printf("\n");
484                                 continue;
485                         }
486                         printf(" - supported time bases:\n");
487                         num_elements = g_variant_n_children(gvar_list);
488                         for (i = 0; i < num_elements; i++) {
489                                 gvar = g_variant_get_child_value(gvar_list, i);
490                                 g_variant_get(gvar, "(tt)", &p, &q);
491                                 s = sr_period_string(p * q);
492                                 printf("      %s\n", s);
493                                 g_free(s);
494                         }
495                         g_variant_unref(gvar_list);
496
497                 } else if (srci->key == SR_CONF_VDIV) {
498                         /* Supported volts/div values */
499                         printf("    %s", srci->id);
500                         if (sr_config_list(sdi->driver, SR_CONF_VDIV,
501                                         &gvar_list, sdi) != SR_OK) {
502                                 printf("\n");
503                                 continue;
504                         }
505                         printf(" - supported volts/div:\n");
506                         num_elements = g_variant_n_children(gvar_list);
507                         for (i = 0; i < num_elements; i++) {
508                                 gvar = g_variant_get_child_value(gvar_list, i);
509                                 g_variant_get(gvar, "(tt)", &p, &q);
510                                 s = sr_voltage_string(p, q);
511                                 printf("      %s\n", s);
512                                 g_free(s);
513                         }
514                         g_variant_unref(gvar_list);
515
516                 } else if (srci->datatype == SR_T_CHAR) {
517                         printf("    %s: ", srci->id);
518                         if (sr_config_get(sdi->driver, srci->key,
519                                         &gvar, sdi) == SR_OK) {
520                                 tmp_str = g_strdup(g_variant_get_string(gvar, NULL));
521                                 g_variant_unref(gvar);
522                         } else
523                                 tmp_str = NULL;
524
525                         if (sr_config_list(sdi->driver, srci->key,
526                                         &gvar, sdi) != SR_OK) {
527                                 printf("\n");
528                                 continue;
529                         }
530
531                         stropts = g_variant_get_strv(gvar, &num_elements);
532                         for (i = 0; i < num_elements; i++) {
533                                 if (i)
534                                         printf(", ");
535                                 printf("%s", stropts[i]);
536                                 if (tmp_str && !strcmp(tmp_str, stropts[i]))
537                                         printf(" (current)");
538                         }
539                         printf("\n");
540                         g_free(stropts);
541                         g_free(tmp_str);
542                         g_variant_unref(gvar);
543
544                 } else if (srci->datatype == SR_T_UINT64_RANGE) {
545                         printf("    %s: ", srci->id);
546                         if (sr_config_list(sdi->driver, srci->key,
547                                         &gvar_list, sdi) != SR_OK) {
548                                 printf("\n");
549                                 continue;
550                         }
551
552                         if (sr_config_get(sdi->driver, srci->key, &gvar, sdi) == SR_OK) {
553                                 g_variant_get(gvar, "(tt)", &cur_low, &cur_high);
554                                 g_variant_unref(gvar);
555                         } else {
556                                 cur_low = 0;
557                                 cur_high = 0;
558                         }
559
560                         num_elements = g_variant_n_children(gvar_list);
561                         for (i = 0; i < num_elements; i++) {
562                                 gvar = g_variant_get_child_value(gvar_list, i);
563                                 g_variant_get(gvar, "(tt)", &low, &high);
564                                 g_variant_unref(gvar);
565                                 if (i)
566                                         printf(", ");
567                                 printf("%"PRIu64"-%"PRIu64, low, high);
568                                 if (low == cur_low && high == cur_high)
569                                         printf(" (current)");
570                         }
571                         printf("\n");
572                         g_variant_unref(gvar_list);
573
574                 } else if (srci->datatype == SR_T_BOOL) {
575                         printf("    %s: ", srci->id);
576                         if (sr_config_get(sdi->driver, srci->key,
577                                         &gvar, sdi) == SR_OK) {
578                                 if (g_variant_get_boolean(gvar))
579                                         printf("on (current), off\n");
580                                 else
581                                         printf("on, off (current)\n");
582                                 g_variant_unref(gvar);
583                         } else
584                                 printf("on, off\n");
585
586                 } else {
587
588                         /* Everything else */
589                         printf("    %s\n", srci->id);
590                 }
591         }
592         g_variant_unref(gvar_opts);
593
594         sr_dev_close(sdi);
595         g_slist_free(devices);
596
597 }
598
599 #ifdef HAVE_SRD
600 static void show_pd_detail(void)
601 {
602         GSList *l;
603         struct srd_decoder *dec;
604         struct srd_decoder_option *o;
605         char **pdtokens, **pdtok, *optsep, **ann, *val, *doc;
606         struct srd_probe *p;
607
608         pdtokens = g_strsplit(opt_pds, ",", -1);
609         for (pdtok = pdtokens; *pdtok; pdtok++) {
610                 /* Strip options. */
611                 if ((optsep = strchr(*pdtok, ':')))
612                         *optsep = '\0';
613                 if (!(dec = srd_decoder_get_by_id(*pdtok))) {
614                         g_critical("Protocol decoder %s not found.", *pdtok);
615                         return;
616                 }
617                 printf("ID: %s\nName: %s\nLong name: %s\nDescription: %s\n",
618                                 dec->id, dec->name, dec->longname, dec->desc);
619                 printf("License: %s\n", dec->license);
620                 printf("Annotations:\n");
621                 if (dec->annotations) {
622                         for (l = dec->annotations; l; l = l->next) {
623                                 ann = l->data;
624                                 printf("- %s\n  %s\n", ann[0], ann[1]);
625                         }
626                 } else {
627                         printf("None.\n");
628                 }
629                 printf("Required probes:\n");
630                 if (dec->probes) {
631                         for (l = dec->probes; l; l = l->next) {
632                                 p = l->data;
633                                 printf("- %s (%s): %s\n",
634                                        p->name, p->id, p->desc);
635                         }
636                 } else {
637                         printf("None.\n");
638                 }
639                 printf("Optional probes:\n");
640                 if (dec->opt_probes) {
641                         for (l = dec->opt_probes; l; l = l->next) {
642                                 p = l->data;
643                                 printf("- %s (%s): %s\n",
644                                        p->name, p->id, p->desc);
645                         }
646                 } else {
647                         printf("None.\n");
648                 }
649                 if (dec->options) {
650                         printf("Options:\n");
651                         for (l = dec->options; l; l = l->next) {
652                                 o = l->data;
653                                 val = g_variant_print(o->def, FALSE);
654                                 printf("- %s: %s (default %s)\n", o->id, o->desc, val);
655                                 g_free(val);
656                         }
657                 }
658                 if ((doc = srd_decoder_doc_get(dec))) {
659                         printf("Documentation:\n%s\n",
660                                doc[0] == '\n' ? doc + 1 : doc);
661                         g_free(doc);
662                 }
663         }
664
665         g_strfreev(pdtokens);
666 }
667 #endif
668
669 static GArray *get_enabled_logic_probes(const struct sr_dev_inst *sdi)
670 {
671         struct sr_probe *probe;
672         GArray *probes;
673         GSList *l;
674
675         probes = g_array_new(FALSE, FALSE, sizeof(int));
676         for (l = sdi->probes; l; l = l->next) {
677                 probe = l->data;
678                 if (probe->type != SR_PROBE_LOGIC)
679                         continue;
680                 if (probe->enabled != TRUE)
681                         continue;
682                 g_array_append_val(probes, probe->index);
683         }
684
685         return probes;
686 }
687
688 static void datafeed_in(const struct sr_dev_inst *sdi,
689                 const struct sr_datafeed_packet *packet, void *cb_data)
690 {
691         const struct sr_datafeed_meta *meta;
692         const struct sr_datafeed_logic *logic;
693         const struct sr_datafeed_analog *analog;
694         struct sr_config *src;
695         static struct sr_output *o = NULL;
696         static GArray *logic_probelist = NULL;
697         static uint64_t received_samples = 0;
698         static int unitsize = 0;
699         static int triggered = 0;
700         static FILE *outfile = NULL;
701         GSList *l;
702         GString *out;
703         int sample_size, ret;
704         uint64_t samplerate, output_len, filter_out_len, end_sample;
705         uint8_t *output_buf, *filter_out;
706
707         (void) cb_data;
708
709         /* If the first packet to come in isn't a header, don't even try. */
710         if (packet->type != SR_DF_HEADER && o == NULL)
711                 return;
712
713         sample_size = -1;
714         switch (packet->type) {
715         case SR_DF_HEADER:
716                 g_debug("cli: Received SR_DF_HEADER");
717                 /* Initialize the output module. */
718                 if (!(o = g_try_malloc(sizeof(struct sr_output)))) {
719                         g_critical("Output module malloc failed.");
720                         exit(1);
721                 }
722                 o->format = output_format;
723                 o->sdi = (struct sr_dev_inst *)sdi;
724                 o->param = output_format_param;
725                 if (o->format->init) {
726                         if (o->format->init(o) != SR_OK) {
727                                 g_critical("Output format initialization failed.");
728                                 exit(1);
729                         }
730                 }
731
732                 /* Prepare non-stdout output. */
733                 outfile = stdout;
734                 if (opt_output_file) {
735                         if (default_output_format) {
736                                 /* output file is in session format, so we'll
737                                  * keep a copy of everything as it comes in
738                                  * and save from there after the session. */
739                                 outfile = NULL;
740                                 savebuf = g_byte_array_new();
741                         } else {
742                                 /* saving to a file in whatever format was set
743                                  * with --format, so all we need is a filehandle */
744                                 outfile = g_fopen(opt_output_file, "wb");
745                         }
746                 }
747
748                 /* Prepare for logic data. */
749                 logic_probelist = get_enabled_logic_probes(sdi);
750                 /* How many bytes we need to store the packed samples. */
751                 unitsize = (logic_probelist->len + 7) / 8;
752
753 #ifdef HAVE_SRD
754                 GVariant *gvar;
755                 if (opt_pds && logic_probelist->len) {
756                         if (sr_config_get(sdi->driver, SR_CONF_SAMPLERATE,
757                                         &gvar, sdi) == SR_OK) {
758                                 samplerate = g_variant_get_uint64(gvar);
759                                 g_variant_unref(gvar);
760                                 if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
761                                                 g_variant_new_uint64(samplerate)) != SRD_OK) {
762                                         g_critical("Failed to configure decode session.");
763                                         break;
764                                 }
765                         }
766                         if (srd_session_start(srd_sess) != SRD_OK) {
767                                 g_critical("Failed to start decode session.");
768                                 break;
769                         }
770                 }
771 #endif
772                 break;
773
774         case SR_DF_META:
775                 g_debug("cli: received SR_DF_META");
776                 meta = packet->payload;
777                 for (l = meta->config; l; l = l->next) {
778                         src = l->data;
779                         switch (src->key) {
780                         case SR_CONF_SAMPLERATE:
781                                 samplerate = g_variant_get_uint64(src->data);
782                                 g_debug("cli: got samplerate %"PRIu64" Hz", samplerate);
783 #ifdef HAVE_SRD
784                                 if (opt_pds) {
785                                         if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
786                                                         g_variant_new_uint64(samplerate)) != SRD_OK) {
787                                                 g_critical("Failed to pass samplerate to decoder.");
788                                         }
789                                 }
790 #endif
791                                 break;
792                         case SR_CONF_SAMPLE_INTERVAL:
793                                 samplerate = g_variant_get_uint64(src->data);
794                                 g_debug("cli: got sample interval %"PRIu64" ms", samplerate);
795                                 break;
796                         default:
797                                 /* Unknown metadata is not an error. */
798                                 break;
799                         }
800                 }
801                 break;
802
803         case SR_DF_TRIGGER:
804                 g_debug("cli: received SR_DF_TRIGGER");
805                 if (o->format->event)
806                         o->format->event(o, SR_DF_TRIGGER, &output_buf,
807                                          &output_len);
808                 triggered = 1;
809                 break;
810
811         case SR_DF_LOGIC:
812                 logic = packet->payload;
813                 g_message("cli: received SR_DF_LOGIC, %"PRIu64" bytes", logic->length);
814                 sample_size = logic->unitsize;
815                 if (logic->length == 0)
816                         break;
817
818                 /* Don't store any samples until triggered. */
819                 if (opt_wait_trigger && !triggered)
820                         break;
821
822                 if (limit_samples && received_samples >= limit_samples)
823                         break;
824
825                 ret = sr_filter_probes(sample_size, unitsize, logic_probelist,
826                                 logic->data, logic->length,
827                                 &filter_out, &filter_out_len);
828                 if (ret != SR_OK)
829                         break;
830
831                 /*
832                  * What comes out of the filter is guaranteed to be packed into the
833                  * minimum size needed to support the number of samples at this sample
834                  * size. however, the driver may have submitted too much. Cut off
835                  * the buffer of the last packet according to the sample limit.
836                  */
837                 if (limit_samples && (received_samples + logic->length / sample_size >
838                                 limit_samples * sample_size))
839                         filter_out_len = limit_samples * sample_size - received_samples;
840
841                 if (opt_output_file && default_output_format) {
842                         /* Saving to a session file. */
843                         g_byte_array_append(savebuf, filter_out, filter_out_len);
844                 } else {
845                         if (opt_pds) {
846 #ifdef HAVE_SRD
847                                 end_sample = received_samples + filter_out_len / unitsize;
848                                 if (srd_session_send(srd_sess, received_samples, end_sample,
849                                                 (uint8_t*)filter_out, filter_out_len) != SRD_OK)
850                                         sr_session_stop();
851 #endif
852                         } else {
853                                 output_len = 0;
854                                 if (o->format->data && packet->type == o->format->df_type)
855                                         o->format->data(o, filter_out, filter_out_len,
856                                                         &output_buf, &output_len);
857                                 if (output_len) {
858                                         fwrite(output_buf, 1, output_len, outfile);
859                                         fflush(outfile);
860                                         g_free(output_buf);
861                                 }
862                         }
863                 }
864                 g_free(filter_out);
865
866                 received_samples += logic->length / sample_size;
867                 break;
868
869         case SR_DF_ANALOG:
870                 analog = packet->payload;
871                 g_message("cli: received SR_DF_ANALOG, %d samples", analog->num_samples);
872                 if (analog->num_samples == 0)
873                         break;
874
875                 if (limit_samples && received_samples >= limit_samples)
876                         break;
877
878                 if (o->format->data && packet->type == o->format->df_type) {
879                         o->format->data(o, (const uint8_t *)analog->data,
880                                         analog->num_samples * sizeof(float),
881                                         &output_buf, &output_len);
882                         if (output_buf) {
883                                 fwrite(output_buf, 1, output_len, outfile);
884                                 fflush(outfile);
885                                 g_free(output_buf);
886                         }
887                 }
888
889                 received_samples += analog->num_samples;
890                 break;
891
892         case SR_DF_FRAME_BEGIN:
893                 g_debug("cli: received SR_DF_FRAME_BEGIN");
894                 if (o->format->event) {
895                         o->format->event(o, SR_DF_FRAME_BEGIN, &output_buf,
896                                          &output_len);
897                         if (output_buf) {
898                                 fwrite(output_buf, 1, output_len, outfile);
899                                 fflush(outfile);
900                                 g_free(output_buf);
901                         }
902                 }
903                 break;
904
905         case SR_DF_FRAME_END:
906                 g_debug("cli: received SR_DF_FRAME_END");
907                 if (o->format->event) {
908                         o->format->event(o, SR_DF_FRAME_END, &output_buf,
909                                          &output_len);
910                         if (output_buf) {
911                                 fwrite(output_buf, 1, output_len, outfile);
912                                 fflush(outfile);
913                                 g_free(output_buf);
914                         }
915                 }
916                 break;
917
918         default:
919                 break;
920         }
921
922         if (o && o->format->receive) {
923                 if (o->format->receive(o, sdi, packet, &out) == SR_OK && out) {
924                         fwrite(out->str, 1, out->len, outfile);
925                         fflush(outfile);
926                         g_string_free(out, TRUE);
927                 }
928         }
929
930         /* SR_DF_END needs to be handled after the output module's receive()
931          * is called, so it can properly clean up that module etc. */
932         if (packet->type == SR_DF_END) {
933                 g_debug("cli: Received SR_DF_END");
934
935                 if (o->format->event) {
936                         o->format->event(o, SR_DF_END, &output_buf, &output_len);
937                         if (output_buf) {
938                                 if (outfile)
939                                         fwrite(output_buf, 1, output_len, outfile);
940                                 g_free(output_buf);
941                                 output_len = 0;
942                         }
943                 }
944
945                 if (limit_samples && received_samples < limit_samples)
946                         g_warning("Device only sent %" PRIu64 " samples.",
947                                received_samples);
948
949                 if (opt_continuous)
950                         g_warning("Device stopped after %" PRIu64 " samples.",
951                                received_samples);
952
953                 g_array_free(logic_probelist, TRUE);
954
955                 if (o->format->cleanup)
956                         o->format->cleanup(o);
957                 g_free(o);
958                 o = NULL;
959
960                 if (outfile && outfile != stdout)
961                         fclose(outfile);
962
963                 if (opt_output_file && default_output_format && savebuf->len) {
964                         if (sr_session_save(opt_output_file, sdi, savebuf->data,
965                                         unitsize, savebuf->len / unitsize) != SR_OK)
966                                 g_critical("Failed to save session.");
967                         g_byte_array_free(savebuf, FALSE);
968                 }
969         }
970
971 }
972
973 #ifdef HAVE_SRD
974 static int opts_to_gvar(struct srd_decoder *dec, GHashTable *hash,
975                 GHashTable **options)
976 {
977         struct srd_decoder_option *o;
978         GSList *optl;
979         GVariant *gvar;
980         gint64 val_int;
981         int ret;
982         char *val_str, *conv;
983
984         ret = TRUE;
985         *options = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
986                         (GDestroyNotify)g_variant_unref);
987
988         for (optl = dec->options; optl; optl = optl->next) {
989                 o = optl->data;
990                 if (!(val_str = g_hash_table_lookup(hash, o->id)))
991                         /* Not specified. */
992                         continue;
993                 if (g_variant_is_of_type(o->def, G_VARIANT_TYPE_STRING)) {
994                         gvar = g_variant_new_string(val_str);
995                 } else if (g_variant_is_of_type(o->def, G_VARIANT_TYPE_INT64)) {
996                         val_int = strtoll(val_str, &conv, 0);
997                         if (!conv || conv == val_str) {
998                                 g_critical("Protocol decoder '%s' option '%s' "
999                                                 "requires a number.", dec->name, o->id);
1000                                 ret = FALSE;
1001                                 break;
1002                         }
1003                         gvar = g_variant_new_int64(val_int);
1004                 } else {
1005                         g_critical("Unsupported type for option '%s' (%s)",
1006                                         o->id, g_variant_get_type_string(o->def));
1007                         ret = FALSE;
1008                         break;
1009                 }
1010                 g_variant_ref_sink(gvar);
1011                 g_hash_table_insert(*options, g_strdup(o->id), gvar);
1012                 g_hash_table_remove(hash, o->id);
1013         }
1014
1015         return ret;
1016 }
1017
1018 static int probes_to_gvar(struct srd_decoder *dec, GHashTable *hash,
1019                 GHashTable **probes)
1020 {
1021         struct srd_probe *p;
1022         GSList *all_probes, *l;
1023         GVariant *gvar;
1024         gint32 val_int;
1025         int ret;
1026         char *val_str, *conv;
1027
1028         ret = TRUE;
1029         *probes = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
1030                         (GDestroyNotify)g_variant_unref);
1031
1032         all_probes = g_slist_copy(dec->probes);
1033         all_probes = g_slist_concat(all_probes, g_slist_copy(dec->opt_probes));
1034         for (l = all_probes; l; l = l->next) {
1035                 p = l->data;
1036                 if (!(val_str = g_hash_table_lookup(hash, p->id)))
1037                         /* Not specified. */
1038                         continue;
1039                 val_int = strtoll(val_str, &conv, 10);
1040                 if (!conv || conv == val_str) {
1041                         g_critical("Protocol decoder '%s' probes '%s' "
1042                                         "is not a number.", dec->name, p->id);
1043                         ret = FALSE;
1044                         break;
1045                 }
1046                 gvar = g_variant_new_int32(val_int);
1047                 g_variant_ref_sink(gvar);
1048                 g_hash_table_insert(*probes, g_strdup(p->id), gvar);
1049                 g_hash_table_remove(hash, p->id);
1050         }
1051         g_slist_free(all_probes);
1052
1053         return ret;
1054 }
1055
1056 /* Register the given PDs for this session.
1057  * Accepts a string of the form: "spi:sck=3:sdata=4,spi:sck=3:sdata=5"
1058  * That will instantiate two SPI decoders on the clock but different data
1059  * lines.
1060  */
1061 static int register_pds(struct sr_dev *dev, const char *pdstring)
1062 {
1063         struct srd_decoder *dec;
1064         GHashTable *pd_opthash, *options, *probes;
1065         GList *leftover, *l;
1066         struct srd_decoder_inst *di;
1067         int ret;
1068         char **pdtokens, **pdtok, *pd_name;
1069
1070         (void)dev;
1071
1072         ret = 0;
1073         pd_ann_visible = g_hash_table_new_full(g_str_hash, g_int_equal,
1074                         g_free, NULL);
1075         pd_name = NULL;
1076         pd_opthash = options = probes = NULL;
1077         pdtokens = g_strsplit(pdstring, ",", 0);
1078         for (pdtok = pdtokens; *pdtok; pdtok++) {
1079                 if (!(pd_opthash = parse_generic_arg(*pdtok, TRUE))) {
1080                         g_critical("Invalid protocol decoder option '%s'.", *pdtok);
1081                         break;
1082                 }
1083
1084                 pd_name = g_strdup(g_hash_table_lookup(pd_opthash, "sigrok_key"));
1085                 g_hash_table_remove(pd_opthash, "sigrok_key");
1086                 if (srd_decoder_load(pd_name) != SRD_OK) {
1087                         g_critical("Failed to load protocol decoder %s.", pd_name);
1088                         ret = 1;
1089                         break;
1090                 }
1091                 dec = srd_decoder_get_by_id(pd_name);
1092
1093                 /* Convert decoder option and probe values to GVariant. */
1094                 if (!opts_to_gvar(dec, pd_opthash, &options)) {
1095                         ret = 1;
1096                         break;
1097                 }
1098                 if (!probes_to_gvar(dec, pd_opthash, &probes)) {
1099                         ret = 1;
1100                         break;
1101                 }
1102                 if (g_hash_table_size(pd_opthash) > 0) {
1103                         leftover = g_hash_table_get_keys(pd_opthash);
1104                         for (l = leftover; l; l = l->next)
1105                                 g_critical("Unknown option or probe '%s'", (char *)l->data);
1106                         g_list_free(leftover);
1107                         break;
1108                 }
1109
1110                 if (!(di = srd_inst_new(srd_sess, pd_name, options))) {
1111                         g_critical("Failed to instantiate protocol decoder %s.", pd_name);
1112                         ret = 1;
1113                         break;
1114                 }
1115
1116                 /* If no annotation list was specified, add them all in now.
1117                  * This will be pared down later to leave only the last PD
1118                  * in the stack.
1119                  */
1120                 if (!opt_pd_annotations)
1121                         g_hash_table_insert(pd_ann_visible,
1122                                             g_strdup(di->inst_id), NULL);
1123
1124                 /* Remap the probes if needed. */
1125                 if (srd_inst_probe_set_all(di, probes) != SRD_OK) {
1126                         ret = 1;
1127                         break;
1128                 }
1129         }
1130
1131         g_strfreev(pdtokens);
1132         if (pd_opthash)
1133                 g_hash_table_destroy(pd_opthash);
1134         if (options)
1135                 g_hash_table_destroy(options);
1136         if (probes)
1137                 g_hash_table_destroy(probes);
1138         if (pd_name)
1139                 g_free(pd_name);
1140
1141         return ret;
1142 }
1143
1144 int setup_pd_stack(void)
1145 {
1146         struct srd_decoder_inst *di_from, *di_to;
1147         int ret, i;
1148         char **pds, **ids;
1149
1150         /* Set up the protocol decoder stack. */
1151         pds = g_strsplit(opt_pds, ",", 0);
1152         if (g_strv_length(pds) > 1) {
1153                 if (opt_pd_stack) {
1154                         /* A stack setup was specified, use that. */
1155                         g_strfreev(pds);
1156                         pds = g_strsplit(opt_pd_stack, ",", 0);
1157                         if (g_strv_length(pds) < 2) {
1158                                 g_strfreev(pds);
1159                                 g_critical("Specify at least two protocol decoders to stack.");
1160                                 return 1;
1161                         }
1162                 }
1163
1164                 /* First PD goes at the bottom of the stack. */
1165                 ids = g_strsplit(pds[0], ":", 0);
1166                 if (!(di_from = srd_inst_find_by_id(srd_sess, ids[0]))) {
1167                         g_strfreev(ids);
1168                         g_critical("Cannot stack protocol decoder '%s': "
1169                                         "instance not found.", pds[0]);
1170                         return 1;
1171                 }
1172                 g_strfreev(ids);
1173
1174                 /* Every subsequent PD goes on top. */
1175                 for (i = 1; pds[i]; i++) {
1176                         ids = g_strsplit(pds[i], ":", 0);
1177                         if (!(di_to = srd_inst_find_by_id(srd_sess, ids[0]))) {
1178                                 g_strfreev(ids);
1179                                 g_critical("Cannot stack protocol decoder '%s': "
1180                                                 "instance not found.", pds[i]);
1181                                 return 1;
1182                         }
1183                         g_strfreev(ids);
1184                         if ((ret = srd_inst_stack(srd_sess, di_from, di_to)) != SRD_OK)
1185                                 return 1;
1186
1187                         /* Don't show annotation from this PD. Only the last PD in
1188                          * the stack will be left on the annotation list (unless
1189                          * the annotation list was specifically provided).
1190                          */
1191                         if (!opt_pd_annotations)
1192                                 g_hash_table_remove(pd_ann_visible,
1193                                                     di_from->inst_id);
1194
1195                         di_from = di_to;
1196                 }
1197         }
1198         g_strfreev(pds);
1199
1200         return 0;
1201 }
1202
1203 int setup_pd_annotations(void)
1204 {
1205         GSList *l;
1206         struct srd_decoder *dec;
1207         int ann;
1208         char **pds, **pdtok, **keyval, **ann_descr;
1209
1210         /* Set up custom list of PDs and annotations to show. */
1211         if (opt_pd_annotations) {
1212                 pds = g_strsplit(opt_pd_annotations, ",", 0);
1213                 for (pdtok = pds; *pdtok && **pdtok; pdtok++) {
1214                         ann = 0;
1215                         keyval = g_strsplit(*pdtok, "=", 0);
1216                         if (!(dec = srd_decoder_get_by_id(keyval[0]))) {
1217                                 g_critical("Protocol decoder '%s' not found.", keyval[0]);
1218                                 return 1;
1219                         }
1220                         if (!dec->annotations) {
1221                                 g_critical("Protocol decoder '%s' has no annotations.", keyval[0]);
1222                                 return 1;
1223                         }
1224                         if (g_strv_length(keyval) == 2) {
1225                                 for (l = dec->annotations; l; l = l->next, ann++) {
1226                                         ann_descr = l->data;
1227                                         if (!canon_cmp(ann_descr[0], keyval[1]))
1228                                                 /* Found it. */
1229                                                 break;
1230                                 }
1231                                 if (!l) {
1232                                         g_critical("Annotation '%s' not found "
1233                                                         "for protocol decoder '%s'.", keyval[1], keyval[0]);
1234                                         return 1;
1235                                 }
1236                         }
1237                         g_debug("cli: showing protocol decoder annotation %d from '%s'", ann, keyval[0]);
1238                         g_hash_table_insert(pd_ann_visible, g_strdup(keyval[0]), GINT_TO_POINTER(ann));
1239                         g_strfreev(keyval);
1240                 }
1241                 g_strfreev(pds);
1242         }
1243
1244         return 0;
1245 }
1246
1247 void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data)
1248 {
1249         int i;
1250         char **annotations;
1251         gpointer ann_format;
1252
1253         /* 'cb_data' is not used in this specific callback. */
1254         (void)cb_data;
1255
1256         if (!pd_ann_visible)
1257                 return;
1258
1259         if (!g_hash_table_lookup_extended(pd_ann_visible, pdata->pdo->di->inst_id,
1260                         NULL, &ann_format))
1261                 /* Not in the list of PDs whose annotations we're showing. */
1262                 return;
1263
1264         if (pdata->ann_format != GPOINTER_TO_INT(ann_format))
1265                 /* We don't want this particular format from the PD. */
1266                 return;
1267
1268         annotations = pdata->data;
1269         if (opt_loglevel > SR_LOG_WARN)
1270                 printf("%"PRIu64"-%"PRIu64" ", pdata->start_sample, pdata->end_sample);
1271         printf("%s: ", pdata->pdo->proto_id);
1272         for (i = 0; annotations[i]; i++)
1273                 printf("\"%s\" ", annotations[i]);
1274         printf("\n");
1275         fflush(stdout);
1276 }
1277 #endif
1278
1279 int setup_output_format(void)
1280 {
1281         GHashTable *fmtargs;
1282         GHashTableIter iter;
1283         gpointer key, value;
1284         struct sr_output_format **outputs;
1285         int i;
1286         char *fmtspec;
1287
1288         if (opt_output_format && !strcmp(opt_output_format, "sigrok")) {
1289                 /* Doesn't really exist as an output module - this is
1290                  * the session save mode. */
1291                 g_free(opt_output_format);
1292                 opt_output_format = NULL;
1293         }
1294
1295         if (!opt_output_format) {
1296                 opt_output_format = DEFAULT_OUTPUT_FORMAT;
1297                 /* we'll need to remember this so when saving to a file
1298                  * later, sigrok session format will be used.
1299                  */
1300                 default_output_format = TRUE;
1301         }
1302
1303         fmtargs = parse_generic_arg(opt_output_format, TRUE);
1304         fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
1305         if (!fmtspec) {
1306                 g_critical("Invalid output format.");
1307                 return 1;
1308         }
1309         outputs = sr_output_list();
1310         for (i = 0; outputs[i]; i++) {
1311                 if (strcmp(outputs[i]->id, fmtspec))
1312                         continue;
1313                 g_hash_table_remove(fmtargs, "sigrok_key");
1314                 output_format = outputs[i];
1315                 g_hash_table_iter_init(&iter, fmtargs);
1316                 while (g_hash_table_iter_next(&iter, &key, &value)) {
1317                         /* only supporting one parameter per output module
1318                          * for now, and only its value */
1319                         output_format_param = g_strdup(value);
1320                         break;
1321                 }
1322                 break;
1323         }
1324         if (!output_format) {
1325                 g_critical("Invalid output format %s.", opt_output_format);
1326                 return 1;
1327         }
1328         g_hash_table_destroy(fmtargs);
1329
1330         return 0;
1331 }
1332
1333 static int select_probes(struct sr_dev_inst *sdi)
1334 {
1335         struct sr_probe *probe;
1336         GSList *selected_probes, *l;
1337
1338         if (!opt_probes)
1339                 return SR_OK;
1340
1341         if (!(selected_probes = parse_probestring(sdi, opt_probes)))
1342                 return SR_ERR;
1343
1344         for (l = sdi->probes; l; l = l->next) {
1345                 probe = l->data;
1346                 if (g_slist_find(selected_probes, probe))
1347                         probe->enabled = TRUE;
1348                 else
1349                         probe->enabled = FALSE;
1350         }
1351         g_slist_free(selected_probes);
1352
1353         return SR_OK;
1354 }
1355
1356 /**
1357  * Return the input file format which the CLI tool should use.
1358  *
1359  * If the user specified -I / --input-format, use that one. Otherwise, try to
1360  * autodetect the format as good as possible. Failing that, return NULL.
1361  *
1362  * @param filename The filename of the input file. Must not be NULL.
1363  * @param opt The -I / --input-file option the user specified (or NULL).
1364  *
1365  * @return A pointer to the 'struct sr_input_format' that should be used,
1366  *         or NULL if no input format was selected or auto-detected.
1367  */
1368 static struct sr_input_format *determine_input_file_format(
1369                         const char *filename, const char *opt)
1370 {
1371         int i;
1372         struct sr_input_format **inputs;
1373
1374         /* If there are no input formats, return NULL right away. */
1375         inputs = sr_input_list();
1376         if (!inputs) {
1377                 g_critical("No supported input formats available.");
1378                 return NULL;
1379         }
1380
1381         /* If the user specified -I / --input-format, use that one. */
1382         if (opt) {
1383                 for (i = 0; inputs[i]; i++) {
1384                         if (strcasecmp(inputs[i]->id, opt))
1385                                 continue;
1386                         g_debug("Using user-specified input file format '%s'.",
1387                                         inputs[i]->id);
1388                         return inputs[i];
1389                 }
1390
1391                 /* The user specified an unknown input format, return NULL. */
1392                 g_critical("Error: specified input file format '%s' is "
1393                         "unknown.", opt);
1394                 return NULL;
1395         }
1396
1397         /* Otherwise, try to find an input module that can handle this file. */
1398         for (i = 0; inputs[i]; i++) {
1399                 if (inputs[i]->format_match(filename))
1400                         break;
1401         }
1402
1403         /* Return NULL if no input module wanted to touch this. */
1404         if (!inputs[i]) {
1405                 g_critical("Error: no matching input module found.");
1406                 return NULL;
1407         }
1408
1409         g_debug("cli: Autodetected '%s' input format for file '%s'.",
1410                 inputs[i]->id, filename);
1411                 
1412         return inputs[i];
1413 }
1414
1415 static void load_input_file_format(void)
1416 {
1417         GHashTable *fmtargs = NULL;
1418         struct stat st;
1419         struct sr_input *in;
1420         struct sr_input_format *input_format;
1421         char *fmtspec = NULL;
1422
1423         if (opt_input_format) {
1424                 fmtargs = parse_generic_arg(opt_input_format, TRUE);
1425                 fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
1426         }
1427
1428         if (!(input_format = determine_input_file_format(opt_input_file,
1429                                                    fmtspec))) {
1430                 /* The exact cause was already logged. */
1431                 return;
1432         }
1433
1434         if (fmtargs)
1435                 g_hash_table_remove(fmtargs, "sigrok_key");
1436
1437         if (stat(opt_input_file, &st) == -1) {
1438                 g_critical("Failed to load %s: %s", opt_input_file,
1439                         strerror(errno));
1440                 exit(1);
1441         }
1442
1443         /* Initialize the input module. */
1444         if (!(in = g_try_malloc(sizeof(struct sr_input)))) {
1445                 g_critical("Failed to allocate input module.");
1446                 exit(1);
1447         }
1448         in->format = input_format;
1449         in->param = fmtargs;
1450         if (in->format->init) {
1451                 if (in->format->init(in, opt_input_file) != SR_OK) {
1452                         g_critical("Input format init failed.");
1453                         exit(1);
1454                 }
1455         }
1456
1457         if (select_probes(in->sdi) > 0)
1458                 return;
1459
1460         sr_session_new();
1461         sr_session_datafeed_callback_add(datafeed_in, NULL);
1462         if (sr_session_dev_add(in->sdi) != SR_OK) {
1463                 g_critical("Failed to use device.");
1464                 sr_session_destroy();
1465                 return;
1466         }
1467
1468         input_format->loadfile(in, opt_input_file);
1469
1470         sr_session_destroy();
1471
1472         if (fmtargs)
1473                 g_hash_table_destroy(fmtargs);
1474 }
1475
1476 static void load_input_file(void)
1477 {
1478
1479         if (sr_session_load(opt_input_file) == SR_OK) {
1480                 /* sigrok session file */
1481                 sr_session_datafeed_callback_add(datafeed_in, NULL);
1482                 sr_session_start();
1483                 sr_session_run();
1484                 sr_session_stop();
1485         }
1486         else {
1487                 /* fall back on input modules */
1488                 load_input_file_format();
1489         }
1490 }
1491
1492 static int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args)
1493 {
1494         const struct sr_config_info *srci;
1495         GHashTableIter iter;
1496         gpointer key, value;
1497         int ret;
1498         double tmp_double;
1499         uint64_t tmp_u64, p, q, low, high;
1500         gboolean tmp_bool;
1501         GVariant *val, *rational[2], *range[2];
1502
1503         g_hash_table_iter_init(&iter, args);
1504         while (g_hash_table_iter_next(&iter, &key, &value)) {
1505                 if (!(srci = sr_config_info_name_get(key))) {
1506                         g_critical("Unknown device option '%s'.", (char *) key);
1507                         return SR_ERR;
1508                 }
1509
1510                 if ((value == NULL) &&
1511                         (srci->datatype != SR_T_BOOL)) {
1512                         g_critical("Option '%s' needs a value.", (char *)key);
1513                         return SR_ERR;
1514                 }
1515                 val = NULL;
1516                 switch (srci->datatype) {
1517                 case SR_T_UINT64:
1518                         ret = sr_parse_sizestring(value, &tmp_u64);
1519                         if (ret != SR_OK)
1520                                 break;
1521                         val = g_variant_new_uint64(tmp_u64);
1522                         break;
1523                 case SR_T_CHAR:
1524                         val = g_variant_new_string(value);
1525                         break;
1526                 case SR_T_BOOL:
1527                         if (!value)
1528                                 tmp_bool = TRUE;
1529                         else
1530                                 tmp_bool = sr_parse_boolstring(value);
1531                         val = g_variant_new_boolean(tmp_bool);
1532                         break;
1533                 case SR_T_FLOAT:
1534                         tmp_double = strtof(value, NULL);
1535                         val = g_variant_new_double(tmp_double);
1536                         break;
1537                 case SR_T_RATIONAL_PERIOD:
1538                         if ((ret = sr_parse_period(value, &p, &q)) != SR_OK)
1539                                 break;
1540                         rational[0] = g_variant_new_uint64(p);
1541                         rational[1] = g_variant_new_uint64(q);
1542                         val = g_variant_new_tuple(rational, 2);
1543                         break;
1544                 case SR_T_RATIONAL_VOLT:
1545                         if ((ret = sr_parse_voltage(value, &p, &q)) != SR_OK)
1546                                 break;
1547                         rational[0] = g_variant_new_uint64(p);
1548                         rational[1] = g_variant_new_uint64(q);
1549                         val = g_variant_new_tuple(rational, 2);
1550                         break;
1551                 case SR_T_UINT64_RANGE:
1552                         if (sscanf(value, "%"PRIu64"-%"PRIu64, &low, &high) != 2) {
1553                                 ret = SR_ERR;
1554                                 break;
1555                         } else {
1556                                 range[0] = g_variant_new_uint64(low);
1557                                 range[1] = g_variant_new_uint64(high);
1558                                 val = g_variant_new_tuple(range, 2);
1559                         }
1560                         break;
1561                 default:
1562                         ret = SR_ERR;
1563                 }
1564                 if (val)
1565                         ret = sr_config_set(sdi, srci->key, val);
1566                 if (ret != SR_OK) {
1567                         g_critical("Failed to set device option '%s'.", (char *)key);
1568                         return ret;
1569                 }
1570         }
1571
1572         return SR_OK;
1573 }
1574
1575 static void set_options(void)
1576 {
1577         struct sr_dev_inst *sdi;
1578         GSList *devices;
1579         GHashTable *devargs;
1580
1581         if (!opt_config) {
1582                 g_critical("No setting specified.");
1583                 return;
1584         }
1585
1586         if (!(devargs = parse_generic_arg(opt_config, FALSE)))
1587                 return;
1588
1589         if (!(devices = device_scan())) {
1590                 g_critical("No devices found.");
1591                 return;
1592         }
1593         sdi = devices->data;
1594
1595         if (sr_dev_open(sdi) != SR_OK) {
1596                 g_critical("Failed to open device.");
1597                 return;
1598         }
1599
1600         set_dev_options(sdi, devargs);
1601
1602         sr_dev_close(sdi);
1603         g_slist_free(devices);
1604         g_hash_table_destroy(devargs);
1605
1606 }
1607
1608 static int set_limit_time(const struct sr_dev_inst *sdi)
1609 {
1610         GVariant *gvar;
1611         uint64_t time_msec;
1612         uint64_t samplerate;
1613
1614         if (!(time_msec = sr_parse_timestring(opt_time))) {
1615                 g_critical("Invalid time '%s'", opt_time);
1616                 return SR_ERR;
1617         }
1618
1619         if (sr_dev_has_option(sdi, SR_CONF_LIMIT_MSEC)) {
1620                 gvar = g_variant_new_uint64(time_msec);
1621                 if (sr_config_set(sdi, SR_CONF_LIMIT_MSEC, gvar) != SR_OK) {
1622                         g_critical("Failed to configure time limit.");
1623                         return SR_ERR;
1624                 }
1625         } else if (sr_dev_has_option(sdi, SR_CONF_SAMPLERATE)) {
1626                 /* Convert to samples based on the samplerate.  */
1627                 sr_config_get(sdi->driver, SR_CONF_SAMPLERATE, &gvar, sdi);
1628                 samplerate = g_variant_get_uint64(gvar);
1629                 g_variant_unref(gvar);
1630                 limit_samples = (samplerate) * time_msec / (uint64_t)1000;
1631                 if (limit_samples == 0) {
1632                         g_critical("Not enough time at this samplerate.");
1633                         return SR_ERR;
1634                 }
1635                 gvar = g_variant_new_uint64(limit_samples);
1636                 if (sr_config_set(sdi, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
1637                         g_critical("Failed to configure time-based sample limit.");
1638                         return SR_ERR;
1639                 }
1640         } else {
1641                 g_critical("This device does not support time limits.");
1642                 return SR_ERR;
1643         }
1644
1645         return SR_OK;
1646 }
1647
1648 static void run_session(void)
1649 {
1650         GSList *devices;
1651         GHashTable *devargs;
1652         GVariant *gvar;
1653         struct sr_dev_inst *sdi;
1654         int max_probes, i;
1655         char **triggerlist;
1656
1657         devices = device_scan();
1658         if (!devices) {
1659                 g_critical("No devices found.");
1660                 return;
1661         }
1662         if (g_slist_length(devices) > 1) {
1663                 g_critical("sigrok-cli only supports one device for capturing.");
1664                 return;
1665         }
1666         sdi = devices->data;
1667
1668         sr_session_new();
1669         sr_session_datafeed_callback_add(datafeed_in, NULL);
1670
1671         if (sr_dev_open(sdi) != SR_OK) {
1672                 g_critical("Failed to open device.");
1673                 return;
1674         }
1675
1676         if (sr_session_dev_add(sdi) != SR_OK) {
1677                 g_critical("Failed to add device to session.");
1678                 sr_session_destroy();
1679                 return;
1680         }
1681
1682         if (opt_config) {
1683                 if ((devargs = parse_generic_arg(opt_config, FALSE))) {
1684                         if (set_dev_options(sdi, devargs) != SR_OK)
1685                                 return;
1686                         g_hash_table_destroy(devargs);
1687                 }
1688         }
1689
1690         if (select_probes(sdi) != SR_OK) {
1691                 g_critical("Failed to set probes.");
1692                 sr_session_destroy();
1693                 return;
1694         }
1695
1696         if (opt_triggers) {
1697                 if (!(triggerlist = sr_parse_triggerstring(sdi, opt_triggers))) {
1698                         sr_session_destroy();
1699                         return;
1700                 }
1701                 max_probes = g_slist_length(sdi->probes);
1702                 for (i = 0; i < max_probes; i++) {
1703                         if (triggerlist[i]) {
1704                                 sr_dev_trigger_set(sdi, i, triggerlist[i]);
1705                                 g_free(triggerlist[i]);
1706                         }
1707                 }
1708                 g_free(triggerlist);
1709         }
1710
1711         if (opt_continuous) {
1712                 if (!sr_dev_has_option(sdi, SR_CONF_CONTINUOUS)) {
1713                         g_critical("This device does not support continuous sampling.");
1714                         sr_session_destroy();
1715                         return;
1716                 }
1717         }
1718
1719         if (opt_time) {
1720                 if (set_limit_time(sdi) != SR_OK) {
1721                         sr_session_destroy();
1722                         return;
1723                 }
1724         }
1725
1726         if (opt_samples) {
1727                 if ((sr_parse_sizestring(opt_samples, &limit_samples) != SR_OK)) {
1728                         g_critical("Invalid sample limit '%s'.", opt_samples);
1729                         sr_session_destroy();
1730                         return;
1731                 }
1732                 gvar = g_variant_new_uint64(limit_samples);
1733                 if (sr_config_set(sdi, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
1734                         g_critical("Failed to configure sample limit.");
1735                         sr_session_destroy();
1736                         return;
1737                 }
1738         }
1739
1740         if (opt_frames) {
1741                 if ((sr_parse_sizestring(opt_frames, &limit_frames) != SR_OK)) {
1742                         g_critical("Invalid sample limit '%s'.", opt_samples);
1743                         sr_session_destroy();
1744                         return;
1745                 }
1746                 gvar = g_variant_new_uint64(limit_frames);
1747                 if (sr_config_set(sdi, SR_CONF_LIMIT_FRAMES, gvar) != SR_OK) {
1748                         g_critical("Failed to configure frame limit.");
1749                         sr_session_destroy();
1750                         return;
1751                 }
1752         }
1753
1754         if (sr_session_start() != SR_OK) {
1755                 g_critical("Failed to start session.");
1756                 sr_session_destroy();
1757                 return;
1758         }
1759
1760         if (opt_continuous)
1761                 add_anykey();
1762
1763         sr_session_run();
1764
1765         if (opt_continuous)
1766                 clear_anykey();
1767
1768         sr_session_datafeed_callback_remove_all();
1769         sr_session_destroy();
1770         g_slist_free(devices);
1771
1772 }
1773
1774 static void logger(const gchar *log_domain, GLogLevelFlags log_level,
1775                    const gchar *message, gpointer cb_data)
1776 {
1777         (void)log_domain;
1778         (void)cb_data;
1779
1780         /*
1781          * All messages, warnings, errors etc. go to stderr (not stdout) in
1782          * order to not mess up the CLI tool data output, e.g. VCD output.
1783          */
1784         if (log_level & (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING)
1785                         || opt_loglevel > SR_LOG_WARN) {
1786                 fprintf(stderr, "%s\n", message);
1787                 fflush(stderr);
1788         }
1789
1790         if (log_level & (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL))
1791                 exit(1);
1792
1793 }
1794
1795 int main(int argc, char **argv)
1796 {
1797         GOptionContext *context;
1798         GError *error;
1799         int ret;
1800         char *help;
1801
1802         g_log_set_default_handler(logger, NULL);
1803
1804         context = g_option_context_new(NULL);
1805         g_option_context_add_main_entries(context, optargs, NULL);
1806
1807         ret = 1;
1808         error = NULL;
1809         if (!g_option_context_parse(context, &argc, &argv, &error)) {
1810                 g_critical("%s", error->message);
1811                 goto done;
1812         }
1813
1814         /* Set the loglevel (amount of messages to output) for libsigrok. */
1815         if (sr_log_loglevel_set(opt_loglevel) != SR_OK)
1816                 goto done;
1817
1818         if (sr_init(&sr_ctx) != SR_OK)
1819                 goto done;
1820
1821 #ifdef HAVE_SRD
1822         /* Set the loglevel (amount of messages to output) for libsigrokdecode. */
1823         if (srd_log_loglevel_set(opt_loglevel) != SRD_OK)
1824                 goto done;
1825
1826         if (opt_pds) {
1827                 if (srd_init(NULL) != SRD_OK)
1828                         goto done;
1829                 if (srd_session_new(&srd_sess) != SRD_OK) {
1830                         g_critical("Failed to create new decode session.");
1831                         goto done;
1832                 }
1833                 if (register_pds(NULL, opt_pds) != 0)
1834                         goto done;
1835                 if (srd_pd_output_callback_add(srd_sess, SRD_OUTPUT_ANN,
1836                                 show_pd_annotations, NULL) != SRD_OK)
1837                         goto done;
1838                 if (setup_pd_stack() != 0)
1839                         goto done;
1840                 if (setup_pd_annotations() != 0)
1841                         goto done;
1842         }
1843 #endif
1844
1845         if (setup_output_format() != 0)
1846                 goto done;
1847
1848         if (opt_version)
1849                 show_version();
1850         else if (opt_scan_devs)
1851                 show_dev_list();
1852 #ifdef HAVE_SRD
1853         else if (opt_pds && opt_show)
1854                 show_pd_detail();
1855 #endif
1856         else if (opt_show)
1857                 show_dev_detail();
1858         else if (opt_input_file)
1859                 load_input_file();
1860         else if (opt_set)
1861                 set_options();
1862         else if (opt_samples || opt_time || opt_frames || opt_continuous)
1863                 run_session();
1864         else {
1865                 help = g_option_context_get_help(context, TRUE, NULL);
1866                 printf("%s", help);
1867                 g_free(help);
1868         }
1869
1870 #ifdef HAVE_SRD
1871         if (opt_pds)
1872                 srd_exit();
1873 #endif
1874
1875         ret = 0;
1876
1877 done:
1878         if (sr_ctx)
1879                 sr_exit(sr_ctx);
1880
1881         g_option_context_free(context);
1882
1883         return ret;
1884 }