Directory output added.
[gedcom-parse.git] / t / src / standalone.c
index 5efb08197bc7026034277db5bbb26ac02574c08e..44483e7768bbc73a57755ea4ff82c50dea67c0aa 100644 (file)
 /* $Name$ */
 
 #include "gedcom.h"
+#include "output.h"
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
-#include <stdarg.h>
 #include <locale.h>
 #include <errno.h>
 #include <iconv.h>
 #include "utf8-locale.h"
 
-#define OUTFILE "testgedcom.out"
 #define BOGUS_FILE_NAME "Makefile.am"
-FILE* outfile = NULL;
-int quiet = 0;
-
-void output(int to_stdout_too, char* format, ...)
-{
-  va_list ap;
-  va_start(ap, format);
-  if (outfile) {
-    vfprintf(outfile, format, ap);
-  }
-  if (to_stdout_too && !quiet) {
-    vprintf(format, ap);
-  }
-  va_end(ap);
-}
+int total_conv_fails = 0;
 
 void show_help ()
 {
@@ -201,6 +186,7 @@ void default_cb(Gedcom_elt elt, Gedcom_ctxt ctxt, int level, char *tag,
     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);
+  total_conv_fails += conv_fails;
 }
 
 void subscribe_callbacks()
@@ -272,7 +258,7 @@ int main(int argc, char* argv[])
        bogus = 1;
       }
       else if (!strncmp(argv[i], "-q", 3)) {
-       quiet = 1;
+       output_set_quiet(1);
       }
       else if (strncmp(argv[i], "-", 1)) {
        file_name = argv[i];
@@ -301,10 +287,7 @@ int main(int argc, char* argv[])
   gedcom_set_default_callback(default_cb);
   
   subscribe_callbacks();
-  outfile = fopen(OUTFILE, "a");
-  if (!outfile) {
-    printf("Could not open %s for appending\n", OUTFILE);
-  }
+  output_open();
   if (bogus) {
     output(0, "\n=== Parsing bogus file %s\n", BOGUS_FILE_NAME);
     gedcom_parse_file(BOGUS_FILE_NAME);
@@ -312,6 +295,7 @@ int main(int argc, char* argv[])
   while (run_times-- > 0) {
     output(0, "\n=== Parsing file %s\n", file_name);
     result |= gedcom_parse_file(file_name);
+    output(0, "\n=== Total conversion failures: %d\n", total_conv_fails);
   }
   if (result == 0) {
     output(1, "Parse succeeded\n");
@@ -319,6 +303,6 @@ int main(int argc, char* argv[])
   else {
     output(1, "Parse failed\n");
   }
-  fclose(outfile);
+  output_close();
   return result;
 }