Use LGPL license.
[gedcom-parse.git] / standalone.c
index a699e411657bd47c69d2e8587a587e7a3e796032..e29e67ea7bd91291f3a13a30c197c1213952937e 100644 (file)
+/*  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 <stdio.h>
+#include <string.h>
+#include <stdlib.h>
 #include "gedcom.h"
 
-int main(int argc, char* argv[])
+void show_help ()
+{
+  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");
+}
+
+Gedcom_ctxt header_start(int level, char *xref, char *tag)
+{
+  printf("Header start\n");
+  return (Gedcom_ctxt)0;
+}
+
+void header_end(Gedcom_ctxt self)
+{
+  printf("Header end, context is %d\n", (int)self);
+}
+
+char family_xreftags[100][255];
+int  family_nr = 0;
+
+Gedcom_ctxt family_start(int level, char *xref, char *tag)
+{
+  printf("Family start, xref is %s\n", xref);
+  strcpy(family_xreftags[family_nr], xref);
+  return (Gedcom_ctxt)(family_nr++);
+}
+
+void family_end(Gedcom_ctxt self)
+{
+  printf("Family end, xref is %s\n", family_xreftags[(int)self]);
+}
+
+Gedcom_ctxt submit_start(int level, char *xref, char *tag)
 {
-  if ((argc > 1) && !strncmp(argv[1], "-d", 2))
-    gedcom_enable_debug();
-  gedcom_set_error_handling(IGNORE_RECORD);
-  gedcom_parse();
+  printf("Submitter, xref is %s\n", xref);
+  return (Gedcom_ctxt)10000;
 }
 
-int gedcom_error(char* s, ...)
+Gedcom_ctxt source_start(Gedcom_ctxt parent, int level, char *tag,
+                        char* raw_value, Gedcom_val parsed_value)
 {
-  int res;
-  va_list ap;
+  Gedcom_ctxt self = (Gedcom_ctxt)((int) parent + 1000);
+  printf("Source is %s (ctxt is %d, parent is %d)\n",
+        (char*)parsed_value, (int) self, (int) parent);
+  return self;
+}
+
+void source_end(Gedcom_ctxt parent, Gedcom_ctxt self, Gedcom_val parsed_value)
+{
+  printf("Source context %d in parent %d\n", (int)self, (int)parent);
+}
+
+void default_cb(Gedcom_ctxt ctxt, int level, char *tag, char *raw_value)
+{
+  printf("== %d %s %s (ctxt is %d)\n", level, tag, raw_value, (int)ctxt);
+}
+
+void subscribe_callbacks()
+{
+  gedcom_subscribe_to_record(REC_HEAD, header_start, header_end);
+  gedcom_subscribe_to_record(REC_FAM,  family_start, family_end);
+  gedcom_subscribe_to_record(REC_SUBM, submit_start, NULL);
+  gedcom_subscribe_to_element(ELT_HEAD_SOUR, source_start, source_end);
+}
+
+void gedcom_message_handler(Gedcom_msg_type type, char *msg)
+{
+  if (type == MESSAGE)
+    fprintf(stderr, "MESSAGE: ");
+  else if (type == WARNING)
+    fprintf(stderr, "WARNING: ");
+  else if (type == ERROR)
+    fprintf(stderr, "ERROR: ");
+  fprintf(stderr, msg);
+}
+
+int main(int argc, char* argv[])
+{
+  Gedcom_err_mech 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);
+      }
+    }
+  }
+  
+  if (!file_name) {
+    printf("No file name given\n");
+    show_help();
+    exit(1);
+  }
 
-  va_start(ap, s);
-  fprintf(stderr, "Line %d: ", line_no);
-  res = vfprintf(stderr, s, ap);
-  fprintf(stderr, "\n");
-  va_end(ap);
+  gedcom_set_debug_level(debug_level, NULL);
+  gedcom_set_compat_handling(compat_enabled);
+  gedcom_set_error_handling(mech);
+  gedcom_set_message_handler(gedcom_message_handler);
+  gedcom_set_default_callback(default_cb);
   
-  return res;
+  subscribe_callbacks();
+  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;
+  }  
 }