X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=6095adc409e9194e2e6c183de2de17f5017e37dc;hb=471aa410dba0a5604cc40f4d23fc34efb098c778;hp=9e4d4f06f7faaa232ce8418767e80589b4c4373a;hpb=d2233f145e24a310889e4cc650365077786da3d9;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index 9e4d4f0..6095adc 100644 --- a/standalone.c +++ b/standalone.c @@ -10,8 +10,10 @@ /* $Id$ */ /* $Name$ */ -#include "gedcom.h" -#include "multilex.h" +#include +#include +#include +#include "external.h" void show_help () { @@ -25,13 +27,60 @@ 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"); +} + +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) { @@ -53,6 +102,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; @@ -71,11 +126,16 @@ 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); - if (gedcom_parse_file(file_name) == 0) { + subscribe_callbacks(); + while (run_times-- > 0) { + result |= gedcom_parse_file(file_name); + } + if (result == 0) { printf("Parse succeeded\n"); return 0; }