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