]> sigrok.org Git - sigrok-cli.git/blame - sigrok-cli.c
Use sr_config_get().
[sigrok-cli.git] / sigrok-cli.c
CommitLineData
43e5747a
UH
1/*
2 * This file is part of the sigrok project.
3 *
110aa72a 4 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
43e5747a
UH
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 <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
21#include <stdio.h>
22#include <stdlib.h>
23#include <unistd.h>
24#include <string.h>
25#include <time.h>
26#include <sys/time.h>
27#include <inttypes.h>
28#include <sys/types.h>
29#include <sys/stat.h>
30#include <errno.h>
31#include <glib.h>
32#include <glib/gstdio.h>
60ea8937 33#include <libsigrok/libsigrok.h>
43e5747a
UH
34#include "sigrok-cli.h"
35#include "config.h"
36
37#define DEFAULT_OUTPUT_FORMAT "bits:width=64"
38
e2fe62cc
PS
39static struct sr_context *sr_ctx = NULL;
40
1999ae06 41static uint64_t limit_samples = 0;
ce48d892 42static uint64_t limit_frames = 0;
1999ae06
UH
43static struct sr_output_format *output_format = NULL;
44static int default_output_format = FALSE;
45static char *output_format_param = NULL;
120f9ee7 46static GHashTable *pd_ann_visible = NULL;
c27450ea 47static GByteArray *savebuf;
43e5747a
UH
48
49static gboolean opt_version = FALSE;
50static gint opt_loglevel = SR_LOG_WARN; /* Show errors+warnings per default. */
1e0f9ed9 51static gboolean opt_list_devs = FALSE;
43e5747a
UH
52static gboolean opt_wait_trigger = FALSE;
53static gchar *opt_input_file = NULL;
54static gchar *opt_output_file = NULL;
9e2e414f 55static gchar *opt_drv = NULL;
1e0f9ed9 56static gchar *opt_dev = NULL;
43e5747a
UH
57static gchar *opt_probes = NULL;
58static gchar *opt_triggers = NULL;
59static gchar *opt_pds = NULL;
9f4a898e 60static gchar *opt_pd_stack = NULL;
b6bd032d 61static gchar *opt_pd_annotations = NULL;
43e5747a 62static gchar *opt_input_format = NULL;
76ae913d 63static gchar *opt_output_format = NULL;
22981b2c 64static gchar *opt_show = NULL;
43e5747a
UH
65static gchar *opt_time = NULL;
66static gchar *opt_samples = NULL;
ce48d892 67static gchar *opt_frames = NULL;
43e5747a
UH
68static gchar *opt_continuous = NULL;
69
70static GOptionEntry optargs[] = {
03996962
BV
71 {"version", 'V', 0, G_OPTION_ARG_NONE, &opt_version,
72 "Show version and support list", NULL},
73 {"loglevel", 'l', 0, G_OPTION_ARG_INT, &opt_loglevel,
b64d15a3 74 "Set libsigrok/libsigrokdecode loglevel", NULL},
03996962
BV
75 {"list-devices", 'D', 0, G_OPTION_ARG_NONE, &opt_list_devs,
76 "Scan for devices", NULL},
9e2e414f
BV
77 {"driver", 0, 0, G_OPTION_ARG_STRING, &opt_drv,
78 "Use only this driver", NULL},
03996962
BV
79 {"device", 'd', 0, G_OPTION_ARG_STRING, &opt_dev,
80 "Use specified device", NULL},
81 {"input-file", 'i', 0, G_OPTION_ARG_FILENAME, &opt_input_file,
82 "Load input from file", NULL},
83 {"input-format", 'I', 0, G_OPTION_ARG_STRING, &opt_input_format,
84 "Input format", NULL},
85 {"output-file", 'o', 0, G_OPTION_ARG_FILENAME, &opt_output_file,
86 "Save output to file", NULL},
87 {"output-format", 'O', 0, G_OPTION_ARG_STRING, &opt_output_format,
88 "Output format", NULL},
89 {"probes", 'p', 0, G_OPTION_ARG_STRING, &opt_probes,
90 "Probes to use", NULL},
91 {"triggers", 't', 0, G_OPTION_ARG_STRING, &opt_triggers,
92 "Trigger configuration", NULL},
93 {"wait-trigger", 'w', 0, G_OPTION_ARG_NONE, &opt_wait_trigger,
94 "Wait for trigger", NULL},
95 {"protocol-decoders", 'a', 0, G_OPTION_ARG_STRING, &opt_pds,
96 "Protocol decoders to run", NULL},
97 {"protocol-decoder-stack", 's', 0, G_OPTION_ARG_STRING, &opt_pd_stack,
98 "Protocol decoder stack", NULL},
b6bd032d
UH
99 {"protocol-decoder-annotations", 'A', 0, G_OPTION_ARG_STRING, &opt_pd_annotations,
100 "Protocol decoder annotation(s) to show", NULL},
22981b2c
BV
101 {"show", 0, 0, G_OPTION_ARG_NONE, &opt_show,
102 "Show device detail", NULL},
03996962
BV
103 {"time", 0, 0, G_OPTION_ARG_STRING, &opt_time,
104 "How long to sample (ms)", NULL},
105 {"samples", 0, 0, G_OPTION_ARG_STRING, &opt_samples,
106 "Number of samples to acquire", NULL},
ce48d892
BV
107 {"frames", 0, 0, G_OPTION_ARG_STRING, &opt_frames,
108 "Number of frames to acquire", NULL},
03996962
BV
109 {"continuous", 0, 0, G_OPTION_ARG_NONE, &opt_continuous,
110 "Sample continuously", NULL},
43e5747a
UH
111 {NULL, 0, 0, 0, NULL, NULL, NULL}
112};
113
9e2e414f 114
995713f4 115/* Convert driver options hash to GSList of struct sr_config. */
9e2e414f
BV
116static GSList *hash_to_hwopt(GHashTable *hash)
117{
995713f4
BV
118 const struct sr_config_info *srci;
119 struct sr_config *src;
9e2e414f
BV
120 GList *gl, *keys;
121 GSList *opts;
122 char *key, *value;
123
124 keys = g_hash_table_get_keys(hash);
125 opts = NULL;
126 for (gl = keys; gl; gl = gl->next) {
127 key = gl->data;
74b9bf0c 128 if (!(srci = sr_config_info_name_get(key))) {
9e2e414f
BV
129 g_critical("Unknown option %s", key);
130 return NULL;
131 }
995713f4
BV
132 src = g_try_malloc(sizeof(struct sr_config));
133 src->key = srci->key;
cfd3ec6e 134 value = g_hash_table_lookup(hash, key);
995713f4
BV
135 src->value = g_strdup(value);
136 opts = g_slist_append(opts, src);
9e2e414f
BV
137 }
138 g_list_free(keys);
139
140 return opts;
141}
142
995713f4 143static void free_drvopts(struct sr_config *src)
a2853311 144{
995713f4
BV
145 g_free((void *)src->value);
146 g_free(src);
a2853311
AG
147}
148
9e2e414f
BV
149static GSList *device_scan(void)
150{
151 struct sr_dev_driver **drivers, *driver;
152 GHashTable *drvargs;
153 GSList *drvopts, *devices, *tmpdevs, *l;
154 int i;
155 char *drvname;
156
157 if (opt_drv) {
158 drvargs = parse_generic_arg(opt_drv, TRUE);
159 drvname = g_strdup(g_hash_table_lookup(drvargs, "sigrok_key"));
160 g_hash_table_remove(drvargs, "sigrok_key");
161 driver = NULL;
162 drivers = sr_driver_list();
163 for (i = 0; drivers[i]; i++) {
164 if (strcmp(drivers[i]->name, drvname))
165 continue;
166 driver = drivers[i];
167 }
168 if (!driver) {
169 g_critical("Driver %s not found.", drvname);
170 return NULL;
171 }
172 g_free(drvname);
e2fe62cc 173 if (sr_driver_init(sr_ctx, driver) != SR_OK) {
9e2e414f
BV
174 g_critical("Failed to initialize driver.");
175 return NULL;
176 }
177 drvopts = NULL;
178 if (g_hash_table_size(drvargs) > 0)
179 if (!(drvopts = hash_to_hwopt(drvargs)))
180 /* Unknown options, already logged. */
181 return NULL;
182 devices = sr_driver_scan(driver, drvopts);
995713f4 183 g_slist_free_full(drvopts, (GDestroyNotify)free_drvopts);
9e2e414f
BV
184 } else {
185 /* No driver specified, let them all scan on their own. */
186 devices = NULL;
187 drivers = sr_driver_list();
188 for (i = 0; drivers[i]; i++) {
189 driver = drivers[i];
e2fe62cc 190 if (sr_driver_init(sr_ctx, driver) != SR_OK) {
9e2e414f
BV
191 g_critical("Failed to initialize driver.");
192 return NULL;
193 }
194 tmpdevs = sr_driver_scan(driver, NULL);
195 for (l = tmpdevs; l; l = l->next)
196 devices = g_slist_append(devices, l->data);
197 g_slist_free(tmpdevs);
198 }
199 }
200
201 return devices;
202}
203
43e5747a
UH
204static void show_version(void)
205{
6b0462c2 206 const GSList *l;
a210c4cc 207 struct sr_dev_driver **drivers;
43e5747a
UH
208 struct sr_input_format **inputs;
209 struct sr_output_format **outputs;
210 struct srd_decoder *dec;
211 int i;
212
213 printf("sigrok-cli %s\n\n", VERSION);
15d920a9 214
4d167240
UH
215 printf("Using libsigrok %s (lib version %s).\n",
216 sr_package_version_string_get(), sr_lib_version_string_get());
217 printf("Using libsigrokdecode %s (lib version %s).\n\n",
218 srd_package_version_string_get(), srd_lib_version_string_get());
219
43e5747a 220 printf("Supported hardware drivers:\n");
a214a2eb 221 drivers = sr_driver_list();
a210c4cc
UH
222 for (i = 0; drivers[i]; i++) {
223 printf(" %-20s %s\n", drivers[i]->name, drivers[i]->longname);
43e5747a
UH
224 }
225 printf("\n");
226
227 printf("Supported input formats:\n");
228 inputs = sr_input_list();
229 for (i = 0; inputs[i]; i++)
230 printf(" %-20s %s\n", inputs[i]->id, inputs[i]->description);
231 printf("\n");
232
233 printf("Supported output formats:\n");
234 outputs = sr_output_list();
235 for (i = 0; outputs[i]; i++)
236 printf(" %-20s %s\n", outputs[i]->id, outputs[i]->description);
237 printf("\n");
238
15d920a9
BV
239 if (srd_init(NULL) == SRD_OK) {
240 printf("Supported protocol decoders:\n");
1b34803d
UH
241 srd_decoder_load_all();
242 for (l = srd_decoder_list(); l; l = l->next) {
15d920a9
BV
243 dec = l->data;
244 printf(" %-20s %s\n", dec->id, dec->longname);
20622036
UH
245 /* Print protocol description upon "-l 3" or higher. */
246 if (opt_loglevel >= SR_LOG_INFO)
247 printf(" %-20s %s\n", "", dec->desc);
15d920a9
BV
248 }
249 srd_exit();
43e5747a
UH
250 }
251 printf("\n");
43e5747a
UH
252}
253
22981b2c 254static void print_dev_line(const struct sr_dev_inst *sdi)
43e5747a 255{
11b62b6f
BV
256 struct sr_probe *probe;
257 GSList *l;
43e5747a
UH
258
259 if (sdi->vendor && sdi->vendor[0])
260 printf("%s ", sdi->vendor);
261 if (sdi->model && sdi->model[0])
262 printf("%s ", sdi->model);
263 if (sdi->version && sdi->version[0])
264 printf("%s ", sdi->version);
11b62b6f
BV
265 if (sdi->probes) {
266 if (g_slist_length(sdi->probes) == 1) {
267 probe = sdi->probes->data;
4d326ca1 268 printf("with 1 probe: %s", probe->name);
11b62b6f 269 } else {
4d326ca1 270 printf("with %d probes:", g_slist_length(sdi->probes));
11b62b6f
BV
271 for (l = sdi->probes; l; l = l->next) {
272 probe = l->data;
4d326ca1 273 printf(" %s", probe->name);
11b62b6f
BV
274 }
275 }
4d326ca1
BV
276 }
277 printf("\n");
43e5747a
UH
278}
279
1e0f9ed9 280static void show_dev_list(void)
43e5747a 281{
22981b2c
BV
282 struct sr_dev_inst *sdi;
283 GSList *devices, *l;
43e5747a 284
22981b2c 285 if (!(devices = device_scan()))
43e5747a
UH
286 return;
287
22981b2c
BV
288 printf("The following devices were found:\n");
289 for (l = devices; l; l = l->next) {
290 sdi = l->data;
291 print_dev_line(sdi);
43e5747a 292 }
22981b2c
BV
293 g_slist_free(devices);
294
43e5747a
UH
295}
296
1e0f9ed9 297static void show_dev_detail(void)
43e5747a 298{
22981b2c 299 struct sr_dev_inst *sdi;
995713f4 300 const struct sr_config_info *srci;
9c9c1080 301 const struct sr_samplerates *samplerates;
c8db7172 302 struct sr_rational *rationals;
22981b2c 303 GSList *devices;
c8db7172 304 uint64_t *integers;
22981b2c
BV
305 const int *hwopts, *hwcaps;
306 int cap, num_devices, n, i;
9c9c1080
AS
307 char *s, *title;
308 const char *charopts, **stropts;
43e5747a 309
22981b2c
BV
310 if (!(devices = device_scan())) {
311 g_critical("No devices found.");
43e5747a
UH
312 return;
313 }
314
22981b2c
BV
315 num_devices = g_slist_length(devices);
316 if (num_devices > 1) {
317 if (!opt_dev) {
318 g_critical("%d devices found. Use --list-devices to show them, "
319 "and --device to select one.", num_devices);
320 return;
321 }
322 /* opt_dev is NULL if not specified, which is fine. */
323 n = strtol(opt_dev, NULL, 10);
324 if (n >= num_devices) {
325 g_critical("%d devices found, numbered starting from 0.",
326 num_devices);
327 return;
328 }
329 sdi = g_slist_nth_data(devices, n);
330 } else
331 sdi = g_slist_nth_data(devices, 0);
332
333 print_dev_line(sdi);
43e5747a 334
5cf23f52 335 if (sr_config_list(sdi->driver, SR_CONF_TRIGGER_TYPE, (const void **)&charopts,
22981b2c 336 sdi) == SR_OK && charopts) {
43e5747a
UH
337 printf("Supported triggers: ");
338 while (*charopts) {
339 printf("%c ", *charopts);
340 charopts++;
341 }
342 printf("\n");
343 }
344
894e2053 345 if ((sr_config_list(sdi->driver, SR_CONF_SCAN_OPTIONS, (const void **)&hwopts,
22981b2c
BV
346 NULL) == SR_OK) && hwopts) {
347 printf("Supported driver options:\n");
348 for (i = 0; hwopts[i]; i++) {
74b9bf0c 349 if (!(srci = sr_config_info_get(hwopts[i])))
22981b2c 350 continue;
995713f4 351 printf(" %s\n", srci->id);
22981b2c
BV
352 }
353 }
354
355 title = "Supported device options:\n";
1cf6a109 356 if ((sr_config_list(sdi->driver, SR_CONF_DEVICE_OPTIONS, (const void **)&hwcaps,
22981b2c
BV
357 NULL) != SR_OK) || !hwcaps)
358 /* Driver supports no device instance options. */
359 return;
360
edd79b3f 361 for (cap = 0; hwcaps[cap]; cap++) {
74b9bf0c 362 if (!(srci = sr_config_info_get(hwcaps[cap])))
43e5747a
UH
363 continue;
364
365 if (title) {
366 printf("%s", title);
367 title = NULL;
368 }
369
b5c63de9 370 if (srci->key == SR_CONF_PATTERN_MODE) {
c8db7172 371 /* Pattern generator modes */
995713f4 372 printf(" %s", srci->id);
958194c0 373 if (sr_config_list(sdi->driver, SR_CONF_PATTERN_MODE,
22981b2c 374 (const void **)&stropts, sdi) == SR_OK) {
0a56f4ec 375 printf(" - supported patterns:\n");
9c9c1080
AS
376 for (i = 0; stropts[i]; i++)
377 printf(" %s\n", stropts[i]);
378 } else {
43e5747a 379 printf("\n");
43e5747a 380 }
c8db7172 381
b5c63de9 382 } else if (srci->key == SR_CONF_SAMPLERATE) {
43e5747a 383 /* Supported samplerates */
995713f4 384 printf(" %s", srci->id);
d2f671dc 385 if (sr_config_list(sdi->driver, SR_CONF_SAMPLERATE,
22981b2c 386 (const void **)&samplerates, sdi) != SR_OK) {
43e5747a
UH
387 printf("\n");
388 continue;
389 }
43e5747a
UH
390 if (samplerates->step) {
391 /* low */
392 if (!(s = sr_samplerate_string(samplerates->low)))
393 continue;
394 printf(" (%s", s);
c2c4a0de 395 g_free(s);
43e5747a
UH
396 /* high */
397 if (!(s = sr_samplerate_string(samplerates->high)))
398 continue;
399 printf(" - %s", s);
c2c4a0de 400 g_free(s);
43e5747a
UH
401 /* step */
402 if (!(s = sr_samplerate_string(samplerates->step)))
403 continue;
404 printf(" in steps of %s)\n", s);
c2c4a0de 405 g_free(s);
43e5747a
UH
406 } else {
407 printf(" - supported samplerates:\n");
c8db7172 408 for (i = 0; samplerates->list[i]; i++)
9da0b05b 409 printf(" %s\n", sr_samplerate_string(samplerates->list[i]));
43e5747a 410 }
c8db7172 411
b5c63de9 412 } else if (srci->key == SR_CONF_BUFFERSIZE) {
c8db7172 413 /* Supported buffer sizes */
995713f4 414 printf(" %s", srci->id);
2777cbd2 415 if (sr_config_list(sdi->driver, SR_CONF_BUFFERSIZE,
22981b2c 416 (const void **)&integers, sdi) != SR_OK) {
c8db7172
BV
417 printf("\n");
418 continue;
419 }
420 printf(" - supported buffer sizes:\n");
421 for (i = 0; integers[i]; i++)
422 printf(" %"PRIu64"\n", integers[i]);
423
b5c63de9 424 } else if (srci->key == SR_CONF_TIMEBASE) {
c8db7172 425 /* Supported time bases */
995713f4 426 printf(" %s", srci->id);
2bedb9bf 427 if (sr_config_list(sdi->driver, SR_CONF_TIMEBASE,
22981b2c 428 (const void **)&rationals, sdi) != SR_OK) {
c8db7172
BV
429 printf("\n");
430 continue;
431 }
432 printf(" - supported time bases:\n");
433 for (i = 0; rationals[i].p && rationals[i].q; i++)
434 printf(" %s\n", sr_period_string(
435 rationals[i].p * rationals[i].q));
436
b5c63de9 437 } else if (srci->key == SR_CONF_TRIGGER_SOURCE) {
c8db7172 438 /* Supported trigger sources */
995713f4 439 printf(" %s", srci->id);
d3d7e30a 440 if (sr_config_list(sdi->driver, SR_CONF_TRIGGER_SOURCE,
22981b2c 441 (const void **)&stropts, sdi) != SR_OK) {
c8db7172
BV
442 printf("\n");
443 continue;
444 }
445 printf(" - supported trigger sources:\n");
446 for (i = 0; stropts[i]; i++)
447 printf(" %s\n", stropts[i]);
448
b5c63de9 449 } else if (srci->key == SR_CONF_FILTER) {
e54290bd 450 /* Supported filters */
995713f4 451 printf(" %s", srci->id);
b4bd48e9 452 if (sr_config_list(sdi->driver, SR_CONF_FILTER,
22981b2c 453 (const void **)&stropts, sdi) != SR_OK) {
2850fca1
BV
454 printf("\n");
455 continue;
456 }
457 printf(" - supported filter targets:\n");
458 for (i = 0; stropts[i]; i++)
459 printf(" %s\n", stropts[i]);
460
b5c63de9 461 } else if (srci->key == SR_CONF_VDIV) {
8f3b8464 462 /* Supported volts/div values */
995713f4 463 printf(" %s", srci->id);
9b0b39f6 464 if (sr_config_list(sdi->driver, SR_CONF_VDIV,
22981b2c 465 (const void **)&rationals, sdi) != SR_OK) {
8f3b8464
BV
466 printf("\n");
467 continue;
468 }
469 printf(" - supported volts/div:\n");
470 for (i = 0; rationals[i].p && rationals[i].q; i++)
471 printf(" %s\n", sr_voltage_string( &rationals[i]));
472
b5c63de9 473 } else if (srci->key == SR_CONF_COUPLING) {
498f9167 474 /* Supported coupling settings */
995713f4 475 printf(" %s", srci->id);
3ea086fc 476 if (sr_config_list(sdi->driver, SR_CONF_COUPLING,
22981b2c 477 (const void **)&stropts, sdi) != SR_OK) {
498f9167
BV
478 printf("\n");
479 continue;
480 }
481 printf(" - supported coupling options:\n");
482 for (i = 0; stropts[i]; i++)
483 printf(" %s\n", stropts[i]);
484
43e5747a 485 } else {
c8db7172 486 /* Everything else */
995713f4 487 printf(" %s\n", srci->id);
43e5747a
UH
488 }
489 }
22981b2c 490
43e5747a
UH
491}
492
71b1ea4e
BV
493static void show_pd_detail(void)
494{
495 GSList *l;
496 struct srd_decoder *dec;
497 char **pdtokens, **pdtok, **ann, *doc;
e9ff6974 498 struct srd_probe *p;
71b1ea4e
BV
499
500 pdtokens = g_strsplit(opt_pds, ",", -1);
501 for (pdtok = pdtokens; *pdtok; pdtok++) {
2358775c 502 if (!(dec = srd_decoder_get_by_id(*pdtok))) {
f8ccd825 503 g_critical("Protocol decoder %s not found.", *pdtok);
71b1ea4e
BV
504 return;
505 }
506 printf("ID: %s\nName: %s\nLong name: %s\nDescription: %s\n",
507 dec->id, dec->name, dec->longname, dec->desc);
508 printf("License: %s\n", dec->license);
e9ff6974 509 printf("Annotations:\n");
71b1ea4e 510 if (dec->annotations) {
71b1ea4e
BV
511 for (l = dec->annotations; l; l = l->next) {
512 ann = l->data;
513 printf("- %s\n %s\n", ann[0], ann[1]);
514 }
e9ff6974
UH
515 } else {
516 printf("None.\n");
517 }
518 /* TODO: Print supported decoder options. */
519 printf("Required probes:\n");
520 if (dec->probes) {
521 for (l = dec->probes; l; l = l->next) {
522 p = l->data;
523 printf("- %s (%s): %s\n",
524 p->name, p->id, p->desc);
525 }
526 } else {
527 printf("None.\n");
528 }
529 printf("Optional probes:\n");
530 if (dec->opt_probes) {
531 for (l = dec->opt_probes; l; l = l->next) {
532 p = l->data;
533 printf("- %s (%s): %s\n",
534 p->name, p->id, p->desc);
535 }
536 } else {
537 printf("None.\n");
71b1ea4e 538 }
4359a4da 539 if ((doc = srd_decoder_doc_get(dec))) {
e9ff6974
UH
540 printf("Documentation:\n%s\n",
541 doc[0] == '\n' ? doc + 1 : doc);
71b1ea4e
BV
542 g_free(doc);
543 }
544 }
545
546 g_strfreev(pdtokens);
71b1ea4e
BV
547}
548
c27450ea
BV
549static GArray *get_enabled_logic_probes(const struct sr_dev_inst *sdi)
550{
551 struct sr_probe *probe;
552 GArray *probes;
553 GSList *l;
554
555 probes = g_array_new(FALSE, FALSE, sizeof(int));
556 for (l = sdi->probes; l; l = l->next) {
557 probe = l->data;
558 if (probe->type != SR_PROBE_LOGIC)
559 continue;
560 if (probe->enabled != TRUE)
561 continue;
562 g_array_append_val(probes, probe->index);
563 }
564
565 return probes;
566}
567
37d5ccc1 568static void datafeed_in(const struct sr_dev_inst *sdi,
3d905bcc 569 const struct sr_datafeed_packet *packet)
43e5747a 570{
7e97afa0 571 const struct sr_datafeed_meta *meta;
c27450ea
BV
572 const struct sr_datafeed_logic *logic;
573 const struct sr_datafeed_analog *analog;
7e97afa0 574 struct sr_config *src;
43e5747a 575 static struct sr_output *o = NULL;
c27450ea 576 static GArray *logic_probelist = NULL;
43e5747a
UH
577 static uint64_t received_samples = 0;
578 static int unitsize = 0;
579 static int triggered = 0;
580 static FILE *outfile = NULL;
c27450ea
BV
581 int sample_size, ret;
582 uint64_t *samplerate, output_len, filter_out_len;
8de01efe 583 uint8_t *output_buf, *filter_out;
05e7fa2c 584 GString *out;
7e97afa0 585 GSList *l;
43e5747a
UH
586
587 /* If the first packet to come in isn't a header, don't even try. */
588 if (packet->type != SR_DF_HEADER && o == NULL)
589 return;
590
591 sample_size = -1;
592 switch (packet->type) {
593 case SR_DF_HEADER:
8170b8ea 594 g_debug("cli: Received SR_DF_HEADER");
43e5747a 595 /* Initialize the output module. */
c2c4a0de 596 if (!(o = g_try_malloc(sizeof(struct sr_output)))) {
8170b8ea 597 g_critical("Output module malloc failed.");
43e5747a
UH
598 exit(1);
599 }
600 o->format = output_format;
37d5ccc1 601 o->sdi = (struct sr_dev_inst *)sdi;
43e5747a
UH
602 o->param = output_format_param;
603 if (o->format->init) {
604 if (o->format->init(o) != SR_OK) {
8170b8ea 605 g_critical("Output format initialization failed.");
43e5747a
UH
606 exit(1);
607 }
608 }
c27450ea
BV
609
610 /* Prepare non-stdout output. */
611 outfile = stdout;
612 if (opt_output_file) {
613 if (default_output_format) {
614 /* output file is in session format, so we'll
615 * keep a copy of everything as it comes in
616 * and save from there after the session. */
617 outfile = NULL;
618 savebuf = g_byte_array_new();
619 } else {
620 /* saving to a file in whatever format was set
621 * with --format, so all we need is a filehandle */
622 outfile = g_fopen(opt_output_file, "wb");
623 }
624 }
625
626 /* Prepare for logic data. */
627 logic_probelist = get_enabled_logic_probes(sdi);
628 /* How many bytes we need to store the packed samples. */
629 unitsize = (logic_probelist->len + 7) / 8;
630
631 if (opt_pds && logic_probelist->len) {
9e0e651f 632 if (sr_config_get(sdi->driver, SR_CONF_SAMPLERATE,
c27450ea
BV
633 (const void **)&samplerate, sdi) != SR_OK) {
634 g_critical("Unable to initialize protocol "
635 "decoders: no samplerate found.");
636 break;
637 }
638 srd_session_start(logic_probelist->len, unitsize,
639 *samplerate);
640 }
43e5747a 641 break;
53993299 642
43e5747a 643 case SR_DF_END:
8170b8ea 644 g_debug("cli: Received SR_DF_END");
43e5747a 645 if (!o) {
8170b8ea 646 g_debug("cli: double end!");
43e5747a
UH
647 break;
648 }
649 if (o->format->event) {
650 o->format->event(o, SR_DF_END, &output_buf, &output_len);
d3f829a1 651 if (output_buf) {
43e5747a
UH
652 if (outfile)
653 fwrite(output_buf, 1, output_len, outfile);
c2c4a0de 654 g_free(output_buf);
43e5747a
UH
655 output_len = 0;
656 }
657 }
658 if (limit_samples && received_samples < limit_samples)
8170b8ea 659 g_warning("Device only sent %" PRIu64 " samples.",
43e5747a
UH
660 received_samples);
661 if (opt_continuous)
8170b8ea 662 g_warning("Device stopped after %" PRIu64 " samples.",
43e5747a 663 received_samples);
c27450ea 664
43e5747a
UH
665 if (outfile && outfile != stdout)
666 fclose(outfile);
05e7fa2c 667
c27450ea
BV
668 if (opt_output_file && default_output_format) {
669 if (sr_session_save(opt_output_file, sdi, savebuf->data,
670 unitsize, savebuf->len / unitsize) != SR_OK)
671 g_critical("Failed to save session.");
672 g_byte_array_free(savebuf, FALSE);
673 }
674
675 g_array_free(logic_probelist, TRUE);
05e7fa2c
BV
676 if (o->format->cleanup)
677 o->format->cleanup(o);
c2c4a0de 678 g_free(o);
43e5747a
UH
679 o = NULL;
680 break;
53993299 681
7e97afa0
BV
682 case SR_DF_META:
683 g_debug("cli: received SR_DF_META");
684 meta = packet->payload;
685 for (l = meta->config; l; l = l->next) {
686 src = l->data;
687 switch (src->key) {
b5c63de9 688 case SR_CONF_SAMPLERATE:
7e97afa0
BV
689 samplerate = (uint64_t *)src->value;
690 g_debug("cli: got samplerate %"PRIu64, *samplerate);
691 break;
692 default:
693 /* Unknown metadata is not an error. */
694 break;
695 }
696 }
697 break;
698
43e5747a 699 case SR_DF_TRIGGER:
8170b8ea 700 g_debug("cli: received SR_DF_TRIGGER");
43e5747a
UH
701 if (o->format->event)
702 o->format->event(o, SR_DF_TRIGGER, &output_buf,
703 &output_len);
704 triggered = 1;
705 break;
53993299 706
43e5747a
UH
707 case SR_DF_LOGIC:
708 logic = packet->payload;
b46c4414 709 g_message("cli: received SR_DF_LOGIC, %"PRIu64" bytes", logic->length);
53993299
BV
710 sample_size = logic->unitsize;
711 if (logic->length == 0)
712 break;
713
714 /* Don't store any samples until triggered. */
715 if (opt_wait_trigger && !triggered)
716 break;
43e5747a 717
53993299
BV
718 if (limit_samples && received_samples >= limit_samples)
719 break;
43e5747a 720
53993299 721 ret = sr_filter_probes(sample_size, unitsize, logic_probelist,
f8ccd825
BV
722 logic->data, logic->length,
723 &filter_out, &filter_out_len);
53993299
BV
724 if (ret != SR_OK)
725 break;
43e5747a 726
c27450ea 727 /* What comes out of the filter is guaranteed to be packed into the
53993299
BV
728 * minimum size needed to support the number of samples at this sample
729 * size. however, the driver may have submitted too much -- cut off
730 * the buffer of the last packet according to the sample limit.
731 */
732 if (limit_samples && (received_samples + logic->length / sample_size >
733 limit_samples * sample_size))
734 filter_out_len = limit_samples * sample_size - received_samples;
43e5747a 735
c27450ea
BV
736 if (opt_output_file && default_output_format) {
737 /* Saving to a session file. */
738 g_byte_array_append(savebuf, filter_out, filter_out_len);
53993299 739 } else {
c27450ea
BV
740 if (opt_pds) {
741 if (srd_session_send(received_samples, (uint8_t*)filter_out,
742 filter_out_len) != SRD_OK)
743 sr_session_stop();
744 } else {
745 output_len = 0;
746 if (o->format->data && packet->type == o->format->df_type)
747 o->format->data(o, filter_out, filter_out_len,
748 &output_buf, &output_len);
749 if (output_buf) {
750 fwrite(output_buf, 1, output_len, outfile);
751 fflush(outfile);
752 g_free(output_buf);
753 }
53993299
BV
754 }
755 }
53993299 756 g_free(filter_out);
43e5747a 757
c27450ea 758 received_samples += logic->length / sample_size;
53993299
BV
759 break;
760
761 case SR_DF_ANALOG:
762 analog = packet->payload;
763 g_message("cli: received SR_DF_ANALOG, %d samples", analog->num_samples);
764 if (analog->num_samples == 0)
765 break;
766
767 if (limit_samples && received_samples >= limit_samples)
768 break;
769
48f71481
BV
770 if (o->format->data && packet->type == o->format->df_type) {
771 o->format->data(o, (const uint8_t *)analog->data,
772 analog->num_samples * sizeof(float),
773 &output_buf, &output_len);
774 if (output_buf) {
775 fwrite(output_buf, 1, output_len, outfile);
e09810e9 776 fflush(outfile);
48f71481 777 g_free(output_buf);
c8db7172 778 }
53993299
BV
779 }
780
53993299 781 received_samples += analog->num_samples;
ce48d892
BV
782 break;
783
784 case SR_DF_FRAME_BEGIN:
48f71481
BV
785 g_debug("cli: received SR_DF_FRAME_BEGIN");
786 if (o->format->event) {
787 o->format->event(o, SR_DF_FRAME_BEGIN, &output_buf,
788 &output_len);
789 if (output_buf) {
790 fwrite(output_buf, 1, output_len, outfile);
e09810e9 791 fflush(outfile);
48f71481
BV
792 g_free(output_buf);
793 }
794 }
ce48d892
BV
795 break;
796
797 case SR_DF_FRAME_END:
48f71481
BV
798 g_debug("cli: received SR_DF_FRAME_END");
799 if (o->format->event) {
800 o->format->event(o, SR_DF_FRAME_END, &output_buf,
801 &output_len);
802 if (output_buf) {
803 fwrite(output_buf, 1, output_len, outfile);
e09810e9 804 fflush(outfile);
48f71481
BV
805 g_free(output_buf);
806 }
807 }
ce48d892 808 break;
53993299
BV
809
810 default:
c27450ea 811 break;
43e5747a
UH
812 }
813
05e7fa2c
BV
814 if (o && o->format->recv) {
815 out = o->format->recv(o, sdi, packet);
816 if (out && out->len) {
817 fwrite(out->str, 1, out->len, outfile);
818 fflush(outfile);
819 }
820 }
821
43e5747a
UH
822}
823
9f4a898e
BV
824/* Register the given PDs for this session.
825 * Accepts a string of the form: "spi:sck=3:sdata=4,spi:sck=3:sdata=5"
43e5747a
UH
826 * That will instantiate two SPI decoders on the clock but different data
827 * lines.
828 */
1e0f9ed9 829static int register_pds(struct sr_dev *dev, const char *pdstring)
43e5747a 830{
9720f23a 831 GHashTable *pd_opthash;
878e90d9 832 struct srd_decoder_inst *di;
445950d3 833 int ret;
a1418b73 834 char **pdtokens, **pdtok, *pd_name;
43e5747a 835
1e0f9ed9 836 (void)dev;
43e5747a 837
445950d3 838 ret = 0;
120f9ee7
BV
839 pd_ann_visible = g_hash_table_new_full(g_str_hash, g_int_equal,
840 g_free, NULL);
a1418b73 841 pd_name = NULL;
120f9ee7
BV
842 pd_opthash = NULL;
843 pdtokens = g_strsplit(pdstring, ",", 0);
43e5747a 844 for (pdtok = pdtokens; *pdtok; pdtok++) {
63bb454c 845 if (!(pd_opthash = parse_generic_arg(*pdtok, TRUE))) {
8170b8ea 846 g_critical("Invalid protocol decoder option '%s'.", *pdtok);
a1418b73 847 goto err_out;
43e5747a 848 }
a1418b73 849
9720f23a
BV
850 pd_name = g_strdup(g_hash_table_lookup(pd_opthash, "sigrok_key"));
851 g_hash_table_remove(pd_opthash, "sigrok_key");
2358775c 852 if (srd_decoder_load(pd_name) != SRD_OK) {
8170b8ea 853 g_critical("Failed to load protocol decoder %s.", pd_name);
445950d3 854 ret = 1;
15d920a9
BV
855 goto err_out;
856 }
878e90d9 857 if (!(di = srd_inst_new(pd_name, pd_opthash))) {
8170b8ea 858 g_critical("Failed to instantiate protocol decoder %s.", pd_name);
445950d3 859 ret = 1;
a1418b73 860 goto err_out;
43e5747a 861 }
120f9ee7
BV
862
863 /* If no annotation list was specified, add them all in now.
864 * This will be pared down later to leave only the last PD
865 * in the stack.
866 */
b6bd032d
UH
867 if (!opt_pd_annotations)
868 g_hash_table_insert(pd_ann_visible,
869 g_strdup(di->inst_id), NULL);
a1418b73 870
67ce0d27
BV
871 /* Any keys left in the options hash are probes, where the key
872 * is the probe name as specified in the decoder class, and the
873 * value is the probe number i.e. the order in which the PD's
874 * incoming samples are arranged. */
445950d3
BV
875 if (srd_inst_probe_set_all(di, pd_opthash) != SRD_OK) {
876 ret = 1;
67ce0d27 877 goto err_out;
445950d3 878 }
67ce0d27
BV
879 g_hash_table_destroy(pd_opthash);
880 pd_opthash = NULL;
881 }
43e5747a 882
a1418b73 883err_out:
43e5747a 884 g_strfreev(pdtokens);
9720f23a
BV
885 if (pd_opthash)
886 g_hash_table_destroy(pd_opthash);
a1418b73
BV
887 if (pd_name)
888 g_free(pd_name);
43e5747a 889
445950d3 890 return ret;
43e5747a
UH
891}
892
120f9ee7
BV
893int setup_pd_stack(void)
894{
895 struct srd_decoder_inst *di_from, *di_to;
896 int ret, i;
41e915a6 897 char **pds, **ids;
120f9ee7
BV
898
899 /* Set up the protocol decoder stack. */
900 pds = g_strsplit(opt_pds, ",", 0);
901 if (g_strv_length(pds) > 1) {
902 if (opt_pd_stack) {
903 /* A stack setup was specified, use that. */
904 g_strfreev(pds);
905 pds = g_strsplit(opt_pd_stack, ",", 0);
906 if (g_strv_length(pds) < 2) {
907 g_strfreev(pds);
908 g_critical("Specify at least two protocol decoders to stack.");
909 return 1;
910 }
911 }
912
41e915a6
BV
913 /* First PD goes at the bottom of the stack. */
914 ids = g_strsplit(pds[0], ":", 0);
915 if (!(di_from = srd_inst_find_by_id(ids[0]))) {
916 g_strfreev(ids);
120f9ee7
BV
917 g_critical("Cannot stack protocol decoder '%s': "
918 "instance not found.", pds[0]);
919 return 1;
920 }
41e915a6
BV
921 g_strfreev(ids);
922
923 /* Every subsequent PD goes on top. */
120f9ee7 924 for (i = 1; pds[i]; i++) {
41e915a6
BV
925 ids = g_strsplit(pds[i], ":", 0);
926 if (!(di_to = srd_inst_find_by_id(ids[0]))) {
927 g_strfreev(ids);
120f9ee7
BV
928 g_critical("Cannot stack protocol decoder '%s': "
929 "instance not found.", pds[i]);
930 return 1;
931 }
41e915a6 932 g_strfreev(ids);
120f9ee7
BV
933 if ((ret = srd_inst_stack(di_from, di_to)) != SRD_OK)
934 return 1;
935
936 /* Don't show annotation from this PD. Only the last PD in
937 * the stack will be left on the annotation list (unless
938 * the annotation list was specifically provided).
939 */
478a782d 940 if (!opt_pd_annotations)
b6bd032d
UH
941 g_hash_table_remove(pd_ann_visible,
942 di_from->inst_id);
120f9ee7
BV
943
944 di_from = di_to;
945 }
946 }
947 g_strfreev(pds);
948
949 return 0;
950}
951
952int setup_pd_annotations(void)
953{
954 GSList *l;
955 struct srd_decoder *dec;
956 int ann;
957 char **pds, **pdtok, **keyval, **ann_descr;
958
959 /* Set up custom list of PDs and annotations to show. */
b6bd032d
UH
960 if (opt_pd_annotations) {
961 pds = g_strsplit(opt_pd_annotations, ",", 0);
120f9ee7
BV
962 for (pdtok = pds; *pdtok && **pdtok; pdtok++) {
963 ann = 0;
964 keyval = g_strsplit(*pdtok, "=", 0);
965 if (!(dec = srd_decoder_get_by_id(keyval[0]))) {
966 g_critical("Protocol decoder '%s' not found.", keyval[0]);
967 return 1;
968 }
969 if (!dec->annotations) {
970 g_critical("Protocol decoder '%s' has no annotations.", keyval[0]);
971 return 1;
972 }
973 if (g_strv_length(keyval) == 2) {
974 for (l = dec->annotations; l; l = l->next, ann++) {
975 ann_descr = l->data;
976 if (!canon_cmp(ann_descr[0], keyval[1]))
977 /* Found it. */
978 break;
979 }
980 if (!l) {
981 g_critical("Annotation '%s' not found "
982 "for protocol decoder '%s'.", keyval[1], keyval[0]);
983 return 1;
984 }
985 }
986 g_debug("cli: showing protocol decoder annotation %d from '%s'", ann, keyval[0]);
987 g_hash_table_insert(pd_ann_visible, g_strdup(keyval[0]), GINT_TO_POINTER(ann));
988 g_strfreev(keyval);
989 }
990 g_strfreev(pds);
991 }
992
993 return 0;
994}
995
ad2bc491
BV
996int setup_output_format(void)
997{
998 GHashTable *fmtargs;
999 GHashTableIter iter;
1000 gpointer key, value;
1001 struct sr_output_format **outputs;
1002 int i;
1003 char *fmtspec;
1004
1005 if (!opt_output_format) {
1006 opt_output_format = DEFAULT_OUTPUT_FORMAT;
1007 /* we'll need to remember this so when saving to a file
1008 * later, sigrok session format will be used.
1009 */
1010 default_output_format = TRUE;
1011 }
48f71481 1012
63bb454c 1013 fmtargs = parse_generic_arg(opt_output_format, TRUE);
ad2bc491
BV
1014 fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
1015 if (!fmtspec) {
1016 g_critical("Invalid output format.");
1017 return 1;
1018 }
1019 outputs = sr_output_list();
1020 for (i = 0; outputs[i]; i++) {
1021 if (strcmp(outputs[i]->id, fmtspec))
1022 continue;
1023 g_hash_table_remove(fmtargs, "sigrok_key");
1024 output_format = outputs[i];
1025 g_hash_table_iter_init(&iter, fmtargs);
1026 while (g_hash_table_iter_next(&iter, &key, &value)) {
1027 /* only supporting one parameter per output module
1028 * for now, and only its value */
1029 output_format_param = g_strdup(value);
1030 break;
1031 }
1032 break;
1033 }
1034 if (!output_format) {
1035 g_critical("Invalid output format %s.", opt_output_format);
1036 return 1;
1037 }
1038 g_hash_table_destroy(fmtargs);
1039
1040 return 0;
1041}
1042
478a782d 1043void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data)
213c6cea
BV
1044{
1045 int i;
ca07c711 1046 char **annotations;
120f9ee7 1047 gpointer ann_format;
213c6cea 1048
68cdf174
UH
1049 /* 'cb_data' is not used in this specific callback. */
1050 (void)cb_data;
7cb9889f 1051
120f9ee7 1052 if (!pd_ann_visible)
213c6cea 1053 return;
213c6cea 1054
120f9ee7
BV
1055 if (!g_hash_table_lookup_extended(pd_ann_visible, pdata->pdo->di->inst_id,
1056 NULL, &ann_format))
9720f23a 1057 /* Not in the list of PDs whose annotations we're showing. */
9f4a898e 1058 return;
120f9ee7
BV
1059
1060 if (pdata->ann_format != GPOINTER_TO_INT(ann_format))
1061 /* We don't want this particular format from the PD. */
1062 return;
9f4a898e 1063
9720f23a 1064 annotations = pdata->data;
41bc9e4f
BV
1065 if (opt_loglevel > SR_LOG_WARN)
1066 printf("%"PRIu64"-%"PRIu64" ", pdata->start_sample, pdata->end_sample);
ca07c711
UH
1067 printf("%s: ", pdata->pdo->proto_id);
1068 for (i = 0; annotations[i]; i++)
1069 printf("\"%s\" ", annotations[i]);
213c6cea 1070 printf("\n");
5befb6d6 1071 fflush(stdout);
213c6cea
BV
1072}
1073
37d5ccc1 1074static int select_probes(struct sr_dev_inst *sdi)
43e5747a 1075{
497f5362
BV
1076 struct sr_probe *probe;
1077 GSList *selected_probes, *l;
43e5747a
UH
1078
1079 if (!opt_probes)
1080 return SR_OK;
1081
497f5362 1082 if (!(selected_probes = parse_probestring(sdi, opt_probes)))
43e5747a 1083 return SR_ERR;
43e5747a 1084
497f5362
BV
1085 for (l = sdi->probes; l; l = l->next) {
1086 probe = l->data;
1087 if (g_slist_find(selected_probes, probe))
1088 probe->enabled = TRUE;
1089 else
1090 probe->enabled = FALSE;
43e5747a 1091 }
497f5362 1092 g_slist_free(selected_probes);
43e5747a
UH
1093
1094 return SR_OK;
1095}
1096
1097/**
1098 * Return the input file format which the CLI tool should use.
1099 *
1100 * If the user specified -I / --input-format, use that one. Otherwise, try to
1101 * autodetect the format as good as possible. Failing that, return NULL.
1102 *
1103 * @param filename The filename of the input file. Must not be NULL.
1104 * @param opt The -I / --input-file option the user specified (or NULL).
1105 *
1106 * @return A pointer to the 'struct sr_input_format' that should be used,
1107 * or NULL if no input format was selected or auto-detected.
1108 */
1109static struct sr_input_format *determine_input_file_format(
1110 const char *filename, const char *opt)
1111{
1112 int i;
1113 struct sr_input_format **inputs;
1114
1115 /* If there are no input formats, return NULL right away. */
1116 inputs = sr_input_list();
1117 if (!inputs) {
8170b8ea 1118 g_critical("No supported input formats available.");
43e5747a
UH
1119 return NULL;
1120 }
1121
1122 /* If the user specified -I / --input-format, use that one. */
1123 if (opt) {
1124 for (i = 0; inputs[i]; i++) {
943d0c08 1125 if (strcasecmp(inputs[i]->id, opt))
43e5747a 1126 continue;
8170b8ea
BV
1127 g_debug("Using user-specified input file format '%s'.",
1128 inputs[i]->id);
43e5747a
UH
1129 return inputs[i];
1130 }
1131
1132 /* The user specified an unknown input format, return NULL. */
8170b8ea 1133 g_critical("Error: specified input file format '%s' is "
943d0c08 1134 "unknown.", opt);
43e5747a
UH
1135 return NULL;
1136 }
1137
1138 /* Otherwise, try to find an input module that can handle this file. */
1139 for (i = 0; inputs[i]; i++) {
1140 if (inputs[i]->format_match(filename))
1141 break;
1142 }
1143
1144 /* Return NULL if no input module wanted to touch this. */
1145 if (!inputs[i]) {
8170b8ea 1146 g_critical("Error: no matching input module found.");
43e5747a
UH
1147 return NULL;
1148 }
78912cc1
UH
1149
1150 g_debug("cli: Autodetected '%s' input format for file '%s'.",
1151 inputs[i]->id, filename);
43e5747a 1152
43e5747a
UH
1153 return inputs[i];
1154}
1155
1156static void load_input_file_format(void)
1157{
943d0c08 1158 GHashTable *fmtargs = NULL;
43e5747a
UH
1159 struct stat st;
1160 struct sr_input *in;
1161 struct sr_input_format *input_format;
943d0c08
TÅ 
1162 char *fmtspec = NULL;
1163
1164 if (opt_input_format) {
3e8e0c2d 1165 fmtargs = parse_generic_arg(opt_input_format, TRUE);
943d0c08
TÅ 
1166 fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
1167 }
43e5747a 1168
8170b8ea 1169 if (!(input_format = determine_input_file_format(opt_input_file,
943d0c08 1170 fmtspec))) {
8170b8ea 1171 /* The exact cause was already logged. */
43e5747a 1172 return;
943d0c08 1173 }
3e8e0c2d 1174
943d0c08
TÅ 
1175 if (fmtargs)
1176 g_hash_table_remove(fmtargs, "sigrok_key");
43e5747a
UH
1177
1178 if (stat(opt_input_file, &st) == -1) {
8170b8ea 1179 g_critical("Failed to load %s: %s", opt_input_file,
43e5747a
UH
1180 strerror(errno));
1181 exit(1);
1182 }
1183
1184 /* Initialize the input module. */
c2c4a0de 1185 if (!(in = g_try_malloc(sizeof(struct sr_input)))) {
8170b8ea 1186 g_critical("Failed to allocate input module.");
43e5747a
UH
1187 exit(1);
1188 }
1189 in->format = input_format;
943d0c08 1190 in->param = fmtargs;
43e5747a
UH
1191 if (in->format->init) {
1192 if (in->format->init(in) != SR_OK) {
8170b8ea 1193 g_critical("Input format init failed.");
43e5747a
UH
1194 exit(1);
1195 }
1196 }
1197
37d5ccc1 1198 if (select_probes(in->sdi) > 0)
c27450ea 1199 return;
43e5747a
UH
1200
1201 sr_session_new();
1202 sr_session_datafeed_callback_add(datafeed_in);
37d5ccc1 1203 if (sr_session_dev_add(in->sdi) != SR_OK) {
8170b8ea 1204 g_critical("Failed to use device.");
43e5747a
UH
1205 sr_session_destroy();
1206 return;
1207 }
1208
1209 input_format->loadfile(in, opt_input_file);
c27450ea 1210
43e5747a 1211 sr_session_destroy();
943d0c08
TÅ 
1212
1213 if (fmtargs)
1214 g_hash_table_destroy(fmtargs);
43e5747a
UH
1215}
1216
1217static void load_input_file(void)
1218{
1219
1220 if (sr_session_load(opt_input_file) == SR_OK) {
1221 /* sigrok session file */
1222 sr_session_datafeed_callback_add(datafeed_in);
1223 sr_session_start();
1224 sr_session_run();
1225 sr_session_stop();
1226 }
1227 else {
1228 /* fall back on input modules */
1229 load_input_file_format();
1230 }
43e5747a
UH
1231}
1232
37d5ccc1 1233static int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args)
43e5747a 1234{
995713f4 1235 const struct sr_config_info *srci;
43e5747a
UH
1236 GHashTableIter iter;
1237 gpointer key, value;
cfd3ec6e 1238 int ret;
c8db7172 1239 float tmp_float;
43e5747a 1240 uint64_t tmp_u64;
c8db7172 1241 struct sr_rational tmp_rat;
43e5747a 1242 gboolean tmp_bool;
37d5ccc1 1243 void *val;
43e5747a
UH
1244
1245 g_hash_table_iter_init(&iter, args);
1246 while (g_hash_table_iter_next(&iter, &key, &value)) {
74b9bf0c 1247 if (!(srci = sr_config_info_name_get(key))) {
cfd3ec6e
BV
1248 g_critical("Unknown device option '%s'.", (char *) key);
1249 return SR_ERR;
1250 }
1251
1252 if ((value == NULL) &&
995713f4 1253 (srci->datatype != SR_T_BOOL)) {
cfd3ec6e
BV
1254 g_critical("Option '%s' needs a value.", (char *)key);
1255 return SR_ERR;
1256 }
1257 val = NULL;
995713f4 1258 switch (srci->datatype) {
cfd3ec6e
BV
1259 case SR_T_UINT64:
1260 ret = sr_parse_sizestring(value, &tmp_u64);
1261 if (ret != SR_OK)
8f3b8464 1262 break;
cfd3ec6e
BV
1263 val = &tmp_u64;
1264 break;
1265 case SR_T_CHAR:
1266 val = value;
1267 break;
1268 case SR_T_BOOL:
1269 if (!value)
1270 tmp_bool = TRUE;
43e5747a 1271 else
cfd3ec6e
BV
1272 tmp_bool = sr_parse_boolstring(value);
1273 val = &tmp_bool;
1274 break;
1275 case SR_T_FLOAT:
1276 tmp_float = strtof(value, NULL);
1277 val = &tmp_float;
1278 break;
1279 case SR_T_RATIONAL_PERIOD:
1280 if ((ret = sr_parse_period(value, &tmp_rat)) != SR_OK)
1281 break;
1282 val = &tmp_rat;
1283 break;
1284 case SR_T_RATIONAL_VOLT:
1285 if ((ret = sr_parse_voltage(value, &tmp_rat)) != SR_OK)
43e5747a 1286 break;
cfd3ec6e
BV
1287 val = &tmp_rat;
1288 break;
1289 default:
1290 ret = SR_ERR;
43e5747a 1291 }
cfd3ec6e 1292 if (val)
c0b9d56b 1293 ret = sr_config_set(sdi, srci->key, val);
cfd3ec6e
BV
1294 if (ret != SR_OK) {
1295 g_critical("Failed to set device option '%s'.", (char *)key);
1296 return ret;
43e5747a
UH
1297 }
1298 }
1299
1300 return SR_OK;
1301}
1302
37d5ccc1 1303static int set_limit_time(const struct sr_dev_inst *sdi)
43e5747a 1304{
9c9c1080 1305 uint64_t time_msec;
37d5ccc1 1306 uint64_t *samplerate;
43e5747a 1307
37d5ccc1
BV
1308 time_msec = sr_parse_timestring(opt_time);
1309 if (time_msec == 0) {
1310 g_critical("Invalid time '%s'", opt_time);
43e5747a 1311 sr_session_destroy();
37d5ccc1 1312 return SR_ERR;
43e5747a
UH
1313 }
1314
b5c63de9 1315 if (sr_driver_hwcap_exists(sdi->driver, SR_CONF_LIMIT_MSEC)) {
c0b9d56b 1316 if (sr_config_set(sdi, SR_CONF_LIMIT_MSEC, &time_msec) != SR_OK) {
37d5ccc1 1317 g_critical("Failed to configure time limit.");
43e5747a 1318 sr_session_destroy();
37d5ccc1 1319 return SR_ERR;
43e5747a 1320 }
43e5747a 1321 }
37d5ccc1
BV
1322 else {
1323 /* time limit set, but device doesn't support this...
1324 * convert to samples based on the samplerate.
1325 */
1326 limit_samples = 0;
b5c63de9 1327 if (sr_dev_has_hwcap(sdi, SR_CONF_SAMPLERATE)) {
9e0e651f 1328 sr_config_get(sdi->driver, SR_CONF_SAMPLERATE,
37d5ccc1
BV
1329 (const void **)&samplerate, sdi);
1330 limit_samples = (*samplerate) * time_msec / (uint64_t)1000;
1331 }
1332 if (limit_samples == 0) {
1333 g_critical("Not enough time at this samplerate.");
43e5747a 1334 sr_session_destroy();
37d5ccc1 1335 return SR_ERR;
43e5747a 1336 }
43e5747a 1337
c0b9d56b 1338 if (sr_config_set(sdi, SR_CONF_LIMIT_SAMPLES,
4ed6cde9 1339 &limit_samples) != SR_OK) {
37d5ccc1 1340 g_critical("Failed to configure time-based sample limit.");
43e5747a 1341 sr_session_destroy();
37d5ccc1 1342 return SR_ERR;
43e5747a 1343 }
37d5ccc1 1344 }
43e5747a 1345
37d5ccc1
BV
1346 return SR_OK;
1347}
1348
1349static void run_session(void)
1350{
06a3fb10 1351 GSList *devices;
37d5ccc1
BV
1352 GHashTable *devargs;
1353 struct sr_dev_inst *sdi;
1354 int max_probes, i;
06a3fb10
BV
1355 char **triggerlist;
1356
1357 devices = device_scan();
1358 if (!devices) {
1359 g_critical("No devices found.");
1360 return;
1361 }
1362 if (g_slist_length(devices) > 1) {
1363 g_critical("sigrok-cli only supports one device for capturing.");
1364 return;
1365 }
1366 sdi = devices->data;
37d5ccc1
BV
1367
1368 sr_session_new();
1369 sr_session_datafeed_callback_add(datafeed_in);
1370
8ab6aafc
BV
1371 if (sr_session_dev_add(sdi) != SR_OK) {
1372 g_critical("Failed to use device.");
1373 sr_session_destroy();
1374 return;
1375 }
1376
06a3fb10
BV
1377 if (opt_dev) {
1378 if ((devargs = parse_generic_arg(opt_dev, FALSE))) {
1379 if (set_dev_options(sdi, devargs) != SR_OK)
1380 return;
1381 g_hash_table_destroy(devargs);
43e5747a 1382 }
06a3fb10 1383 }
43e5747a 1384
06a3fb10
BV
1385 if (select_probes(sdi) != SR_OK) {
1386 g_critical("Failed to set probes.");
1387 sr_session_destroy();
1388 return;
1389 }
1390
1391 if (opt_triggers) {
1392 if (!(triggerlist = sr_parse_triggerstring(sdi, opt_triggers))) {
43e5747a
UH
1393 sr_session_destroy();
1394 return;
1395 }
06a3fb10
BV
1396 max_probes = g_slist_length(sdi->probes);
1397 for (i = 0; i < max_probes; i++) {
1398 if (triggerlist[i]) {
1399 sr_dev_trigger_set(sdi, i, triggerlist[i]);
1400 g_free(triggerlist[i]);
43e5747a
UH
1401 }
1402 }
06a3fb10
BV
1403 g_free(triggerlist);
1404 }
9c9c1080 1405
06a3fb10 1406 if (opt_continuous) {
b5c63de9 1407 if (!sr_driver_hwcap_exists(sdi->driver, SR_CONF_CONTINUOUS)) {
06a3fb10 1408 g_critical("This device does not support continuous sampling.");
37d5ccc1
BV
1409 sr_session_destroy();
1410 return;
1411 }
37d5ccc1
BV
1412 }
1413
1414 if (opt_time) {
1415 if (set_limit_time(sdi) != SR_OK) {
1416 sr_session_destroy();
1417 return;
43e5747a
UH
1418 }
1419 }
1420
1421 if (opt_samples) {
1422 if ((sr_parse_sizestring(opt_samples, &limit_samples) != SR_OK)
c0b9d56b 1423 || (sr_config_set(sdi, SR_CONF_LIMIT_SAMPLES,
37d5ccc1 1424 &limit_samples) != SR_OK)) {
8170b8ea 1425 g_critical("Failed to configure sample limit.");
43e5747a
UH
1426 sr_session_destroy();
1427 return;
1428 }
1429 }
1430
ce48d892
BV
1431 if (opt_frames) {
1432 if ((sr_parse_sizestring(opt_frames, &limit_frames) != SR_OK)
c0b9d56b 1433 || (sr_config_set(sdi, SR_CONF_LIMIT_FRAMES,
4ed6cde9 1434 &limit_frames) != SR_OK)) {
f8ccd825 1435 g_critical("Failed to configure frame limit.");
ce48d892
BV
1436 sr_session_destroy();
1437 return;
1438 }
1439 }
1440
43e5747a 1441 if (sr_session_start() != SR_OK) {
8170b8ea 1442 g_critical("Failed to start session.");
43e5747a
UH
1443 sr_session_destroy();
1444 return;
1445 }
1446
1447 if (opt_continuous)
1448 add_anykey();
1449
1450 sr_session_run();
1451
1452 if (opt_continuous)
1453 clear_anykey();
1454
43e5747a 1455 sr_session_destroy();
37d5ccc1
BV
1456 g_slist_free(devices);
1457
43e5747a
UH
1458}
1459
1460static void logger(const gchar *log_domain, GLogLevelFlags log_level,
68cdf174 1461 const gchar *message, gpointer cb_data)
43e5747a 1462{
43e5747a 1463 (void)log_domain;
68cdf174 1464 (void)cb_data;
43e5747a
UH
1465
1466 /*
1467 * All messages, warnings, errors etc. go to stderr (not stdout) in
1468 * order to not mess up the CLI tool data output, e.g. VCD output.
1469 */
2d6ff326 1470 if (log_level & (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING)
d740e6ac 1471 || opt_loglevel > SR_LOG_WARN) {
43e5747a
UH
1472 fprintf(stderr, "%s\n", message);
1473 fflush(stderr);
43e5747a
UH
1474 }
1475}
1476
1477int main(int argc, char **argv)
1478{
198f4c6c 1479 int ret = 1;
43e5747a
UH
1480 GOptionContext *context;
1481 GError *error;
43e5747a
UH
1482
1483 g_log_set_default_handler(logger, NULL);
43e5747a
UH
1484
1485 error = NULL;
1486 context = g_option_context_new(NULL);
1487 g_option_context_add_main_entries(context, optargs, NULL);
1488
1489 if (!g_option_context_parse(context, &argc, &argv, &error)) {
8170b8ea 1490 g_critical("%s", error->message);
5acb7682 1491 goto done;
43e5747a
UH
1492 }
1493
1494 /* Set the loglevel (amount of messages to output) for libsigrok. */
120f9ee7 1495 if (sr_log_loglevel_set(opt_loglevel) != SR_OK)
5acb7682 1496 goto done;
43e5747a 1497
6de7ec06 1498 /* Set the loglevel (amount of messages to output) for libsigrokdecode. */
120f9ee7 1499 if (srd_log_loglevel_set(opt_loglevel) != SRD_OK)
5acb7682 1500 goto done;
6de7ec06 1501
5acb7682
PS
1502 if (sr_init(&sr_ctx) != SR_OK)
1503 goto done;
43e5747a
UH
1504
1505 if (opt_pds) {
120f9ee7 1506 if (srd_init(NULL) != SRD_OK)
198f4c6c 1507 goto done;
120f9ee7 1508 if (register_pds(NULL, opt_pds) != 0)
198f4c6c 1509 goto done;
4359a4da 1510 if (srd_pd_output_callback_add(SRD_OUTPUT_ANN,
b6bd032d 1511 show_pd_annotations, NULL) != SRD_OK)
198f4c6c 1512 goto done;
120f9ee7 1513 if (setup_pd_stack() != 0)
198f4c6c 1514 goto done;
120f9ee7 1515 if (setup_pd_annotations() != 0)
198f4c6c 1516 goto done;
9f4a898e
BV
1517 }
1518
ad2bc491 1519 if (setup_output_format() != 0)
198f4c6c 1520 goto done;
43e5747a
UH
1521
1522 if (opt_version)
1523 show_version();
1e0f9ed9
UH
1524 else if (opt_list_devs)
1525 show_dev_list();
f83fbc57
BV
1526 else if (opt_pds && opt_show)
1527 show_pd_detail();
22981b2c
BV
1528 else if (opt_show)
1529 show_dev_detail();
43e5747a
UH
1530 else if (opt_input_file)
1531 load_input_file();
ce48d892 1532 else if (opt_samples || opt_time || opt_frames || opt_continuous)
43e5747a 1533 run_session();
43e5747a
UH
1534 else
1535 printf("%s", g_option_context_get_help(context, TRUE, NULL));
1536
1537 if (opt_pds)
1538 srd_exit();
1539
198f4c6c
PS
1540 ret = 0;
1541
1542done:
5acb7682
PS
1543 if (sr_ctx)
1544 sr_exit(sr_ctx);
198f4c6c 1545
8630d4a8 1546 g_option_context_free(context);
43e5747a 1547
198f4c6c 1548 return ret;
43e5747a 1549}