1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*
csvfix - reads (possibly malformed) CSV data from input file
and writes properly formed CSV to output file
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <csv.h>
void cb1 (void *s, size_t i, void *outfile) {
csv_fwrite((FILE *)outfile, s, i);
fputc(',',(FILE *)outfile);
}
void cb2 (int c, void *outfile) {
fseek((FILE *)outfile, -1, SEEK_CUR);
fputc('\n', (FILE *)outfile);
}
int main (int argc, char *argv[]) {
char buf[1024];
size_t i;
struct csv_parser p;
FILE *infile, *outfile;
csv_init(&p, 0);
if (argc != 3) {
fprintf(stderr, "Usage: csv_fix infile outfile\n");
return EXIT_FAILURE;
}
if (!strcmp(argv[1], argv[2])) {
fprintf(stderr, "Input file and output file must not be the same!\n");
exit(EXIT_FAILURE);
}
infile = fopen(argv[1], "rb");
if (infile == NULL) {
fprintf(stderr, "Failed to open file %s: %s\n", argv[1], strerror(errno));
exit(EXIT_FAILURE);
}
outfile = fopen(argv[2], "wb");
if (outfile == NULL) {
fprintf(stderr, "Failed to open file %s: %s\n", argv[2], strerror(errno));
fclose(infile);
exit(EXIT_FAILURE);
}
while ((i=fread(buf, 1, 1024, infile)) > 0) {
if (csv_parse(&p, buf, i, cb1, cb2, outfile) != i) {
fprintf(stderr, "Error parsing file: %s\n", csv_strerror(csv_error(&p)));
fclose(infile);
fclose(outfile);
remove(argv[2]);
exit(EXIT_FAILURE);
}
}
csv_fini(&p, cb1, cb2, outfile);
csv_free(&p);
if (ferror(infile)) {
fprintf(stderr, "Error reading from input file");
fclose(infile);
fclose(outfile);
remove(argv[2]);
exit(EXIT_FAILURE);
}
fclose(infile);
fclose(outfile);
return EXIT_SUCCESS;
}
|