]> sigrok.org Git - sigrok-cli.git/blame - session.c
session: make group of 'static' vars more visible
[sigrok-cli.git] / session.c
CommitLineData
2be182e6
BV
1/*
2 * This file is part of the sigrok-cli project.
3 *
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
d486cbdd 20#include <config.h>
2be182e6
BV
21#include <glib.h>
22#include <glib/gstdio.h>
55de58a2
UH
23#include <string.h>
24#include <stdlib.h>
662a1e27 25#include "sigrok-cli.h"
2be182e6 26
2be182e6
BV
27static uint64_t limit_samples = 0;
28static uint64_t limit_frames = 0;
29
2be182e6
BV
30#ifdef HAVE_SRD
31extern struct srd_session *srd_sess;
32#endif
33
2be182e6
BV
34static int set_limit_time(const struct sr_dev_inst *sdi)
35{
36 GVariant *gvar;
37 uint64_t time_msec;
38 uint64_t samplerate;
c6fa2b2e
UH
39 struct sr_dev_driver *driver;
40
41 driver = sr_dev_inst_driver_get(sdi);
2be182e6
BV
42
43 if (!(time_msec = sr_parse_timestring(opt_time))) {
44 g_critical("Invalid time '%s'", opt_time);
45 return SR_ERR;
46 }
47
09fc39da 48 if (sr_dev_config_capabilities_list(sdi, NULL, SR_CONF_LIMIT_MSEC)
c7639c1d 49 & SR_CONF_SET) {
2be182e6
BV
50 gvar = g_variant_new_uint64(time_msec);
51 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_MSEC, gvar) != SR_OK) {
52 g_critical("Failed to configure time limit.");
53 return SR_ERR;
54 }
09fc39da 55 } else if (sr_dev_config_capabilities_list(sdi, NULL, SR_CONF_SAMPLERATE)
c7639c1d 56 & (SR_CONF_GET | SR_CONF_SET)) {
23c40b60 57 /* Convert to samples based on the samplerate. */
c6fa2b2e 58 sr_config_get(driver, sdi, NULL, SR_CONF_SAMPLERATE, &gvar);
2be182e6
BV
59 samplerate = g_variant_get_uint64(gvar);
60 g_variant_unref(gvar);
61 limit_samples = (samplerate) * time_msec / (uint64_t)1000;
62 if (limit_samples == 0) {
63 g_critical("Not enough time at this samplerate.");
64 return SR_ERR;
65 }
66 gvar = g_variant_new_uint64(limit_samples);
67 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
68 g_critical("Failed to configure time-based sample limit.");
69 return SR_ERR;
70 }
71 } else {
72 g_critical("This device does not support time limits.");
73 return SR_ERR;
74 }
75
76 return SR_OK;
77}
78
cbbea087 79const struct sr_output *setup_output_format(const struct sr_dev_inst *sdi, FILE **outfile)
2be182e6 80{
ad6520c4 81 const struct sr_output_module *omod;
7c6a0420 82 const struct sr_option **options;
ad6520c4
BV
83 const struct sr_output *o;
84 GHashTable *fmtargs, *fmtopts;
2be182e6
BV
85 char *fmtspec;
86
2be182e6 87 if (!opt_output_format) {
fea5acab 88 if (opt_output_file) {
5d7604d1 89 opt_output_format = DEFAULT_OUTPUT_FORMAT_FILE;
fea5acab 90 } else {
5d7604d1 91 opt_output_format = DEFAULT_OUTPUT_FORMAT_NOFILE;
fea5acab 92 }
2be182e6
BV
93 }
94
95 fmtargs = parse_generic_arg(opt_output_format, TRUE);
96 fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
6709a694 97 if (!fmtspec)
2be182e6 98 g_critical("Invalid output format.");
ad6520c4 99 if (!(omod = sr_output_find(fmtspec)))
7c6a0420 100 g_critical("Unknown output module '%s'.", fmtspec);
9216694f 101 g_hash_table_remove(fmtargs, "sigrok_key");
7c6a0420
BV
102 if ((options = sr_output_options_get(omod))) {
103 fmtopts = generic_arg_to_opt(options, fmtargs);
104 sr_output_options_free(options);
ad6520c4
BV
105 } else
106 fmtopts = NULL;
5d7604d1
SA
107 o = sr_output_new(omod, fmtopts, sdi, opt_output_file);
108
cbbea087
SA
109 if (opt_output_file) {
110 if (!sr_output_test_flag(omod, SR_OUTPUT_INTERNAL_IO_HANDLING))
111 *outfile = g_fopen(opt_output_file, "wb");
112 else
113 *outfile = NULL;
114 } else {
115 *outfile = stdout;
116 }
117
ad6520c4
BV
118 if (fmtopts)
119 g_hash_table_destroy(fmtopts);
2be182e6
BV
120 g_hash_table_destroy(fmtargs);
121
6709a694 122 return o;
2be182e6
BV
123}
124
fb995521
UH
125const struct sr_transform *setup_transform_module(const struct sr_dev_inst *sdi)
126{
127 const struct sr_transform_module *tmod;
128 const struct sr_option **options;
129 const struct sr_transform *t;
130 GHashTable *fmtargs, *fmtopts;
fb995521
UH
131 char *fmtspec;
132
fb995521
UH
133 fmtargs = parse_generic_arg(opt_transform_module, TRUE);
134 fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
135 if (!fmtspec)
136 g_critical("Invalid transform module.");
137 if (!(tmod = sr_transform_find(fmtspec)))
138 g_critical("Unknown transform module '%s'.", fmtspec);
139 g_hash_table_remove(fmtargs, "sigrok_key");
140 if ((options = sr_transform_options_get(tmod))) {
141 fmtopts = generic_arg_to_opt(options, fmtargs);
142 sr_transform_options_free(options);
143 } else
144 fmtopts = NULL;
145 t = sr_transform_new(tmod, fmtopts, sdi);
146 if (fmtopts)
147 g_hash_table_destroy(fmtopts);
148 g_hash_table_destroy(fmtargs);
149
150 return t;
151}
152
2be182e6
BV
153void datafeed_in(const struct sr_dev_inst *sdi,
154 const struct sr_datafeed_packet *packet, void *cb_data)
155{
ad6520c4
BV
156 static const struct sr_output *o = NULL;
157 static const struct sr_output *oa = NULL;
6ea663a7
BV
158 static uint64_t rcvd_samples_logic = 0;
159 static uint64_t rcvd_samples_analog = 0;
160 static uint64_t samplerate = 0;
2be182e6
BV
161 static int triggered = 0;
162 static FILE *outfile = NULL;
196e1a9c
GS
163
164 const struct sr_datafeed_meta *meta;
165 const struct sr_datafeed_logic *logic;
166 const struct sr_datafeed_analog *analog;
167 struct sr_session *session;
168 struct sr_config *src;
fea5acab 169 GSList *l;
2be182e6 170 GString *out;
8b65cdcc 171 GVariant *gvar;
55de58a2 172 uint64_t end_sample;
667d4a18 173 uint64_t input_len;
c6fa2b2e
UH
174 struct sr_dev_driver *driver;
175
3f85a618
UH
176 /* Avoid warnings when building without decoder support. */
177 (void)session;
178 (void)input_len;
179
c6fa2b2e 180 driver = sr_dev_inst_driver_get(sdi);
2be182e6 181
196e1a9c 182 /* Skip all packets before the first header. */
23c40b60 183 if (packet->type != SR_DF_HEADER && !o)
2be182e6
BV
184 return;
185
4bf77ec6 186 session = cb_data;
2be182e6
BV
187 switch (packet->type) {
188 case SR_DF_HEADER:
4ed1cdea 189 g_debug("cli: Received SR_DF_HEADER.");
cbbea087 190 if (!(o = setup_output_format(sdi, &outfile)))
e786e625 191 g_critical("Failed to initialize output module.");
2be182e6 192
9216694f 193 /* Set up backup analog output module. */
f0de24ff
VP
194 if (outfile)
195 oa = sr_output_new(sr_output_find("analog"), NULL,
196 sdi, NULL);
9216694f 197
6ea663a7 198 rcvd_samples_logic = rcvd_samples_analog = 0;
2be182e6 199
24bd9719 200 if (maybe_config_get(driver, sdi, NULL, SR_CONF_SAMPLERATE,
8b65cdcc
BV
201 &gvar) == SR_OK) {
202 samplerate = g_variant_get_uint64(gvar);
203 g_variant_unref(gvar);
204 }
205
2be182e6 206#ifdef HAVE_SRD
ea6d6dec 207 if (opt_pds) {
8b65cdcc 208 if (samplerate) {
2be182e6
BV
209 if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
210 g_variant_new_uint64(samplerate)) != SRD_OK) {
211 g_critical("Failed to configure decode session.");
212 break;
213 }
214 }
215 if (srd_session_start(srd_sess) != SRD_OK) {
216 g_critical("Failed to start decode session.");
217 break;
218 }
219 }
220#endif
221 break;
222
223 case SR_DF_META:
4ed1cdea 224 g_debug("cli: Received SR_DF_META.");
2be182e6
BV
225 meta = packet->payload;
226 for (l = meta->config; l; l = l->next) {
227 src = l->data;
228 switch (src->key) {
229 case SR_CONF_SAMPLERATE:
230 samplerate = g_variant_get_uint64(src->data);
4ed1cdea 231 g_debug("cli: Got samplerate %"PRIu64" Hz.", samplerate);
2be182e6
BV
232#ifdef HAVE_SRD
233 if (opt_pds) {
234 if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
235 g_variant_new_uint64(samplerate)) != SRD_OK) {
236 g_critical("Failed to pass samplerate to decoder.");
237 }
238 }
239#endif
240 break;
241 case SR_CONF_SAMPLE_INTERVAL:
242 samplerate = g_variant_get_uint64(src->data);
4ed1cdea 243 g_debug("cli: Got sample interval %"PRIu64" ms.", samplerate);
2be182e6
BV
244 break;
245 default:
246 /* Unknown metadata is not an error. */
247 break;
248 }
249 }
250 break;
251
252 case SR_DF_TRIGGER:
4ed1cdea 253 g_debug("cli: Received SR_DF_TRIGGER.");
2be182e6
BV
254 triggered = 1;
255 break;
256
257 case SR_DF_LOGIC:
258 logic = packet->payload;
4ed1cdea
UH
259 g_message("cli: Received SR_DF_LOGIC (%"PRIu64" bytes, unitsize = %d).",
260 logic->length, logic->unitsize);
2be182e6
BV
261 if (logic->length == 0)
262 break;
263
264 /* Don't store any samples until triggered. */
265 if (opt_wait_trigger && !triggered)
266 break;
267
6ea663a7 268 if (limit_samples && rcvd_samples_logic >= limit_samples)
2be182e6
BV
269 break;
270
6ea663a7 271 end_sample = rcvd_samples_logic + logic->length / logic->unitsize;
8667d3c2
DE
272 /* Cut off last packet according to the sample limit. */
273 if (limit_samples && end_sample > limit_samples)
274 end_sample = limit_samples;
6ea663a7 275 input_len = (end_sample - rcvd_samples_logic) * logic->unitsize;
2be182e6 276
fea5acab 277 if (opt_pds) {
2be182e6 278#ifdef HAVE_SRD
fea5acab 279 if (srd_session_send(srd_sess, rcvd_samples_logic, end_sample,
ee639fb4 280 logic->data, input_len, logic->unitsize) != SRD_OK)
fea5acab 281 sr_session_stop(session);
2be182e6 282#endif
2be182e6 283 }
2be182e6 284
6ea663a7 285 rcvd_samples_logic = end_sample;
2be182e6
BV
286 break;
287
288 case SR_DF_ANALOG:
289 analog = packet->payload;
4ed1cdea 290 g_message("cli: Received SR_DF_ANALOG (%d samples).", analog->num_samples);
2be182e6
BV
291 if (analog->num_samples == 0)
292 break;
293
6ea663a7 294 if (limit_samples && rcvd_samples_analog >= limit_samples)
2be182e6
BV
295 break;
296
6ea663a7 297 rcvd_samples_analog += analog->num_samples;
2be182e6
BV
298 break;
299
300 case SR_DF_FRAME_BEGIN:
4ed1cdea 301 g_debug("cli: Received SR_DF_FRAME_BEGIN.");
2be182e6
BV
302 break;
303
304 case SR_DF_FRAME_END:
4ed1cdea 305 g_debug("cli: Received SR_DF_FRAME_END.");
2be182e6
BV
306 break;
307
308 default:
309 break;
310 }
311
cbbea087 312 if (o && !opt_pds) {
9216694f 313 if (sr_output_send(o, packet, &out) == SR_OK) {
f0de24ff 314 if (oa && !out) {
f0f54487
UH
315 /*
316 * The user didn't specify an output module,
317 * but needs to see this analog data.
318 */
9216694f
BV
319 sr_output_send(oa, packet, &out);
320 }
cbbea087 321 if (outfile && out && out->len > 0) {
9216694f
BV
322 fwrite(out->str, 1, out->len, outfile);
323 fflush(outfile);
324 }
325 if (out)
326 g_string_free(out, TRUE);
2be182e6
BV
327 }
328 }
329
f0f54487
UH
330 /*
331 * SR_DF_END needs to be handled after the output module's receive()
332 * is called, so it can properly clean up that module.
333 */
2be182e6 334 if (packet->type == SR_DF_END) {
4ed1cdea 335 g_debug("cli: Received SR_DF_END.");
2be182e6 336
5d7604d1 337 if (o)
6709a694 338 sr_output_free(o);
2be182e6
BV
339 o = NULL;
340
f0de24ff
VP
341 if (oa)
342 sr_output_free(oa);
9216694f
BV
343 oa = NULL;
344
2be182e6
BV
345 if (outfile && outfile != stdout)
346 fclose(outfile);
347
6ea663a7
BV
348 if (limit_samples) {
349 if (rcvd_samples_logic > 0 && rcvd_samples_logic < limit_samples)
350 g_warning("Device only sent %" PRIu64 " samples.",
351 rcvd_samples_logic);
352 else if (rcvd_samples_analog > 0 && rcvd_samples_analog < limit_samples)
353 g_warning("Device only sent %" PRIu64 " samples.",
354 rcvd_samples_analog);
2be182e6
BV
355 }
356 }
357
358}
359
ad54a1a6 360int opt_to_gvar(char *key, char *value, struct sr_config *src)
2be182e6 361{
e9505599 362 const struct sr_key_info *srci, *srmqi;
426d0cda 363 double tmp_double, dlow, dhigh;
e9505599
BV
364 uint64_t tmp_u64, p, q, low, high, mqflags;
365 uint32_t mq;
84b39e3e 366 GVariant *rational[2], *range[2], *gtup[2];
e4588937 367 GVariantBuilder *vbl;
2be182e6 368 gboolean tmp_bool;
e4588937 369 gchar **keyval;
e9505599 370 int ret, i;
2be182e6 371
e4e4b472 372 if (!(srci = sr_key_info_name_get(SR_KEY_CONFIG, key))) {
ad54a1a6
BV
373 g_critical("Unknown device option '%s'.", (char *) key);
374 return -1;
375 }
376 src->key = srci->key;
2be182e6 377
23c40b60 378 if ((!value || strlen(value) == 0) &&
ad54a1a6
BV
379 (srci->datatype != SR_T_BOOL)) {
380 g_critical("Option '%s' needs a value.", (char *)key);
381 return -1;
382 }
383
384 ret = 0;
385 switch (srci->datatype) {
386 case SR_T_UINT64:
387 ret = sr_parse_sizestring(value, &tmp_u64);
388 if (ret != 0)
2be182e6 389 break;
ad54a1a6
BV
390 src->data = g_variant_new_uint64(tmp_u64);
391 break;
392 case SR_T_INT32:
393 ret = sr_parse_sizestring(value, &tmp_u64);
394 if (ret != 0)
2be182e6 395 break;
ad54a1a6
BV
396 src->data = g_variant_new_int32(tmp_u64);
397 break;
9db40e9f 398 case SR_T_STRING:
ad54a1a6
BV
399 src->data = g_variant_new_string(value);
400 break;
401 case SR_T_BOOL:
402 if (!value)
403 tmp_bool = TRUE;
404 else
405 tmp_bool = sr_parse_boolstring(value);
406 src->data = g_variant_new_boolean(tmp_bool);
407 break;
408 case SR_T_FLOAT:
409 tmp_double = strtof(value, NULL);
410 src->data = g_variant_new_double(tmp_double);
411 break;
412 case SR_T_RATIONAL_PERIOD:
413 if ((ret = sr_parse_period(value, &p, &q)) != SR_OK)
2be182e6 414 break;
ad54a1a6
BV
415 rational[0] = g_variant_new_uint64(p);
416 rational[1] = g_variant_new_uint64(q);
417 src->data = g_variant_new_tuple(rational, 2);
418 break;
419 case SR_T_RATIONAL_VOLT:
420 if ((ret = sr_parse_voltage(value, &p, &q)) != SR_OK)
2be182e6 421 break;
ad54a1a6
BV
422 rational[0] = g_variant_new_uint64(p);
423 rational[1] = g_variant_new_uint64(q);
424 src->data = g_variant_new_tuple(rational, 2);
425 break;
426 case SR_T_UINT64_RANGE:
427 if (sscanf(value, "%"PRIu64"-%"PRIu64, &low, &high) != 2) {
428 ret = -1;
2be182e6 429 break;
ad54a1a6
BV
430 } else {
431 range[0] = g_variant_new_uint64(low);
432 range[1] = g_variant_new_uint64(high);
433 src->data = g_variant_new_tuple(range, 2);
2be182e6 434 }
ad54a1a6 435 break;
426d0cda
BV
436 case SR_T_DOUBLE_RANGE:
437 if (sscanf(value, "%lf-%lf", &dlow, &dhigh) != 2) {
438 ret = -1;
439 break;
440 } else {
441 range[0] = g_variant_new_double(dlow);
442 range[1] = g_variant_new_double(dhigh);
443 src->data = g_variant_new_tuple(range, 2);
444 }
445 break;
e4588937
BG
446 case SR_T_KEYVALUE:
447 /* Expects the argument to be in the form of key=value. */
448 keyval = g_strsplit(value, "=", 2);
449 if (!keyval[0] || !keyval[1]) {
450 g_strfreev(keyval);
451 ret = -1;
452 break;
453 } else {
454 vbl = g_variant_builder_new(G_VARIANT_TYPE_DICTIONARY);
455 g_variant_builder_add(vbl, "{ss}",
456 keyval[0], keyval[1]);
457 src->data = g_variant_builder_end(vbl);
458 g_strfreev(keyval);
459 }
460 break;
84b39e3e 461 case SR_T_MQ:
e9505599
BV
462 /*
463 Argument is MQ id e.g. ("voltage") optionally followed by one
464 or more /<mqflag> e.g. "/ac".
465 */
466 keyval = g_strsplit(value, "/", 0);
467 if (!keyval[0] || !(srmqi = sr_key_info_name_get(SR_KEY_MQ, keyval[0]))) {
468 g_strfreev(keyval);
469 ret = -1;
470 break;
471 }
472 mq = srmqi->key;
473 mqflags = 0;
474 for (i = 1; keyval[i]; i++) {
475 if (!(srmqi = sr_key_info_name_get(SR_KEY_MQFLAGS, keyval[i]))) {
476 ret = -1;
477 break;
478 }
479 mqflags |= srmqi->key;
480 }
481 g_strfreev(keyval);
482 if (ret != -1) {
e9505599
BV
483 gtup[0] = g_variant_new_uint32(mq);
484 gtup[1] = g_variant_new_uint64(mqflags);
84b39e3e 485 src->data = g_variant_new_tuple(gtup, 2);
e9505599
BV
486 }
487 break;
ad54a1a6 488 default:
b262d8f2
BG
489 g_critical("Unknown data type specified for option '%s' "
490 "(driver implementation bug?).", key);
ad54a1a6
BV
491 ret = -1;
492 }
493
27d310f0
BG
494 if (ret < 0)
495 g_critical("Invalid value: '%s' for option '%s'", value, key);
496
ad54a1a6
BV
497 return ret;
498}
499
500int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args)
501{
502 struct sr_config src;
ca50f4b3 503 struct sr_channel_group *cg;
ad54a1a6
BV
504 GHashTableIter iter;
505 gpointer key, value;
506 int ret;
507
508 g_hash_table_iter_init(&iter, args);
509 while (g_hash_table_iter_next(&iter, &key, &value)) {
510 if ((ret = opt_to_gvar(key, value, &src)) != 0)
511 return ret;
ca50f4b3 512 cg = select_channel_group(sdi);
24bd9719
BV
513 if ((ret = maybe_config_set(sr_dev_inst_driver_get(sdi), sdi, cg,
514 src.key, src.data)) != SR_OK) {
28b0b84e
BG
515 g_critical("Failed to set device option '%s': %s.",
516 (char *)key, sr_strerror(ret));
2be182e6
BV
517 return ret;
518 }
519 }
520
521 return SR_OK;
522}
523
524void run_session(void)
525{
ac3dcd3e 526 GSList *devices, *real_devices, *sd;
2be182e6
BV
527 GHashTable *devargs;
528 GVariant *gvar;
4bf77ec6
BV
529 struct sr_session *session;
530 struct sr_trigger *trigger;
2be182e6 531 struct sr_dev_inst *sdi;
02c65935 532 uint64_t min_samples, max_samples;
35e8578e 533 GArray *drv_opts;
c7639c1d 534 guint i;
ac3dcd3e 535 int is_demo_dev;
c6fa2b2e 536 struct sr_dev_driver *driver;
fb995521 537 const struct sr_transform *t;
fd65ec4c 538 GMainLoop *main_loop;
2be182e6
BV
539
540 devices = device_scan();
541 if (!devices) {
542 g_critical("No devices found.");
543 return;
544 }
ac3dcd3e
PZ
545
546 real_devices = NULL;
547 for (sd = devices; sd; sd = sd->next) {
548 sdi = sd->data;
549
c6fa2b2e
UH
550 driver = sr_dev_inst_driver_get(sdi);
551
35e8578e
GS
552 if (!(drv_opts = sr_dev_options(driver, NULL, NULL))) {
553 g_critical("Failed to query list of driver options.");
ac3dcd3e
PZ
554 return;
555 }
556
ac3dcd3e 557 is_demo_dev = 0;
35e8578e
GS
558 for (i = 0; i < drv_opts->len; i++) {
559 if (g_array_index(drv_opts, uint32_t, i) == SR_CONF_DEMO_DEV)
ac3dcd3e
PZ
560 is_demo_dev = 1;
561 }
562
35e8578e 563 g_array_free(drv_opts, TRUE);
ac3dcd3e
PZ
564
565 if (!is_demo_dev)
566 real_devices = g_slist_append(real_devices, sdi);
567 }
568
2be182e6 569 if (g_slist_length(devices) > 1) {
ac3dcd3e
PZ
570 if (g_slist_length(real_devices) != 1) {
571 g_critical("sigrok-cli only supports one device for capturing.");
572 return;
573 } else {
574 /* We only have one non-demo device. */
575 g_slist_free(devices);
576 devices = real_devices;
577 real_devices = NULL;
578 }
2be182e6 579 }
ac3dcd3e 580
690617b8
AA
581 /* This is unlikely to happen but it makes static analyzers stop complaining. */
582 if (!devices) {
583 g_critical("No real devices found.");
584 return;
585 }
586
2be182e6 587 sdi = devices->data;
b4eece7c 588 g_slist_free(devices);
ac3dcd3e 589 g_slist_free(real_devices);
2be182e6 590
3d24ca2d 591 sr_session_new(sr_ctx, &session);
49e9f067 592 sr_session_datafeed_callback_add(session, datafeed_in, session);
2be182e6
BV
593
594 if (sr_dev_open(sdi) != SR_OK) {
595 g_critical("Failed to open device.");
596 return;
597 }
598
4bf77ec6 599 if (sr_session_dev_add(session, sdi) != SR_OK) {
2be182e6 600 g_critical("Failed to add device to session.");
4bf77ec6 601 sr_session_destroy(session);
2be182e6
BV
602 return;
603 }
604
605 if (opt_config) {
606 if ((devargs = parse_generic_arg(opt_config, FALSE))) {
607 if (set_dev_options(sdi, devargs) != SR_OK)
608 return;
609 g_hash_table_destroy(devargs);
610 }
611 }
612
029d73fe
UH
613 if (select_channels(sdi) != SR_OK) {
614 g_critical("Failed to set channels.");
4bf77ec6 615 sr_session_destroy(session);
2be182e6
BV
616 return;
617 }
618
15a14bff 619 trigger = NULL;
2be182e6 620 if (opt_triggers) {
4bf77ec6
BV
621 if (!parse_triggerstring(sdi, opt_triggers, &trigger)) {
622 sr_session_destroy(session);
623 return;
624 }
625 if (sr_session_trigger_set(session, trigger) != SR_OK) {
626 sr_session_destroy(session);
2be182e6
BV
627 return;
628 }
2be182e6
BV
629 }
630
631 if (opt_continuous) {
632 if (!sr_dev_has_option(sdi, SR_CONF_CONTINUOUS)) {
633 g_critical("This device does not support continuous sampling.");
4bf77ec6 634 sr_session_destroy(session);
2be182e6
BV
635 return;
636 }
637 }
638
639 if (opt_time) {
640 if (set_limit_time(sdi) != SR_OK) {
4bf77ec6 641 sr_session_destroy(session);
2be182e6
BV
642 return;
643 }
644 }
645
646 if (opt_samples) {
647 if ((sr_parse_sizestring(opt_samples, &limit_samples) != SR_OK)) {
648 g_critical("Invalid sample limit '%s'.", opt_samples);
4bf77ec6 649 sr_session_destroy(session);
2be182e6
BV
650 return;
651 }
24bd9719
BV
652 if (maybe_config_list(driver, sdi, NULL, SR_CONF_LIMIT_SAMPLES,
653 &gvar) == SR_OK) {
f0f54487
UH
654 /*
655 * The device has no compression, or compression is turned
656 * off, and publishes its sample memory size.
657 */
02c65935 658 g_variant_get(gvar, "(tt)", &min_samples, &max_samples);
be781321 659 g_variant_unref(gvar);
02c65935
BV
660 if (limit_samples < min_samples) {
661 g_critical("The device stores at least %"PRIu64
662 " samples with the current settings.", min_samples);
663 }
c7a5cb12
BV
664 if (limit_samples > max_samples) {
665 g_critical("The device can store only %"PRIu64
666 " samples with the current settings.", max_samples);
667 }
668 }
2be182e6 669 gvar = g_variant_new_uint64(limit_samples);
24bd9719 670 if (maybe_config_set(sr_dev_inst_driver_get(sdi), sdi, NULL, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
2be182e6 671 g_critical("Failed to configure sample limit.");
4bf77ec6 672 sr_session_destroy(session);
2be182e6
BV
673 return;
674 }
675 }
676
677 if (opt_frames) {
678 if ((sr_parse_sizestring(opt_frames, &limit_frames) != SR_OK)) {
230e607b 679 g_critical("Invalid frame limit '%s'.", opt_frames);
4bf77ec6 680 sr_session_destroy(session);
2be182e6
BV
681 return;
682 }
683 gvar = g_variant_new_uint64(limit_frames);
24bd9719 684 if (maybe_config_set(sr_dev_inst_driver_get(sdi), sdi, NULL, SR_CONF_LIMIT_FRAMES, gvar) != SR_OK) {
2be182e6 685 g_critical("Failed to configure frame limit.");
4bf77ec6 686 sr_session_destroy(session);
2be182e6
BV
687 return;
688 }
689 }
690
6af207e6
UH
691 if (opt_transform_module) {
692 if (!(t = setup_transform_module(sdi)))
693 g_critical("Failed to initialize transform module.");
694 }
fb995521 695
fd65ec4c
DE
696 main_loop = g_main_loop_new(NULL, FALSE);
697
698 sr_session_stopped_callback_set(session,
699 (sr_session_stopped_callback)g_main_loop_quit, main_loop);
700
4bf77ec6 701 if (sr_session_start(session) != SR_OK) {
2be182e6 702 g_critical("Failed to start session.");
fd65ec4c 703 g_main_loop_unref(main_loop);
4bf77ec6 704 sr_session_destroy(session);
2be182e6
BV
705 return;
706 }
707
708 if (opt_continuous)
4bf77ec6 709 add_anykey(session);
2be182e6 710
fd65ec4c 711 g_main_loop_run(main_loop);
2be182e6
BV
712
713 if (opt_continuous)
714 clear_anykey();
715
15a14bff
BV
716 if (trigger)
717 sr_trigger_free(trigger);
718
4bf77ec6 719 sr_session_datafeed_callback_remove_all(session);
fd65ec4c 720 g_main_loop_unref(main_loop);
4bf77ec6 721 sr_session_destroy(session);
2be182e6 722}