]> sigrok.org Git - libsigrok.git/blame - src/input/csv.c
input/csv: unassorted adjustment, mostly "column processing" related
[libsigrok.git] / src / input / csv.c
CommitLineData
4a35548b
MS
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 Marc Schink <sigrok-dev@marcschink.de>
e53f32d2 5 * Copyright (C) 2019 Gerhard Sittig <gerhard.sittig@gmx.net>
4a35548b
MS
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
e05f1827
GS
21#include "config.h"
22
23#include <glib.h>
4a35548b
MS
24#include <stdlib.h>
25#include <string.h>
e05f1827 26
c1aae900 27#include <libsigrok/libsigrok.h>
4a35548b 28#include "libsigrok-internal.h"
f6dcb320 29#include "scpi.h" /* String un-quote for channel name from header line. */
4a35548b 30
3544f848 31#define LOG_PREFIX "input/csv"
4a35548b 32
9a4fd01a 33#define CHUNK_SIZE (4 * 1024 * 1024)
cd59e6ec 34
4a35548b
MS
35/*
36 * The CSV input module has the following options:
37 *
38 * single-column: Specifies the column number which stores the sample data for
39 * single column mode and enables single column mode. Multi
40 * column mode is used if this parameter is omitted.
41 *
ba7dd8bb
UH
42 * numchannels: Specifies the number of channels to use. In multi column mode
43 * the number of channels are the number of columns and in single
4a35548b 44 * column mode the number of bits (LSB first) beginning at
ba7dd8bb 45 * 'first-channel'.
4a35548b
MS
46 *
47 * delimiter: Specifies the delimiter for columns. Must be at least one
48 * character. Comma is used as default delimiter.
49 *
50 * format: Specifies the format of the sample data in single column mode.
51 * Available formats are: 'bin', 'hex' and 'oct'. The binary
52 * format is used by default. This option has no effect in multi
53 * column mode.
54 *
55 * comment: Specifies the prefix character(s) for comments. No prefix
56 * characters are used by default which disables removing of
57 * comments.
58 *
59 * samplerate: Samplerate which the sample data was captured with. Default
60 * value is 0.
61 *
ba7dd8bb
UH
62 * first-channel: Column number of the first channel in multi column mode and
63 * position of the bit for the first channel in single column mode.
4a35548b
MS
64 * Default value is 0.
65 *
66 * header: Determines if the first line should be treated as header
ba7dd8bb
UH
67 * and used for channel names in multi column mode. Empty header
68 * names will be replaced by the channel number. If enabled in
4a35548b
MS
69 * single column mode the first line will be skipped. Usage of
70 * header is disabled by default.
71 *
72 * startline: Line number to start processing sample data. Must be greater
73 * than 0. The default line number to start processing is 1.
74 */
75
ccff468b
GS
76/*
77 * TODO
78 *
79 * - Determine how the text line handling can get improved, regarding
80 * all of robustness and flexibility and correctness.
81 * - The current implementation splits on "any run of CR and LF". Which
82 * translates to: Line numbers are wrong in the presence of empty
de788af4 83 * lines in the input stream. See below for an (expensive) fix.
ccff468b
GS
84 * - Dropping support for CR style end-of-line markers could improve
85 * the situation a lot. Code could search for and split on LF, and
86 * trim optional trailing CR. This would result in proper support
87 * for CRLF (Windows) as well as LF (Unix), and allow for correct
88 * line number counts.
89 * - When support for CR-only line termination cannot get dropped,
90 * then the current implementation is inappropriate. Currently the
91 * input stream is scanned for the first occurance of either of the
92 * supported termination styles (which is good). For the remaining
93 * session a consistent encoding of the text lines is assumed (which
de788af4 94 * is acceptable).
ccff468b
GS
95 * - When line numbers need to be correct and reliable, _and_ the full
96 * set of previously supported line termination sequences are required,
97 * and potentially more are to get added for improved compatibility
98 * with more platforms or generators, then the current approach of
99 * splitting on runs of termination characters needs to get replaced,
100 * by the more expensive approach to scan for and count the initially
101 * determined termination sequence.
102 *
103 * - Add support for analog input data? (optional)
104 * - Needs a syntax first for user specs which channels (columns) are
105 * logic and which are analog. May need heuristics(?) to guess from
106 * input data in the absence of user provided specs.
107 */
108
4a35548b 109/* Single column formats. */
ad6a2bee 110enum single_col_format {
e53f32d2
GS
111 FORMAT_NONE, /* Ignore this column. */
112 FORMAT_BIN, /* Bin digits for a set of bits (or just one bit). */
113 FORMAT_HEX, /* Hex digits for a set of bits. */
114 FORMAT_OCT, /* Oct digits for a set of bits. */
115};
116
117static const char *col_format_text[] = {
118 [FORMAT_NONE] = "unknown",
119 [FORMAT_BIN] = "binary",
120 [FORMAT_HEX] = "hexadecimal",
121 [FORMAT_OCT] = "octal",
122};
123
124struct column_details {
125 size_t col_nr;
126 enum single_col_format text_format;
127 size_t channel_offset;
128 size_t channel_count;
4a35548b
MS
129};
130
131struct context {
41d214f6
BV
132 gboolean started;
133
4a35548b
MS
134 /* Current selected samplerate. */
135 uint64_t samplerate;
246aca5f 136 gboolean samplerate_sent;
4a35548b 137
836fac9c
GS
138 /* Number of logic channels. */
139 size_t logic_channels;
4a35548b 140
836fac9c 141 /* Column delimiter (actually separator), comment leader, EOL sequence. */
4a35548b 142 GString *delimiter;
4a35548b 143 GString *comment;
41d214f6
BV
144 char *termination;
145
836fac9c
GS
146 /*
147 * Determines if sample data is stored in multiple columns,
148 * which column to start at, and how many columns to expect.
149 */
4a35548b 150 gboolean multi_column_mode;
836fac9c 151 size_t first_column;
e53f32d2 152 size_t column_want_count;
836fac9c 153 /* Parameters how to process the columns. */
e53f32d2
GS
154 struct column_details *column_details;
155
4a35548b 156 /* Line number to start processing. */
6433156c 157 size_t start_line;
4a35548b
MS
158
159 /*
160 * Determines if the first line should be treated as header and used for
ba7dd8bb 161 * channel names in multi column mode.
4a35548b 162 */
de8fe3b5
GS
163 gboolean use_header;
164 gboolean header_seen;
4a35548b 165
cd59e6ec
GS
166 size_t sample_unit_size; /**!< Byte count for a single sample. */
167 uint8_t *sample_buffer; /**!< Buffer for a single sample. */
4a35548b 168
cd59e6ec
GS
169 uint8_t *datafeed_buffer; /**!< Queue for datafeed submission. */
170 size_t datafeed_buf_size;
171 size_t datafeed_buf_fill;
4a35548b 172
4a35548b 173 /* Current line number. */
6433156c 174 size_t line_number;
affaf540
GS
175
176 /* List of previously created sigrok channels. */
177 GSList *prev_sr_channels;
4a35548b
MS
178};
179
626c388a
GS
180/*
181 * Primitive operations to handle sample sets:
182 * - Keep a buffer for datafeed submission, capable of holding many
183 * samples (reduces call overhead, improves throughput).
184 * - Have a "current sample set" pointer reference one position in that
185 * large samples buffer.
186 * - Clear the current sample set before text line inspection, then set
187 * the bits which are found active in the current line of text input.
188 * Phrase the API such that call sites can be kept simple. Advance to
189 * the next sample set between lines, flush the larger buffer as needed
190 * (when it is full, or upon EOF).
191 */
192
193static void clear_logic_samples(struct context *inc)
194{
195 inc->sample_buffer = &inc->datafeed_buffer[inc->datafeed_buf_fill];
196 memset(inc->sample_buffer, 0, inc->sample_unit_size);
197}
198
199static void set_logic_level(struct context *inc, size_t ch_idx, int on)
200{
201 size_t byte_idx, bit_idx;
202 uint8_t bit_mask;
203
836fac9c 204 if (ch_idx >= inc->logic_channels)
626c388a
GS
205 return;
206 if (!on)
207 return;
208
209 byte_idx = ch_idx / 8;
210 bit_idx = ch_idx % 8;
211 bit_mask = 1 << bit_idx;
212 inc->sample_buffer[byte_idx] |= bit_mask;
213}
214
215static int flush_logic_samples(const struct sr_input *in)
216{
217 struct context *inc;
218 struct sr_datafeed_packet packet;
246aca5f
GS
219 struct sr_datafeed_meta meta;
220 struct sr_config *src;
221 uint64_t samplerate;
626c388a
GS
222 struct sr_datafeed_logic logic;
223 int rc;
224
225 inc = in->priv;
226 if (!inc->datafeed_buf_fill)
227 return SR_OK;
228
246aca5f
GS
229 if (inc->samplerate && !inc->samplerate_sent) {
230 packet.type = SR_DF_META;
231 packet.payload = &meta;
232 samplerate = inc->samplerate;
233 src = sr_config_new(SR_CONF_SAMPLERATE, g_variant_new_uint64(samplerate));
234 meta.config = g_slist_append(NULL, src);
235 sr_session_send(in->sdi, &packet);
236 g_slist_free(meta.config);
237 sr_config_free(src);
238 inc->samplerate_sent = TRUE;
239 }
240
626c388a
GS
241 memset(&packet, 0, sizeof(packet));
242 memset(&logic, 0, sizeof(logic));
243 packet.type = SR_DF_LOGIC;
244 packet.payload = &logic;
245 logic.unitsize = inc->sample_unit_size;
246 logic.length = inc->datafeed_buf_fill;
247 logic.data = inc->datafeed_buffer;
248
249 rc = sr_session_send(in->sdi, &packet);
250 if (rc != SR_OK)
251 return rc;
252
253 inc->datafeed_buf_fill = 0;
254 return SR_OK;
255}
256
257static int queue_logic_samples(const struct sr_input *in)
258{
259 struct context *inc;
260 int rc;
261
262 inc = in->priv;
836fac9c
GS
263 if (!inc->logic_channels)
264 return SR_OK;
626c388a
GS
265
266 inc->datafeed_buf_fill += inc->sample_unit_size;
267 if (inc->datafeed_buf_fill == inc->datafeed_buf_size) {
268 rc = flush_logic_samples(in);
269 if (rc != SR_OK)
270 return rc;
271 }
272 return SR_OK;
273}
274
e53f32d2
GS
275static int make_column_details_single(struct context *inc,
276 size_t col_nr, size_t bit_count, enum single_col_format format)
277{
278 struct column_details *details;
279
280 /*
281 * Need at least as many columns to also include the one with
282 * the single-column input data.
283 */
284 inc->column_want_count = col_nr;
285
286 /*
287 * Allocate the columns' processing details. Columns are counted
288 * from 1 (user's perspective), array items from 0 (programmer's
289 * perspective).
290 */
291 inc->column_details = g_malloc0_n(col_nr, sizeof(inc->column_details[0]));
292 details = &inc->column_details[col_nr - 1];
293 details->col_nr = col_nr;
294
295 /*
296 * In single-column mode this single column will hold all bits
297 * of all logic channels, in the user specified number format.
298 */
299 details->text_format = format;
300 details->channel_offset = 0;
301 details->channel_count = bit_count;
302
303 return SR_OK;
304}
305
306static int make_column_details_multi(struct context *inc,
307 size_t first_col, size_t last_col)
308{
309 struct column_details *details;
310 size_t col_nr;
311
312 /*
313 * Need at least as many columns to also include the one with
314 * the last channel's data.
315 */
316 inc->column_want_count = last_col;
317
318 /*
319 * Allocate the columns' processing details. Columns are counted
320 * from 1, array items from 0.
321 * In multi-column mode each column will hold a single bit for
322 * the respective channel.
323 */
324 inc->column_details = g_malloc0_n(last_col, sizeof(inc->column_details[0]));
325 for (col_nr = first_col; col_nr <= last_col; col_nr++) {
326 details = &inc->column_details[col_nr - 1];
327 details->col_nr = col_nr;
328 details->text_format = FORMAT_BIN;
329 details->channel_offset = col_nr - first_col;
330 details->channel_count = 1;
331 }
332
333
334 return SR_OK;
335}
336
337static const struct column_details *lookup_column_details(struct context *inc, size_t nr)
338{
339 if (!inc || !inc->column_details)
340 return NULL;
341 if (!nr || nr > inc->column_want_count)
342 return NULL;
343 return &inc->column_details[nr - 1];
344}
345
19267272
GS
346/*
347 * Primitive operations for text input: Strip comments off text lines.
348 * Split text lines into columns. Process input text for individual
349 * columns.
350 */
351
41d214f6 352static void strip_comment(char *buf, const GString *prefix)
4a35548b
MS
353{
354 char *ptr;
355
356 if (!prefix->len)
357 return;
358
b2c4dde2 359 if ((ptr = strstr(buf, prefix->str))) {
41d214f6 360 *ptr = '\0';
b2c4dde2
GS
361 g_strstrip(buf);
362 }
4a35548b
MS
363}
364
19267272 365/**
e53f32d2 366 * @brief Splits a text line into a set of columns.
19267272 367 *
e53f32d2 368 * @param[in] buf The input text line to split.
19267272
GS
369 * @param[in] inc The input module's context.
370 *
e53f32d2 371 * @returns An array of strings, representing the columns' text.
19267272 372 *
e53f32d2 373 * This routine splits a text line on previously determined separators.
19267272 374 */
e53f32d2 375static char **split_line(char *buf, struct context *inc)
4a35548b 376{
e53f32d2 377 return g_strsplit(buf, inc->delimiter->str, 0);
4a35548b
MS
378}
379
19267272 380/**
e53f32d2 381 * @brief Parse a multi-bit field into several logic channels.
19267272 382 *
e53f32d2 383 * @param[in] column The input text, a run of bin/hex/oct digits.
19267272 384 * @param[in] inc The input module's context.
836fac9c 385 * @param[in] details The column processing details.
19267272
GS
386 *
387 * @retval SR_OK Success.
388 * @retval SR_ERR Invalid input data (empty, or format error).
389 *
390 * This routine modifies the logic levels in the current sample set,
e53f32d2 391 * based on the text input and a user provided format spec.
19267272 392 */
836fac9c
GS
393static int parse_logic(const char *column, struct context *inc,
394 const struct column_details *details)
4a35548b 395{
e53f32d2
GS
396 size_t length, ch_rem, ch_idx, ch_inc;
397 const char *rdptr;
4a35548b 398 char c;
e53f32d2
GS
399 gboolean valid;
400 const char *type_text;
401 uint8_t bits;
402
e53f32d2
GS
403 /*
404 * Prepare to read the digits from the text end towards the start.
405 * A digit corresponds to a variable number of channels (depending
406 * on the value's radix). Prepare the mapping of text digits to
407 * (a number of) logic channels.
408 */
409 length = strlen(column);
4a35548b 410 if (!length) {
836fac9c 411 sr_err("Column %zu in line %zu is empty.", details->col_nr,
41d214f6 412 inc->line_number);
4a35548b
MS
413 return SR_ERR;
414 }
e53f32d2 415 rdptr = &column[length];
836fac9c
GS
416 ch_idx = details->channel_offset;
417 ch_rem = details->channel_count;
4a35548b 418
e53f32d2
GS
419 /*
420 * Get another digit and derive up to four logic channels' state from
421 * it. Make sure to not process more bits than the column has channels
422 * associated with it.
423 */
424 while (rdptr > column && ch_rem) {
425 /* Check for valid digits according to the input radix. */
426 c = *(--rdptr);
836fac9c 427 switch (details->text_format) {
e53f32d2
GS
428 case FORMAT_BIN:
429 valid = g_ascii_isxdigit(c) && c < '2';
430 ch_inc = 1;
431 break;
432 case FORMAT_OCT:
433 valid = g_ascii_isxdigit(c) && c < '8';
434 ch_inc = 3;
435 break;
436 case FORMAT_HEX:
437 valid = g_ascii_isxdigit(c);
438 ch_inc = 4;
439 break;
440 default:
441 valid = FALSE;
442 break;
4a35548b 443 }
e53f32d2 444 if (!valid) {
836fac9c 445 type_text = col_format_text[details->text_format];
e53f32d2 446 sr_err("Invalid text '%s' in %s type column %zu in line %zu.",
836fac9c 447 column, type_text, details->col_nr, inc->line_number);
4a35548b 448 return SR_ERR;
e53f32d2
GS
449 }
450 /* Use the digit's bits for logic channels' data. */
451 bits = g_ascii_xdigit_value(c);
836fac9c 452 switch (details->text_format) {
e53f32d2
GS
453 case FORMAT_HEX:
454 if (ch_rem >= 4) {
455 ch_rem--;
456 set_logic_level(inc, ch_idx + 3, bits & (1 << 3));
457 }
458 /* FALLTHROUGH */
459 case FORMAT_OCT:
460 if (ch_rem >= 3) {
461 ch_rem--;
462 set_logic_level(inc, ch_idx + 2, bits & (1 << 2));
463 }
464 if (ch_rem >= 2) {
465 ch_rem--;
466 set_logic_level(inc, ch_idx + 1, bits & (1 << 1));
467 }
468 /* FALLTHROUGH */
469 case FORMAT_BIN:
470 ch_rem--;
471 set_logic_level(inc, ch_idx + 0, bits & (1 << 0));
472 break;
836fac9c
GS
473 case FORMAT_NONE:
474 /* ShouldNotHappen(TM), but silences compiler warning. */
475 return SR_ERR;
4a35548b 476 }
e53f32d2 477 ch_idx += ch_inc;
4a35548b 478 }
e53f32d2
GS
479 /*
480 * TODO Determine whether the availability of extra input data
481 * for unhandled logic channels is worth warning here. In this
482 * implementation users are in control, and can have the more
483 * significant bits ignored (which can be considered a feature
484 * and not really a limitation).
485 */
4a35548b
MS
486
487 return SR_OK;
488}
489
836fac9c
GS
490/**
491 * @brief Parse routine which ignores the input text.
492 *
493 * This routine exists to unify dispatch code paths, mapping input file
494 * columns' data types to their respective parse routines.
495 */
496static int parse_ignore(const char *column, struct context *inc,
497 const struct column_details *details)
498{
499 (void)column;
500 (void)inc;
501 (void)details;
502 return SR_OK;
503}
504
505typedef int (*col_parse_cb)(const char *column, struct context *inc,
506 const struct column_details *details);
507
508static const col_parse_cb col_parse_funcs[] = {
509 [FORMAT_NONE] = parse_ignore,
510 [FORMAT_BIN] = parse_logic,
511 [FORMAT_OCT] = parse_logic,
512 [FORMAT_HEX] = parse_logic,
513};
514
41d214f6 515static int init(struct sr_input *in, GHashTable *options)
4a35548b 516{
41d214f6 517 struct context *inc;
836fac9c 518 size_t single_column;
41d214f6 519 const char *s;
836fac9c 520 enum single_col_format format;
e53f32d2 521 int ret;
4a35548b 522
836fac9c
GS
523 in->sdi = g_malloc0(sizeof(*in->sdi));
524 in->priv = inc = g_malloc0(sizeof(*inc));
4a35548b 525
836fac9c
GS
526 single_column = g_variant_get_uint32(g_hash_table_lookup(options, "single-column"));
527 inc->multi_column_mode = single_column == 0;
4a35548b 528
836fac9c 529 inc->logic_channels = g_variant_get_uint32(g_hash_table_lookup(options, "numchannels"));
4a35548b 530
41d214f6
BV
531 inc->delimiter = g_string_new(g_variant_get_string(
532 g_hash_table_lookup(options, "delimiter"), NULL));
836fac9c 533 if (!inc->delimiter->len) {
e53f32d2 534 sr_err("Column delimiter cannot be empty.");
41d214f6 535 return SR_ERR_ARG;
4a35548b
MS
536 }
537
41d214f6 538 s = g_variant_get_string(g_hash_table_lookup(options, "format"), NULL);
836fac9c
GS
539 if (g_ascii_strncasecmp(s, "bin", 3) == 0) {
540 format = FORMAT_BIN;
541 } else if (g_ascii_strncasecmp(s, "hex", 3) == 0) {
542 format = FORMAT_HEX;
543 } else if (g_ascii_strncasecmp(s, "oct", 3) == 0) {
544 format = FORMAT_OCT;
41d214f6
BV
545 } else {
546 sr_err("Invalid format: '%s'", s);
547 return SR_ERR_ARG;
4a35548b
MS
548 }
549
41d214f6
BV
550 inc->comment = g_string_new(g_variant_get_string(
551 g_hash_table_lookup(options, "comment"), NULL));
552 if (g_string_equal(inc->comment, inc->delimiter)) {
e53f32d2
GS
553 /*
554 * Using the same sequence as comment leader and column
555 * delimiter won't work. The user probably specified ';'
556 * as the column delimiter but did not adjust the comment
557 * leader. Try DWIM, drop comment strippin support here.
558 */
559 sr_warn("Comment leader and column delimiter conflict, disabling comment support.");
41d214f6 560 g_string_truncate(inc->comment, 0);
4a35548b
MS
561 }
562
6e8d95a5 563 inc->samplerate = g_variant_get_uint64(g_hash_table_lookup(options, "samplerate"));
4a35548b 564
e53f32d2 565 inc->first_column = g_variant_get_uint32(g_hash_table_lookup(options, "first-column"));
4a35548b 566
de8fe3b5 567 inc->use_header = g_variant_get_boolean(g_hash_table_lookup(options, "header"));
4a35548b 568
ad6a2bee 569 inc->start_line = g_variant_get_uint32(g_hash_table_lookup(options, "startline"));
41d214f6 570 if (inc->start_line < 1) {
6433156c 571 sr_err("Invalid start line %zu.", inc->start_line);
41d214f6 572 return SR_ERR_ARG;
4a35548b
MS
573 }
574
e53f32d2
GS
575 /*
576 * Derive the set of columns to inspect and their respective
577 * formats from simple input specs. Remain close to the previous
578 * set of option keywords and their meaning. Exclusively support
579 * a single column with multiple bits in it, or an adjacent set
580 * of colums with one bit each. The latter may not know the total
581 * column count here (when the user omitted the spec), and will
582 * derive it from the first text line of the input file.
583 */
836fac9c 584 if (single_column && inc->logic_channels) {
e53f32d2 585 sr_dbg("DIAG Got single column (%zu) and channels (%zu).",
836fac9c 586 single_column, inc->logic_channels);
e53f32d2 587 sr_dbg("DIAG -> column %zu, %zu bits in %s format.",
836fac9c
GS
588 single_column, inc->logic_channels,
589 col_format_text[format]);
e53f32d2 590 ret = make_column_details_single(inc,
836fac9c 591 single_column, inc->logic_channels, format);
e53f32d2
GS
592 if (ret != SR_OK)
593 return ret;
594 } else if (inc->multi_column_mode) {
595 sr_dbg("DIAG Got multi-column, first column %zu, count %zu.",
836fac9c
GS
596 inc->first_column, inc->logic_channels);
597 if (inc->logic_channels) {
e53f32d2
GS
598 sr_dbg("DIAG -> columns %zu-%zu, 1 bit each.",
599 inc->first_column,
836fac9c 600 inc->first_column + inc->logic_channels - 1);
e53f32d2 601 ret = make_column_details_multi(inc, inc->first_column,
836fac9c 602 inc->first_column + inc->logic_channels - 1);
e53f32d2
GS
603 if (ret != SR_OK)
604 return ret;
605 } else {
606 sr_dbg("DIAG -> incomplete spec, have to update later.");
607 }
608 } else {
609 sr_err("Unknown or unsupported combination of option values.");
41d214f6 610 return SR_ERR_ARG;
4a35548b
MS
611 }
612
41d214f6
BV
613 return SR_OK;
614}
4a35548b 615
affaf540
GS
616/*
617 * Check the channel list for consistency across file re-import. See
618 * the VCD input module for more details and motivation.
619 */
620
621static void keep_header_for_reread(const struct sr_input *in)
622{
623 struct context *inc;
624
625 inc = in->priv;
626 g_slist_free_full(inc->prev_sr_channels, sr_channel_free_cb);
627 inc->prev_sr_channels = in->sdi->channels;
628 in->sdi->channels = NULL;
629}
630
631static int check_header_in_reread(const struct sr_input *in)
632{
633 struct context *inc;
634
635 if (!in)
636 return FALSE;
637 inc = in->priv;
638 if (!inc)
639 return FALSE;
640 if (!inc->prev_sr_channels)
641 return TRUE;
642
643 if (sr_channel_lists_differ(inc->prev_sr_channels, in->sdi->channels)) {
644 sr_err("Channel list change not supported for file re-read.");
645 return FALSE;
646 }
647 g_slist_free_full(in->sdi->channels, sr_channel_free_cb);
648 in->sdi->channels = inc->prev_sr_channels;
649 inc->prev_sr_channels = NULL;
650
651 return TRUE;
652}
653
492dfa90
GS
654static const char *delim_set = "\r\n";
655
329733d9 656static const char *get_line_termination(GString *buf)
41d214f6 657{
329733d9 658 const char *term;
4a35548b 659
41d214f6
BV
660 term = NULL;
661 if (g_strstr_len(buf->str, buf->len, "\r\n"))
662 term = "\r\n";
663 else if (memchr(buf->str, '\n', buf->len))
664 term = "\n";
665 else if (memchr(buf->str, '\r', buf->len))
666 term = "\r";
4a35548b 667
41d214f6
BV
668 return term;
669}
4a35548b 670
41d214f6
BV
671static int initial_parse(const struct sr_input *in, GString *buf)
672{
673 struct context *inc;
41d214f6 674 GString *channel_name;
e53f32d2
GS
675 size_t num_columns, ch_idx, ch_name_idx, col_idx, col_nr;
676 size_t line_number, line_idx;
41d214f6 677 int ret;
df0db9fd 678 char **lines, *line, **columns, *column;
f6dcb320
GS
679 const char *col_caption;
680 gboolean got_caption;
e53f32d2 681 const struct column_details *detail;
41d214f6
BV
682
683 ret = SR_OK;
684 inc = in->priv;
685 columns = NULL;
686
687 line_number = 0;
492dfa90 688 lines = g_strsplit_set(buf->str, delim_set, 0);
e53f32d2 689 for (line_idx = 0; (line = lines[line_idx]); line_idx++) {
41d214f6
BV
690 line_number++;
691 if (inc->start_line > line_number) {
e53f32d2 692 sr_spew("Line %zu skipped (before start).", line_number);
4a35548b
MS
693 continue;
694 }
df0db9fd 695 if (line[0] == '\0') {
41d214f6
BV
696 sr_spew("Blank line %zu skipped.", line_number);
697 continue;
698 }
df0db9fd
GS
699 strip_comment(line, inc->comment);
700 if (line[0] == '\0') {
41d214f6 701 sr_spew("Comment-only line %zu skipped.", line_number);
4a35548b
MS
702 continue;
703 }
704
41d214f6
BV
705 /* Reached first proper line. */
706 break;
707 }
e53f32d2 708 if (!line) {
41d214f6 709 /* Not enough data for a proper line yet. */
60107497 710 ret = SR_ERR_NA;
41d214f6 711 goto out;
4a35548b
MS
712 }
713
e53f32d2
GS
714 /* See how many columns the current line has. */
715 columns = split_line(line, inc);
df0db9fd 716 if (!columns) {
41d214f6
BV
717 sr_err("Error while parsing line %zu.", line_number);
718 ret = SR_ERR;
719 goto out;
4a35548b 720 }
4a35548b 721 num_columns = g_strv_length(columns);
4a35548b 722 if (!num_columns) {
e53f32d2 723 sr_err("Error while parsing line %zu.", line_number);
41d214f6
BV
724 ret = SR_ERR;
725 goto out;
4a35548b 726 }
e53f32d2
GS
727 sr_dbg("DIAG Got %zu columns in text line: %s.", num_columns, line);
728
729 /* Optionally update incomplete multi-column specs. */
836fac9c
GS
730 if (inc->multi_column_mode && !inc->logic_channels) {
731 inc->logic_channels = num_columns - inc->first_column + 1;
e53f32d2
GS
732 sr_dbg("DIAG -> multi-column update: columns %zu-%zu, 1 bit each.",
733 inc->first_column,
836fac9c 734 inc->first_column + inc->logic_channels - 1);
e53f32d2 735 ret = make_column_details_multi(inc, inc->first_column,
836fac9c 736 inc->first_column + inc->logic_channels - 1);
e53f32d2 737 if (ret != SR_OK)
41d214f6 738 goto out;
4a35548b
MS
739 }
740
e53f32d2
GS
741 /*
742 * Assume all lines have equal length (column count). Bail out
743 * early on suspicious or insufficient input data (check input
744 * which became available here against previous user specs or
745 * auto-determined properties, regardless of layout variant).
746 */
747 if (num_columns < inc->column_want_count) {
748 sr_err("Insufficient input text width for desired data amount, got %zu but want %zu columns.",
749 num_columns, inc->column_want_count);
750 ret = SR_ERR;
751 goto out;
752 }
753
754 /*
755 * Determine channel names. Optionally use text from a header
756 * line (when requested by the user, and only works in multi
757 * column mode). In the absence of header text, or in single
758 * column mode, channels are assigned rather generic names.
f6dcb320
GS
759 *
760 * Manipulation of the column's caption is acceptable here, the
761 * header line will never get processed another time.
e53f32d2 762 */
41d214f6 763 channel_name = g_string_sized_new(64);
e53f32d2 764 for (col_idx = 0; col_idx < inc->column_want_count; col_idx++) {
f6dcb320 765
e53f32d2
GS
766 col_nr = col_idx + 1;
767 detail = lookup_column_details(inc, col_nr);
768 if (detail->text_format == FORMAT_NONE)
769 continue;
770 column = columns[col_idx];
f6dcb320
GS
771 col_caption = sr_scpi_unquote_string(column);
772 got_caption = inc->use_header && *col_caption;
e53f32d2 773 sr_dbg("DIAG col %zu, ch count %zu, text %s.",
f6dcb320 774 col_nr, detail->channel_count, col_caption);
e53f32d2
GS
775 for (ch_idx = 0; ch_idx < detail->channel_count; ch_idx++) {
776 ch_name_idx = detail->channel_offset + ch_idx;
f6dcb320
GS
777 if (got_caption && detail->channel_count == 1)
778 g_string_assign(channel_name, col_caption);
779 else if (got_caption)
780 g_string_printf(channel_name, "%s[%zu]",
781 col_caption, ch_idx);
e53f32d2
GS
782 else
783 g_string_printf(channel_name, "%zu", ch_name_idx);
784 sr_dbg("DIAG ch idx %zu, name %s.", ch_name_idx, channel_name->str);
785 sr_channel_new(in->sdi, ch_name_idx, SR_CHANNEL_LOGIC, TRUE,
786 channel_name->str);
787 }
4a35548b 788 }
41d214f6 789 g_string_free(channel_name, TRUE);
affaf540
GS
790 if (!check_header_in_reread(in)) {
791 ret = SR_ERR_DATA;
792 goto out;
793 }
4a35548b
MS
794
795 /*
cd59e6ec
GS
796 * Calculate the minimum buffer size to store the set of samples
797 * of all channels (unit size). Determine a larger buffer size
798 * for datafeed submission that is a multiple of the unit size.
626c388a
GS
799 * Allocate the larger buffer, the "sample buffer" will point
800 * to a location within that large buffer later.
4a35548b 801 */
836fac9c 802 inc->sample_unit_size = (inc->logic_channels + 7) / 8;
8bc2fa6d 803 inc->datafeed_buf_size = CHUNK_SIZE;
cd59e6ec
GS
804 inc->datafeed_buf_size *= inc->sample_unit_size;
805 inc->datafeed_buffer = g_malloc(inc->datafeed_buf_size);
806 inc->datafeed_buf_fill = 0;
4a35548b 807
41d214f6
BV
808out:
809 if (columns)
810 g_strfreev(columns);
811 g_strfreev(lines);
4a35548b 812
41d214f6 813 return ret;
4a35548b
MS
814}
815
4439363a
GS
816/*
817 * Gets called from initial_receive(), which runs until the end-of-line
818 * encoding of the input stream could get determined. Assumes that this
819 * routine receives enough buffered initial input data to either see the
820 * BOM when there is one, or that no BOM will follow when a text line
821 * termination sequence was seen. Silently drops the UTF-8 BOM sequence
822 * from the input buffer if one was seen. Does not care to protect
823 * against multiple execution or dropping the BOM multiple times --
824 * there should be at most one in the input stream.
825 */
826static void initial_bom_check(const struct sr_input *in)
827{
828 static const char *utf8_bom = "\xef\xbb\xbf";
829
830 if (in->buf->len < strlen(utf8_bom))
831 return;
832 if (strncmp(in->buf->str, utf8_bom, strlen(utf8_bom)) != 0)
833 return;
834 g_string_erase(in->buf, 0, strlen(utf8_bom));
835}
836
41d214f6 837static int initial_receive(const struct sr_input *in)
4a35548b 838{
41d214f6
BV
839 struct context *inc;
840 GString *new_buf;
841 int len, ret;
329733d9
UH
842 char *p;
843 const char *termination;
4a35548b 844
4439363a
GS
845 initial_bom_check(in);
846
41d214f6 847 inc = in->priv;
4a35548b 848
df0db9fd
GS
849 termination = get_line_termination(in->buf);
850 if (!termination)
41d214f6 851 /* Don't have a full line yet. */
d0181813 852 return SR_ERR_NA;
4a35548b 853
df0db9fd
GS
854 p = g_strrstr_len(in->buf->str, in->buf->len, termination);
855 if (!p)
41d214f6 856 /* Don't have a full line yet. */
d0181813 857 return SR_ERR_NA;
41d214f6
BV
858 len = p - in->buf->str - 1;
859 new_buf = g_string_new_len(in->buf->str, len);
860 g_string_append_c(new_buf, '\0');
4a35548b 861
41d214f6
BV
862 inc->termination = g_strdup(termination);
863
864 if (in->buf->str[0] != '\0')
865 ret = initial_parse(in, new_buf);
866 else
867 ret = SR_OK;
868
869 g_string_free(new_buf, TRUE);
870
871 return ret;
872}
873
7f4c3a62 874static int process_buffer(struct sr_input *in, gboolean is_eof)
41d214f6 875{
41d214f6
BV
876 struct context *inc;
877 gsize num_columns;
e53f32d2 878 size_t line_idx, col_idx, col_nr;
836fac9c
GS
879 const struct column_details *details;
880 col_parse_cb parse_func;
ad6a2bee 881 int ret;
e53f32d2 882 char *p, **lines, *line, **columns, *column;
41d214f6 883
41d214f6 884 inc = in->priv;
d0181813 885 if (!inc->started) {
bee2b016 886 std_session_send_df_header(in->sdi);
d0181813 887 inc->started = TRUE;
4a35548b
MS
888 }
889
4555d3bd
GS
890 /*
891 * Consider empty input non-fatal. Keep accumulating input until
892 * at least one full text line has become available. Grab the
893 * maximum amount of accumulated data that consists of full text
894 * lines, and process what has been received so far, leaving not
895 * yet complete lines for the next invocation.
7f4c3a62
GS
896 *
897 * Enforce that all previously buffered data gets processed in
898 * the "EOF" condition. Do not insist in the presence of the
899 * termination sequence for the last line (may often be missing
900 * on Windows). A present termination sequence will just result
901 * in the "execution of an empty line", and does not harm.
4555d3bd
GS
902 */
903 if (!in->buf->len)
904 return SR_OK;
7f4c3a62
GS
905 if (is_eof) {
906 p = in->buf->str + in->buf->len;
907 } else {
908 p = g_strrstr_len(in->buf->str, in->buf->len, inc->termination);
909 if (!p)
910 return SR_ERR;
911 *p = '\0';
912 p += strlen(inc->termination);
913 }
41d214f6 914 g_strstrip(in->buf->str);
4a35548b 915
18078d05 916 ret = SR_OK;
492dfa90 917 lines = g_strsplit_set(in->buf->str, delim_set, 0);
e53f32d2 918 for (line_idx = 0; (line = lines[line_idx]); line_idx++) {
41d214f6 919 inc->line_number++;
df0db9fd 920 if (line[0] == '\0') {
41d214f6 921 sr_spew("Blank line %zu skipped.", inc->line_number);
4a35548b
MS
922 continue;
923 }
924
925 /* Remove trailing comment. */
df0db9fd
GS
926 strip_comment(line, inc->comment);
927 if (line[0] == '\0') {
41d214f6 928 sr_spew("Comment-only line %zu skipped.", inc->line_number);
4a35548b
MS
929 continue;
930 }
931
160691b9 932 /* Skip the header line, its content was used as the channel names. */
de8fe3b5 933 if (inc->use_header && !inc->header_seen) {
160691b9 934 sr_spew("Header line %zu skipped.", inc->line_number);
de8fe3b5 935 inc->header_seen = TRUE;
160691b9
JS
936 continue;
937 }
938
e53f32d2
GS
939 /* Split the line into columns, check for minimum length. */
940 columns = split_line(line, inc);
df0db9fd 941 if (!columns) {
41d214f6 942 sr_err("Error while parsing line %zu.", inc->line_number);
2355d229 943 g_strfreev(lines);
4a35548b
MS
944 return SR_ERR;
945 }
4a35548b 946 num_columns = g_strv_length(columns);
e53f32d2
GS
947 if (num_columns < inc->column_want_count) {
948 sr_err("Insufficient column count %zu in line %zu.",
949 num_columns, inc->line_number);
4a35548b 950 g_strfreev(columns);
2355d229 951 g_strfreev(lines);
4a35548b
MS
952 return SR_ERR;
953 }
954
836fac9c 955 /* Have the columns of the current text line processed. */
626c388a 956 clear_logic_samples(inc);
e53f32d2
GS
957 for (col_idx = 0; col_idx < inc->column_want_count; col_idx++) {
958 column = columns[col_idx];
959 col_nr = col_idx + 1;
836fac9c
GS
960 details = lookup_column_details(inc, col_nr);
961 if (!details || !details->text_format)
962 continue;
963 parse_func = col_parse_funcs[details->text_format];
964 if (!parse_func)
965 continue;
966 ret = parse_func(column, inc, details);
e53f32d2
GS
967 if (ret != SR_OK) {
968 g_strfreev(columns);
969 g_strfreev(lines);
970 return SR_ERR;
971 }
4a35548b
MS
972 }
973
626c388a
GS
974 /* Send sample data to the session bus (buffered). */
975 ret = queue_logic_samples(in);
41d214f6 976 if (ret != SR_OK) {
4a35548b 977 sr_err("Sending samples failed.");
cd59e6ec 978 g_strfreev(columns);
2355d229 979 g_strfreev(lines);
4a35548b
MS
980 return SR_ERR;
981 }
cd59e6ec 982
41d214f6
BV
983 g_strfreev(columns);
984 }
985 g_strfreev(lines);
241c386a 986 g_string_erase(in->buf, 0, p - in->buf->str);
41d214f6 987
7066fd46 988 return ret;
41d214f6
BV
989}
990
7066fd46 991static int receive(struct sr_input *in, GString *buf)
41d214f6
BV
992{
993 struct context *inc;
7066fd46
BV
994 int ret;
995
996 g_string_append_len(in->buf, buf->str, buf->len);
41d214f6
BV
997
998 inc = in->priv;
7066fd46 999 if (!inc->termination) {
df0db9fd
GS
1000 ret = initial_receive(in);
1001 if (ret == SR_ERR_NA)
7066fd46
BV
1002 /* Not enough data yet. */
1003 return SR_OK;
1004 else if (ret != SR_OK)
1005 return SR_ERR;
1006
1007 /* sdi is ready, notify frontend. */
1008 in->sdi_ready = TRUE;
41d214f6 1009 return SR_OK;
7066fd46
BV
1010 }
1011
7f4c3a62 1012 ret = process_buffer(in, FALSE);
7066fd46
BV
1013
1014 return ret;
1015}
1016
1017static int end(struct sr_input *in)
1018{
1019 struct context *inc;
7066fd46 1020 int ret;
41d214f6 1021
7066fd46 1022 if (in->sdi_ready)
7f4c3a62 1023 ret = process_buffer(in, TRUE);
7066fd46
BV
1024 else
1025 ret = SR_OK;
cd59e6ec
GS
1026 if (ret != SR_OK)
1027 return ret;
1028
626c388a 1029 ret = flush_logic_samples(in);
cd59e6ec
GS
1030 if (ret != SR_OK)
1031 return ret;
7066fd46
BV
1032
1033 inc = in->priv;
3be42bc2 1034 if (inc->started)
bee2b016 1035 std_session_send_df_end(in->sdi);
4a35548b 1036
7066fd46
BV
1037 return ret;
1038}
1039
d5cc282f 1040static void cleanup(struct sr_input *in)
7066fd46
BV
1041{
1042 struct context *inc;
1043
affaf540
GS
1044 keep_header_for_reread(in);
1045
7066fd46
BV
1046 inc = in->priv;
1047
b1f83103 1048 g_free(inc->termination);
539188e5 1049 inc->termination = NULL;
cd59e6ec 1050 g_free(inc->datafeed_buffer);
539188e5 1051 inc->datafeed_buffer = NULL;
4a35548b
MS
1052}
1053
ad93bfb0
SA
1054static int reset(struct sr_input *in)
1055{
1056 struct context *inc = in->priv;
1057
1058 cleanup(in);
1059 inc->started = FALSE;
1060 g_string_truncate(in->buf, 0);
1061
1062 return SR_OK;
1063}
1064
c6aa9870
GS
1065enum option_index {
1066 OPT_SINGLE_COL,
1067 OPT_NUM_LOGIC,
1068 OPT_DELIM,
1069 OPT_FORMAT,
1070 OPT_COMMENT,
1071 OPT_RATE,
e53f32d2 1072 OPT_FIRST_COL,
c6aa9870
GS
1073 OPT_HEADER,
1074 OPT_START,
1075 OPT_MAX,
1076};
1077
41d214f6 1078static struct sr_option options[] = {
c6aa9870
GS
1079 [OPT_SINGLE_COL] = { "single-column", "Single column", "Enable single-column mode, using the specified column (>= 1); 0: multi-col. mode", NULL, NULL },
1080 [OPT_NUM_LOGIC] = { "numchannels", "Number of logic channels", "The number of (logic) channels (single-col. mode: number of bits beginning at 'first channel', LSB-first)", NULL, NULL },
1081 [OPT_DELIM] = { "delimiter", "Column delimiter", "The column delimiter (>= 1 characters)", NULL, NULL },
1082 [OPT_FORMAT] = { "format", "Data format (single-col. mode)", "The numeric format of the data (single-col. mode): bin, hex, oct", NULL, NULL },
1083 [OPT_COMMENT] = { "comment", "Comment character(s)", "The comment prefix character(s)", NULL, NULL },
1084 [OPT_RATE] = { "samplerate", "Samplerate (Hz)", "The sample rate (used during capture) in Hz", NULL, NULL },
e53f32d2 1085 [OPT_FIRST_COL] = { "first-column", "First column", "The column number of the first channel (multi-col. mode)", NULL, NULL },
c6aa9870
GS
1086 [OPT_HEADER] = { "header", "Interpret first line as header (multi-col. mode)", "Treat the first line as header with channel names (multi-col. mode)", NULL, NULL },
1087 [OPT_START] = { "startline", "Start line", "The line number at which to start processing samples (>= 1)", NULL, NULL },
1088 [OPT_MAX] = ALL_ZERO,
41d214f6
BV
1089};
1090
2c240774 1091static const struct sr_option *get_options(void)
41d214f6 1092{
31c41782
UH
1093 GSList *l;
1094
41d214f6 1095 if (!options[0].def) {
e53f32d2
GS
1096 options[OPT_SINGLE_COL].def = g_variant_ref_sink(g_variant_new_uint32(0));
1097 options[OPT_NUM_LOGIC].def = g_variant_ref_sink(g_variant_new_uint32(0));
c6aa9870
GS
1098 options[OPT_DELIM].def = g_variant_ref_sink(g_variant_new_string(","));
1099 options[OPT_FORMAT].def = g_variant_ref_sink(g_variant_new_string("bin"));
31c41782
UH
1100 l = NULL;
1101 l = g_slist_append(l, g_variant_ref_sink(g_variant_new_string("bin")));
1102 l = g_slist_append(l, g_variant_ref_sink(g_variant_new_string("hex")));
1103 l = g_slist_append(l, g_variant_ref_sink(g_variant_new_string("oct")));
c6aa9870
GS
1104 options[OPT_FORMAT].values = l;
1105 options[OPT_COMMENT].def = g_variant_ref_sink(g_variant_new_string(";"));
1106 options[OPT_RATE].def = g_variant_ref_sink(g_variant_new_uint64(0));
e53f32d2 1107 options[OPT_FIRST_COL].def = g_variant_ref_sink(g_variant_new_uint32(1));
c6aa9870 1108 options[OPT_HEADER].def = g_variant_ref_sink(g_variant_new_boolean(FALSE));
e53f32d2 1109 options[OPT_START].def = g_variant_ref_sink(g_variant_new_uint32(1));
41d214f6
BV
1110 }
1111
1112 return options;
1113}
1114
d4c93774 1115SR_PRIV struct sr_input_module input_csv = {
4a35548b 1116 .id = "csv",
41d214f6
BV
1117 .name = "CSV",
1118 .desc = "Comma-separated values",
c7bc82ff 1119 .exts = (const char*[]){"csv", NULL},
41d214f6 1120 .options = get_options,
4a35548b 1121 .init = init,
41d214f6 1122 .receive = receive,
7066fd46 1123 .end = end,
41d214f6 1124 .cleanup = cleanup,
ad93bfb0 1125 .reset = reset,
4a35548b 1126};