X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=abd54b67aba301894f9d7a8197d893d74d91bd8c;hb=ed74b3517ba0c289de9c2d5e25178bda717fe3a7;hp=0f9ba791d5fee64b2f087b3a9fa2591d05ca5d90;hpb=4853e945cac1a0c1b8f9f86336ea8fcc13460c5e;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index 0f9ba79..abd54b6 100644 --- a/standalone.c +++ b/standalone.c @@ -1,11 +1,22 @@ -/* 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) -*/ +/* 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$ */ @@ -13,7 +24,7 @@ #include #include #include -#include "external.h" +#include "gedcom.h" void show_help () { @@ -68,7 +79,7 @@ Gedcom_ctxt source_start(Gedcom_ctxt parent, int level, char *tag, { 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); + GEDCOM_STRING(parsed_value), (int) self, (int) parent); return self; } @@ -77,6 +88,35 @@ 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); } +Gedcom_ctxt source_date_start(Gedcom_ctxt parent, int level, char *tag, + char* raw_value, Gedcom_val parsed_value) +{ + struct date_value dv; + Gedcom_ctxt self = (Gedcom_ctxt)((int) parent + 1000); + dv = GEDCOM_DATE(parsed_value); + printf("Contents of the date_value:\n"); + printf(" raw value: %s\n", raw_value); + printf(" type: %d\n", dv.type); + printf(" date1:\n"); + printf(" calendar type: %d\n", dv.date1.cal); + printf(" day: %s\n", dv.date1.day_str); + printf(" month: %s\n", dv.date1.month_str); + printf(" year: %s\n", dv.date1.year_str); + printf(" date type: %d\n", dv.date1.type); + printf(" sdn1: %ld\n", dv.date1.sdn1); + printf(" sdn2: %ld\n", dv.date1.sdn2); + printf(" date2:\n"); + printf(" calendar type: %d\n", dv.date2.cal); + printf(" day: %s\n", dv.date2.day_str); + printf(" month: %s\n", dv.date2.month_str); + printf(" year: %s\n", dv.date2.year_str); + printf(" date type: %d\n", dv.date2.type); + printf(" sdn1: %ld\n", dv.date2.sdn1); + printf(" sdn2: %ld\n", dv.date2.sdn2); + printf(" phrase: %s\n", dv.phrase); + return self; +} + 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); @@ -88,6 +128,8 @@ void subscribe_callbacks() 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); + gedcom_subscribe_to_element(ELT_SOUR_DATA_EVEN_DATE, + source_date_start, NULL); } void gedcom_message_handler(Gedcom_msg_type type, char *msg)