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