X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=3db5eda7af45b2fcb98d3437dba9ac3d7f66354a;hb=b109f95d373fa6baae6c1a43e5b3805fb7fd22fb;hp=9c8dc15d2130188daf58d18bc945fa2b93036af0;hpb=5c40e570e3bd0f3d7139e4d1e429527400c50133;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index 9c8dc15..3db5eda 100644 --- a/standalone.c +++ b/standalone.c @@ -27,11 +27,13 @@ #include #include #include +#include #include "gedcom.h" #include "utf8-locale.h" #define OUTFILE "testgedcom.out" FILE* outfile = NULL; +int quiet = 0; void output(int to_stdout_too, char* format, ...) { @@ -40,7 +42,7 @@ void output(int to_stdout_too, char* format, ...) if (outfile) { vfprintf(outfile, format, ap); } - if (to_stdout_too) { + if (to_stdout_too && !quiet) { vprintf(format, ap); } va_end(ap); @@ -60,6 +62,7 @@ void show_help () printf(" -da Debug setting: libgedcom + yacc debug messages\n"); printf(" -2 Run the test parse 2 times instead of once\n"); printf(" -3 Run the test parse 3 times instead of once\n"); + printf(" -q No output to standard output\n"); } Gedcom_ctxt header_start(int level, Gedcom_val xref, char *tag, @@ -172,10 +175,11 @@ void default_cb(Gedcom_ctxt ctxt, int level, char *tag, char *raw_value, int tag_value) { char *converted = NULL; + int conv_fails = 0; if (raw_value) - converted = convert_utf8_to_locale(raw_value); - output(0, "== %d %s (%d) %s (ctxt is %d)\n", - level, tag, tag_value, converted, (int)ctxt); + converted = convert_utf8_to_locale(raw_value, &conv_fails); + output(0, "== %d %s (%d) %s (ctxt is %d, conversion failures: %d)\n", + level, tag, tag_value, converted, (int)ctxt, conv_fails); } void subscribe_callbacks() @@ -240,6 +244,9 @@ int main(int argc, char* argv[]) else if (!strncmp(argv[i], "-3", 3)) { run_times = 3; } + else if (!strncmp(argv[i], "-q", 3)) { + quiet = 1; + } else if (strncmp(argv[i], "-", 1)) { file_name = argv[i]; break; @@ -259,6 +266,7 @@ int main(int argc, char* argv[]) } setlocale(LC_ALL, ""); + gedcom_init(); gedcom_set_debug_level(debug_level, NULL); gedcom_set_compat_handling(compat_enabled); gedcom_set_error_handling(mech); @@ -276,11 +284,11 @@ int main(int argc, char* argv[]) } fclose(outfile); if (result == 0) { - printf("Parse succeeded\n"); + output(1, "Parse succeeded\n"); return 0; } else { - printf("Parse failed\n"); + output(1, "Parse failed\n"); return 1; } }