2 * A Swiss-Army Knife for CSV-like Files
4 * (c) 2012 Martin Mares <mj@ucw.cz>
20 #define NONRET __attribute__((noreturn))
21 #define UNUSED __attribute__((unused))
27 /*** General functions ***/
29 static void NONRET die(char *msg, ...)
33 fprintf(stderr, "xsv: ");
34 vfprintf(stderr, msg, args);
40 /*** Memory allocation ***/
42 static void *xmalloc(size_t bytes)
44 void *p = malloc(bytes);
46 die("Out of memory (cannot allocate %zu bytes)", bytes);
50 static void *xmalloc_zero(size_t bytes)
52 void *p = xmalloc(bytes);
57 static void *xrealloc(void *old, size_t bytes)
59 void *p = realloc(old, bytes);
61 die("Out of memory (cannot allocate %zu bytes)", bytes);
65 #define DECLARE_BUF(name, type) \
66 typedef struct { type *start; int count; int max; } name##_t; \
67 static inline void name##_init(name##_t *b) { b->start = NULL; b->count = b->max = 0; } \
68 static inline void name##_reset(name##_t *b) { b->count = 0; } \
69 static inline int name##_count(name##_t *b) { return b->count; } \
70 static void name##_extend(name##_t *b) { \
71 b->max = b->max ? 2*b->max : 16; \
72 b->start = xrealloc(b->start, b->max * sizeof(type)); \
74 static inline type *name##_push(name##_t *b) { \
75 if (b->count >= b->max) name##_extend(b); \
76 return &b->start[b->count++]; \
78 static inline type *name##_first(name##_t *b) { return b->start; } \
79 static inline type *name##_nth(name##_t *b, int n) { return &b->start[n]; } \
82 DECLARE_BUF(intarray, int);
83 DECLARE_BUF(stringarray, char *);
85 /*** Formats and their parameters ***/
102 int (*read_line)(struct format *fmt);
103 void (*write_line)(struct format *fmt);
104 void (*write_grid)(struct format *fmt, int pos); // -1=above, 1=below, 0=after header
109 char *set_field_names;
110 struct field_names *field_names;
120 pcre_extra *pcre_extra;
122 // Temporary file backend:
130 static struct format *in_format, *out_format;
131 static int want_trim, want_equalize, want_stats;
138 DECLARE_BUF(fields, struct field);
139 DECLARE_BUF(line, unsigned char);
141 static fields_t in_fields, out_fields;
142 static struct field *in_field;
143 static line_t in_line;
144 static int line_number;
146 static int read_line(void)
148 fields_reset(&in_fields);
149 line_reset(&in_line);
151 if (!in_format->read_line(in_format))
153 if (ferror_unlocked(stdin))
154 die("I/O error when reading standard input");
158 static void write_line(void)
160 out_format->write_line(out_format);
161 if (ferror_unlocked(stdout))
162 die("I/O error when writing standard input");
165 static void write_grid(int pos)
167 if (out_format->write_grid) {
168 out_format->write_grid(out_format, pos);
169 if (ferror_unlocked(stdout))
170 die("I/O error when writing standard input");
174 static void new_field(int pos)
176 in_field = fields_push(&in_fields);
177 in_field->start_pos = pos;
181 static void ensure_field(int pos)
187 static unsigned char *get_field(fields_t *fields, int i, int *len)
189 struct field *f = fields_nth(fields, i);
191 return line_nth(&in_line, f->start_pos);
194 static void warn(struct format *fmt, char *msg, ...)
197 fprintf(stderr, "Warning at line %d: ", line_number);
200 vfprintf(stderr, msg, args);
206 static int next_line(void)
209 int c = getchar_unlocked();
213 return !!line_count(&in_line);
216 *line_push(&in_line) = c;
220 static int field_chars(struct field *f)
222 unsigned char *s = line_nth(&in_line, f->start_pos);
225 memset(&mbs, 0, sizeof(mbs));
229 size_t k = mbrlen((char *) s + i, f->len - i, &mbs);
239 /*** Field statistics ***/
241 static intarray_t column_widths;
243 static void update_stats(void)
248 for (int i = 0; i < fields_count(&out_fields); i++) {
249 struct field *f = fields_nth(&out_fields, i);
250 intarray_t *w = &column_widths;
252 while (i >= intarray_count(w))
253 *intarray_push(w) = 0;
254 int fw = field_chars(f);
255 if (*intarray_nth(w, i) < fw)
256 *intarray_nth(w, i) = fw;
260 /*** CSV/TSV back-end */
262 static int csv_read(struct format *fmt)
266 int c = getchar_unlocked();
267 int i = line_count(&in_line);
271 if (c < 0 || c == '\n') {
273 warn(fmt, "Missing closing quote.");
275 return !!fields_count(&in_fields);
280 if (c == fmt->quote) {
281 c = getchar_unlocked();
282 if (c != fmt->quote) {
286 // Two quotes assimilate to one
288 // Fall through to pushing the character
289 } else if (c == fmt->quote) {
292 } else if (c == fmt->fs && !quoted) {
298 *line_push(&in_line) = c;
303 static int is_ws(int c)
305 return (c == ' ' || c == '\t' || c == '\f');
308 static void csv_write(struct format *fmt)
310 for (int i=0; i < fields_count(&out_fields); i++) {
312 unsigned char *p = get_field(&out_fields, i, &len);
315 if (fmt->quote >= 0) {
316 need_quotes = fmt->always_quote;
317 for (int j=0; !need_quotes && j < len; j++) {
318 if (p[j] == fmt->fs || p[j] == fmt->quote)
323 putchar_unlocked(fmt->fs);
325 putchar_unlocked(fmt->quote);
326 for (int j=0; j < len; j++) {
328 if (c == fmt->fs && !need_quotes)
329 warn(fmt, "Field separator found inside field and quoting is turned off.");
335 putchar_unlocked(fmt->quote);
337 putchar_unlocked('\n');
340 /*** White-space back-end ***/
342 static int ws_read(struct format *fmt)
347 unsigned char *line = line_first(&in_line);
348 int n = line_count(&in_line);
354 for (int i=0; i<n; i++) {
360 if (!in_field->start_pos &&
363 in_field->start_pos = i;
372 if (ws && fmt->strict_ws)
377 /*** Regex back-end ***/
379 static const char *regex_set(struct format *f, char *rx)
383 f->pcre = pcre_compile(rx, PCRE_DOLLAR_ENDONLY, &err, &errpos, NULL);
387 f->pcre_extra = pcre_study(f->pcre, 0, &err);
394 static int regex_read(struct format *fmt)
399 unsigned char *c = line_first(&in_line);
400 int n = line_count(&in_line);
407 int sep = pcre_exec(fmt->pcre, fmt->pcre_extra, (char *) c, n, i, 0, ovec, 3);
409 if (sep != PCRE_ERROR_NOMATCH)
410 warn(fmt, "PCRE matching error %d", sep);
411 // No further occurrence of the separator: the rest is a single field
413 in_field->len = n - i;
417 in_field->len = ovec[0] - i;
422 /*** Table back-end ***/
424 static void table_write(struct format *fmt)
426 for (int i = 0; i < intarray_count(&column_widths); i++) {
427 if (fmt->table_grid) {
428 putchar_unlocked('|');
429 printf("%*s", fmt->table_sep / 2, "");
431 printf("%*s", fmt->table_sep, "");
433 int cw = *intarray_nth(&column_widths, i);
435 if (i < fields_count(&out_fields)) {
437 unsigned char *p = get_field(&out_fields, i, &len);
438 fw = field_chars(fields_nth(&out_fields, i));
440 warn(fmt, "Internal error: Wrongly calculated width of column %d (%d > %d)", i, fw, cw);
447 putchar_unlocked(' ');
452 printf("%*s", fmt->table_sep - fmt->table_sep / 2, "");
456 putchar_unlocked('|');
457 putchar_unlocked('\n');
460 static void table_write_grid(struct format *fmt, int pos UNUSED)
462 if (!fmt->table_grid)
465 for (int i = 0; i < intarray_count(&column_widths); i++) {
466 putchar_unlocked('+');
467 int w = fmt->table_sep + *intarray_nth(&column_widths, i);
471 putchar_unlocked('+');
472 putchar_unlocked('\n');
475 /*** Temporary file back-end ***/
477 static int tmp_read(struct format *fmt)
479 FILE *tf = fmt->tmp_file;
482 int c = getc_unlocked(tf);
488 c = getc_unlocked(tf);
489 c = (c << 8) | getc_unlocked(tf);
490 c = (c << 8) | getc_unlocked(tf);
491 c = (c << 8) | getc_unlocked(tf);
493 new_field(line_count(&in_line));
496 int x = getc_unlocked(tf);
498 die("Truncated temporary file");
499 *line_push(&in_line) = x;
503 if (ferror_unlocked(tf))
504 die("I/O error when reading temporary file");
507 static void tmp_write(struct format *fmt)
509 FILE *tf = fmt->tmp_file;
511 for (int i = 0; i < fields_count(&out_fields); i++) {
513 unsigned char *p = get_field(&out_fields, i, &len);
516 putc_unlocked(len, tf);
518 putc_unlocked(0xfe, tf);
519 putc_unlocked((len >> 24) & 0xff, tf);
520 putc_unlocked((len >> 16) & 0xff, tf);
521 putc_unlocked((len >> 8) & 0xff, tf);
522 putc_unlocked(len & 0xff, tf);
526 putc_unlocked(*p++, tf);
528 putc_unlocked(0xff, tf);
530 if (ferror_unlocked(tf))
531 die("I/O error when writing temporary file");
536 static void trim_fields(void)
538 unsigned char *line = line_first(&in_line);
539 for (int i = 0; i < fields_count(&in_fields); i++) {
540 struct field *f = fields_nth(&in_fields, i);
541 while (f->len && is_ws(line[f->start_pos]))
542 f->start_pos++, f->len--;
543 while (f->len && is_ws(line[f->start_pos + f->len - 1]))
548 static void equalize_fields(void)
550 while (fields_count(&out_fields) < intarray_count(&column_widths)) {
551 struct field *f = fields_push(&out_fields);
552 f->start_pos = f->len = 0;
556 /*** Field names and headers ***/
562 static void add_field(struct field_names *fn, char *name, int namelen)
564 char *n = xmalloc(namelen + 1);
565 memcpy(n, name, namelen);
567 *stringarray_push(&fn->names) = n;
570 static void add_field_names(struct field_names *fn, char *names)
574 char *q = strchr(p, ',');
575 int len = q ? q-p : (int) strlen(p);
576 add_field(fn, p, len);
581 static void read_header(void)
583 if (!(in_format->has_header || in_format->set_field_names))
586 struct field_names *fn = xmalloc_zero(sizeof(*fn));
587 in_format->field_names = fn;
589 if (in_format->has_header) {
591 die("Missing input header");
594 if (in_format->set_field_names) {
595 add_field_names(fn, in_format->set_field_names);
597 for (int i = 0; i < fields_count(&in_fields); i++) {
599 char *s = (char *) get_field(&in_fields, i, &len);
600 add_field(fn, s, len);
605 static void write_header(void)
607 if (!out_format->has_header) {
612 if (out_format->set_field_names) {
613 struct field_names *fn = xmalloc_zero(sizeof(*fn));
614 out_format->field_names = fn;
615 add_field_names(fn, out_format->set_field_names);
616 } else if (in_format->field_names)
617 out_format->field_names = in_format->field_names;
619 die("Output header requested, but no field names specified");
621 line_reset(&in_line);
622 fields_reset(&out_fields);
623 struct field_names *fn = out_format->field_names;
624 for (int i = 0; i < stringarray_count(&fn->names); i++) {
625 struct field *f = fields_push(&out_fields);
626 f->start_pos = line_count(&in_line);
628 char *s = *stringarray_nth(&fn->names, i);
630 *line_push(&in_line) = *s++;
635 // This is tricky: when we are formatting a table, field names are normally
636 // calculated in pass 1, but the header is written in pass 2, so we have to
637 // update column statistics, because field name can be too wide to fit.
648 static void write_footer(void)
653 static int find_field_by_name(struct field_names *fn, char *name)
655 for (int i = 0; i < stringarray_count(&fn->names); i++)
656 if (!strcmp(*stringarray_nth(&fn->names, i), name))
661 /*** Field selection ***/
664 int first_field, last_field; // 0 means "boundary"
667 DECLARE_BUF(selectors, struct selector);
668 static selectors_t selectors;
670 static int parse_field_num(char *str)
675 if (*str < '0' || *str > '9')
679 f = 10*f + *str - '0';
685 static int parse_field(char *str)
690 int f = parse_field_num(str);
694 if (in_format->field_names && (f = find_field_by_name(in_format->field_names, str)) > 0)
697 die("Unknown field %s", str);
700 static char *parse_selector(char *str)
702 char buf[strlen(str) + 1];
705 struct selector *s = selectors_push(&selectors);
706 char *sep = strchr(buf, '-');
709 s->first_field = parse_field(buf);
710 s->last_field = parse_field(sep);
712 s->first_field = s->last_field = parse_field(buf);
717 static void finish_parse_selectors(void)
719 if (!selectors_count(&selectors))
723 static void select_fields(void)
725 for (int i = 0; i < selectors_count(&selectors); i++) {
726 struct selector *s = selectors_nth(&selectors, i);
727 int first = s->first_field;
730 int last = s->last_field;
732 last = fields_count(&in_fields);
733 for (int j = first; j <= last; j++) {
734 struct field *f = fields_push(&out_fields);
735 if (j >= 1 && j <= fields_count(&in_fields))
736 *f = *fields_nth(&in_fields, j-1);
738 f->start_pos = f->len = 0;
743 static void select_all_fields(void)
745 for (int i = 0; i < fields_count(&in_fields); i++)
746 *fields_push(&out_fields) = *fields_nth(&in_fields, i);
749 /*** Processing of files ***/
751 static void one_pass(int pass)
761 if (want_trim && (pass & 1))
764 fields_reset(&out_fields);
770 if (want_equalize && (pass & 2))
780 static void two_pass(void)
782 struct format *final_format = out_format;
784 // We need to use character set info from the current locale
785 setlocale(LC_CTYPE, "");
787 // Pass 1: Set up writer of intermediate format
788 out_format = xmalloc_zero(sizeof(*out_format));
789 out_format->id = FORM_TMP;
790 out_format->read_line = tmp_read;
791 out_format->write_line = tmp_write;
792 out_format->tmp_file = tmpfile();
793 out_format->field_names = in_format->field_names;
796 // Pass 2: Set up reader of intermediate format
797 in_format = out_format;
798 rewind(in_format->tmp_file);
800 out_format = final_format;
803 fclose(in_format->tmp_file);
806 /*** Parsing of arguments ***/
808 static void NONRET usage(void)
811 Usage: xsv <in-format> [<out-format>] <options> [<fields>]\n\
814 -t, --tsv TAB-separated values (default)\n\
815 -c, --csv Comma-separated values\n\
816 -w, --ws Values separated by arbitrary whitespace\n\
817 -W, --strict-ws Like --ws, but recognize empty columns at start/end\n\
818 -r, --regex=<rx> Separator given by Perl regular expression (input only)\n\
819 --table Format a table (output only)\n\
821 Format parameters:\n\
822 -d, --fs=<char> Delimiter of fields\n\
823 -f, --fields=<f>,... Set field names\n\
824 -h, --header The first line contains field names\n\
825 -q, --quiet Do not show warnings\n\
826 --always-quote Put quotes around all fields (CSV output only)\n\
827 --table-sep=<n> Separate table columns by <n> spaces (default: 2)\n\
828 --grid Separate table columns by grid lines\n\
831 --trim Trim leading and trailing whitespaces in fields\n\
832 --equalize Pad all lines to the maximum number of fields\n\
837 static void NONRET bad_args(const char *msg, ...)
842 fprintf(stderr, "xsv: ");
843 vfprintf(stderr, msg, args);
847 fprintf(stderr, "Try `xsv --help' for more information.\n");
851 static const char short_options[] = "cd:f:hqr:twW";
863 static const struct option long_options[] = {
864 { "always-quote", 0, NULL, OPT_ALWAYS_QUOTE },
865 { "csv", 0, NULL, 'c' },
866 { "equalize", 0, NULL, OPT_EQUALIZE },
867 { "fields", 1, NULL, 'f' },
868 { "fs", 1, NULL, 'd' },
869 { "grid", 0, NULL, OPT_GRID },
870 { "header", 0, NULL, 'h' },
871 { "quiet", 0, NULL, 'q' },
872 { "regex", 1, NULL, 'r' },
873 { "strict-ws", 0, NULL, 'W' },
874 { "table", 0, NULL, OPT_TABLE },
875 { "table-sep", 1, NULL, OPT_TABLE_SEP },
876 { "trim", 0, NULL, OPT_TRIM },
877 { "tsv", 0, NULL, 't' },
878 { "ws", 0, NULL, 'w' },
879 { "help", 0, NULL, OPT_HELP },
880 { NULL, 0, NULL, 0 },
883 static void set_format(int format_id)
885 struct format *f = xmalloc_zero(sizeof(*f));
892 f->read_line = csv_read;
893 f->write_line = csv_write;
898 f->read_line = csv_read;
899 f->write_line = csv_write;
904 f->read_line = ws_read;
905 f->write_line = csv_write;
908 f->read_line = regex_read;
911 f->write_line = table_write;
912 f->write_grid = table_write_grid;
920 else if (!out_format)
923 bad_args("At most two formats may be given.");
926 static struct format *current_format(void)
932 set_format(FORM_TSV);
936 int main(int argc, char **argv)
941 while ((opt = getopt_long(argc, argv, short_options, long_options, NULL)) >= 0)
944 set_format(FORM_CSV);
948 current_format()->fs = optarg[0];
950 bad_args("No field delimiter given.");
953 current_format()->set_field_names = optarg;
956 current_format()->has_header = 1;
959 current_format()->quiet = 1;
962 set_format(FORM_REGEX);
963 err = regex_set(current_format(), optarg);
965 bad_args("Error compiling regex: %s", err);
968 set_format(FORM_TSV);
975 current_format()->strict_ws = 1;
977 case OPT_ALWAYS_QUOTE:
978 if (current_format()->id != FORM_CSV)
979 bad_args("--always-quote makes sense only for CSV.");
980 current_format()->always_quote = 1;
988 set_format(FORM_TABLE);
991 current_format()->table_sep = atoi(optarg);
994 current_format()->table_grid = 1;
1005 out_format = in_format;
1006 if (!in_format->read_line)
1007 bad_args("Write-only format selected for input.");
1008 if (!out_format->write_line)
1009 bad_args("Read-only format selected for output.");
1012 for (int i = optind; i < argc; i++) {
1013 err = parse_selector(argv[i]);
1017 finish_parse_selectors();
1019 want_stats = out_format->needs_stats | want_equalize;