2 * This file is part of the sigrok-cli project.
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
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.
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.
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/>.
20 #include "sigrok-cli.h"
22 #include <glib/gstdio.h>
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;
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
;
42 extern struct srd_session
*srd_sess
;
45 static int set_limit_time(const struct sr_dev_inst
*sdi
)
51 if (!(time_msec
= sr_parse_timestring(opt_time
))) {
52 g_critical("Invalid time '%s'", opt_time
);
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.");
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.");
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.");
78 g_critical("This device does not support time limits.");
85 struct sr_output
*setup_output_format(const struct sr_dev_inst
*sdi
)
89 struct sr_output_format
**outputs
;
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
;
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.
105 default_output_format
= TRUE
;
108 fmtargs
= parse_generic_arg(opt_output_format
, TRUE
);
109 fmtspec
= g_hash_table_lookup(fmtargs
, "sigrok_key");
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
))
116 g_hash_table_remove(fmtargs
, "sigrok_key");
117 output_format
= outputs
[i
];
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
);
128 void datafeed_in(const struct sr_dev_inst
*sdi
,
129 const struct sr_datafeed_packet
*packet
, void *cb_data
)
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
;
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
)
156 switch (packet
->type
) {
158 g_debug("cli: Received SR_DF_HEADER.");
159 o
= setup_output_format(sdi
);
161 /* Prepare non-stdout output. */
163 if (opt_output_file
) {
164 if (default_output_format
) {
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");
172 rcvd_samples_logic
= rcvd_samples_analog
= 0;
174 if (sr_config_get(sdi
->driver
, sdi
, NULL
, SR_CONF_SAMPLERATE
,
176 samplerate
= g_variant_get_uint64(gvar
);
177 g_variant_unref(gvar
);
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.");
189 if (srd_session_start(srd_sess
) != SRD_OK
) {
190 g_critical("Failed to start decode session.");
198 g_debug("cli: Received SR_DF_META.");
199 meta
= packet
->payload
;
200 for (l
= meta
->config
; l
; l
= l
->next
) {
203 case SR_CONF_SAMPLERATE
:
204 samplerate
= g_variant_get_uint64(src
->data
);
205 g_debug("cli: Got samplerate %"PRIu64
" Hz.", samplerate
);
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.");
215 case SR_CONF_SAMPLE_INTERVAL
:
216 samplerate
= g_variant_get_uint64(src
->data
);
217 g_debug("cli: Got sample interval %"PRIu64
" ms.", samplerate
);
220 /* Unknown metadata is not an error. */
227 g_debug("cli: Received SR_DF_TRIGGER.");
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)
238 /* Don't store any samples until triggered. */
239 if (opt_wait_trigger
&& !triggered
)
242 if (limit_samples
&& rcvd_samples_logic
>= limit_samples
)
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
;
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
) {
258 if (ch
->enabled
&& ch
->type
== SR_CHANNEL_LOGIC
)
259 channels
[i
++] = ch
->name
;
262 sr_session_save_init(opt_output_file
, samplerate
,
266 save_chunk_logic(logic
->data
, input_len
, logic
->unitsize
);
270 if (srd_session_send(srd_sess
, rcvd_samples_logic
, end_sample
,
271 logic
->data
, input_len
) != SRD_OK
)
277 rcvd_samples_logic
= end_sample
;
281 analog
= packet
->payload
;
282 g_message("cli: Received SR_DF_ANALOG (%d samples).", analog
->num_samples
);
283 if (analog
->num_samples
== 0)
286 if (limit_samples
&& rcvd_samples_analog
>= limit_samples
)
289 rcvd_samples_analog
+= analog
->num_samples
;
292 case SR_DF_FRAME_BEGIN
:
293 g_debug("cli: Received SR_DF_FRAME_BEGIN.");
296 case SR_DF_FRAME_END
:
297 g_debug("cli: Received SR_DF_FRAME_END.");
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
);
308 g_string_free(out
, TRUE
);
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.");
321 if (outfile
&& outfile
!= stdout
)
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);
329 if (rcvd_samples_logic
> 0 && rcvd_samples_logic
< limit_samples
)
330 g_warning("Device only sent %" PRIu64
" samples.",
332 else if (rcvd_samples_analog
> 0 && rcvd_samples_analog
< limit_samples
)
333 g_warning("Device only sent %" PRIu64
" samples.",
334 rcvd_samples_analog
);
340 int opt_to_gvar(char *key
, char *value
, struct sr_config
*src
)
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];
349 if (!(srci
= sr_config_info_name_get(key
))) {
350 g_critical("Unknown device option '%s'.", (char *) key
);
353 src
->key
= srci
->key
;
355 if ((value
== NULL
) &&
356 (srci
->datatype
!= SR_T_BOOL
)) {
357 g_critical("Option '%s' needs a value.", (char *)key
);
362 switch (srci
->datatype
) {
364 ret
= sr_parse_sizestring(value
, &tmp_u64
);
367 src
->data
= g_variant_new_uint64(tmp_u64
);
370 ret
= sr_parse_sizestring(value
, &tmp_u64
);
373 src
->data
= g_variant_new_int32(tmp_u64
);
376 src
->data
= g_variant_new_string(value
);
382 tmp_bool
= sr_parse_boolstring(value
);
383 src
->data
= g_variant_new_boolean(tmp_bool
);
386 tmp_double
= strtof(value
, NULL
);
387 src
->data
= g_variant_new_double(tmp_double
);
389 case SR_T_RATIONAL_PERIOD
:
390 if ((ret
= sr_parse_period(value
, &p
, &q
)) != SR_OK
)
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);
396 case SR_T_RATIONAL_VOLT
:
397 if ((ret
= sr_parse_voltage(value
, &p
, &q
)) != SR_OK
)
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);
403 case SR_T_UINT64_RANGE
:
404 if (sscanf(value
, "%"PRIu64
"-%"PRIu64
, &low
, &high
) != 2) {
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);
413 case SR_T_DOUBLE_RANGE
:
414 if (sscanf(value
, "%lf-%lf", &dlow
, &dhigh
) != 2) {
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);
430 int set_dev_options(struct sr_dev_inst
*sdi
, GHashTable
*args
)
432 struct sr_config src
;
433 struct sr_channel_group
*cg
;
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)
442 cg
= select_channel_group(sdi
);
443 ret
= sr_config_set(sdi
, cg
, src
.key
, src
.data
);
445 g_critical("Failed to set device option '%s'.", (char *)key
);
453 void run_session(void)
458 struct sr_dev_inst
*sdi
;
459 uint64_t min_samples
, max_samples
;
463 devices
= device_scan();
465 g_critical("No devices found.");
468 if (g_slist_length(devices
) > 1) {
469 g_critical("sigrok-cli only supports one device for capturing.");
475 sr_session_datafeed_callback_add(datafeed_in
, NULL
);
477 if (sr_dev_open(sdi
) != SR_OK
) {
478 g_critical("Failed to open device.");
482 if (sr_session_dev_add(sdi
) != SR_OK
) {
483 g_critical("Failed to add device to session.");
484 sr_session_destroy();
489 if ((devargs
= parse_generic_arg(opt_config
, FALSE
))) {
490 if (set_dev_options(sdi
, devargs
) != SR_OK
)
492 g_hash_table_destroy(devargs
);
496 if (select_channels(sdi
) != SR_OK
) {
497 g_critical("Failed to set channels.");
498 sr_session_destroy();
503 if (!(triggerlist
= sr_parse_triggerstring(sdi
, opt_triggers
))) {
504 sr_session_destroy();
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
]);
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();
526 if (set_limit_time(sdi
) != SR_OK
) {
527 sr_session_destroy();
533 if ((sr_parse_sizestring(opt_samples
, &limit_samples
) != SR_OK
)) {
534 g_critical("Invalid sample limit '%s'.", opt_samples
);
535 sr_session_destroy();
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
);
548 if (limit_samples
> max_samples
) {
549 g_critical("The device can store only %"PRIu64
550 " samples with the current settings.", max_samples
);
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();
562 if ((sr_parse_sizestring(opt_frames
, &limit_frames
) != SR_OK
)) {
563 g_critical("Invalid sample limit '%s'.", opt_samples
);
564 sr_session_destroy();
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();
575 if (sr_session_start() != SR_OK
) {
576 g_critical("Failed to start session.");
577 sr_session_destroy();
589 sr_session_datafeed_callback_remove_all();
590 sr_session_destroy();
591 g_slist_free(devices
);
595 void save_chunk_logic(uint8_t *data
, uint64_t data_len
, int unitsize
)
597 static uint8_t *buf
= NULL
;
598 static int buf_len
= 0;
599 static int last_unitsize
= 0;
603 buf
= g_malloc(SAVE_CHUNK_SIZE
);
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
);
618 memcpy(buf
+ buf_len
, data
, data_len
);
621 last_unitsize
= unitsize
;