X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=86fcdaebdd87fd70c5293f806d8f3481838c3c37;hb=abb6d14831d67f8997ee75a2192b575bc2893902;hp=41c77524b3a99f9af453bd48f1c9250d401d02e9;hpb=95deed7400e87af12a987af2abf5187ab1ddf9aa;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index 41c7752..86fcdae 100644 --- a/standalone.c +++ b/standalone.c @@ -1,6 +1,29 @@ +/* Test program for the Gedcom library. + Copyright (C) 2001 The Genes Development Team + This file is part of the Gedcom parser library. + Contributed by Peter Verthez , 2001. + + The Gedcom parser library is free software; you can redistribute it + and/or modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The Gedcom parser library is distributed in the hope that it will be + useful, but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the Gedcom parser library; if not, write to the + Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + /* $Id$ */ /* $Name$ */ +#include +#include +#include #include "gedcom.h" void show_help () @@ -15,72 +38,87 @@ void show_help () 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 determine_encoding(FILE* f) +Gedcom_ctxt header_start(int level, char *xref, char *tag) { - char first[2]; + printf("Header start\n"); + return (Gedcom_ctxt)0; +} - fread(first, 1, 2, f); - if ((first[0] == '0') && (first[1] == ' ')) { - gedcom_warning("One-byte encoding"); - fseek(f, 0, 0); - return ONE_BYTE; - } - else if ((first[0] == '\0') && (first[1] == '0')) - { - gedcom_warning("Two-byte encoding, high-low"); - fseek(f, 0, 0); - return TWO_BYTE_HILO; - } - else if ((first[0] == '\xFE') && (first[1] == '\xFF')) - { - gedcom_warning("Two-byte encoding, high-low, with BOM"); - return TWO_BYTE_HILO; - } - else if ((first[0] == '0') && (first[1] == '\0')) - { - gedcom_warning("Two-byte encoding, low-high"); - fseek(f, 0, 0); - return TWO_BYTE_LOHI; - } - else if ((first[0] == '\xFF') && (first[1] == '\xFE')) - { - gedcom_warning("Two-byte encoding, low-high, with BOM"); - return TWO_BYTE_LOHI; - } - else { - gedcom_warning("Unknown encoding, falling back to one-byte"); - fseek(f, 0, 0); - return ONE_BYTE; - } +void header_end(Gedcom_ctxt self) +{ + printf("Header end, context is %d\n", (int)self); } -int gedcom_xxx_parse(char* file_name) +char family_xreftags[100][255]; +int family_nr = 0; + +Gedcom_ctxt family_start(int level, char *xref, char *tag) { - ENCODING enc; - FILE* file = fopen (file_name, "r"); - if (!file) { - printf("Could not open file '%s'\n", file_name); - exit(1); - } - enc = determine_encoding(file); + printf("Family start, xref is %s\n", xref); + strcpy(family_xreftags[family_nr], xref); + return (Gedcom_ctxt)(family_nr++); +} - if (enc == ONE_BYTE) { - gedcom_in = file; - return gedcom_parse(); - } - else { - printf("No parser yet for encoding\n"); - exit(1); - } +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) +{ + printf("Submitter, xref is %s\n", xref); + return (Gedcom_ctxt)10000; +} + +Gedcom_ctxt source_start(Gedcom_ctxt parent, int level, char *tag, + char* raw_value, Gedcom_val parsed_value) +{ + 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[]) { - 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) { @@ -102,6 +140,12 @@ int main(int argc, char* argv[]) 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; @@ -120,11 +164,17 @@ int main(int argc, char* argv[]) exit(1); } - gedcom_set_debug_level(debug_level); + 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); - if (gedcom_xxx_parse(file_name) == 0) { + subscribe_callbacks(); + while (run_times-- > 0) { + result |= gedcom_parse_file(file_name); + } + if (result == 0) { printf("Parse succeeded\n"); return 0; } @@ -133,31 +183,3 @@ int main(int argc, char* argv[]) return 1; } } - -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; -}