1 /* Source citation 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_citation.h"
30 #include "multimedia_link.h"
31 #include "lds_event.h"
33 #include "personal_name.h"
34 #include "individual.h"
35 #include "association.h"
40 #include "gom_internal.h"
42 Gedcom_ctxt sub_citation_start(_ELT_PARAMS_)
44 Gom_ctxt ctxt = (Gom_ctxt)parent;
45 Gom_ctxt result = NULL;
50 struct source_citation *cit
51 = (struct source_citation *)malloc(sizeof(struct source_citation));
57 memset (cit, 0, sizeof(struct source_citation));
58 if (GEDCOM_IS_STRING(parsed_value)) {
59 cit->description = strdup(GEDCOM_STRING(parsed_value));
60 if (! cit->description) {
66 else if (GEDCOM_IS_XREF_PTR(parsed_value))
67 cit->reference = GEDCOM_XREF_PTR(parsed_value);
70 switch (ctxt->ctxt_type) {
72 place_add_citation(ctxt, cit); break;
74 case ELT_SUB_FAM_EVT_EVEN:
75 case ELT_SUB_INDIV_ATTR:
76 case ELT_SUB_INDIV_RESI:
77 case ELT_SUB_INDIV_BIRT:
78 case ELT_SUB_INDIV_GEN:
79 case ELT_SUB_INDIV_ADOP:
80 case ELT_SUB_INDIV_EVEN:
81 event_add_citation(ctxt, cit); break;
83 note_sub_add_citation(ctxt, cit); break;
84 case ELT_SUB_LSS_SLGS:
85 case ELT_SUB_LIO_BAPL:
86 case ELT_SUB_LIO_SLGC:
87 lds_event_add_citation(ctxt, cit); break;
89 family_add_citation(ctxt, cit); break;
90 case ELT_SUB_PERS_NAME:
91 name_add_citation(ctxt, cit); break;
93 individual_add_citation(ctxt, cit); break;
95 association_add_citation(ctxt, cit); break;
97 note_add_citation(ctxt, cit); break;
99 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
101 result = MAKE_GOM_CTXT(elt, source_citation, cit);
106 return (Gedcom_ctxt)result;
109 Gedcom_ctxt sub_cit_text_start(_ELT_PARAMS_)
111 Gom_ctxt ctxt = (Gom_ctxt)parent;
112 Gom_ctxt result = NULL;
117 struct source_citation *cit = SAFE_CTXT_CAST(source_citation, ctxt);
119 struct text *t = NULL;
120 MAKE_CHAIN_ELT(text, cit->text, t);
122 t->text = strdup(GEDCOM_STRING(parsed_value));
128 result = MAKE_GOM_CTXT(elt, text, t);
133 return (Gedcom_ctxt)result;
136 STRING_CB(source_citation, sub_cit_page_start, page)
137 STRING_CB(source_citation, sub_cit_even_start, event)
138 STRING_CB(source_citation, sub_cit_even_role_start, role)
139 NULL_CB(source_citation, sub_cit_data_start)
140 DATE_CB(source_citation, sub_cit_data_date_start, date)
141 STRING_CB(source_citation, sub_cit_quay_start, quality)
143 void citation_subscribe()
145 gedcom_subscribe_to_element(ELT_SUB_SOUR, sub_citation_start, def_elt_end);
146 gedcom_subscribe_to_element(ELT_SUB_SOUR_PAGE, sub_cit_page_start,
148 gedcom_subscribe_to_element(ELT_SUB_SOUR_EVEN, sub_cit_even_start,
150 gedcom_subscribe_to_element(ELT_SUB_SOUR_EVEN_ROLE, sub_cit_even_role_start,
152 gedcom_subscribe_to_element(ELT_SUB_SOUR_DATA, sub_cit_data_start,
154 gedcom_subscribe_to_element(ELT_SUB_SOUR_DATA_DATE, sub_cit_data_date_start,
156 gedcom_subscribe_to_element(ELT_SUB_SOUR_TEXT, sub_cit_text_start,
158 gedcom_subscribe_to_element(ELT_SUB_SOUR_QUAY, sub_cit_quay_start,
162 void citation_add_note(Gom_ctxt ctxt, struct note_sub* note)
164 struct source_citation *cit = SAFE_CTXT_CAST(source_citation, ctxt);
166 LINK_CHAIN_ELT(note_sub, cit->note, note);
169 void citation_add_mm_link(Gom_ctxt ctxt, struct multimedia_link* mm)
171 struct source_citation *cit = SAFE_CTXT_CAST(source_citation, ctxt);
173 LINK_CHAIN_ELT(multimedia_link, cit->mm_link, mm);
176 void citation_add_to_desc(NL_TYPE type, Gom_ctxt ctxt, const char* str)
178 struct source_citation *cit = SAFE_CTXT_CAST(source_citation, ctxt);
180 char *newvalue = concat_strings (type, cit->description, str);
182 cit->description = newvalue;
188 void citation_add_to_text(NL_TYPE type, Gom_ctxt ctxt, const char* str)
190 struct text *t = SAFE_CTXT_CAST(text, ctxt);
192 char *newvalue = concat_strings (type, t->text, str);
200 void citation_add_user_data(Gom_ctxt ctxt, struct user_data* data)
202 struct source_citation *obj = SAFE_CTXT_CAST(source_citation, ctxt);
204 LINK_CHAIN_ELT(user_data, obj->extra, data);
207 void text_cleanup(struct text* t)
214 void citation_cleanup(struct source_citation* cit)
217 SAFE_FREE(cit->description);
218 SAFE_FREE(cit->page);
219 SAFE_FREE(cit->event);
220 SAFE_FREE(cit->role);
221 SAFE_FREE(cit->date);
222 DESTROY_CHAIN_ELTS(text, cit->text, text_cleanup);
223 SAFE_FREE(cit->quality);
224 DESTROY_CHAIN_ELTS(multimedia_link, cit->mm_link, multimedia_link_cleanup);
225 DESTROY_CHAIN_ELTS(note_sub, cit->note, note_sub_cleanup);
226 DESTROY_CHAIN_ELTS(user_data, cit->extra, user_data_cleanup);