Definition of SUB_MAKEFUNC, SUB_ADDFUNC and SUB_DELETEFUNC.
[gedcom-parse.git] / gom / personal_name.c
1 /* Personal name 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 "personal_name.h"
27 #include "source_citation.h"
28 #include "note_sub.h"
29 #include "individual.h"
30 #include "user_rec.h"
31 #include "gom.h"
32 #include "gedcom.h"
33 #include "gom_internal.h"
34
35 Gedcom_ctxt sub_name_start(_ELT_PARAMS_)
36 {
37   Gom_ctxt ctxt = (Gom_ctxt)parent;
38   Gom_ctxt result = NULL;
39
40   if (ctxt) {
41     struct personal_name *name
42       = (struct personal_name *)malloc(sizeof(struct personal_name));
43     if (! name)
44       MEMORY_ERROR;
45     else {
46       memset (name, 0, sizeof(struct personal_name));
47       name->name = strdup(GEDCOM_STRING(parsed_value));
48
49       if (! name->name) {
50         MEMORY_ERROR;
51         free(name);
52       }
53       else {
54         switch (ctxt->ctxt_type) {
55           case REC_INDI:
56             ADDFUNC2(individual,personal_name)(ctxt, name); break;
57           default:
58             UNEXPECTED_CONTEXT(ctxt->ctxt_type);
59         }
60         result = MAKE_GOM_CTXT(elt, personal_name, name);
61       }
62     }
63   }
64
65   return (Gedcom_ctxt)result;
66 }
67
68 DEFINE_STRING_CB(personal_name, sub_name_npfx_start, prefix)
69 DEFINE_STRING_CB(personal_name, sub_name_givn_start, given)
70 DEFINE_STRING_CB(personal_name, sub_name_nick_start, nickname)
71 DEFINE_STRING_CB(personal_name, sub_name_spfx_start, surname_prefix)
72 DEFINE_STRING_CB(personal_name, sub_name_surn_start, surname)
73 DEFINE_STRING_CB(personal_name, sub_name_nsfx_start, suffix)
74
75 DEFINE_ADDFUNC2(personal_name, source_citation, citation)
76 DEFINE_ADDFUNC2(personal_name, note_sub, note)
77 DEFINE_ADDFUNC2(personal_name, user_data, extra)
78
79 void name_subscribe()
80 {
81   gedcom_subscribe_to_element(ELT_SUB_PERS_NAME, sub_name_start, def_elt_end);
82   gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_NPFX, sub_name_npfx_start,
83                               def_elt_end);
84   gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_GIVN, sub_name_givn_start,
85                               def_elt_end);
86   gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_NICK, sub_name_nick_start,
87                               def_elt_end);
88   gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_SPFX, sub_name_spfx_start,
89                               def_elt_end);
90   gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_SURN, sub_name_surn_start,
91                               def_elt_end);
92   gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_NSFX, sub_name_nsfx_start,
93                               def_elt_end);
94 }
95
96 void CLEANFUNC(personal_name)(struct personal_name* name)
97 {
98   if (name) {
99     SAFE_FREE(name->name);
100     SAFE_FREE(name->prefix);
101     SAFE_FREE(name->given);
102     SAFE_FREE(name->nickname);
103     SAFE_FREE(name->surname_prefix);
104     SAFE_FREE(name->surname);
105     SAFE_FREE(name->suffix);
106     DESTROY_CHAIN_ELTS(source_citation, name->citation);
107     DESTROY_CHAIN_ELTS(note_sub, name->note);
108     DESTROY_CHAIN_ELTS(user_data, name->extra);
109   }
110 }
111
112 int write_names(Gedcom_write_hndl hndl, int parent,
113                 struct personal_name *name)
114 {
115   int result = 0;
116   struct personal_name* obj;
117
118   if (!name) return 1;
119
120   for (obj = name; obj; obj = obj->next) {
121     result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME, 0,
122                                        parent, obj->name);
123     if (obj->prefix)
124       result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_NPFX, 0,
125                                          parent, obj->prefix);
126     if (obj->given)
127       result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_GIVN, 0,
128                                          parent, obj->given);
129     if (obj->nickname)
130       result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_NICK, 0,
131                                          parent, obj->nickname);
132     if (obj->surname_prefix)
133       result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_SPFX, 0,
134                                          parent, obj->surname_prefix);
135     if (obj->surname)
136       result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_SURN, 0,
137                                          parent, obj->surname);
138     if (obj->suffix)
139       result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_NSFX, 0,
140                                          parent, obj->suffix);
141     if (obj->citation)
142       result |= write_citations(hndl, ELT_SUB_PERS_NAME, obj->citation);
143     if (obj->note)
144       result |= write_note_subs(hndl, ELT_SUB_PERS_NAME, obj->note);
145     if (obj->extra)
146       result |= write_user_data(hndl, obj->extra);
147   }
148
149   return result;
150 }