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