1 /* Source event sub-structure in the gedcom object model.
2 Copyright (C) 2002 The Genes Development Team
3 This file is part of the Gedcom parser library.
4 Contributed by Peter Verthez <Peter.Verthez@advalvas.be>, 2002.
6 The Gedcom parser library is free software; you can redistribute it
7 and/or modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The Gedcom parser library is distributed in the hope that it will be
12 useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the Gedcom parser library; if not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 #include "source_event.h"
31 #include "gom_internal.h"
33 Gedcom_ctxt sub_sour_even_start(_ELT_PARAMS_)
35 Gom_ctxt ctxt = (Gom_ctxt)parent;
36 Gom_ctxt result = NULL;
41 struct source_event *evt
42 = (struct source_event *)malloc(sizeof(struct source_event));
46 memset (evt, 0, sizeof(struct source_event));
47 evt->recorded_events = strdup(GEDCOM_STRING(parsed_value));
49 if (! evt->recorded_events) {
54 switch (ctxt->ctxt_type) {
56 ADDFUNC2(source,source_event)(ctxt, evt); break;
58 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
60 result = MAKE_GOM_CTXT(elt, source_event, evt);
65 return (Gedcom_ctxt)result;
68 DEFINE_DATE_CB(source_event, sub_sour_even_date_start, date_period)
69 DEFINE_STRING_CB(source_event, sub_sour_even_plac_start, jurisdiction)
71 DEFINE_ADDFUNC2(source_event, user_data, extra)
73 void source_event_subscribe()
75 gedcom_subscribe_to_element(ELT_SOUR_DATA_EVEN, sub_sour_even_start,
77 gedcom_subscribe_to_element(ELT_SOUR_DATA_EVEN_DATE,
78 sub_sour_even_date_start, def_elt_end);
79 gedcom_subscribe_to_element(ELT_SOUR_DATA_EVEN_PLAC,
80 sub_sour_even_plac_start, def_elt_end);
83 void CLEANFUNC(source_event)(struct source_event* evt)
86 SAFE_FREE(evt->recorded_events);
87 SAFE_FREE(evt->date_period);
88 SAFE_FREE(evt->jurisdiction);
89 DESTROY_CHAIN_ELTS(user_data, evt->extra);
93 int write_source_events(Gedcom_write_hndl hndl, int parent,
94 struct source_event *evt)
97 struct source_event* obj;
101 for (obj = evt; obj; obj = obj->next) {
102 result |= gedcom_write_element_str(hndl, ELT_SOUR_DATA_EVEN, 0,
103 parent, obj->recorded_events);
104 if (obj->date_period)
105 result |= gedcom_write_element_date(hndl, ELT_SOUR_DATA_EVEN_DATE, 0,
106 ELT_SOUR_DATA_EVEN, obj->date_period);
107 if (obj->jurisdiction)
108 result |= gedcom_write_element_str(hndl, ELT_SOUR_DATA_EVEN_PLAC, 0,
109 ELT_SOUR_DATA_EVEN, obj->jurisdiction);
111 result |= write_user_data(hndl, obj->extra);