Sensible initial buffer size...
[gedcom-parse.git] / standalone.c
index a699e411657bd47c69d2e8587a587e7a3e796032..3463de2fafa3d89da4530a7333f21e0450a74f16 100644 (file)
@@ -1,26 +1,99 @@
+/*  This program is free software; you can redistribute it and/or modify  *
+ *  it under the terms of the GNU General Public License as published by  *
+ *  the Free Software Foundation; either version 2 of the License, or     *
+ *  (at your option) any later version.                                   *
+
+ (C) 2001 by The Genes Development Team
+ Original author: Peter Verthez (Peter.Verthez@advalvas.be)
+*/
+
 /* $Id$ */
 /* $Name$ */
 
 #include "gedcom.h"
+#include "multilex.h"
 
-int main(int argc, char* argv[])
+void show_help ()
 {
-  if ((argc > 1) && !strncmp(argv[1], "-d", 2))
-    gedcom_enable_debug();
-  gedcom_set_error_handling(IGNORE_RECORD);
-  gedcom_parse();
+  printf("gedcom-parse test program for libgedcom\n\n");
+  printf("Usage:  gedcom-parse [options] file\n");
+  printf("Options:\n");
+  printf("  -h    Show this help text\n");
+  printf("  -nc   Disable compatibility mode\n");
+  printf("  -fi   Fail immediately on errors\n");
+  printf("  -fd   Deferred fail on errors, but parse completely\n");
+  printf("  -fn   No fail on errors\n");
+  printf("  -dg   Debug setting: only libgedcom debug messages\n");
+  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");
 }
 
-int gedcom_error(char* s, ...)
+int main(int argc, char* argv[])
 {
-  int res;
-  va_list ap;
-
-  va_start(ap, s);
-  fprintf(stderr, "Line %d: ", line_no);
-  res = vfprintf(stderr, s, ap);
-  fprintf(stderr, "\n");
-  va_end(ap);
+  MECHANISM mech = IMMED_FAIL;
+  int compat_enabled = 1;
+  int debug_level = 0;
+  int run_times   = 1;
+  int result      = 0;
+  char* file_name = NULL;
+
+  if (argc > 1) {
+    int i;
+    for (i=1; i<argc; i++) {
+      if (!strncmp(argv[i], "-da", 4))
+       debug_level = 2;
+      else if (!strncmp(argv[i], "-dg", 4))
+       debug_level = 1;
+      else if (!strncmp(argv[i], "-fi", 4))
+       mech = IMMED_FAIL;
+      else if (!strncmp(argv[i], "-fd", 4))
+       mech = DEFER_FAIL;
+      else if (!strncmp(argv[i], "-fn", 4))
+       mech = IGNORE_ERRORS;
+      else if (!strncmp(argv[i], "-nc", 4))
+       compat_enabled = 0;
+      else if (!strncmp(argv[i], "-h", 3)) {
+       show_help();
+       exit(1);
+      }
+      else if (!strncmp(argv[i], "-2", 3)) {
+       run_times = 2;
+      }
+      else if (!strncmp(argv[i], "-3", 3)) {
+       run_times = 3;
+      }
+      else if (strncmp(argv[i], "-", 1)) {
+       file_name = argv[i];
+       break;
+      }
+      else {
+       printf ("Unrecognized option: %s\n", argv[i]);
+       show_help();
+       exit(1);
+      }
+    }
+  }
   
-  return res;
+  if (!file_name) {
+    printf("No file name given\n");
+    show_help();
+    exit(1);
+  }
+
+  gedcom_set_debug_level(debug_level);
+  gedcom_set_compat_handling(compat_enabled);
+  gedcom_set_error_handling(mech);
+
+  while (run_times-- > 0) {
+    result |= gedcom_parse_file(file_name);
+  }
+  if (result == 0) {
+    printf("Parse succeeded\n");
+    return 0;
+  }
+  else {
+    printf("Parse failed\n");
+    return 1;
+  }  
 }