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.
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 "personal_name.h"
27 #include "source_citation.h"
29 #include "individual.h"
33 #include "gom_internal.h"
35 Gedcom_ctxt sub_name_start(_ELT_PARAMS_)
37 Gom_ctxt ctxt = (Gom_ctxt)parent;
38 Gom_ctxt result = NULL;
41 struct personal_name *name
42 = (struct personal_name *)malloc(sizeof(struct personal_name));
46 memset (name, 0, sizeof(struct personal_name));
47 name->name = strdup(GEDCOM_STRING(parsed_value));
54 switch (ctxt->ctxt_type) {
56 individual_add_name(ctxt, name); break;
58 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
60 result = MAKE_GOM_CTXT(elt, personal_name, name);
65 return (Gedcom_ctxt)result;
68 STRING_CB(personal_name, sub_name_npfx_start, prefix)
69 STRING_CB(personal_name, sub_name_givn_start, given)
70 STRING_CB(personal_name, sub_name_nick_start, nickname)
71 STRING_CB(personal_name, sub_name_spfx_start, surname_prefix)
72 STRING_CB(personal_name, sub_name_surn_start, surname)
73 STRING_CB(personal_name, sub_name_nsfx_start, suffix)
75 void name_add_citation(Gom_ctxt ctxt, struct source_citation* cit)
77 struct personal_name *name = SAFE_CTXT_CAST(personal_name, ctxt);
79 LINK_CHAIN_ELT(source_citation, name->citation, cit);
82 void name_add_note(Gom_ctxt ctxt, struct note_sub* note)
84 struct personal_name *name = SAFE_CTXT_CAST(personal_name, ctxt);
86 LINK_CHAIN_ELT(note_sub, name->note, note);
89 void name_add_user_data(Gom_ctxt ctxt, struct user_data* data)
91 struct personal_name *obj = SAFE_CTXT_CAST(personal_name, ctxt);
93 LINK_CHAIN_ELT(user_data, obj->extra, data);
98 gedcom_subscribe_to_element(ELT_SUB_PERS_NAME, sub_name_start, def_elt_end);
99 gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_NPFX, sub_name_npfx_start,
101 gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_GIVN, sub_name_givn_start,
103 gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_NICK, sub_name_nick_start,
105 gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_SPFX, sub_name_spfx_start,
107 gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_SURN, sub_name_surn_start,
109 gedcom_subscribe_to_element(ELT_SUB_PERS_NAME_NSFX, sub_name_nsfx_start,
113 void name_cleanup(struct personal_name* name)
116 SAFE_FREE(name->name);
117 SAFE_FREE(name->prefix);
118 SAFE_FREE(name->given);
119 SAFE_FREE(name->nickname);
120 SAFE_FREE(name->surname_prefix);
121 SAFE_FREE(name->surname);
122 SAFE_FREE(name->suffix);
123 DESTROY_CHAIN_ELTS(source_citation, name->citation, citation_cleanup);
124 DESTROY_CHAIN_ELTS(note_sub, name->note, note_sub_cleanup);
125 DESTROY_CHAIN_ELTS(user_data, name->extra, user_data_cleanup);
129 int write_names(Gedcom_write_hndl hndl, int parent,
130 struct personal_name *name)
133 struct personal_name* obj;
137 for (obj = name; obj; obj = obj->next) {
138 result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME, 0,
141 result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_NPFX, 0,
142 parent, obj->prefix);
144 result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_GIVN, 0,
147 result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_NICK, 0,
148 parent, obj->nickname);
149 if (obj->surname_prefix)
150 result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_SPFX, 0,
151 parent, obj->surname_prefix);
153 result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_SURN, 0,
154 parent, obj->surname);
156 result |= gedcom_write_element_str(hndl, ELT_SUB_PERS_NAME_NSFX, 0,
157 parent, obj->suffix);
159 result |= write_citations(hndl, ELT_SUB_PERS_NAME, obj->citation);
161 result |= write_note_subs(hndl, ELT_SUB_PERS_NAME, obj->note);
163 result |= write_user_data(hndl, obj->extra);