]> sigrok.org Git - sigrok-cli.git/blob - session.c
opt_to_gvar: support SR_T_KEYVALUE
[sigrok-cli.git] / session.c
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
20 #include "sigrok-cli.h"
21 #include <glib.h>
22 #include <glib/gstdio.h>
23 #include <string.h>
24 #include <stdlib.h>
25
26 static uint64_t limit_samples = 0;
27 static uint64_t limit_frames = 0;
28 static char *srzip_and_filename = NULL;
29
30 #ifdef HAVE_SRD
31 extern struct srd_session *srd_sess;
32 #endif
33
34 static int set_limit_time(const struct sr_dev_inst *sdi)
35 {
36         GVariant *gvar;
37         uint64_t time_msec;
38         uint64_t samplerate;
39         struct sr_dev_driver *driver;
40
41         driver = sr_dev_inst_driver_get(sdi);
42
43         if (!(time_msec = sr_parse_timestring(opt_time))) {
44                 g_critical("Invalid time '%s'", opt_time);
45                 return SR_ERR;
46         }
47
48         if (config_key_has_cap(driver, sdi, NULL, SR_CONF_LIMIT_MSEC, SR_CONF_SET)) {
49                 gvar = g_variant_new_uint64(time_msec);
50                 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_MSEC, gvar) != SR_OK) {
51                         g_critical("Failed to configure time limit.");
52                         return SR_ERR;
53                 }
54         } else if (config_key_has_cap(driver, sdi, NULL, SR_CONF_SAMPLERATE,
55                         SR_CONF_GET | SR_CONF_SET)) {
56                 /* Convert to samples based on the samplerate.  */
57                 sr_config_get(driver, sdi, NULL, SR_CONF_SAMPLERATE, &gvar);
58                 samplerate = g_variant_get_uint64(gvar);
59                 g_variant_unref(gvar);
60                 limit_samples = (samplerate) * time_msec / (uint64_t)1000;
61                 if (limit_samples == 0) {
62                         g_critical("Not enough time at this samplerate.");
63                         return SR_ERR;
64                 }
65                 gvar = g_variant_new_uint64(limit_samples);
66                 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
67                         g_critical("Failed to configure time-based sample limit.");
68                         return SR_ERR;
69                 }
70         } else {
71                 g_critical("This device does not support time limits.");
72                 return SR_ERR;
73         }
74
75         return SR_OK;
76 }
77
78 const struct sr_output *setup_output_format(const struct sr_dev_inst *sdi)
79 {
80         const struct sr_output_module *omod;
81         const struct sr_option **options;
82         const struct sr_output *o;
83         GHashTable *fmtargs, *fmtopts;
84         int size;
85         char *fmtspec;
86
87         if (!opt_output_format) {
88                 if (opt_output_file) {
89                         size = strlen(opt_output_file) + 32;
90                         srzip_and_filename = g_malloc(size);
91                         snprintf(srzip_and_filename, size, "srzip:filename=%s", opt_output_file);
92                         opt_output_format = srzip_and_filename;
93                 } else {
94                         opt_output_format = DEFAULT_OUTPUT_FORMAT;
95                 }
96         }
97
98         fmtargs = parse_generic_arg(opt_output_format, TRUE);
99         fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
100         if (!fmtspec)
101                 g_critical("Invalid output format.");
102         if (!(omod = sr_output_find(fmtspec)))
103                 g_critical("Unknown output module '%s'.", fmtspec);
104         g_hash_table_remove(fmtargs, "sigrok_key");
105         if ((options = sr_output_options_get(omod))) {
106                 fmtopts = generic_arg_to_opt(options, fmtargs);
107                 sr_output_options_free(options);
108         } else
109                 fmtopts = NULL;
110         o = sr_output_new(omod, fmtopts, sdi);
111         if (fmtopts)
112                 g_hash_table_destroy(fmtopts);
113         g_hash_table_destroy(fmtargs);
114
115         return o;
116 }
117
118 void datafeed_in(const struct sr_dev_inst *sdi,
119                 const struct sr_datafeed_packet *packet, void *cb_data)
120 {
121         const struct sr_datafeed_meta *meta;
122         const struct sr_datafeed_logic *logic;
123         const struct sr_datafeed_analog *analog;
124         struct sr_session *session;
125         struct sr_config *src;
126         static const struct sr_output *o = NULL;
127         static const struct sr_output *oa = NULL;
128         static uint64_t rcvd_samples_logic = 0;
129         static uint64_t rcvd_samples_analog = 0;
130         static uint64_t samplerate = 0;
131         static int triggered = 0;
132         static FILE *outfile = NULL;
133         GSList *l;
134         GString *out;
135         GVariant *gvar;
136         uint64_t end_sample;
137         uint64_t input_len;
138         struct sr_dev_driver *driver;
139
140         driver = sr_dev_inst_driver_get(sdi);
141
142         /* If the first packet to come in isn't a header, don't even try. */
143         if (packet->type != SR_DF_HEADER && o == NULL)
144                 return;
145
146         session = cb_data;
147         switch (packet->type) {
148         case SR_DF_HEADER:
149                 g_debug("cli: Received SR_DF_HEADER.");
150                 if (!(o = setup_output_format(sdi)))
151                         g_critical("Failed to initialize output module.");
152
153                 /* Set up backup analog output module. */
154                 oa = sr_output_new(sr_output_find("analog"), NULL, sdi);
155
156                 if (opt_output_file)
157                         outfile = g_fopen(opt_output_file, "wb");
158                 else
159                         outfile = stdout;
160
161                 rcvd_samples_logic = rcvd_samples_analog = 0;
162
163                 if (maybe_config_get(driver, sdi, NULL, SR_CONF_SAMPLERATE,
164                                 &gvar) == SR_OK) {
165                         samplerate = g_variant_get_uint64(gvar);
166                         g_variant_unref(gvar);
167                 }
168
169 #ifdef HAVE_SRD
170                 if (opt_pds) {
171                         if (samplerate) {
172                                 if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
173                                                 g_variant_new_uint64(samplerate)) != SRD_OK) {
174                                         g_critical("Failed to configure decode session.");
175                                         break;
176                                 }
177                         }
178                         if (srd_session_start(srd_sess) != SRD_OK) {
179                                 g_critical("Failed to start decode session.");
180                                 break;
181                         }
182                 }
183 #endif
184                 break;
185
186         case SR_DF_META:
187                 g_debug("cli: Received SR_DF_META.");
188                 meta = packet->payload;
189                 for (l = meta->config; l; l = l->next) {
190                         src = l->data;
191                         switch (src->key) {
192                         case SR_CONF_SAMPLERATE:
193                                 samplerate = g_variant_get_uint64(src->data);
194                                 g_debug("cli: Got samplerate %"PRIu64" Hz.", samplerate);
195 #ifdef HAVE_SRD
196                                 if (opt_pds) {
197                                         if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
198                                                         g_variant_new_uint64(samplerate)) != SRD_OK) {
199                                                 g_critical("Failed to pass samplerate to decoder.");
200                                         }
201                                 }
202 #endif
203                                 break;
204                         case SR_CONF_SAMPLE_INTERVAL:
205                                 samplerate = g_variant_get_uint64(src->data);
206                                 g_debug("cli: Got sample interval %"PRIu64" ms.", samplerate);
207                                 break;
208                         default:
209                                 /* Unknown metadata is not an error. */
210                                 break;
211                         }
212                 }
213                 break;
214
215         case SR_DF_TRIGGER:
216                 g_debug("cli: Received SR_DF_TRIGGER.");
217                 triggered = 1;
218                 break;
219
220         case SR_DF_LOGIC:
221                 logic = packet->payload;
222                 g_message("cli: Received SR_DF_LOGIC (%"PRIu64" bytes, unitsize = %d).",
223                                 logic->length, logic->unitsize);
224                 if (logic->length == 0)
225                         break;
226
227                 /* Don't store any samples until triggered. */
228                 if (opt_wait_trigger && !triggered)
229                         break;
230
231                 if (limit_samples && rcvd_samples_logic >= limit_samples)
232                         break;
233
234                 end_sample = rcvd_samples_logic + logic->length / logic->unitsize;
235                 /* Cut off last packet according to the sample limit. */
236                 if (limit_samples && end_sample > limit_samples)
237                         end_sample = limit_samples;
238                 input_len = (end_sample - rcvd_samples_logic) * logic->unitsize;
239
240                 if (opt_pds) {
241 #ifdef HAVE_SRD
242                         if (srd_session_send(srd_sess, rcvd_samples_logic, end_sample,
243                                         logic->data, input_len) != SRD_OK)
244                                 sr_session_stop(session);
245 #endif
246                 }
247
248                 rcvd_samples_logic = end_sample;
249                 break;
250
251         case SR_DF_ANALOG:
252                 analog = packet->payload;
253                 g_message("cli: Received SR_DF_ANALOG (%d samples).", analog->num_samples);
254                 if (analog->num_samples == 0)
255                         break;
256
257                 if (limit_samples && rcvd_samples_analog >= limit_samples)
258                         break;
259
260                 rcvd_samples_analog += analog->num_samples;
261                 break;
262
263         case SR_DF_FRAME_BEGIN:
264                 g_debug("cli: Received SR_DF_FRAME_BEGIN.");
265                 break;
266
267         case SR_DF_FRAME_END:
268                 g_debug("cli: Received SR_DF_FRAME_END.");
269                 break;
270
271         default:
272                 break;
273         }
274
275         if (o && outfile && !opt_pds) {
276                 if (sr_output_send(o, packet, &out) == SR_OK) {
277                         if (!out || (out->len == 0
278                                         && !opt_output_format
279                                         && packet->type == SR_DF_ANALOG)) {
280                                 /* The user didn't specify an output module,
281                                  * but needs to see this analog data. */
282                                 sr_output_send(oa, packet, &out);
283                         }
284                         if (out && out->len > 0) {
285                                 fwrite(out->str, 1, out->len, outfile);
286                                 fflush(outfile);
287                         }
288                         if (out)
289                                 g_string_free(out, TRUE);
290                 }
291         }
292
293         /* SR_DF_END needs to be handled after the output module's receive()
294          * is called, so it can properly clean up that module. */
295         if (packet->type == SR_DF_END) {
296                 g_debug("cli: Received SR_DF_END.");
297
298                 if (o) {
299                         sr_output_free(o);
300                         if (srzip_and_filename)
301                                 g_free(srzip_and_filename);
302                 }
303                 o = NULL;
304
305                 sr_output_free(oa);
306                 oa = NULL;
307
308                 if (outfile && outfile != stdout)
309                         fclose(outfile);
310
311                 if (limit_samples) {
312                         if (rcvd_samples_logic > 0 && rcvd_samples_logic < limit_samples)
313                                 g_warning("Device only sent %" PRIu64 " samples.",
314                                            rcvd_samples_logic);
315                         else if (rcvd_samples_analog > 0 && rcvd_samples_analog < limit_samples)
316                                 g_warning("Device only sent %" PRIu64 " samples.",
317                                            rcvd_samples_analog);
318                 }
319         }
320
321 }
322
323 int opt_to_gvar(char *key, char *value, struct sr_config *src)
324 {
325         const struct sr_config_info *srci;
326         double tmp_double, dlow, dhigh;
327         uint64_t tmp_u64, p, q, low, high;
328         GVariant *rational[2], *range[2];
329         GVariantBuilder *vbl;
330         gboolean tmp_bool;
331         gchar **keyval;
332         int ret;
333
334         if (!(srci = sr_config_info_name_get(key))) {
335                 g_critical("Unknown device option '%s'.", (char *) key);
336                 return -1;
337         }
338         src->key = srci->key;
339
340         if ((value == NULL) &&
341                 (srci->datatype != SR_T_BOOL)) {
342                 g_critical("Option '%s' needs a value.", (char *)key);
343                 return -1;
344         }
345
346         ret = 0;
347         switch (srci->datatype) {
348         case SR_T_UINT64:
349                 ret = sr_parse_sizestring(value, &tmp_u64);
350                 if (ret != 0)
351                         break;
352                 src->data = g_variant_new_uint64(tmp_u64);
353                 break;
354         case SR_T_INT32:
355                 ret = sr_parse_sizestring(value, &tmp_u64);
356                 if (ret != 0)
357                         break;
358                 src->data = g_variant_new_int32(tmp_u64);
359                 break;
360         case SR_T_STRING:
361                 src->data = g_variant_new_string(value);
362                 break;
363         case SR_T_BOOL:
364                 if (!value)
365                         tmp_bool = TRUE;
366                 else
367                         tmp_bool = sr_parse_boolstring(value);
368                 src->data = g_variant_new_boolean(tmp_bool);
369                 break;
370         case SR_T_FLOAT:
371                 tmp_double = strtof(value, NULL);
372                 src->data = g_variant_new_double(tmp_double);
373                 break;
374         case SR_T_RATIONAL_PERIOD:
375                 if ((ret = sr_parse_period(value, &p, &q)) != SR_OK)
376                         break;
377                 rational[0] = g_variant_new_uint64(p);
378                 rational[1] = g_variant_new_uint64(q);
379                 src->data = g_variant_new_tuple(rational, 2);
380                 break;
381         case SR_T_RATIONAL_VOLT:
382                 if ((ret = sr_parse_voltage(value, &p, &q)) != SR_OK)
383                         break;
384                 rational[0] = g_variant_new_uint64(p);
385                 rational[1] = g_variant_new_uint64(q);
386                 src->data = g_variant_new_tuple(rational, 2);
387                 break;
388         case SR_T_UINT64_RANGE:
389                 if (sscanf(value, "%"PRIu64"-%"PRIu64, &low, &high) != 2) {
390                         ret = -1;
391                         break;
392                 } else {
393                         range[0] = g_variant_new_uint64(low);
394                         range[1] = g_variant_new_uint64(high);
395                         src->data = g_variant_new_tuple(range, 2);
396                 }
397                 break;
398         case SR_T_DOUBLE_RANGE:
399                 if (sscanf(value, "%lf-%lf", &dlow, &dhigh) != 2) {
400                         ret = -1;
401                         break;
402                 } else {
403                         range[0] = g_variant_new_double(dlow);
404                         range[1] = g_variant_new_double(dhigh);
405                         src->data = g_variant_new_tuple(range, 2);
406                 }
407                 break;
408         case SR_T_KEYVALUE:
409                 /* Expects the argument to be in the form of key=value. */
410                 keyval = g_strsplit(value, "=", 2);
411                 if (!keyval[0] || !keyval[1]) {
412                         g_strfreev(keyval);
413                         ret = -1;
414                         break;
415                 } else {
416                         vbl = g_variant_builder_new(G_VARIANT_TYPE_DICTIONARY);
417                         g_variant_builder_add(vbl, "{ss}",
418                                               keyval[0], keyval[1]);
419                         src->data = g_variant_builder_end(vbl);
420                         g_strfreev(keyval);
421                 }
422                 break;
423         default:
424                 g_critical("Unknown data type specified for option '%s' "
425                            "(driver implementation bug?).", key);
426                 ret = -1;
427         }
428
429         return ret;
430 }
431
432 int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args)
433 {
434         struct sr_config src;
435         struct sr_channel_group *cg;
436         GHashTableIter iter;
437         gpointer key, value;
438         int ret;
439
440         g_hash_table_iter_init(&iter, args);
441         while (g_hash_table_iter_next(&iter, &key, &value)) {
442                 if ((ret = opt_to_gvar(key, value, &src)) != 0)
443                         return ret;
444                 cg = select_channel_group(sdi);
445                 if ((ret = maybe_config_set(sr_dev_inst_driver_get(sdi), sdi, cg,
446                                 src.key, src.data)) != SR_OK) {
447                         g_critical("Failed to set device option '%s'.", (char *)key);
448                         return ret;
449                 }
450         }
451
452         return SR_OK;
453 }
454
455 void run_session(void)
456 {
457         GSList *devices, *real_devices, *sd;
458         GHashTable *devargs;
459         GVariant *gvar;
460         struct sr_session *session;
461         struct sr_trigger *trigger;
462         struct sr_dev_inst *sdi;
463         uint64_t min_samples, max_samples;
464         gsize n_elements, i;
465         const uint32_t *dev_opts;
466         int is_demo_dev;
467         struct sr_dev_driver *driver;
468
469         devices = device_scan();
470         if (!devices) {
471                 g_critical("No devices found.");
472                 return;
473         }
474
475         real_devices = NULL;
476         for (sd = devices; sd; sd = sd->next) {
477                 sdi = sd->data;
478
479                 driver = sr_dev_inst_driver_get(sdi);
480
481                 if (sr_config_list(driver, sdi, NULL, SR_CONF_DEVICE_OPTIONS, &gvar) != SR_OK) {
482                         g_critical("Failed to query list device options.");
483                         return;
484                 }
485
486                 dev_opts = g_variant_get_fixed_array(gvar, &n_elements, sizeof(uint32_t));
487
488                 is_demo_dev = 0;
489                 for (i = 0; i < n_elements; i++) {
490                         if (dev_opts[i] == SR_CONF_DEMO_DEV)
491                                 is_demo_dev = 1;
492                 }
493
494                 g_variant_unref(gvar);
495
496                 if (!is_demo_dev)
497                         real_devices = g_slist_append(real_devices, sdi);
498         }
499
500         if (g_slist_length(devices) > 1) {
501                 if (g_slist_length(real_devices) != 1) {
502                         g_critical("sigrok-cli only supports one device for capturing.");
503                         return;
504                 } else {
505                         /* We only have one non-demo device. */
506                         g_slist_free(devices);
507                         devices = real_devices;
508                         real_devices = NULL;
509                 }
510         }
511
512         sdi = devices->data;
513         g_slist_free(devices);
514         g_slist_free(real_devices);
515
516         sr_session_new(&session);
517         sr_session_datafeed_callback_add(session, datafeed_in, NULL);
518
519         if (sr_dev_open(sdi) != SR_OK) {
520                 g_critical("Failed to open device.");
521                 return;
522         }
523
524         if (sr_session_dev_add(session, sdi) != SR_OK) {
525                 g_critical("Failed to add device to session.");
526                 sr_session_destroy(session);
527                 return;
528         }
529
530         if (opt_config) {
531                 if ((devargs = parse_generic_arg(opt_config, FALSE))) {
532                         if (set_dev_options(sdi, devargs) != SR_OK)
533                                 return;
534                         g_hash_table_destroy(devargs);
535                 }
536         }
537
538         if (select_channels(sdi) != SR_OK) {
539                 g_critical("Failed to set channels.");
540                 sr_session_destroy(session);
541                 return;
542         }
543
544         if (opt_triggers) {
545                 if (!parse_triggerstring(sdi, opt_triggers, &trigger)) {
546                         sr_session_destroy(session);
547                         return;
548                 }
549                 if (sr_session_trigger_set(session, trigger) != SR_OK) {
550                         sr_session_destroy(session);
551                         return;
552                 }
553         }
554
555         if (opt_continuous) {
556                 if (!sr_dev_has_option(sdi, SR_CONF_CONTINUOUS)) {
557                         g_critical("This device does not support continuous sampling.");
558                         sr_session_destroy(session);
559                         return;
560                 }
561         }
562
563         if (opt_time) {
564                 if (set_limit_time(sdi) != SR_OK) {
565                         sr_session_destroy(session);
566                         return;
567                 }
568         }
569
570         if (opt_samples) {
571                 if ((sr_parse_sizestring(opt_samples, &limit_samples) != SR_OK)) {
572                         g_critical("Invalid sample limit '%s'.", opt_samples);
573                         sr_session_destroy(session);
574                         return;
575                 }
576                 if (maybe_config_list(driver, sdi, NULL, SR_CONF_LIMIT_SAMPLES,
577                                 &gvar) == SR_OK) {
578                         /* The device has no compression, or compression is turned
579                          * off, and publishes its sample memory size. */
580                         g_variant_get(gvar, "(tt)", &min_samples, &max_samples);
581                         g_variant_unref(gvar);
582                         if (limit_samples < min_samples) {
583                                 g_critical("The device stores at least %"PRIu64
584                                                 " samples with the current settings.", min_samples);
585                         }
586                         if (limit_samples > max_samples) {
587                                 g_critical("The device can store only %"PRIu64
588                                                 " samples with the current settings.", max_samples);
589                         }
590                 }
591                 gvar = g_variant_new_uint64(limit_samples);
592                 if (maybe_config_set(sr_dev_inst_driver_get(sdi), sdi, NULL, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
593                         g_critical("Failed to configure sample limit.");
594                         sr_session_destroy(session);
595                         return;
596                 }
597         }
598
599         if (opt_frames) {
600                 if ((sr_parse_sizestring(opt_frames, &limit_frames) != SR_OK)) {
601                         g_critical("Invalid sample limit '%s'.", opt_samples);
602                         sr_session_destroy(session);
603                         return;
604                 }
605                 gvar = g_variant_new_uint64(limit_frames);
606                 if (maybe_config_set(sr_dev_inst_driver_get(sdi), sdi, NULL, SR_CONF_LIMIT_FRAMES, gvar) != SR_OK) {
607                         g_critical("Failed to configure frame limit.");
608                         sr_session_destroy(session);
609                         return;
610                 }
611         }
612
613         if (sr_session_start(session) != SR_OK) {
614                 g_critical("Failed to start session.");
615                 sr_session_destroy(session);
616                 return;
617         }
618
619         if (opt_continuous)
620                 add_anykey(session);
621
622         sr_session_run(session);
623
624         if (opt_continuous)
625                 clear_anykey();
626
627         sr_session_datafeed_callback_remove_all(session);
628         sr_session_destroy(session);
629
630 }
631