1 /* Note 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
30 #include "source_citation.h"
31 #include "multimedia_link.h"
32 #include "lds_event.h"
34 #include "change_date.h"
35 #include "personal_name.h"
36 #include "family_link.h"
37 #include "association.h"
38 #include "individual.h"
39 #include "multimedia.h"
40 #include "repository.h"
45 #include "gom_internal.h"
47 Gedcom_ctxt sub_note_start(_ELT_PARAMS_)
49 Gom_ctxt ctxt = (Gom_ctxt)parent;
50 struct note_sub *note = NULL;
53 note = (struct note_sub *)malloc(sizeof(struct note_sub));
54 memset (note, 0, sizeof(struct note_sub));
55 if (GEDCOM_IS_STRING(parsed_value))
56 note->text = strdup(GEDCOM_STRING(parsed_value));
57 else if (GEDCOM_IS_XREF_PTR(parsed_value))
58 note->reference = GEDCOM_XREF_PTR(parsed_value);
60 switch (ctxt->ctxt_type) {
62 place_add_note(ctxt, note); break;
64 case ELT_SUB_FAM_EVT_EVEN:
65 case ELT_SUB_INDIV_ATTR:
66 case ELT_SUB_INDIV_RESI:
67 case ELT_SUB_INDIV_BIRT:
68 case ELT_SUB_INDIV_GEN:
69 case ELT_SUB_INDIV_ADOP:
70 case ELT_SUB_INDIV_EVEN:
71 event_add_note(ctxt, note); break;
73 citation_add_note(ctxt, note); break;
74 case ELT_SUB_MULTIM_OBJE:
75 multimedia_link_add_note(ctxt, note); break;
76 case ELT_SUB_LSS_SLGS:
77 case ELT_SUB_LIO_BAPL:
78 case ELT_SUB_LIO_SLGC:
79 lds_event_add_note(ctxt, note); break;
81 family_add_note(ctxt, note); break;
83 change_date_add_note(ctxt, note); break;
84 case ELT_SUB_PERS_NAME:
85 name_add_note(ctxt, note); break;
88 family_link_add_note(ctxt, note); break;
90 association_add_note(ctxt, note); break;
92 individual_add_note(ctxt, note); break;
94 multimedia_add_note(ctxt, note); break;
96 repository_add_note(ctxt, note); break;
98 source_add_note_to_data(ctxt, note); break;
100 source_add_note_to_repo(ctxt, note); break;
102 source_add_note(ctxt, note); break;
104 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
108 return (Gedcom_ctxt) MAKE_GOM_CTXT(elt, note_sub, note);
111 void note_sub_subscribe()
113 gedcom_subscribe_to_element(ELT_SUB_NOTE, sub_note_start, def_elt_end);
116 void note_sub_add_citation(Gom_ctxt ctxt, struct source_citation* cit)
118 struct note_sub *note = SAFE_CTXT_CAST(note_sub, ctxt);
119 LINK_CHAIN_ELT(source_citation, note->citation, cit)
122 void note_sub_add_to_note(NL_TYPE type, Gom_ctxt ctxt, char* str)
124 struct note_sub *note = SAFE_CTXT_CAST(note_sub, ctxt);
125 note->text = concat_strings (type, note->text, str);
128 void note_sub_add_user_data(Gom_ctxt ctxt, struct user_data* data)
130 struct note_sub *obj = SAFE_CTXT_CAST(note_sub, ctxt);
131 LINK_CHAIN_ELT(user_data, obj->extra, data)
134 void note_sub_cleanup(struct note_sub* note)
137 SAFE_FREE(note->text);
138 DESTROY_CHAIN_ELTS(source_citation, note->citation, citation_cleanup)
139 DESTROY_CHAIN_ELTS(user_data, note->extra, user_data_cleanup)