1 /* LDS spouse sealing 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 "lds_event.h"
28 #include "individual.h"
30 #include "source_citation.h"
34 #include "gom_internal.h"
36 Gedcom_ctxt sub_lds_event_start(_ELT_PARAMS_)
38 Gom_ctxt ctxt = (Gom_ctxt)parent;
39 Gom_ctxt result = NULL;
44 struct lds_event *lds_evt
45 = (struct lds_event*)malloc(sizeof(struct lds_event));
49 memset (lds_evt, 0, sizeof(struct lds_event));
51 switch (ctxt->ctxt_type) {
53 family_add_lss(ctxt, lds_evt); break;
55 individual_add_lio(ctxt, lds_evt); break;
57 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
59 result = MAKE_GOM_CTXT(elt, lds_event, lds_evt);
63 return (Gedcom_ctxt)result;
66 STRING_CB(lds_event, sub_lds_event_stat_start, date_status)
67 DATE_CB(lds_event, sub_lds_event_date_start, date)
68 STRING_CB(lds_event, sub_lds_event_temp_start, temple_code)
69 STRING_CB(lds_event, sub_lds_event_plac_start, place_living_ordinance)
70 XREF_CB(lds_event, sub_lds_event_famc_start, family, make_family_record)
72 void lds_event_subscribe()
74 gedcom_subscribe_to_element(ELT_SUB_LSS_SLGS,
75 sub_lds_event_start, def_elt_end);
76 gedcom_subscribe_to_element(ELT_SUB_LIO_BAPL,
77 sub_lds_event_start, def_elt_end);
78 gedcom_subscribe_to_element(ELT_SUB_LIO_SLGC,
79 sub_lds_event_start, def_elt_end);
80 gedcom_subscribe_to_element(ELT_SUB_LSS_SLGS_STAT,
81 sub_lds_event_stat_start, def_elt_end);
82 gedcom_subscribe_to_element(ELT_SUB_LIO_BAPL_STAT,
83 sub_lds_event_stat_start, def_elt_end);
84 gedcom_subscribe_to_element(ELT_SUB_LSS_SLGS_DATE,
85 sub_lds_event_date_start, def_elt_end);
86 gedcom_subscribe_to_element(ELT_SUB_LIO_BAPL_DATE,
87 sub_lds_event_date_start, def_elt_end);
88 gedcom_subscribe_to_element(ELT_SUB_LSS_SLGS_TEMP,
89 sub_lds_event_temp_start, def_elt_end);
90 gedcom_subscribe_to_element(ELT_SUB_LIO_BAPL_TEMP,
91 sub_lds_event_temp_start, def_elt_end);
92 gedcom_subscribe_to_element(ELT_SUB_LSS_SLGS_PLAC,
93 sub_lds_event_plac_start, def_elt_end);
94 gedcom_subscribe_to_element(ELT_SUB_LIO_BAPL_PLAC,
95 sub_lds_event_plac_start, def_elt_end);
96 gedcom_subscribe_to_element(ELT_SUB_LIO_SLGC_FAMC,
97 sub_lds_event_famc_start, def_elt_end);
100 void lds_event_add_note(Gom_ctxt ctxt, struct note_sub* note)
102 struct lds_event *lds = SAFE_CTXT_CAST(lds_event, ctxt);
104 LINK_CHAIN_ELT(note_sub, lds->note, note);
107 void lds_event_add_citation(Gom_ctxt ctxt, struct source_citation* cit)
109 struct lds_event *lds = SAFE_CTXT_CAST(lds_event, ctxt);
111 LINK_CHAIN_ELT(source_citation, lds->citation, cit);
114 void lds_event_add_user_data(Gom_ctxt ctxt, struct user_data* data)
116 struct lds_event *obj = SAFE_CTXT_CAST(lds_event, ctxt);
118 LINK_CHAIN_ELT(user_data, obj->extra, data);
121 void lds_event_cleanup(struct lds_event* lds)
124 SAFE_FREE(lds->date_status);
125 SAFE_FREE(lds->date);
126 SAFE_FREE(lds->temple_code);
127 SAFE_FREE(lds->place_living_ordinance);
128 DESTROY_CHAIN_ELTS(source_citation, lds->citation, citation_cleanup);
129 DESTROY_CHAIN_ELTS(note_sub, lds->note, note_sub_cleanup);
130 DESTROY_CHAIN_ELTS(user_data, lds->extra, user_data_cleanup);