X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=6095adc409e9194e2e6c183de2de17f5017e37dc;hb=b5cb10a0168b1be147a8e661f7edfb0ee1ecbb99;hp=c54d46debb53d3a4c9e8624d6120c9a9e9c104f3;hpb=5d770d0f89235b28f9c75ea43df29ce48a94ffa5;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index c54d46d..6095adc 100644 --- a/standalone.c +++ b/standalone.c @@ -1,81 +1,146 @@ +/* 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 +#include +#include +#include "external.h" + +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(char *xreftag __attribute__ ((unused))) +{ + 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(char *xreftag) +{ + printf("Family start, xreftag is %s\n", xreftag); + strcpy(family_xreftags[family_nr], xreftag); + return (Gedcom_ctxt)(family_nr++); +} + +void family_end(Gedcom_ctxt self) +{ + printf("Family end, xreftag is %s\n", family_xreftags[(int)self]); +} + +void subscribe_callbacks() +{ + subscribe_to_record(REC_HEAD, header_start, header_end); + subscribe_to_record(REC_FAM, family_start, family_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[]) { - MECHANISM mech = IMMED_FAIL; + 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 0) { + result |= gedcom_parse_file(file_name); + } + if (result == 0) { printf("Parse succeeded\n"); return 0; } else { printf("Parse failed\n"); return 1; - } -} - -int gedcom_debug_print(char* s, ...) -{ - int res; -#if YYDEBUG != 0 - if (gedcom_debug) { - va_list ap; - va_start(ap, s); - res = vfprintf(stderr, s, ap); - va_end(ap); - } -#endif - return(res); -} - -int gedcom_warning(char* s, ...) -{ - int res; - va_list ap; - - va_start(ap, s); - fprintf(stderr, "Warning on line %d: ", line_no); - res = vfprintf(stderr, s, ap); - fprintf(stderr, "\n"); - va_end(ap); - - return res; -} - -int gedcom_error(char* s, ...) -{ - int res; - va_list ap; - - va_start(ap, s); - fprintf(stderr, "Error on line %d: ", line_no); - res = vfprintf(stderr, s, ap); - fprintf(stderr, "\n"); - va_end(ap); - - return res; + } }