From 047d5b9fc7fe4e1bb04ea1e95c754c6981943c71 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 23 Aug 2016 21:13:22 +0100 Subject: add file output to test decoder --- test/data/SpglGrfC.svg | 12 ++ test/decode_svg.c | 324 +++++++++++++++++++++++++++---------------------- test/runtest.sh | 6 +- 3 files changed, 192 insertions(+), 150 deletions(-) create mode 100644 test/data/SpglGrfC.svg (limited to 'test') diff --git a/test/data/SpglGrfC.svg b/test/data/SpglGrfC.svg new file mode 100644 index 0000000..7b37510 --- /dev/null +++ b/test/data/SpglGrfC.svg @@ -0,0 +1,12 @@ + + + + + +0.20.40.60.811.21.41.61.80.10.20.30.40.50.60.70.80.911.11.21.31.41.5 + + + + + + \ No newline at end of file diff --git a/test/decode_svg.c b/test/decode_svg.c index 1b507fd..b723e9e 100644 --- a/test/decode_svg.c +++ b/test/decode_svg.c @@ -13,154 +13,182 @@ #include "svgtiny.h" -int main(int argc, char *argv[]) +static void write_mvg(FILE *fh, float scale, struct svgtiny_diagram *diagram) { - FILE *fd; - float scale = 1.0; - struct stat sb; - char *buffer; - size_t size; - size_t n; - struct svgtiny_diagram *diagram; - svgtiny_code code; - - if (argc != 2 && argc != 3) { - fprintf(stderr, "Usage: %s FILE [SCALE]\n", argv[0]); - return 1; - } - - /* load file into memory buffer */ - fd = fopen(argv[1], "rb"); - if (!fd) { - perror(argv[1]); - return 1; - } - - if (stat(argv[1], &sb)) { - perror(argv[1]); - return 1; - } - size = sb.st_size; - - buffer = malloc(size); - if (!buffer) { - fprintf(stderr, "Unable to allocate %lld bytes\n", - (long long) size); - return 1; - } - - n = fread(buffer, 1, size, fd); - if (n != size) { - perror(argv[1]); - return 1; - } - - fclose(fd); - - /* read scale argument */ - if (argc == 3) { - scale = atof(argv[2]); - if (scale == 0) - scale = 1.0; - } - - /* create svgtiny object */ - diagram = svgtiny_create(); - if (!diagram) { - fprintf(stderr, "svgtiny_create failed\n"); - return 1; - } - - /* parse */ - code = svgtiny_parse(diagram, buffer, size, argv[1], 1000, 1000); - if (code != svgtiny_OK) { - fprintf(stderr, "svgtiny_parse failed: "); - switch (code) { - case svgtiny_OUT_OF_MEMORY: - fprintf(stderr, "svgtiny_OUT_OF_MEMORY"); - break; - case svgtiny_LIBDOM_ERROR: - fprintf(stderr, "svgtiny_LIBDOM_ERROR"); - break; - case svgtiny_NOT_SVG: - fprintf(stderr, "svgtiny_NOT_SVG"); - break; - case svgtiny_SVG_ERROR: - fprintf(stderr, "svgtiny_SVG_ERROR: line %i: %s", - diagram->error_line, - diagram->error_message); - break; - default: - fprintf(stderr, "unknown svgtiny_code %i", code); - break; - } - fprintf(stderr, "\n"); - } - - free(buffer); - - printf("viewbox 0 0 %g %g\n", - scale * diagram->width, scale * diagram->height); - - for (unsigned int i = 0; i != diagram->shape_count; i++) { - if (diagram->shape[i].fill == svgtiny_TRANSPARENT) - printf("fill none "); - else - printf("fill #%.6x ", diagram->shape[i].fill); - if (diagram->shape[i].stroke == svgtiny_TRANSPARENT) - printf("stroke none "); - else - printf("stroke #%.6x ", diagram->shape[i].stroke); - printf("stroke-width %g ", - scale * diagram->shape[i].stroke_width); - if (diagram->shape[i].path) { - printf("path '"); - for (unsigned int j = 0; - j != diagram->shape[i].path_length; ) { - switch ((int) diagram->shape[i].path[j]) { - case svgtiny_PATH_MOVE: - printf("M %g %g ", - scale * diagram->shape[i].path[j + 1], - scale * diagram->shape[i].path[j + 2]); - j += 3; - break; - case svgtiny_PATH_CLOSE: - printf("Z "); - j += 1; - break; - case svgtiny_PATH_LINE: - printf("L %g %g ", - scale * diagram->shape[i].path[j + 1], - scale * diagram->shape[i].path[j + 2]); - j += 3; - break; - case svgtiny_PATH_BEZIER: - printf("C %g %g %g %g %g %g ", - scale * diagram->shape[i].path[j + 1], - scale * diagram->shape[i].path[j + 2], - scale * diagram->shape[i].path[j + 3], - scale * diagram->shape[i].path[j + 4], - scale * diagram->shape[i].path[j + 5], - scale * diagram->shape[i].path[j + 6]); - j += 7; - break; - default: - printf("error "); - j += 1; - } - } - printf("' "); - } else if (diagram->shape[i].text) { - printf("text %g %g '%s' ", - scale * diagram->shape[i].text_x, - scale * diagram->shape[i].text_y, - diagram->shape[i].text); - } - printf("\n"); - } - - svgtiny_free(diagram); - - return 0; + unsigned int i; + + fprintf(fh, "viewbox 0 0 %g %g\n", + scale * diagram->width, scale * diagram->height); + + for (i = 0; i != diagram->shape_count; i++) { + if (diagram->shape[i].fill == svgtiny_TRANSPARENT) { + fprintf(fh, "fill none "); + } else { + fprintf(fh, "fill #%.6x ", diagram->shape[i].fill); + } + + if (diagram->shape[i].stroke == svgtiny_TRANSPARENT) { + fprintf(fh, "stroke none "); + } else { + fprintf(fh, "stroke #%.6x ", diagram->shape[i].stroke); + } + fprintf(fh, "stroke-width %g ", + scale * diagram->shape[i].stroke_width); + + if (diagram->shape[i].path) { + unsigned int j; + fprintf(fh, "path '"); + for (j = 0; j != diagram->shape[i].path_length; ) { + switch ((int) diagram->shape[i].path[j]) { + case svgtiny_PATH_MOVE: + fprintf(fh, "M %g %g ", + scale * diagram->shape[i].path[j + 1], + scale * diagram->shape[i].path[j + 2]); + j += 3; + break; + + case svgtiny_PATH_CLOSE: + fprintf(fh, "Z "); + j += 1; + break; + + case svgtiny_PATH_LINE: + fprintf(fh, "L %g %g ", + scale * diagram->shape[i].path[j + 1], + scale * diagram->shape[i].path[j + 2]); + j += 3; + break; + + case svgtiny_PATH_BEZIER: + fprintf(fh, "C %g %g %g %g %g %g ", + scale * diagram->shape[i].path[j + 1], + scale * diagram->shape[i].path[j + 2], + scale * diagram->shape[i].path[j + 3], + scale * diagram->shape[i].path[j + 4], + scale * diagram->shape[i].path[j + 5], + scale * diagram->shape[i].path[j + 6]); + j += 7; + break; + + default: + fprintf(fh, "error "); + j += 1; + } + } + fprintf(fh, "' "); + } else if (diagram->shape[i].text) { + fprintf(fh, "text %g %g '%s' ", + scale * diagram->shape[i].text_x, + scale * diagram->shape[i].text_y, + diagram->shape[i].text); + } + fprintf(fh, "\n"); + } } +int main(int argc, char *argv[]) +{ + FILE *fd; + float scale = 1.0; + struct stat sb; + char *buffer; + size_t size; + size_t n; + struct svgtiny_diagram *diagram; + svgtiny_code code; + FILE *outf = stdout; + + if (argc < 2 || argc > 4) { + fprintf(stderr, "Usage: %s FILE [SCALE] [out]\n", argv[0]); + return 1; + } + + /* load file into memory buffer */ + fd = fopen(argv[1], "rb"); + if (!fd) { + perror(argv[1]); + return 1; + } + + if (stat(argv[1], &sb)) { + perror(argv[1]); + return 1; + } + size = sb.st_size; + + buffer = malloc(size); + if (!buffer) { + fprintf(stderr, "Unable to allocate %lld bytes\n", + (long long) size); + return 1; + } + + n = fread(buffer, 1, size, fd); + if (n != size) { + perror(argv[1]); + return 1; + } + + fclose(fd); + + /* read scale argument */ + if (argc > 2) { + scale = atof(argv[2]); + if (scale == 0) + scale = 1.0; + } + + /* output file */ + if (argc > 3) { + outf = fopen(argv[3], "w+"); + if (outf == NULL) { + fprintf(stderr, "Unable to open %s for writing\n", argv[3]); + return 2; + } + } + + /* create svgtiny object */ + diagram = svgtiny_create(); + if (!diagram) { + fprintf(stderr, "svgtiny_create failed\n"); + return 1; + } + + /* parse */ + code = svgtiny_parse(diagram, buffer, size, argv[1], 1000, 1000); + if (code != svgtiny_OK) { + fprintf(stderr, "svgtiny_parse failed: "); + switch (code) { + case svgtiny_OUT_OF_MEMORY: + fprintf(stderr, "svgtiny_OUT_OF_MEMORY"); + break; + case svgtiny_LIBDOM_ERROR: + fprintf(stderr, "svgtiny_LIBDOM_ERROR"); + break; + case svgtiny_NOT_SVG: + fprintf(stderr, "svgtiny_NOT_SVG"); + break; + case svgtiny_SVG_ERROR: + fprintf(stderr, "svgtiny_SVG_ERROR: line %i: %s", + diagram->error_line, + diagram->error_message); + break; + default: + fprintf(stderr, "unknown svgtiny_code %i", code); + break; + } + fprintf(stderr, "\n"); + } + + free(buffer); + + write_mvg(outf, scale, diagram); + + if (argc > 3) { + fclose(outf); + } + + svgtiny_free(diagram); + + return 0; +} diff --git a/test/runtest.sh b/test/runtest.sh index f1c33ea..3cd5e8c 100755 --- a/test/runtest.sh +++ b/test/runtest.sh @@ -1,14 +1,16 @@ #!/bin/sh TEST_PATH=$1 -TEST_OUT=${TEST_PATH}/svg +TEST_OUT=${TEST_PATH}/test mkdir -p ${TEST_OUT} svgdecode() { OUTF=$(basename ${1} .svg) - ${TEST_PATH}/test_decode_svg ${1} > ${TEST_OUT}/${OUTF}.svg + echo "TEST: ${OUTF}" + ${TEST_PATH}/test_decode_svg ${1} > ${TEST_OUT}/${OUTF}.mvg + #convert mvg:${TEST_OUT}/${OUTF}.mvg png:${TEST_OUT}/${OUTF}.png } -- cgit v1.2.3