Added functions to add and remove records.
[gedcom-parse.git] / gom / note_sub.c
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.
5
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.
10
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.
15
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
19    02111-1307 USA.  */
20
21 /* $Id$ */
22 /* $Name$ */
23
24 #include <stdlib.h>
25 #include <string.h>
26 #include "note.h"
27 #include "note_sub.h"
28 #include "place.h"
29 #include "event.h"
30 #include "source_citation.h"
31 #include "multimedia_link.h"
32 #include "lds_event.h"
33 #include "family.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"
41 #include "source.h"
42 #include "user_rec.h"
43 #include "gom.h"
44 #include "gedcom.h"
45 #include "gom_internal.h"
46
47 Gedcom_ctxt sub_note_start(_ELT_PARAMS_)
48 {
49   Gom_ctxt ctxt = (Gom_ctxt)parent;
50   Gom_ctxt result = NULL;
51
52   if (! ctxt)
53     NO_CONTEXT;
54   else {
55     struct note_sub *note = (struct note_sub *)malloc(sizeof(struct note_sub));
56     if (! note)
57       MEMORY_ERROR;
58     else {
59       memset (note, 0, sizeof(struct note_sub));
60       if (GEDCOM_IS_XREF_PTR(parsed_value))
61         note->reference = GEDCOM_XREF_PTR(parsed_value);
62
63       switch (ctxt->ctxt_type) {
64         case ELT_SUB_PLAC:
65           ADDFUNC2(place,note_sub)(ctxt, note); break;
66         case ELT_SUB_FAM_EVT:
67         case ELT_SUB_FAM_EVT_EVEN:
68         case ELT_SUB_INDIV_ATTR:
69         case ELT_SUB_INDIV_RESI:
70         case ELT_SUB_INDIV_BIRT:
71         case ELT_SUB_INDIV_GEN:
72         case ELT_SUB_INDIV_ADOP:
73         case ELT_SUB_INDIV_EVEN:
74           ADDFUNC2(event,note_sub)(ctxt, note); break;
75         case ELT_SUB_SOUR:
76           ADDFUNC2(source_citation,note_sub)(ctxt, note); break;
77         case ELT_SUB_MULTIM_OBJE:
78           ADDFUNC2(multimedia_link,note_sub)(ctxt, note); break;
79         case ELT_SUB_LSS_SLGS:
80         case ELT_SUB_LIO_BAPL:
81         case ELT_SUB_LIO_SLGC:
82           ADDFUNC2(lds_event,note_sub)(ctxt, note); break;
83         case REC_FAM:
84           ADDFUNC2(family,note_sub)(ctxt, note); break;
85         case ELT_SUB_CHAN:
86           ADDFUNC2(change_date,note_sub)(ctxt, note); break;
87         case ELT_SUB_PERS_NAME:
88           ADDFUNC2(personal_name,note_sub)(ctxt, note); break;
89         case ELT_SUB_FAMC: 
90         case ELT_SUB_FAMS:
91           ADDFUNC2(family_link,note_sub)(ctxt, note); break;
92         case ELT_SUB_ASSO:
93           ADDFUNC2(association,note_sub)(ctxt, note); break;
94         case REC_INDI:
95           ADDFUNC2(individual,note_sub)(ctxt, note); break;
96         case REC_OBJE:
97           ADDFUNC2(multimedia,note_sub)(ctxt, note); break;
98         case REC_REPO:
99           ADDFUNC2(repository,note_sub)(ctxt, note); break;
100         case ELT_SOUR_DATA:
101           source_add_note_to_data(ctxt, note); break;
102         case ELT_SUB_REPO:
103           source_add_note_to_repo(ctxt, note); break;
104         case REC_SOUR:
105           ADDFUNC2(source,note_sub)(ctxt, note); break;
106         default:
107           UNEXPECTED_CONTEXT(ctxt->ctxt_type);
108       }
109       result = MAKE_GOM_CTXT(elt, note_sub, note);
110     }
111   }
112
113   return (Gedcom_ctxt)result;
114 }
115
116 DEFINE_STRING_END_CB(note_sub, sub_note_end, text)
117
118 DEFINE_ADDFUNC2(note_sub, source_citation, citation)
119 DEFINE_ADDFUNC2(note_sub, user_data, extra)
120      
121 void note_sub_subscribe()
122 {
123   gedcom_subscribe_to_element(ELT_SUB_NOTE, sub_note_start, sub_note_end);
124 }
125
126 void CLEANFUNC(note_sub)(struct note_sub* note)
127 {
128   if (note) {
129     SAFE_FREE(note->text);
130     DESTROY_CHAIN_ELTS(source_citation, note->citation);
131     DESTROY_CHAIN_ELTS(user_data, note->extra);
132   }
133 }
134
135 int write_note_subs(Gedcom_write_hndl hndl, int parent, struct note_sub* note)
136 {
137   int result = 0;
138   struct note_sub* obj;
139
140   if (!note) return 1;
141
142   for (obj = note; obj; obj = obj->next) {
143     if (obj->reference) {
144       result |= gedcom_write_element_xref(hndl, ELT_SUB_NOTE, 0,
145                                           parent, obj->reference);
146     }
147     else {
148       result |= gedcom_write_element_str(hndl, ELT_SUB_NOTE, 0,
149                                          parent, obj->text);
150     }
151     if (obj->citation)
152       result |= write_citations(hndl, ELT_SUB_NOTE, obj->citation);
153     if (obj->extra)
154       result |= write_user_data(hndl, obj->extra);
155   }
156
157   return result;
158 }