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