1 /* User reference number 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
28 #include "individual.h"
29 #include "multimedia.h"
31 #include "repository.h"
36 #include "gom_internal.h"
38 Gedcom_ctxt sub_user_ref_start(_ELT_PARAMS_)
40 Gom_ctxt ctxt = (Gom_ctxt)parent;
41 Gom_ctxt result = NULL;
46 struct user_ref_number *refn
47 = (struct user_ref_number *)malloc(sizeof(struct user_ref_number));
52 memset (refn, 0, sizeof(struct user_ref_number));
53 refn->value = strdup(GEDCOM_STRING(parsed_value));
59 switch (ctxt->ctxt_type) {
61 family_add_user_ref(ctxt, refn); break;
63 individual_add_user_ref(ctxt, refn); break;
65 multimedia_add_user_ref(ctxt, refn); break;
67 note_add_user_ref(ctxt, refn); break;
69 repository_add_user_ref(ctxt, refn); break;
71 source_add_user_ref(ctxt, refn); break;
73 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
76 result = MAKE_GOM_CTXT(elt, user_ref_number, refn);
81 return (Gedcom_ctxt)result;
84 STRING_CB(user_ref_number, sub_user_ref_type_start, type)
86 Gedcom_ctxt sub_user_rin_start(_ELT_PARAMS_)
88 Gom_ctxt ctxt = (Gom_ctxt)parent;
89 Gom_ctxt result = NULL;
94 char *str = GEDCOM_STRING(parsed_value);
96 switch (ctxt->ctxt_type) {
98 family_set_record_id(ctxt, str); break;
100 individual_set_record_id(ctxt, str); break;
102 multimedia_set_record_id(ctxt, str); break;
104 note_set_record_id(ctxt, str); break;
106 repository_set_record_id(ctxt, str); break;
108 source_set_record_id(ctxt, str); break;
110 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
112 result = make_gom_ctxt(elt, ctxt->obj_type, ctxt->ctxt_ptr);
114 return (Gedcom_ctxt)result;
117 void user_ref_subscribe()
119 gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN, sub_user_ref_start,
121 gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN_TYPE, sub_user_ref_type_start,
123 gedcom_subscribe_to_element(ELT_SUB_IDENT_RIN, sub_user_rin_start,
127 void user_ref_add_user_data(Gom_ctxt ctxt, struct user_data* data)
129 struct user_ref_number *obj = SAFE_CTXT_CAST(user_ref_number, ctxt);
131 LINK_CHAIN_ELT(user_data, obj->extra, data);
134 void user_ref_cleanup(struct user_ref_number* refn)
137 SAFE_FREE(refn->value);
138 SAFE_FREE(refn->type);
139 DESTROY_CHAIN_ELTS(user_data, refn->extra, user_data_cleanup);
143 int write_user_refs(Gedcom_write_hndl hndl, int parent,
144 struct user_ref_number *refn)
147 struct user_ref_number* obj;
151 for (obj = refn; obj; obj = obj->next) {
152 result |= gedcom_write_element_str(hndl, ELT_SUB_IDENT_REFN, 0,
155 result |= gedcom_write_element_str(hndl, ELT_SUB_IDENT_REFN_TYPE, 0,
156 ELT_SUB_IDENT_REFN, obj->type);
158 result |= write_user_data(hndl, obj->extra);