]> sigrok.org Git - libsigrok.git/blame - src/input/vcd.c
input/vcd: suggest downsampling to users for reduced resource consumption
[libsigrok.git] / src / input / vcd.c
CommitLineData
99eaa206 1/*
50985c20 2 * This file is part of the libsigrok project.
99eaa206 3 *
0157808d 4 * Copyright (C) 2012 Petteri Aimonen <jpa@sr.mail.kapsi.fi>
7db06394 5 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
0ab36d2f 6 * Copyright (C) 2017-2020 Gerhard Sittig <gerhard.sittig@gmx.net>
99eaa206
PA
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
0ab36d2f
GS
22/*
23 * The VCD input module has the following options. See the options[]
24 * declaration near the bottom of the input module's source file.
0157808d 25 *
0ab36d2f
GS
26 * numchannels: Maximum number of sigrok channels to create. VCD signals
27 * are detected in their order of declaration in the VCD file header,
28 * and mapped to sigrok channels.
0157808d 29 *
0ab36d2f
GS
30 * skip: Allows to skip data at the start of the input file. This can
31 * speed up operation on long captures.
32 * Value < 0: Skip until first timestamp that is listed in the file.
33 * (This is the default behaviour.)
34 * Value = 0: Do not skip, instead generate samples beginning from
35 * timestamp 0.
36 * Value > 0: Start at the given timestamp.
0157808d 37 *
0ab36d2f
GS
38 * downsample: Divide the samplerate by the given factor. This can
39 * speed up operation on long captures.
0157808d 40 *
0ab36d2f
GS
41 * compress: Trim idle periods which are longer than this value to span
42 * only this many timescale ticks. This can speed up operation on long
43 * captures (default 0, don't compress).
6b7ace48 44 *
0157808d
PA
45 * Based on Verilog standard IEEE Std 1364-2001 Version C
46 *
47 * Supported features:
48 * - $var with 'wire' and 'reg' types of scalar variables
49 * - $timescale definition for samplerate
50 * - multiple character variable identifiers
0ab36d2f
GS
51 * - same identifer used for multiple signals (identical values)
52 * - vector variables (bit vectors)
53 * - integer variables (analog signals with 0 digits, passed as single
54 * precision float number)
55 * - real variables (analog signals, passed on with single precision,
56 * arbitrary digits value, not user adjustable)
57 * - nested $scope, results in prefixed sigrok channel names
0157808d
PA
58 *
59 * Most important unsupported features:
0ab36d2f
GS
60 * - $dumpvars initial value declaration (is not an issue if generators
61 * provide sample data for the #0 timestamp, otherwise session data
62 * starts from zero values, and catches up when the signal changes its
63 * state to a supported value)
64 *
65 * Implementor's note: This input module specifically does _not_ use
66 * glib routines where they would hurt performance. Lots of memory
67 * allocations increase execution time not by percents but by huge
68 * factors. This motivated this module's custom code for splitting
69 * words on text lines, and pooling previously allocated buffers.
70 *
71 * TODO (in arbitrary order)
72 * - Map VCD scopes to sigrok channel groups?
73 * - Does libsigrok support nested channel groups? Or is this feature
74 * exclusive to Pulseview?
75 * - Check VCD input to VCD output behaviour. Verify that export and
76 * re-import results in identical data (well, VCD's constraints on
77 * timescale values is known to result in differences).
ec302917
GS
78 * - Check the minimum timestamp delta in the input data set, suggest
79 * the downsample=N option to users for reduced resource consumption.
80 * Popular VCD file creation utilities love to specify insanely tiny
81 * timescale values in the pico or even femto seconds range. Which
82 * results in huge sample counts after import, and potentially even
83 * terminates the application due to resource exhaustion. This issue
84 * only will vanish when common libsigrok infrastructure no longer
85 * depends on constant rate streams of samples at discrete points
86 * in time. The current input module implementation has code in place
87 * to gather timestamp statistics, but the most appropriate condition
88 * when to notify users is yet to be found.
0ab36d2f
GS
89 * - Cleanup the implementation.
90 * - Consistent use of the glib API (where appropriate).
91 * - More appropriate variable/function identifiers.
92 * - More robust handling of multi-word input phrases and chunked
93 * input buffers? This implementation assumes that e.g. b[01]+
94 * patterns are complete when they start, and the signal identifier
95 * is available as well. Which may be true assuming that input data
96 * comes in complete text lines.
97 * - See if other input modules have learned lessons that we could
98 * benefit from here as well? Pointless BOM (done), line oriented
99 * processing with EOL variants and with optional last EOL, module
100 * state reset and file re-read (stable channels list), buffered
101 * session feed, synchronized feed for mixed signal sources, digits
102 * or formats support for analog input, single vs double precision,
103 * etc.
104 * - Re-consider logging. Verbosity levels should be acceptable,
105 * but volume is an issue. Drop duplicates, and drop messages from
106 * known good code paths.
0157808d
PA
107 */
108
6ec6c43b 109#include <config.h>
0ab36d2f 110
99eaa206 111#include <glib.h>
c1aae900 112#include <libsigrok/libsigrok.h>
99eaa206 113#include "libsigrok-internal.h"
0ab36d2f
GS
114#include <stdio.h>
115#include <stdlib.h>
116#include <string.h>
99eaa206 117
3544f848 118#define LOG_PREFIX "input/vcd"
99eaa206 119
9a4fd01a 120#define CHUNK_SIZE (4 * 1024 * 1024)
0ab36d2f 121#define SCOPE_SEP '.'
e4c8a4d7
BV
122
123struct context {
0ab36d2f
GS
124 struct vcd_user_opt {
125 size_t maxchannels; /* sigrok channels (output) */
126 uint64_t downsample;
127 uint64_t compress;
128 uint64_t skip_starttime;
129 gboolean skip_specified;
130 } options;
131 gboolean use_skip;
c10ef17c 132 gboolean started;
7db06394 133 gboolean got_header;
f9bc17d4 134 uint64_t prev_timestamp;
e4c8a4d7 135 uint64_t samplerate;
0ab36d2f
GS
136 size_t vcdsignals; /* VCD signals (input) */
137 GSList *ignored_signals;
138 gboolean data_after_timestamp;
139 gboolean ignore_end_keyword;
7db06394 140 gboolean skip_until_end;
ba7dd8bb 141 GSList *channels;
0ab36d2f
GS
142 size_t unit_size;
143 size_t logic_count;
144 size_t analog_count;
145 uint8_t *current_logic;
146 float *current_floats;
147 struct {
148 size_t max_bits;
149 size_t unit_size;
150 uint8_t *value;
151 size_t sig_count;
152 } conv_bits;
153 GString *scope_prefix;
154 struct feed_queue_logic *feed_logic;
155 struct split_state {
156 size_t alloced;
157 char **words;
158 gboolean in_use;
159 } split;
ec302917
GS
160 struct ts_stats {
161 size_t total_ts_seen;
162 uint64_t last_ts_value;
163 uint64_t last_ts_delta;
164 size_t min_count;
165 struct {
166 uint64_t delta;
167 size_t count;
168 } min_items[2];
169 uint32_t early_check_shift;
170 size_t early_last_emitted;
171 } ts_stats;
0ab36d2f
GS
172 struct vcd_prev {
173 GSList *sr_channels;
174 GSList *sr_groups;
175 } prev;
e4c8a4d7
BV
176};
177
ba7dd8bb 178struct vcd_channel {
0ab36d2f
GS
179 char *name;
180 char *identifier;
181 size_t size;
182 enum sr_channeltype type;
183 size_t array_index;
184 size_t byte_idx;
185 uint8_t bit_mask;
186 char *base_name;
187 size_t range_lower, range_upper;
188 int submit_digits;
189 struct feed_queue_analog *feed_analog;
e4c8a4d7
BV
190};
191
0ab36d2f
GS
192static void free_channel(void *data)
193{
194 struct vcd_channel *vcd_ch;
195
196 vcd_ch = data;
197 if (!vcd_ch)
198 return;
199
200 g_free(vcd_ch->name);
201 g_free(vcd_ch->identifier);
202 g_free(vcd_ch->base_name);
203 feed_queue_analog_free(vcd_ch->feed_analog);
204
205 g_free(vcd_ch);
206}
207
208/* TODO Drop the local decl when this has become a common helper. */
209void sr_channel_group_free(struct sr_channel_group *cg);
210
211/* Wrapper for GDestroyNotify compatibility. */
212static void cg_free(void *p)
213{
214 sr_channel_group_free(p);
215}
216
ec302917
GS
217/*
218 * Another timestamp delta was observed, update statistics: Update the
219 * sorted list of minimum values, and increment the occurance counter.
220 * Returns the position of the item's statistics slot, or returns a huge
221 * invalid index when the current delta is larger than previously found
222 * values.
223 */
224static size_t ts_stats_update_min(struct ts_stats *stats, uint64_t delta)
225{
226 size_t idx, copy_idx;
227
228 /* Advance over previously recorded values which are smaller. */
229 idx = 0;
230 while (idx < stats->min_count && stats->min_items[idx].delta < delta)
231 idx++;
232 if (idx == ARRAY_SIZE(stats->min_items))
233 return idx;
234
235 /* Found the exact value that previously was registered? */
236 if (stats->min_items[idx].delta == delta) {
237 stats->min_items[idx].count++;
238 return idx;
239 }
240
241 /* Allocate another slot, bubble up larger values as needed. */
242 if (stats->min_count < ARRAY_SIZE(stats->min_items))
243 stats->min_count++;
244 for (copy_idx = stats->min_count - 1; copy_idx > idx; copy_idx--)
245 stats->min_items[copy_idx] = stats->min_items[copy_idx - 1];
246
247 /* Start tracking this value in the found or freed slot. */
248 memset(&stats->min_items[idx], 0, sizeof(stats->min_items[idx]));
249 stats->min_items[idx].delta = delta;
250 stats->min_items[idx].count++;
251
252 return idx;
253}
254
255/*
256 * Intermediate check for extreme oversampling in the input data. Rate
257 * limited emission of warnings to avoid noise, "late" emission of the
258 * first potential message to avoid false positives, yet need to emit
259 * the messages early (*way* before EOF) to raise awareness.
260 *
261 * TODO
262 * Tune the limits, improve perception and usefulness of these checks.
263 * Need to start emitting messages soon enough to be seen by users. Yet
264 * avoid unnecessary messages for valid input's idle/quiet phases. Slow
265 * input transitions are perfectly legal before bursty phases are seen
266 * in the input data. Needs the check become an option, on by default,
267 * but suppressable by users?
268 */
269static void ts_stats_check_early(struct ts_stats *stats)
270{
271 static const struct {
272 uint64_t delta;
273 size_t count;
274 } *cp, check_points[] = {
275 { 100, 1000000, }, /* Still x100 after 1mio transitions. */
276 { 1000, 100000, }, /* Still x1k after 100k transitions. */
277 { 10000, 10000, }, /* Still x10k after 10k transitions. */
278 { 1000000, 2500, }, /* Still x1m after 2.5k transitions. */
279 };
280
281 size_t cp_idx;
282 uint64_t seen_delta, check_delta;
283 size_t seen_count;
284
285 /* Get the current minimum's value and count. */
286 if (!stats->min_count)
287 return;
288 seen_delta = stats->min_items[0].delta;
289 seen_count = stats->min_items[0].count;
290
291 /* Emit at most one weak message per import. */
292 if (stats->early_last_emitted)
293 return;
294
295 /* Check arbitrary marks, emit rate limited warnings. */
296 (void)seen_count;
297 check_delta = seen_delta >> stats->early_check_shift;
298 for (cp_idx = 0; cp_idx < ARRAY_SIZE(check_points); cp_idx++) {
299 cp = &check_points[cp_idx];
300 /* No other match can happen below. Done iterating. */
301 if (stats->total_ts_seen > cp->count)
302 return;
303 /* Advance to the next checkpoint description. */
304 if (stats->total_ts_seen != cp->count)
305 continue;
306 /* First occurance of that timestamp count. Check the value. */
307 sr_dbg("TS early chk: total %" PRIu64 ", min delta %zu / %zu.",
308 cp->count, seen_delta, check_delta);
309 if (check_delta < cp->delta)
310 return;
311 sr_warn("Low change rate? (weak estimate, min TS delta %" PRIu64 " after %zu timestamps)",
312 seen_delta, stats->total_ts_seen);
313 sr_warn("Consider using the downsample=N option, or increasing its value.");
314 stats->early_last_emitted = stats->total_ts_seen;
315 return;
316 }
317}
318
319/* Reset the internal state of the timestamp tracker. */
320static int ts_stats_prep(struct context *inc)
321{
322 struct ts_stats *stats;
323 uint64_t down_sample_value;
324 uint32_t down_sample_shift;
325
326 stats = &inc->ts_stats;
327 memset(stats, 0, sizeof(*stats));
328
329 down_sample_value = inc->options.downsample;
330 down_sample_shift = 0;
331 while (down_sample_value >= 2) {
332 down_sample_shift++;
333 down_sample_value /= 2;
334 }
335 stats->early_check_shift = down_sample_shift;
336
337 return SR_OK;
338}
339
340/* Inspect another timestamp that was received. */
341static int ts_stats_check(struct ts_stats *stats, uint64_t curr_ts)
342{
343 uint64_t last_ts, delta;
344
345 last_ts = stats->last_ts_value;
346 stats->last_ts_value = curr_ts;
347 stats->total_ts_seen++;
348 if (stats->total_ts_seen < 2)
349 return SR_OK;
350
351 delta = curr_ts - last_ts;
352 stats->last_ts_delta = delta;
353 (void)ts_stats_update_min(stats, delta);
354
355 ts_stats_check_early(stats);
356
357 return SR_OK;
358}
359
360/* Postprocess internal timestamp tracker state. */
361static int ts_stats_post(struct context *inc, gboolean ignore_terminal)
362{
363 struct ts_stats *stats;
364 size_t min_idx;
365 uint64_t delta, over_sample, over_sample_scaled, suggest_factor;
366 enum sr_loglevel log_level;
367 gboolean is_suspicious, has_downsample;
368
369 stats = &inc->ts_stats;
370
371 /*
372 * Lookup the smallest timestamp delta which was found during
373 * data import. Ignore the last delta if its timestamp was never
374 * followed by data, and this was the only occurance. Absence of
375 * result data is non-fatal here -- this code exclusively serves
376 * to raise users' awareness of potential pitfalls, but does not
377 * change behaviour of data processing.
378 *
379 * TODO Also filter by occurance count? To not emit warnings when
380 * captured signals only change slowly by design. Only warn when
381 * the sample rate and samples count product exceeds a threshold?
382 * See below for the necessity (and potential) to adjust the log
383 * message's severity and content.
384 */
385 min_idx = 0;
386 if (ignore_terminal) do {
387 if (min_idx >= stats->min_count)
388 break;
389 delta = stats->last_ts_delta;
390 if (stats->min_items[min_idx].delta != delta)
391 break;
392 if (stats->min_items[min_idx].count != 1)
393 break;
394 min_idx++;
395 } while (0);
396 if (min_idx >= stats->min_count)
397 return SR_OK;
398
399 /*
400 * TODO Refine the condition whether to notify the user, and
401 * which severity to use after having inspected all input data.
402 * Any detail could get involved which previously was gathered
403 * during data processing: total sample count, channel count
404 * including their data type and bits width, the oversampling
405 * factor (minimum observed "change rate"), or any combination
406 * thereof. The current check is rather simple (unconditional
407 * warning for ratios starting at 100, regardless of sample or
408 * channel count).
409 */
410 over_sample = stats->min_items[min_idx].delta;
411 over_sample_scaled = over_sample / inc->options.downsample;
412 sr_dbg("TS post stats: oversample unscaled %" PRIu64 ", scaled %" PRIu64,
413 over_sample, over_sample_scaled);
414 if (over_sample_scaled < 10) {
415 sr_dbg("TS post stats: Low oversampling ratio, good.");
416 return SR_OK;
417 }
418
419 /*
420 * Avoid constructing the message from several tiny pieces by
421 * design, because this would be hard on translators. Stick with
422 * complete sentences instead, and accept the redundancy in the
423 * user's interest.
424 */
425 log_level = (over_sample_scaled > 20) ? SR_LOG_WARN : SR_LOG_INFO;
426 is_suspicious = over_sample_scaled > 20;
427 if (is_suspicious) {
428 sr_log(log_level, LOG_PREFIX ": "
429 "Suspiciously low overall change rate (total min TS delta %" PRIu64 ").",
430 over_sample_scaled);
431 } else {
432 sr_log(log_level, LOG_PREFIX ": "
433 "Low overall change rate (total min TS delta %" PRIu64 ").",
434 over_sample_scaled);
435 }
436 has_downsample = inc->options.downsample > 1;
437 suggest_factor = inc->options.downsample;
438 while (over_sample_scaled >= 10) {
439 suggest_factor *= 10;
440 over_sample_scaled /= 10;
441 }
442 if (has_downsample) {
443 sr_log(log_level, LOG_PREFIX ": "
444 "Suggest higher downsample value, like %" PRIu64 ".",
445 suggest_factor);
446 } else {
447 sr_log(log_level, LOG_PREFIX ": "
448 "Suggest to downsample, value like %" PRIu64 ".",
449 suggest_factor);
450 }
451
452 return SR_OK;
453}
454
0ab36d2f
GS
455static void check_remove_bom(GString *buf)
456{
457 static const char *bom_text = "\xef\xbb\xbf";
458
459 if (buf->len < strlen(bom_text))
460 return;
461 if (strncmp(buf->str, bom_text, strlen(bom_text)) != 0)
462 return;
463 g_string_erase(buf, 0, strlen(bom_text));
464}
465
e4c8a4d7 466/*
7db06394 467 * Reads a single VCD section from input file and parses it to name/contents.
d9251a2c 468 * e.g. $timescale 1ps $end => "timescale" "1ps"
99eaa206 469 */
0ab36d2f 470static gboolean parse_section(GString *buf, char **name, char **contents)
99eaa206 471{
0ab36d2f
GS
472 static const char *end_text = "$end";
473
99eaa206 474 gboolean status;
0ab36d2f
GS
475 size_t pos, len;
476 const char *grab_start, *grab_end;
477 GString *sname, *scontent;
7db06394 478
0ab36d2f 479 /* Preset falsy return values. Gets updated below. */
7db06394
BV
480 *name = *contents = NULL;
481 status = FALSE;
1f706c21 482
7db06394 483 /* Skip any initial white-space. */
0ab36d2f 484 pos = 0;
7db06394
BV
485 while (pos < buf->len && g_ascii_isspace(buf->str[pos]))
486 pos++;
cd1b0e8f 487
99eaa206 488 /* Section tag should start with $. */
7db06394 489 if (buf->str[pos++] != '$')
99eaa206 490 return FALSE;
cd1b0e8f 491
7db06394 492 /* Read the section tag. */
0ab36d2f 493 grab_start = &buf->str[pos];
7db06394 494 while (pos < buf->len && !g_ascii_isspace(buf->str[pos]))
0ab36d2f
GS
495 pos++;
496 grab_end = &buf->str[pos];
497 sname = g_string_new_len(grab_start, grab_end - grab_start);
7db06394
BV
498
499 /* Skip whitespace before content. */
500 while (pos < buf->len && g_ascii_isspace(buf->str[pos]))
501 pos++;
502
0ab36d2f
GS
503 /* Read the content up to the '$end' marker. */
504 scontent = g_string_sized_new(128);
505 grab_start = &buf->str[pos];
506 grab_end = g_strstr_len(grab_start, buf->len - pos, end_text);
507 if (grab_end) {
508 /* Advance 'pos' to after '$end' and more whitespace. */
509 pos = grab_end - buf->str;
510 pos += strlen(end_text);
7db06394
BV
511 while (pos < buf->len && g_ascii_isspace(buf->str[pos]))
512 pos++;
0ab36d2f
GS
513
514 /* Grab the (trimmed) content text. */
515 while (grab_end > grab_start && g_ascii_isspace(grab_end[-1]))
516 grab_end--;
517 len = grab_end - grab_start;
518 g_string_append_len(scontent, grab_start, len);
519 if (sname->len)
520 status = TRUE;
521
522 /* Consume the input text which just was taken. */
7db06394
BV
523 g_string_erase(buf, 0, pos);
524 }
99eaa206 525
0ab36d2f 526 /* Return section name and content if a section was seen. */
99eaa206 527 *name = g_string_free(sname, !status);
7db06394 528 *contents = g_string_free(scontent, !status);
7db06394 529
99eaa206
PA
530 return status;
531}
532
0ab36d2f
GS
533/*
534 * The glib routine which splits an input text into a list of words also
535 * "provides empty strings" which application code then needs to remove.
536 * And copies of the input text get allocated for all words.
537 *
538 * The repeated memory allocation is acceptable for small workloads like
539 * parsing the header sections. But the heavy lifting for sample data is
540 * done by DIY code to speedup execution. The use of glib routines would
541 * severely hurt throughput. Allocated memory gets re-used while a strict
542 * ping-pong pattern is assumed (each text line of input data enters and
543 * leaves in a strict symmetrical manner, due to the organization of the
544 * receive() routine and parse calls).
545 */
546
547/* Remove empty parts from an array returned by g_strsplit(). */
548static void remove_empty_parts(gchar **parts)
549{
550 gchar **src, **dest;
551
552 src = dest = parts;
553 while (*src) {
554 if (!**src) {
555 g_free(*src);
556 } else {
557 if (dest != src)
558 *dest = *src;
559 dest++;
560 }
561 src++;
562 }
563 *dest = NULL;
564}
565
566static char **split_text_line(struct context *inc, char *text, size_t *count)
567{
568 struct split_state *state;
569 size_t counted, alloced, wanted;
570 char **words, *p, **new_words;
571
572 state = &inc->split;
573
574 if (count)
575 *count = 0;
576
577 if (state->in_use) {
578 sr_dbg("coding error, split() called while \"in use\".");
579 return NULL;
580 }
581
582 /*
583 * Seed allocation when invoked for the first time. Assume
584 * simple logic data, start with a few words per line. Will
585 * automatically adjust with subsequent use.
586 */
587 if (!state->alloced) {
588 alloced = 20;
589 words = g_malloc(sizeof(words[0]) * alloced);
590 if (!words)
591 return NULL;
592 state->alloced = alloced;
593 state->words = words;
594 }
595
596 /* Start with most recently allocated word list space. */
597 alloced = state->alloced;
598 words = state->words;
599 counted = 0;
600
601 /* As long as more input text remains ... */
602 p = text;
603 while (*p) {
604 /* Resize word list if needed. Just double the size. */
605 if (counted + 1 >= alloced) {
606 wanted = 2 * alloced;
607 new_words = g_realloc(words, sizeof(words[0]) * wanted);
608 if (!new_words) {
609 return NULL;
610 }
611 words = new_words;
612 alloced = wanted;
613 state->words = words;
614 state->alloced = alloced;
615 }
616
617 /* Skip leading spaces. */
618 while (g_ascii_isspace(*p))
619 p++;
620 if (!*p)
621 break;
622
623 /* Add found word to word list. */
624 words[counted++] = p;
625
626 /* Find end of the word. Terminate loop upon EOS. */
627 while (*p && !g_ascii_isspace(*p))
628 p++;
629 if (!*p)
630 break;
631
632 /* More text follows. Terminate the word. */
633 *p++ = '\0';
634 }
635
636 /*
637 * NULL terminate the word list. Provide its length so that
638 * calling code need not re-iterate the list to get the count.
639 */
640 words[counted] = NULL;
641 if (count)
642 *count = counted;
643 state->in_use = TRUE;
644
645 return words;
646}
647
648static void free_text_split(struct context *inc, char **words)
649{
650 struct split_state *state;
651
652 state = &inc->split;
653
654 if (words && words != state->words) {
655 sr_dbg("coding error, free() arg differs from split() result.");
656 }
657
658 /* "Double free" finally releases the memory. */
659 if (!state->in_use) {
660 g_free(state->words);
661 state->words = NULL;
662 state->alloced = 0;
663 }
664
665 /* Mark as no longer in use. */
666 state->in_use = FALSE;
667}
668
669static gboolean have_header(GString *buf)
670{
671 static const char *enddef_txt = "$enddefinitions";
672 static const char *end_txt = "$end";
673
674 char *p, *p_stop;
675
676 /* Search for "end of definitions" section keyword. */
677 p = g_strstr_len(buf->str, buf->len, enddef_txt);
678 if (!p)
679 return FALSE;
680 p += strlen(enddef_txt);
681
682 /* Search for end of section (content expected to be empty). */
683 p_stop = &buf->str[buf->len];
684 p_stop -= strlen(end_txt);
685 while (p < p_stop && g_ascii_isspace(*p))
686 p++;
687 if (strncmp(p, end_txt, strlen(end_txt)) != 0)
688 return FALSE;
689 p += strlen(end_txt);
690
691 return TRUE;
692}
693
694static int parse_timescale(struct context *inc, char *contents)
db9679af 695{
0ab36d2f
GS
696 uint64_t p, q;
697
698 /*
699 * The standard allows for values 1, 10 or 100
700 * and units s, ms, us, ns, ps and fs.
701 */
702 if (sr_parse_period(contents, &p, &q) != SR_OK) {
703 sr_err("Parsing $timescale failed.");
704 return SR_ERR_DATA;
705 }
706
707 inc->samplerate = q / p;
708 sr_dbg("Samplerate: %" PRIu64, inc->samplerate);
709 if (q % p != 0) {
710 /* Does not happen unless time value is non-standard */
711 sr_warn("Inexact rounding of samplerate, %" PRIu64 " / %" PRIu64 " to %" PRIu64 " Hz.",
712 q, p, inc->samplerate);
713 }
714
715 return SR_OK;
716}
717
718/*
719 * Handle '$scope' and '$upscope' sections in the input file. Assume that
720 * input signals have a "base name", which may be ambiguous within the
721 * file. These names get declared within potentially nested scopes, which
722 * this implementation uses to create longer but hopefully unique and
723 * thus more usable sigrok channel names.
724 *
725 * Track the currently effective scopes in a string variable to simplify
726 * the channel name creation. Start from an empty string, then append the
727 * scope name and a separator when a new scope opens, and remove the last
728 * scope name when a scope closes. This allows to simply prefix basenames
729 * with the current scope to get a full name.
730 *
731 * It's an implementation detail to keep the trailing NUL here in the
732 * GString member, to simplify the g_strconcat() call in the channel name
733 * creation.
734 *
735 * TODO
736 * - Check whether scope types must get supported, this implementation
737 * does not distinguish between 'module' and 'begin' and what else
738 * may be seen. The first word simply gets ignored.
739 * - Check the allowed alphabet for scope names. This implementation
740 * assumes "programming language identifier" style (alphanumeric with
741 * underscores, plus brackets since we've seen them in example files).
742 */
743static int parse_scope(struct context *inc, char *contents, gboolean is_up)
744{
745 char *sep_pos, *name_pos;
746 char **parts;
747 size_t length;
748
749 /*
750 * The 'upscope' case, drop one scope level (if available). Accept
751 * excess 'upscope' calls, assume that a previous 'scope' section
752 * was ignored because it referenced our software package's name.
753 */
754 if (is_up) {
755 /*
756 * Check for a second right-most separator (and position
757 * right behind that, which is the start of the last
758 * scope component), or fallback to the start of string.
759 * g_string_erase() from that positon to the end to drop
760 * the last component.
761 */
762 name_pos = inc->scope_prefix->str;
763 do {
764 sep_pos = strrchr(name_pos, SCOPE_SEP);
765 if (!sep_pos)
766 break;
767 *sep_pos = '\0';
768 sep_pos = strrchr(name_pos, SCOPE_SEP);
769 if (!sep_pos)
770 break;
771 name_pos = ++sep_pos;
772 } while (0);
773 length = name_pos - inc->scope_prefix->str;
774 g_string_truncate(inc->scope_prefix, length);
775 g_string_append_c(inc->scope_prefix, '\0');
776 sr_dbg("$upscope, prefix now: \"%s\"", inc->scope_prefix->str);
777 return SR_OK;
778 }
779
780 /*
781 * The 'scope' case, add another scope level. But skip our own
782 * package name, assuming that this is an artificial node which
783 * was emitted by libsigrok's VCD output module.
784 */
785 sr_spew("$scope, got: \"%s\"", contents);
786 parts = g_strsplit_set(contents, " \r\n\t", 0);
787 remove_empty_parts(parts);
788 length = g_strv_length(parts);
789 if (length != 2) {
790 sr_err("Unsupported 'scope' syntax: %s", contents);
791 g_strfreev(parts);
792 return SR_ERR_DATA;
793 }
794 name_pos = parts[1];
795 if (strcmp(name_pos, PACKAGE_NAME) == 0) {
796 sr_info("Skipping scope with application's package name: %s",
797 name_pos);
798 *name_pos = '\0';
799 }
800 if (*name_pos) {
801 /* Drop NUL, append scope name and separator, and re-add NUL. */
802 g_string_truncate(inc->scope_prefix, inc->scope_prefix->len - 1);
803 g_string_append_printf(inc->scope_prefix,
804 "%s%c%c", name_pos, SCOPE_SEP, '\0');
805 }
806 g_strfreev(parts);
807 sr_dbg("$scope, prefix now: \"%s\"", inc->scope_prefix->str);
808
809 return SR_OK;
810}
811
812/**
813 * Parse a $var section which describes a VCD signal ("variable").
814 *
815 * @param[in] inc Input module context.
816 * @param[in] contents Input text, content of $var section.
817 */
818static int parse_header_var(struct context *inc, char *contents)
819{
820 char **parts;
821 size_t length;
822 char *type, *size_txt, *id, *ref, *idx;
823 gboolean is_reg, is_wire, is_real, is_int;
824 enum sr_channeltype ch_type;
825 size_t size, next_size;
4237ab9e
GS
826 struct vcd_channel *vcd_ch;
827
0ab36d2f
GS
828 /*
829 * Format of $var or $reg header specs:
830 * $var type size identifier reference [opt-index] $end
831 */
832 parts = g_strsplit_set(contents, " \r\n\t", 0);
833 remove_empty_parts(parts);
834 length = g_strv_length(parts);
835 if (length != 4 && length != 5) {
836 sr_warn("$var section should have 4 or 5 items");
837 g_strfreev(parts);
838 return SR_ERR_DATA;
839 }
840
841 type = parts[0];
842 size_txt = parts[1];
843 id = parts[2];
844 ref = parts[3];
845 idx = parts[4];
846 if (idx && !*idx)
847 idx = NULL;
848 is_reg = g_strcmp0(type, "reg") == 0;
849 is_wire = g_strcmp0(type, "wire") == 0;
850 is_real = g_strcmp0(type, "real") == 0;
851 is_int = g_strcmp0(type, "integer") == 0;
852
853 if (is_reg || is_wire) {
854 ch_type = SR_CHANNEL_LOGIC;
855 } else if (is_real || is_int) {
856 ch_type = SR_CHANNEL_ANALOG;
857 } else {
858 sr_info("Unsupported signal type: '%s'", type);
859 g_strfreev(parts);
860 return SR_ERR_DATA;
861 }
862
863 size = strtol(size_txt, NULL, 10);
864 if (ch_type == SR_CHANNEL_ANALOG) {
865 if (is_real && size != 32 && size != 64) {
866 /*
867 * The VCD input module does not depend on the
868 * specific width of the floating point value.
869 * This is just for information. Upon value
870 * changes, a mere string gets converted to
871 * float, so we may not care at all.
872 *
873 * Strictly speaking we might warn for 64bit
874 * (double precision) declarations, because
875 * sigrok internally uses single precision
876 * (32bit) only.
877 */
878 sr_info("Unexpected real width: '%s'", size_txt);
879 }
880 /* Simplify code paths below, by assuming size 1. */
881 size = 1;
882 }
883 if (!size) {
884 sr_warn("Unsupported signal size: '%s'", size_txt);
885 g_strfreev(parts);
886 return SR_ERR_DATA;
887 }
888 if (inc->conv_bits.max_bits < size)
889 inc->conv_bits.max_bits = size;
890 next_size = inc->logic_count + inc->analog_count + size;
891 if (inc->options.maxchannels && next_size > inc->options.maxchannels) {
892 sr_warn("Skipping '%s%s', exceeds requested channel count %zu.",
893 ref, idx ? idx : "", inc->options.maxchannels);
894 inc->ignored_signals = g_slist_append(inc->ignored_signals,
895 g_strdup(id));
896 g_strfreev(parts);
897 return SR_OK;
898 }
899
900 vcd_ch = g_malloc0(sizeof(*vcd_ch));
901 vcd_ch->identifier = g_strdup(id);
902 vcd_ch->name = g_strconcat(inc->scope_prefix->str, ref, idx, NULL);
903 vcd_ch->size = size;
904 vcd_ch->type = ch_type;
905 switch (ch_type) {
906 case SR_CHANNEL_LOGIC:
907 vcd_ch->array_index = inc->logic_count;
908 vcd_ch->byte_idx = vcd_ch->array_index / 8;
909 vcd_ch->bit_mask = 1 << (vcd_ch->array_index % 8);
910 inc->logic_count += size;
911 break;
912 case SR_CHANNEL_ANALOG:
913 vcd_ch->array_index = inc->analog_count++;
914 /* TODO: Use proper 'digits' value for this input module. */
915 vcd_ch->submit_digits = is_real ? 2 : 0;
916 break;
917 }
918 inc->vcdsignals++;
919 sr_spew("VCD signal %zu '%s' ID '%s' (size %zu), sr type %s, idx %zu.",
920 inc->vcdsignals, vcd_ch->name,
921 vcd_ch->identifier, vcd_ch->size,
922 vcd_ch->type == SR_CHANNEL_ANALOG ? "A" : "L",
923 vcd_ch->array_index);
924 inc->channels = g_slist_append(inc->channels, vcd_ch);
925 g_strfreev(parts);
926
927 return SR_OK;
db9679af
ML
928}
929
0ab36d2f
GS
930/**
931 * Construct the name of the nth sigrok channel for a VCD signal.
932 *
933 * Uses the VCD signal name for scalar types and single-bit signals.
934 * Uses "signal.idx" for multi-bit VCD signals without a range spec in
935 * their declaration. Uses "signal[idx]" when a range is known and was
936 * verified.
937 *
938 * @param[in] vcd_ch The VCD signal's description.
939 * @param[in] idx The sigrok channel's index within the VCD signal's group.
940 *
941 * @return An allocated text buffer which callers need to release, #NULL
942 * upon failure to create a sigrok channel name.
943 */
944static char *get_channel_name(struct vcd_channel *vcd_ch, size_t idx)
99eaa206 945{
0ab36d2f
GS
946 char *open_pos, *close_pos, *check_pos, *endptr;
947 gboolean has_brackets, has_range;
948 size_t upper, lower, tmp;
949 char *ch_name;
950
951 /* Handle simple scalar types, and single-bit logic first. */
952 if (vcd_ch->size <= 1)
953 return g_strdup(vcd_ch->name);
954
955 /*
956 * If not done before: Search for a matching pair of brackets in
957 * the right-most position at the very end of the string. Get the
958 * two colon separated numbers between the brackets, which are
959 * the range limits for array indices into the multi-bit signal.
960 * Grab the "base name" of the VCD signal.
961 *
962 * Notice that arrays can get nested. Earlier path components can
963 * be indexed as well, that's why we need the right-most range.
964 * This implementation does not handle bit vectors of size 1 here
965 * by explicit logic. The check for a [0:0] range would even fail.
966 * But the case of size 1 is handled above, and "happens to" give
967 * the expected result (just the VCD signal name).
968 *
969 * This implementation also deals with range limits in the reverse
970 * order, as well as ranges which are not 0-based (like "[4:7]").
971 */
972 if (!vcd_ch->base_name) {
973 has_range = TRUE;
974 open_pos = strrchr(vcd_ch->name, '[');
975 close_pos = strrchr(vcd_ch->name, ']');
976 if (close_pos && close_pos[1])
977 close_pos = NULL;
978 has_brackets = open_pos && close_pos && close_pos > open_pos;
979 if (!has_brackets)
980 has_range = FALSE;
981 if (has_range) {
982 check_pos = &open_pos[1];
983 endptr = NULL;
984 upper = strtoul(check_pos, &endptr, 10);
985 if (!endptr || *endptr != ':')
986 has_range = FALSE;
987 }
988 if (has_range) {
989 check_pos = &endptr[1];
990 endptr = NULL;
991 lower = strtoul(check_pos, &endptr, 10);
992 if (!endptr || endptr != close_pos)
993 has_range = FALSE;
994 }
995 if (has_range && lower > upper) {
996 tmp = lower;
997 lower = upper;
998 upper = tmp;
999 }
1000 if (has_range) {
1001 if (lower >= upper)
1002 has_range = FALSE;
1003 if (upper + 1 - lower != vcd_ch->size)
1004 has_range = FALSE;
1005 }
1006 if (has_range) {
1007 /* Temporarily patch the VCD channel's name. */
1008 *open_pos = '\0';
1009 vcd_ch->base_name = g_strdup(vcd_ch->name);
1010 *open_pos = '[';
1011 vcd_ch->range_lower = lower;
1012 vcd_ch->range_upper = upper;
1013 }
99eaa206 1014 }
0ab36d2f
GS
1015 has_range = vcd_ch->range_lower + vcd_ch->range_upper;
1016 if (has_range && idx >= vcd_ch->size)
1017 has_range = FALSE;
1018 if (!has_range)
1019 return g_strdup_printf("%s.%zu", vcd_ch->name, idx);
cd1b0e8f 1020
0ab36d2f
GS
1021 /*
1022 * Create a sigrok channel name with just the bit's index in
1023 * brackets. This avoids "name[7:0].3" results, instead results
1024 * in "name[3]".
1025 */
1026 ch_name = g_strdup_printf("%s[%zu]",
1027 vcd_ch->base_name, vcd_ch->range_lower + idx);
1028 return ch_name;
1029}
1030
1031/*
1032 * Create (analog or logic) sigrok channels for the VCD signals. Create
1033 * multiple sigrok channels for vector input since sigrok has no concept
1034 * of multi-bit signals. Create a channel group for the vector's bits
1035 * though to reflect that they form a unit. This is beneficial when UIs
1036 * support optional "collapsed" displays of channel groups (like
1037 * "parallel bus, hex output").
1038 *
1039 * Defer channel creation until after completion of parsing the input
1040 * file header. Make sure to create all logic channels first before the
1041 * analog channels get created. This avoids issues with the mapping of
1042 * channel indices to bitmap positions in the sample buffer.
1043 */
1044static void create_channels(const struct sr_input *in,
1045 struct sr_dev_inst *sdi, enum sr_channeltype ch_type)
1046{
1047 struct context *inc;
1048 size_t ch_idx;
1049 GSList *l;
1050 struct vcd_channel *vcd_ch;
1051 size_t size_idx;
1052 char *ch_name;
1053 struct sr_channel_group *cg;
1054 struct sr_channel *ch;
1055
1056 inc = in->priv;
1057
1058 ch_idx = 0;
1059 if (ch_type > SR_CHANNEL_LOGIC)
1060 ch_idx += inc->logic_count;
1061 if (ch_type > SR_CHANNEL_ANALOG)
1062 ch_idx += inc->analog_count;
1063 for (l = inc->channels; l; l = l->next) {
1064 vcd_ch = l->data;
1065 if (vcd_ch->type != ch_type)
1066 continue;
1067 cg = NULL;
1068 if (vcd_ch->size != 1) {
1069 cg = g_malloc0(sizeof(*cg));
1070 cg->name = g_strdup(vcd_ch->name);
1071 }
1072 for (size_idx = 0; size_idx < vcd_ch->size; size_idx++) {
1073 ch_name = get_channel_name(vcd_ch, size_idx);
1074 sr_dbg("sigrok channel idx %zu, name %s, type %s, en %d.",
1075 ch_idx, ch_name,
1076 ch_type == SR_CHANNEL_ANALOG ? "A" : "L", TRUE);
1077 ch = sr_channel_new(sdi, ch_idx, ch_type, TRUE, ch_name);
1078 g_free(ch_name);
1079 ch_idx++;
1080 if (cg)
1081 cg->channels = g_slist_append(cg->channels, ch);
1082 }
1083 if (cg)
1084 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
1085 }
1086}
1087
1088static void create_feeds(const struct sr_input *in)
1089{
1090 struct context *inc;
1091 GSList *l;
1092 struct vcd_channel *vcd_ch;
1093 size_t ch_idx;
1094 struct sr_channel *ch;
1095
1096 inc = in->priv;
1097
1098 /* Create one feed for logic data. */
1099 inc->unit_size = (inc->logic_count + 7) / 8;
1100 inc->feed_logic = feed_queue_logic_alloc(in->sdi,
1101 CHUNK_SIZE / inc->unit_size, inc->unit_size);
1102
1103 /* Create one feed per analog channel. */
1104 for (l = inc->channels; l; l = l->next) {
1105 vcd_ch = l->data;
1106 if (vcd_ch->type != SR_CHANNEL_ANALOG)
1107 continue;
1108 ch_idx = vcd_ch->array_index;
1109 ch_idx += inc->logic_count;
1110 ch = g_slist_nth_data(in->sdi->channels, ch_idx);
1111 vcd_ch->feed_analog = feed_queue_analog_alloc(in->sdi,
1112 CHUNK_SIZE / sizeof(float),
1113 vcd_ch->submit_digits, ch);
1114 }
99eaa206
PA
1115}
1116
08f8421a
GS
1117/*
1118 * Keep track of a previously created channel list, in preparation of
1119 * re-reading the input file. Gets called from reset()/cleanup() paths.
1120 */
1121static void keep_header_for_reread(const struct sr_input *in)
1122{
1123 struct context *inc;
1124
1125 inc = in->priv;
0ab36d2f
GS
1126
1127 g_slist_free_full(inc->prev.sr_groups, cg_free);
1128 inc->prev.sr_groups = in->sdi->channel_groups;
1129 in->sdi->channel_groups = NULL;
1130
1131 g_slist_free_full(inc->prev.sr_channels, sr_channel_free_cb);
1132 inc->prev.sr_channels = in->sdi->channels;
08f8421a
GS
1133 in->sdi->channels = NULL;
1134}
1135
1136/*
1137 * Check whether the input file is being re-read, and refuse operation
1138 * when essential parameters of the acquisition have changed in ways
1139 * that are unexpected to calling applications. Gets called after the
1140 * file header got parsed (again).
1141 *
1142 * Changing the channel list across re-imports of the same file is not
1143 * supported, by design and for valid reasons, see bug #1215 for details.
1144 * Users are expected to start new sessions when they change these
1145 * essential parameters in the acquisition's setup. When we accept the
1146 * re-read file, then make sure to keep using the previous channel list,
1147 * applications may still reference them.
1148 */
0ab36d2f 1149static gboolean check_header_in_reread(const struct sr_input *in)
08f8421a
GS
1150{
1151 struct context *inc;
1152
1153 if (!in)
1154 return FALSE;
1155 inc = in->priv;
1156 if (!inc)
1157 return FALSE;
0ab36d2f 1158 if (!inc->prev.sr_channels)
08f8421a
GS
1159 return TRUE;
1160
0ab36d2f 1161 if (sr_channel_lists_differ(inc->prev.sr_channels, in->sdi->channels)) {
08f8421a
GS
1162 sr_err("Channel list change not supported for file re-read.");
1163 return FALSE;
1164 }
0ab36d2f
GS
1165
1166 g_slist_free_full(in->sdi->channel_groups, cg_free);
1167 in->sdi->channel_groups = inc->prev.sr_groups;
1168 inc->prev.sr_groups = NULL;
1169
08f8421a 1170 g_slist_free_full(in->sdi->channels, sr_channel_free_cb);
0ab36d2f
GS
1171 in->sdi->channels = inc->prev.sr_channels;
1172 inc->prev.sr_channels = NULL;
08f8421a
GS
1173
1174 return TRUE;
1175}
1176
0ab36d2f
GS
1177/* Parse VCD file header sections (rate and variables declarations). */
1178static int parse_header(const struct sr_input *in, GString *buf)
99eaa206 1179{
7db06394
BV
1180 struct context *inc;
1181 gboolean status;
0ab36d2f
GS
1182 char *name, *contents;
1183 size_t size;
ec302917 1184 int ret;
99eaa206 1185
7db06394 1186 inc = in->priv;
0ab36d2f
GS
1187
1188 /* Parse sections until complete header was seen. */
7db06394 1189 status = FALSE;
0ab36d2f
GS
1190 name = contents = NULL;
1191 inc->conv_bits.max_bits = 1;
7db06394 1192 while (parse_section(buf, &name, &contents)) {
99eaa206 1193 sr_dbg("Section '%s', contents '%s'.", name, contents);
cd1b0e8f 1194
e4c8a4d7 1195 if (g_strcmp0(name, "enddefinitions") == 0) {
99eaa206 1196 status = TRUE;
0ab36d2f
GS
1197 goto done_section;
1198 }
1199 if (g_strcmp0(name, "timescale") == 0) {
1200 if (parse_timescale(inc, contents) != SR_OK)
1201 status = FALSE;
1202 goto done_section;
1203 }
1204 if (g_strcmp0(name, "scope") == 0) {
1205 if (parse_scope(inc, contents, FALSE) != SR_OK)
1206 status = FALSE;
1207 goto done_section;
1208 }
1209 if (g_strcmp0(name, "upscope") == 0) {
1210 if (parse_scope(inc, NULL, TRUE) != SR_OK)
1211 status = FALSE;
1212 goto done_section;
1213 }
1214 if (g_strcmp0(name, "var") == 0) {
1215 if (parse_header_var(inc, contents) != SR_OK)
1216 status = FALSE;
1217 goto done_section;
99eaa206 1218 }
cd1b0e8f 1219
0ab36d2f 1220done_section:
db0e5c99
PA
1221 g_free(name);
1222 name = NULL;
1223 g_free(contents);
1224 contents = NULL;
0ab36d2f
GS
1225
1226 if (status)
1227 break;
99eaa206 1228 }
99eaa206
PA
1229 g_free(name);
1230 g_free(contents);
cd1b0e8f 1231
7db06394 1232 inc->got_header = status;
0ab36d2f
GS
1233 if (!status)
1234 return SR_ERR_DATA;
cd1b0e8f 1235
0ab36d2f
GS
1236 /* Create sigrok channels here, late, logic before analog. */
1237 create_channels(in, in->sdi, SR_CHANNEL_LOGIC);
1238 create_channels(in, in->sdi, SR_CHANNEL_ANALOG);
1239 if (!check_header_in_reread(in))
1240 return SR_ERR_DATA;
1241 create_feeds(in);
99eaa206 1242
e4c8a4d7 1243 /*
0ab36d2f
GS
1244 * Allocate space for text to number conversion, and buffers to
1245 * hold current sample values before submission to the session
1246 * feed. Allocate one buffer for all logic bits, and another for
1247 * all floating point values of all analog channels.
1248 *
1249 * The buffers get updated when the VCD input stream communicates
1250 * value changes. Upon reception of VCD timestamps, the buffer can
1251 * provide the previously received values, to "fill in the gaps"
1252 * in the generation of a continuous stream of samples for the
1253 * sigrok session.
99eaa206 1254 */
0ab36d2f
GS
1255 size = (inc->conv_bits.max_bits + 7) / 8;
1256 inc->conv_bits.unit_size = size;
1257 inc->conv_bits.value = g_malloc0(size);
1258 if (!inc->conv_bits.value)
1259 return SR_ERR_MALLOC;
1260
1261 size = (inc->logic_count + 7) / 8;
1262 inc->unit_size = size;
1263 inc->current_logic = g_malloc0(size);
1264 if (inc->unit_size && !inc->current_logic)
1265 return SR_ERR_MALLOC;
1266 size = sizeof(inc->current_floats[0]) * inc->analog_count;
1267 inc->current_floats = g_malloc0(size);
1268 if (size && !inc->current_floats)
1269 return SR_ERR_MALLOC;
1270 for (size = 0; size < inc->analog_count; size++)
1271 inc->current_floats[size] = 0.;
54ee427d 1272
ec302917
GS
1273 ret = ts_stats_prep(inc);
1274 if (ret != SR_OK)
1275 return ret;
1276
54ee427d 1277 return SR_OK;
99eaa206
PA
1278}
1279
0ab36d2f
GS
1280/*
1281 * Add N copies of previously received values to the session, before
1282 * subsequent value changes will update the data buffer. Locally buffer
1283 * sample data to minimize the number of send() calls.
1284 */
1285static void add_samples(const struct sr_input *in, size_t count, gboolean flush)
61a429c9 1286{
db0e5c99 1287 struct context *inc;
0ab36d2f
GS
1288 GSList *ch_list;
1289 struct vcd_channel *vcd_ch;
1290 struct feed_queue_analog *q;
1291 float value;
cd1b0e8f 1292
db0e5c99 1293 inc = in->priv;
61a429c9 1294
0ab36d2f
GS
1295 if (inc->logic_count) {
1296 feed_queue_logic_submit(inc->feed_logic,
1297 inc->current_logic, count);
1298 if (flush)
1299 feed_queue_logic_flush(inc->feed_logic);
1300 }
1301 for (ch_list = inc->channels; ch_list; ch_list = ch_list->next) {
1302 vcd_ch = ch_list->data;
1303 if (vcd_ch->type != SR_CHANNEL_ANALOG)
1304 continue;
1305 q = vcd_ch->feed_analog;
1306 if (!q)
1307 continue;
1308 value = inc->current_floats[vcd_ch->array_index];
1309 feed_queue_analog_submit(q, value, count);
1310 if (flush)
1311 feed_queue_analog_flush(q);
1312 }
1313}
cd1b0e8f 1314
0ab36d2f
GS
1315static gint vcd_compare_id(gconstpointer a, gconstpointer b)
1316{
1317 return strcmp((const char *)a, (const char *)b);
db0e5c99
PA
1318}
1319
0ab36d2f 1320static gboolean is_ignored(struct context *inc, const char *id)
db0e5c99 1321{
0ab36d2f 1322 GSList *ignored;
db0e5c99 1323
0ab36d2f
GS
1324 ignored = g_slist_find_custom(inc->ignored_signals, id, vcd_compare_id);
1325 return ignored != NULL;
1326}
cd1b0e8f 1327
0ab36d2f
GS
1328/*
1329 * Get an analog channel's value from a bit pattern (VCD 'integer' type).
1330 * The implementation assumes a maximum integer width (64bit), the API
1331 * doesn't (beyond the return data type). The use of SR_CHANNEL_ANALOG
1332 * channels may further constraint the number of significant digits
1333 * (current asumption: float -> 23bit).
1334 */
1335static float get_int_val(uint8_t *in_bits_data, size_t in_bits_count)
1336{
1337 uint64_t int_value;
1338 size_t byte_count, byte_idx;
1339 float flt_value; /* typeof(inc->current_floats[0]) */
1340
1341 /* Convert bit pattern to integer number (limited range). */
1342 int_value = 0;
1343 byte_count = (in_bits_count + 7) / 8;
1344 for (byte_idx = 0; byte_idx < byte_count; byte_idx++) {
1345 if (byte_idx >= sizeof(int_value))
1346 break;
1347 int_value |= *in_bits_data++ << (byte_idx * 8);
1348 }
1349 flt_value = int_value;
db0e5c99 1350
0ab36d2f
GS
1351 return flt_value;
1352}
cd1b0e8f 1353
0ab36d2f
GS
1354/*
1355 * Set a logic channel's level depending on the VCD signal's identifier
1356 * and parsed value. Multi-bit VCD values will affect several sigrok
1357 * channels. One VCD signal name can translate to several sigrok channels.
1358 */
1359static void process_bits(struct context *inc, char *identifier,
1360 uint8_t *in_bits_data, size_t in_bits_count)
1361{
1362 size_t size;
1363 gboolean have_int;
1364 GSList *l;
1365 struct vcd_channel *vcd_ch;
1366 float int_val;
1367 size_t bit_idx;
1368 uint8_t *in_bit_ptr, in_bit_mask;
1369 uint8_t *out_bit_ptr, out_bit_mask;
1370 uint8_t bit_val;
1371
1372 size = 0;
1373 have_int = FALSE;
1374 int_val = 0;
1375 for (l = inc->channels; l; l = l->next) {
1376 vcd_ch = l->data;
1377 if (g_strcmp0(identifier, vcd_ch->identifier) != 0)
1378 continue;
1379 if (vcd_ch->type == SR_CHANNEL_ANALOG) {
1380 /* Special case for 'integer' VCD signal types. */
1381 size = vcd_ch->size; /* Flag for "VCD signal found". */
1382 if (!have_int) {
1383 int_val = get_int_val(in_bits_data, in_bits_count);
1384 have_int = TRUE;
1385 }
1386 inc->current_floats[vcd_ch->array_index] = int_val;
1387 continue;
1388 }
1389 if (vcd_ch->type != SR_CHANNEL_LOGIC)
1390 continue;
1391 sr_spew("Processing %s data, id '%s', ch %zu sz %zu",
1392 (size == 1) ? "bit" : "vector",
1393 identifier, vcd_ch->array_index, vcd_ch->size);
1394
1395 /* Found our (logic) channel. Setup in/out bit positions. */
1396 size = vcd_ch->size;
1397 in_bit_ptr = in_bits_data;
1398 in_bit_mask = 1 << 0;
1399 out_bit_ptr = &inc->current_logic[vcd_ch->byte_idx];
1400 out_bit_mask = vcd_ch->bit_mask;
1401
1402 /*
1403 * Pass VCD input bit(s) to sigrok logic bits. Conversion
1404 * must be done repeatedly because one VCD signal name
1405 * can translate to several sigrok channels, and shifting
1406 * a previously computed bit field to another channel's
1407 * position in the buffer would be nearly as expensive,
1408 * and certain would increase complexity of the code.
1409 */
1410 for (bit_idx = 0; bit_idx < size; bit_idx++) {
1411 /* Get the bit value from input data. */
1412 bit_val = 0;
1413 if (bit_idx < in_bits_count) {
1414 bit_val = *in_bit_ptr & in_bit_mask;
1415 in_bit_mask <<= 1;
1416 if (!in_bit_mask) {
1417 in_bit_mask = 1 << 0;
1418 in_bit_ptr++;
1419 }
1420 }
1421 /* Manipulate the sample buffer data image. */
1422 if (bit_val)
1423 *out_bit_ptr |= out_bit_mask;
1424 else
1425 *out_bit_ptr &= ~out_bit_mask;
1426 /* Update output position after bitmap update. */
1427 out_bit_mask <<= 1;
1428 if (!out_bit_mask) {
1429 out_bit_mask = 1 << 0;
1430 out_bit_ptr++;
1431 }
db0e5c99 1432 }
61a429c9 1433 }
0ab36d2f
GS
1434 if (!size && !is_ignored(inc, identifier))
1435 sr_warn("VCD signal not found for ID '%s'.", identifier);
61a429c9
PA
1436}
1437
0ab36d2f
GS
1438/*
1439 * Set an analog channel's value from a floating point number. One
1440 * VCD signal name can translate to several sigrok channels.
1441 */
1442static void process_real(struct context *inc, char *identifier, float real_val)
36dacf17 1443{
0ab36d2f 1444 gboolean found;
36dacf17
WS
1445 GSList *l;
1446 struct vcd_channel *vcd_ch;
36dacf17 1447
0ab36d2f
GS
1448 found = FALSE;
1449 for (l = inc->channels; l; l = l->next) {
36dacf17 1450 vcd_ch = l->data;
0ab36d2f
GS
1451 if (vcd_ch->type != SR_CHANNEL_ANALOG)
1452 continue;
1453 if (g_strcmp0(identifier, vcd_ch->identifier) != 0)
1454 continue;
1455
1456 /* Found our (analog) channel. */
1457 found = TRUE;
1458 sr_spew("Processing real data, id '%s', ch %zu, val %.16g",
1459 identifier, vcd_ch->array_index, real_val);
1460 inc->current_floats[vcd_ch->array_index] = real_val;
36dacf17 1461 }
0ab36d2f
GS
1462 if (!found && !is_ignored(inc, identifier))
1463 sr_warn("VCD signal not found for ID '%s'.", identifier);
1464}
1465
1466/*
1467 * Converts a bit position's text character to a number value.
1468 *
1469 * TODO Check for complete coverage of Verilog's standard logic values
1470 * (IEEE-1364). The set is said to be “01XZHUWL-”, which only a part of
1471 * is handled here. What would be the complete mapping?
1472 * - 0/L -> bit value 0
1473 * - 1/H -> bit value 1
1474 * - X "don't care" -> TODO
1475 * - Z "high impedance" -> TODO
1476 * - W "weak(?)" -> TODO
1477 * - U "undefined" -> TODO
1478 * - '-' "TODO" -> TODO
1479 *
1480 * For simplicity, this input module implementation maps "known low"
1481 * values to 0, and "known high" values to 1. All other values will
1482 * end up assuming "low" (return number 0), while callers might warn.
1483 * It's up to users to provide compatible input data, or accept the
1484 * warnings. Silently accepting unknown input data is not desirable.
1485 */
1486static uint8_t vcd_char_to_value(char bit_char, int *warn)
1487{
1488
1489 bit_char = g_ascii_tolower(bit_char);
1490
1491 /* Convert the "undisputed" variants. */
1492 if (bit_char == '0' || bit_char == 'l')
1493 return 0;
1494 if (bit_char == '1' || bit_char == 'h')
1495 return 1;
1496
1497 /* Convert the "uncertain" variants. */
1498 if (warn)
1499 *warn = 1;
1500 if (bit_char == 'x' || bit_char == 'z')
1501 return 0;
1502 if (bit_char == 'u')
1503 return 0;
35810515
GS
1504 if (bit_char == '-')
1505 return 0;
0ab36d2f
GS
1506
1507 /* Unhandled input text. */
1508 return ~0;
36dacf17
WS
1509}
1510
0ab36d2f
GS
1511/* Parse one text line of the data section. */
1512static int parse_textline(const struct sr_input *in, char *lines)
61a429c9 1513{
7db06394 1514 struct context *inc;
0ab36d2f
GS
1515 int ret;
1516 char **words;
1517 size_t word_count, word_idx;
1518 char *curr_word, *next_word, curr_first;
1519 gboolean is_timestamp, is_section, is_real, is_multibit, is_singlebit;
f9bc17d4 1520 uint64_t timestamp;
dd8bec71 1521 char *identifier, *endptr;
0ab36d2f 1522 size_t count;
cd1b0e8f 1523
7db06394 1524 inc = in->priv;
cd1b0e8f 1525
0ab36d2f
GS
1526 /*
1527 * Split the caller's text lines into a list of space separated
1528 * words. Note that some of the branches consume the very next
1529 * words as well, and assume that both adjacent words will be
1530 * available when the first word is seen. This constraint applies
1531 * to bit vector data, multi-bit integers and real (float) data,
1532 * as well as single-bit data with whitespace before its
1533 * identifier (if that's valid in VCD, we'd accept it here).
1534 * The fact that callers always pass complete text lines should
1535 * make this assumption acceptable.
1536 */
1537 ret = SR_OK;
1538 words = split_text_line(inc, lines, &word_count);
1539 for (word_idx = 0; word_idx < word_count; word_idx++) {
1540 /*
1541 * Make the next two words available, to simpilify code
1542 * paths below. The second word is optional here.
1543 */
1544 curr_word = words[word_idx];
1545 if (!curr_word && !curr_word[0])
1546 continue;
1547 curr_first = g_ascii_tolower(curr_word[0]);
1548 next_word = words[word_idx + 1];
1549 if (next_word && !next_word[0])
1550 next_word = NULL;
1551
1552 /*
1553 * Optionally skip some sections that can be interleaved
1554 * with data (and may or may not be supported by this
1555 * input module). If the section is not skipped but the
1556 * $end keyword needs to get tracked, specifically handle
1557 * this case, for improved robustness (still reject files
1558 * which happen to use invalid syntax).
1559 */
7db06394 1560 if (inc->skip_until_end) {
0ab36d2f 1561 if (strcmp(curr_word, "$end") == 0) {
7db06394 1562 /* Done with unhandled/unknown section. */
0ab36d2f 1563 sr_dbg("done skipping until $end");
7db06394 1564 inc->skip_until_end = FALSE;
0ab36d2f
GS
1565 } else {
1566 sr_spew("skipping word: %s", curr_word);
1567 }
1568 continue;
1569 }
1570 if (inc->ignore_end_keyword) {
1571 if (strcmp(curr_word, "$end") == 0) {
1572 sr_dbg("done ignoring $end keyword");
1573 inc->ignore_end_keyword = FALSE;
1574 continue;
7db06394
BV
1575 }
1576 }
cd1b0e8f 1577
0ab36d2f
GS
1578 /*
1579 * There may be $keyword sections inside the data part of
1580 * the input file. Do inspect some of the sections' content
1581 * but ignore their surrounding keywords. Silently skip
1582 * unsupported section types (which transparently covers
1583 * $comment sections).
1584 */
1585 is_section = curr_first == '$' && curr_word[1];
1586 if (is_section) {
1587 gboolean inspect_data;
1588
1589 inspect_data = FALSE;
1590 inspect_data |= g_strcmp0(curr_word, "$dumpvars") == 0;
1591 inspect_data |= g_strcmp0(curr_word, "$dumpon") == 0;
1592 inspect_data |= g_strcmp0(curr_word, "$dumpoff") == 0;
1593 if (inspect_data) {
1594 /* Ignore keywords, yet parse contents. */
1595 sr_dbg("%s section, will parse content", curr_word);
1596 inc->ignore_end_keyword = TRUE;
1597 } else {
1598 /* Ignore section from here up to $end. */
1599 sr_dbg("%s section, will skip until $end", curr_word);
1600 inc->skip_until_end = TRUE;
1601 }
1602 continue;
1603 }
1604
1605 /*
1606 * Numbers prefixed by '#' are timestamps, which translate
1607 * to sigrok sample numbers. Apply optional downsampling,
1608 * and apply the 'skip' logic. Check the recent timestamp
1609 * for plausibility. Submit the corresponding number of
1610 * samples of previously accumulated data values to the
1611 * session feed.
1612 */
1613 is_timestamp = curr_first == '#' && g_ascii_isdigit(curr_word[1]);
1614 if (is_timestamp) {
dd8bec71
GS
1615 endptr = NULL;
1616 timestamp = strtoull(&curr_word[1], &endptr, 10);
1617 if (!endptr || *endptr) {
1618 sr_err("Invalid timestamp: %s.", curr_word);
1619 ret = SR_ERR_DATA;
1620 break;
1621 }
0ab36d2f 1622 sr_spew("Got timestamp: %" PRIu64, timestamp);
ec302917
GS
1623 ret = ts_stats_check(&inc->ts_stats, timestamp);
1624 if (ret != SR_OK)
1625 break;
0ab36d2f
GS
1626 if (inc->options.downsample > 1) {
1627 timestamp /= inc->options.downsample;
1628 sr_spew("Downsampled timestamp: %" PRIu64, timestamp);
1629 }
cd1b0e8f 1630
e4c8a4d7
BV
1631 /*
1632 * Skip < 0 => skip until first timestamp.
0157808d
PA
1633 * Skip = 0 => don't skip
1634 * Skip > 0 => skip until timestamp >= skip.
1635 */
0ab36d2f 1636 if (inc->options.skip_specified && !inc->use_skip) {
dd8bec71
GS
1637 sr_dbg("Seeding skip from user spec %" PRIu64,
1638 inc->options.skip_starttime);
1639 inc->prev_timestamp = inc->options.skip_starttime;
0ab36d2f
GS
1640 inc->use_skip = TRUE;
1641 }
1642 if (!inc->use_skip) {
dd8bec71 1643 sr_dbg("Seeding skip from first timestamp");
0ab36d2f 1644 inc->options.skip_starttime = timestamp;
f9bc17d4 1645 inc->prev_timestamp = timestamp;
0ab36d2f
GS
1646 inc->use_skip = TRUE;
1647 continue;
1648 }
1649 if (inc->options.skip_starttime && timestamp < inc->options.skip_starttime) {
1650 sr_spew("Timestamp skipped, before user spec");
1651 inc->prev_timestamp = inc->options.skip_starttime;
1652 continue;
1653 }
1654 if (timestamp == inc->prev_timestamp) {
1655 /*
1656 * Ignore repeated timestamps (e.g. sigrok
1657 * outputs these). Can also happen when
1658 * downsampling makes distinct input values
1659 * end up at the same scaled down value.
1660 * Also transparently covers the initial
1661 * timestamp.
1662 */
1663 sr_spew("Timestamp is identical to previous timestamp");
1664 continue;
1665 }
1666 if (timestamp < inc->prev_timestamp) {
1667 sr_err("Invalid timestamp: %" PRIu64 " (leap backwards).", timestamp);
1668 ret = SR_ERR_DATA;
ed367d68 1669 break;
0ab36d2f
GS
1670 }
1671 if (inc->options.compress) {
1672 /* Compress long idle periods */
1673 count = timestamp - inc->prev_timestamp;
1674 if (count > inc->options.compress) {
1675 sr_dbg("Long idle period, compressing");
1676 count = timestamp - inc->options.compress;
1677 inc->prev_timestamp = count;
6b7ace48 1678 }
61a429c9 1679 }
0ab36d2f
GS
1680
1681 /* Generate samples from prev_timestamp up to timestamp - 1. */
0ab36d2f 1682 count = timestamp - inc->prev_timestamp;
dd8bec71 1683 sr_spew("Got a new timestamp, feeding %zu samples", count);
0ab36d2f
GS
1684 add_samples(in, count, FALSE);
1685 inc->prev_timestamp = timestamp;
1686 inc->data_after_timestamp = FALSE;
1687 continue;
1688 }
1689 inc->data_after_timestamp = TRUE;
1690
1691 /*
1692 * Data values come in different formats, are associated
1693 * with channel identifiers, and correspond to the period
1694 * of time from the most recent timestamp to the next
1695 * timestamp.
1696 *
1697 * Supported input data formats are:
1698 * - R<value> <sep> <id> (analog channel, VCD type 'real').
1699 * - B<value> <sep> <id> (analog channel, VCD type 'integer').
1700 * - B<value> <sep> <id> (logic channels, VCD bit vectors).
1701 * - <value> <id> (logic channel, VCD single-bit values).
1702 *
1703 * Input values can be:
1704 * - Floating point numbers.
1705 * - Bit strings (which covers multi-bit aka integers
1706 * as well as vectors).
1707 * - Single bits.
1708 *
1709 * Things to note:
1710 * - Individual bits can be 0/1 which is supported by
1711 * libsigrok, or x or z which is treated like 0 here
1712 * (sigrok lacks support for ternary logic, neither is
1713 * there support for the full IEEE set of values).
1714 * - Single-bit values typically won't be separated from
1715 * the signal identifer, multi-bit values and floats
1716 * are separated (will reference the next word). This
1717 * implementation silently accepts separators for
1718 * single-bit values, too.
1719 */
1720 is_real = curr_first == 'r' && curr_word[1];
1721 is_multibit = curr_first == 'b' && curr_word[1];
1722 is_singlebit = curr_first == '0' || curr_first == '1';
35810515 1723 is_singlebit |= curr_first == 'l' || curr_first == 'h';
0ab36d2f 1724 is_singlebit |= curr_first == 'x' || curr_first == 'z';
35810515 1725 is_singlebit |= curr_first == 'u' || curr_first == '-';
0ab36d2f
GS
1726 if (is_real) {
1727 char *real_text;
1728 float real_val;
1729
1730 real_text = &curr_word[1];
1731 identifier = next_word;
1732 word_idx++;
1733 if (!*real_text || !identifier || !*identifier) {
1734 sr_err("Unexpected real format.");
1735 ret = SR_ERR_DATA;
7db06394 1736 break;
8be87469 1737 }
0ab36d2f
GS
1738 sr_spew("Got real data %s for id '%s'.",
1739 real_text, identifier);
1740 if (sr_atof_ascii(real_text, &real_val) != SR_OK) {
1741 sr_err("Cannot convert value: %s.", real_text);
1742 ret = SR_ERR_DATA;
76bc28c3 1743 break;
0ab36d2f
GS
1744 }
1745 process_real(inc, identifier, real_val);
1746 continue;
1747 }
1748 if (is_multibit) {
1749 char *bits_text_start;
1750 size_t bit_count;
1751 char *bits_text, bit_char;
1752 uint8_t bit_value;
1753 uint8_t *value_ptr, value_mask;
1754 GString *bits_val_text;
1755
1756 /* TODO
1757 * Fold in single-bit code path here? To re-use
1758 * the X/Z support. Current redundancy is few so
1759 * there is little pressure to unify code paths.
1760 * Also multi-bit handling is often different
1761 * from single-bit handling, so the "unified"
1762 * path would often check for special cases. So
1763 * we may never unify code paths at all here.
34724ffa 1764 */
0ab36d2f
GS
1765 bits_text = &curr_word[1];
1766 identifier = next_word;
1767 word_idx++;
1768
1769 if (!*bits_text || !identifier || !*identifier) {
1770 sr_err("Unexpected integer/vector format.");
1771 ret = SR_ERR_DATA;
34724ffa
WS
1772 break;
1773 }
0ab36d2f
GS
1774 sr_spew("Got integer/vector data %s for id '%s'.",
1775 bits_text, identifier);
7db06394
BV
1776
1777 /*
0ab36d2f
GS
1778 * Accept a bit string of arbitrary length (sort
1779 * of, within the limits of the previously setup
1780 * conversion buffer). The input text omits the
1781 * leading zeroes, hence we convert from end to
1782 * the start, to get the significant bits. There
1783 * should only be errors for invalid input, or
1784 * for input that is rather strange (data holds
1785 * more bits than the signal's declaration in
1786 * the header suggested). Silently accept data
1787 * that fits in the conversion buffer, and has
1788 * more significant bits than the signal's type
1789 * (that'd be non-sence yet acceptable input).
7db06394 1790 */
0ab36d2f
GS
1791 bits_text_start = bits_text;
1792 bits_text += strlen(bits_text);
1793 bit_count = bits_text - bits_text_start;
1794 if (bit_count > inc->conv_bits.max_bits) {
1795 sr_err("Value exceeds conversion buffer: %s",
1796 bits_text_start);
1797 ret = SR_ERR_DATA;
1798 break;
1799 }
1800 memset(inc->conv_bits.value, 0, inc->conv_bits.unit_size);
1801 value_ptr = &inc->conv_bits.value[0];
1802 value_mask = 1 << 0;
1803 inc->conv_bits.sig_count = 0;
1804 while (bits_text > bits_text_start) {
1805 inc->conv_bits.sig_count++;
1806 bit_char = *(--bits_text);
1807 bit_value = vcd_char_to_value(bit_char, NULL);
1808 if (bit_value == 0) {
1809 /* EMPTY */
1810 } else if (bit_value == 1) {
1811 *value_ptr |= value_mask;
1812 } else {
1813 inc->conv_bits.sig_count = 0;
73f052d3
WS
1814 break;
1815 }
0ab36d2f
GS
1816 value_mask <<= 1;
1817 if (!value_mask) {
1818 value_ptr++;
1819 value_mask = 1 << 0;
1820 }
61a429c9 1821 }
0ab36d2f
GS
1822 if (!inc->conv_bits.sig_count) {
1823 sr_err("Unexpected vector format: %s",
1824 bits_text_start);
1825 ret = SR_ERR_DATA;
1826 break;
1827 }
1828 if (sr_log_loglevel_get() >= SR_LOG_SPEW) {
1829 bits_val_text = sr_hexdump_new(inc->conv_bits.value,
1830 value_ptr - inc->conv_bits.value + 1);
1831 sr_spew("Vector value: %s.", bits_val_text->str);
1832 sr_hexdump_free(bits_val_text);
1833 }
1834
1835 process_bits(inc, identifier,
1836 inc->conv_bits.value, inc->conv_bits.sig_count);
1837 continue;
8be87469 1838 }
0ab36d2f
GS
1839 if (is_singlebit) {
1840 char *bits_text, bit_char;
1841 uint8_t bit_value;
1842
1843 /* Get the value text, and signal identifier. */
1844 bits_text = &curr_word[0];
1845 bit_char = *bits_text;
1846 if (!bit_char) {
1847 sr_err("Bit value missing.");
1848 ret = SR_ERR_DATA;
1849 break;
1850 }
1851 identifier = ++bits_text;
1852 if (!*identifier) {
1853 identifier = next_word;
1854 word_idx++;
1855 }
1856 if (!identifier || !*identifier) {
1857 sr_err("Identifier missing.");
1858 ret = SR_ERR_DATA;
1859 break;
1860 }
1861
1862 /* Convert value text to single-bit number. */
1863 bit_value = vcd_char_to_value(bit_char, NULL);
1864 if (bit_value != 0 && bit_value != 1) {
1865 sr_err("Unsupported bit value '%c'.", bit_char);
1866 ret = SR_ERR_DATA;
1867 break;
1868 }
1869 inc->conv_bits.value[0] = bit_value;
1870 process_bits(inc, identifier, inc->conv_bits.value, 1);
1871 continue;
1872 }
1873
1874 /* Design choice: Consider unsupported input fatal. */
1875 sr_err("Unknown token '%s'.", curr_word);
1876 ret = SR_ERR_DATA;
1877 break;
7db06394 1878 }
0ab36d2f
GS
1879 free_text_split(inc, words);
1880
1881 return ret;
7db06394
BV
1882}
1883
0ab36d2f 1884static int process_buffer(struct sr_input *in, gboolean is_eof)
7db06394 1885{
7db06394 1886 struct context *inc;
0ab36d2f
GS
1887 uint64_t samplerate;
1888 GVariant *gvar;
1889 int ret;
1890 char *rdptr, *endptr, *trimptr;
1891 size_t rdlen;
7db06394 1892
0ab36d2f 1893 inc = in->priv;
cd1b0e8f 1894
0ab36d2f
GS
1895 /* Send feed header and samplerate (once) before sample data. */
1896 if (!inc->started) {
1897 std_session_send_df_header(in->sdi);
7db06394 1898
0ab36d2f
GS
1899 samplerate = inc->samplerate / inc->options.downsample;
1900 if (samplerate) {
1901 gvar = g_variant_new_uint64(samplerate);
1902 sr_session_send_meta(in->sdi, SR_CONF_SAMPLERATE, gvar);
1903 }
7db06394 1904
0ab36d2f
GS
1905 inc->started = TRUE;
1906 }
7db06394 1907
0ab36d2f
GS
1908 /*
1909 * Workaround broken generators which output incomplete text
1910 * lines. Enforce the trailing line feed. Proper input is not
1911 * harmed by another empty line of input data.
1912 */
1913 if (is_eof)
1914 g_string_append_c(in->buf, '\n');
1915
1916 /* Find and process complete text lines in the input data. */
1917 ret = SR_OK;
1918 rdptr = in->buf->str;
1919 while (TRUE) {
1920 rdlen = &in->buf->str[in->buf->len] - rdptr;
1921 endptr = g_strstr_len(rdptr, rdlen, "\n");
1922 if (!endptr)
1923 break;
1924 trimptr = endptr;
1925 *endptr++ = '\0';
1926 while (g_ascii_isspace(*rdptr))
1927 rdptr++;
1928 while (trimptr > rdptr && g_ascii_isspace(trimptr[-1]))
1929 *(--trimptr) = '\0';
1930 if (!*rdptr) {
1931 rdptr = endptr;
1932 continue;
1933 }
1934 ret = parse_textline(in, rdptr);
1935 rdptr = endptr;
1936 if (ret != SR_OK)
1937 break;
1938 }
1939 rdlen = rdptr - in->buf->str;
1940 g_string_erase(in->buf, 0, rdlen);
db0e5c99 1941
0ab36d2f 1942 return ret;
61a429c9
PA
1943}
1944
0ab36d2f 1945static int format_match(GHashTable *metadata, unsigned int *confidence)
7db06394 1946{
0ab36d2f
GS
1947 GString *buf, *tmpbuf;
1948 gboolean status;
1949 char *name, *contents;
7db06394 1950
0ab36d2f
GS
1951 buf = g_hash_table_lookup(metadata,
1952 GINT_TO_POINTER(SR_INPUT_META_HEADER));
1953 tmpbuf = g_string_new_len(buf->str, buf->len);
1954
1955 /*
1956 * If we can parse the first section correctly, then it is
1957 * assumed that the input is in VCD format.
1958 */
1959 check_remove_bom(tmpbuf);
1960 status = parse_section(tmpbuf, &name, &contents);
1961 g_string_free(tmpbuf, TRUE);
1962 g_free(name);
1963 g_free(contents);
1964
1965 if (!status)
1966 return SR_ERR;
7db06394 1967
0ab36d2f
GS
1968 *confidence = 1;
1969 return SR_OK;
7db06394
BV
1970}
1971
0ab36d2f 1972static int init(struct sr_input *in, GHashTable *options)
99eaa206 1973{
7db06394 1974 struct context *inc;
0ab36d2f 1975 GVariant *data;
7db06394 1976
0ab36d2f 1977 inc = g_malloc0(sizeof(*inc));
99eaa206 1978
0ab36d2f
GS
1979 data = g_hash_table_lookup(options, "numchannels");
1980 inc->options.maxchannels = g_variant_get_uint32(data);
d0181813 1981
0ab36d2f
GS
1982 data = g_hash_table_lookup(options, "downsample");
1983 inc->options.downsample = g_variant_get_uint64(data);
1984 if (inc->options.downsample < 1)
1985 inc->options.downsample = 1;
99eaa206 1986
0ab36d2f
GS
1987 data = g_hash_table_lookup(options, "compress");
1988 inc->options.compress = g_variant_get_uint64(data);
1989 inc->options.compress /= inc->options.downsample;
1990
1991 data = g_hash_table_lookup(options, "skip");
1992 if (data) {
1993 inc->options.skip_specified = TRUE;
1994 inc->options.skip_starttime = g_variant_get_uint64(data);
dd8bec71
GS
1995 if (inc->options.skip_starttime == ~UINT64_C(0)) {
1996 inc->options.skip_specified = FALSE;
1997 inc->options.skip_starttime = 0;
1998 }
0ab36d2f 1999 inc->options.skip_starttime /= inc->options.downsample;
7db06394 2000 }
99eaa206 2001
0ab36d2f
GS
2002 in->sdi = g_malloc0(sizeof(*in->sdi));
2003 in->priv = inc;
2004
2005 inc->scope_prefix = g_string_new("\0");
2006
7db06394
BV
2007 return SR_OK;
2008}
cd1b0e8f 2009
7066fd46
BV
2010static int receive(struct sr_input *in, GString *buf)
2011{
2012 struct context *inc;
2013 int ret;
2014
0ab36d2f
GS
2015 inc = in->priv;
2016
2017 /* Collect all input chunks, potential deferred processing. */
7066fd46 2018 g_string_append_len(in->buf, buf->str, buf->len);
0ab36d2f
GS
2019 if (!inc->got_header && in->buf->len == buf->len)
2020 check_remove_bom(in->buf);
7066fd46 2021
0ab36d2f 2022 /* Must complete reception of the VCD header first. */
7066fd46
BV
2023 if (!inc->got_header) {
2024 if (!have_header(in->buf))
2025 return SR_OK;
0ab36d2f
GS
2026 ret = parse_header(in, in->buf);
2027 if (ret != SR_OK)
2028 return ret;
7066fd46 2029 /* sdi is ready, notify frontend. */
0ab36d2f 2030 in->sdi_ready = TRUE;
7066fd46
BV
2031 return SR_OK;
2032 }
2033
0ab36d2f
GS
2034 /* Process sample data. */
2035 ret = process_buffer(in, FALSE);
7066fd46
BV
2036
2037 return ret;
2038}
2039
2040static int end(struct sr_input *in)
7db06394
BV
2041{
2042 struct context *inc;
7066fd46 2043 int ret;
0ab36d2f 2044 size_t count;
7066fd46 2045
db0e5c99
PA
2046 inc = in->priv;
2047
0ab36d2f 2048 /* Must complete processing of previously received chunks. */
7066fd46 2049 if (in->sdi_ready)
0ab36d2f 2050 ret = process_buffer(in, TRUE);
7066fd46
BV
2051 else
2052 ret = SR_OK;
99eaa206 2053
0ab36d2f
GS
2054 /* Flush most recently queued sample data when EOF is seen. */
2055 count = inc->data_after_timestamp ? 1 : 0;
2056 add_samples(in, count, TRUE);
db0e5c99 2057
ec302917
GS
2058 /* Optionally suggest downsampling after all input data was seen. */
2059 (void)ts_stats_post(inc, !inc->data_after_timestamp);
2060
0ab36d2f 2061 /* Must send DF_END when DF_HEADER was sent before. */
3be42bc2 2062 if (inc->started)
bee2b016 2063 std_session_send_df_end(in->sdi);
c10ef17c 2064
7066fd46
BV
2065 return ret;
2066}
2067
d5cc282f 2068static void cleanup(struct sr_input *in)
7066fd46
BV
2069{
2070 struct context *inc;
2071
2072 inc = in->priv;
0ab36d2f 2073
08f8421a 2074 keep_header_for_reread(in);
0ab36d2f 2075
7db06394 2076 g_slist_free_full(inc->channels, free_channel);
4237ab9e 2077 inc->channels = NULL;
0ab36d2f
GS
2078 feed_queue_logic_free(inc->feed_logic);
2079 inc->feed_logic = NULL;
2080 g_free(inc->conv_bits.value);
2081 inc->conv_bits.value = NULL;
2082 g_free(inc->current_logic);
2083 inc->current_logic = NULL;
2084 g_free(inc->current_floats);
2085 inc->current_floats = NULL;
2086 g_string_free(inc->scope_prefix, TRUE);
2087 inc->scope_prefix = NULL;
2088 g_slist_free_full(inc->ignored_signals, g_free);
2089 inc->ignored_signals = NULL;
2090 free_text_split(inc, NULL);
99eaa206
PA
2091}
2092
f4b4725b
SA
2093static int reset(struct sr_input *in)
2094{
0ab36d2f
GS
2095 struct context *inc;
2096 struct vcd_user_opt save;
2097 struct vcd_prev prev;
2098
2099 inc = in->priv;
f4b4725b 2100
0ab36d2f 2101 /* Relase previously allocated resources. */
f4b4725b 2102 cleanup(in);
f4b4725b
SA
2103 g_string_truncate(in->buf, 0);
2104
0ab36d2f
GS
2105 /* Restore part of the context, init() won't run again. */
2106 save = inc->options;
2107 prev = inc->prev;
2108 memset(inc, 0, sizeof(*inc));
2109 inc->options = save;
2110 inc->prev = prev;
2111 inc->scope_prefix = g_string_new("\0");
4237ab9e 2112
f4b4725b
SA
2113 return SR_OK;
2114}
2115
0ab36d2f
GS
2116enum vcd_option_t {
2117 OPT_NUM_CHANS,
2118 OPT_DOWN_SAMPLE,
2119 OPT_SKIP_COUNT,
2120 OPT_COMPRESS,
2121 OPT_MAX,
2122};
2123
7db06394 2124static struct sr_option options[] = {
0ab36d2f
GS
2125 [OPT_NUM_CHANS] = {
2126 "numchannels", "Max number of sigrok channels",
2127 "The maximum number of sigrok channels to create for VCD input signals.",
2128 NULL, NULL,
2129 },
2130 [OPT_DOWN_SAMPLE] = {
2131 "downsample", "Downsampling factor",
2132 "Downsample the input file's samplerate, i.e. divide by the specified factor.",
2133 NULL, NULL,
2134 },
2135 [OPT_SKIP_COUNT] = {
2136 "skip", "Skip this many initial samples",
2137 "Skip samples until the specified timestamp. "
2138 "By default samples start at the first timestamp in the file. "
2139 "Value 0 creates samples starting at timestamp 0. "
2140 "Values above 0 only start processing at the given timestamp.",
2141 NULL, NULL,
2142 },
2143 [OPT_COMPRESS] = {
2144 "compress", "Compress idle periods",
2145 "Compress idle periods which are longer than the specified number of timescale ticks.",
2146 NULL, NULL,
2147 },
2148 [OPT_MAX] = ALL_ZERO,
7db06394
BV
2149};
2150
2c240774 2151static const struct sr_option *get_options(void)
7db06394
BV
2152{
2153 if (!options[0].def) {
0ab36d2f
GS
2154 options[OPT_NUM_CHANS].def = g_variant_ref_sink(g_variant_new_uint32(0));
2155 options[OPT_DOWN_SAMPLE].def = g_variant_ref_sink(g_variant_new_uint64(1));
dd8bec71 2156 options[OPT_SKIP_COUNT].def = g_variant_ref_sink(g_variant_new_uint64(~UINT64_C(0)));
0ab36d2f 2157 options[OPT_COMPRESS].def = g_variant_ref_sink(g_variant_new_uint64(0));
7db06394
BV
2158 }
2159
2160 return options;
2161}
2162
d4c93774 2163SR_PRIV struct sr_input_module input_vcd = {
99eaa206 2164 .id = "vcd",
7db06394 2165 .name = "VCD",
b20eb520 2166 .desc = "Value Change Dump data",
c7bc82ff 2167 .exts = (const char*[]){"vcd", NULL},
7db06394
BV
2168 .metadata = { SR_INPUT_META_HEADER | SR_INPUT_META_REQUIRED },
2169 .options = get_options,
99eaa206
PA
2170 .format_match = format_match,
2171 .init = init,
7db06394 2172 .receive = receive,
7066fd46 2173 .end = end,
7db06394 2174 .cleanup = cleanup,
f4b4725b 2175 .reset = reset,
99eaa206 2176};