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 = SUB_MAKEFUNC(user_ref_number)();
48 refn->value = strdup(GEDCOM_STRING(parsed_value));
54 switch (ctxt->ctxt_type) {
56 ADDFUNC2(family,user_ref_number)(ctxt, refn); break;
58 ADDFUNC2(individual,user_ref_number)(ctxt, refn); break;
60 ADDFUNC2(multimedia,user_ref_number)(ctxt, refn); break;
62 ADDFUNC2(note,user_ref_number)(ctxt, refn); break;
64 ADDFUNC2(repository,user_ref_number)(ctxt, refn); break;
66 ADDFUNC2(source,user_ref_number)(ctxt, refn); break;
68 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
71 result = MAKE_GOM_CTXT(elt, user_ref_number, refn);
76 return (Gedcom_ctxt)result;
79 DEFINE_SUB_MAKEFUNC(user_ref_number)
81 DEFINE_STRING_CB(user_ref_number, sub_user_ref_type_start, type)
83 DEFINE_ADDFUNC2(user_ref_number, user_data, extra)
85 Gedcom_ctxt sub_user_rin_start(_ELT_PARAMS_)
87 Gom_ctxt ctxt = (Gom_ctxt)parent;
88 Gom_ctxt result = NULL;
93 char *str = GEDCOM_STRING(parsed_value);
95 switch (ctxt->ctxt_type) {
97 ADDFUNC2_STR(family,record_id)(ctxt, str); break;
99 ADDFUNC2_STR(individual,record_id)(ctxt, str); break;
101 ADDFUNC2_STR(multimedia,record_id)(ctxt, str); break;
103 ADDFUNC2_STR(note,record_id)(ctxt, str); break;
105 ADDFUNC2_STR(repository,record_id)(ctxt, str); break;
107 ADDFUNC2_STR(source,record_id)(ctxt, str); break;
109 UNEXPECTED_CONTEXT(ctxt->ctxt_type);
111 result = make_gom_ctxt(elt, ctxt->obj_type, ctxt->ctxt_ptr);
113 return (Gedcom_ctxt)result;
116 void user_ref_subscribe()
118 gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN, sub_user_ref_start,
120 gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN_TYPE, sub_user_ref_type_start,
122 gedcom_subscribe_to_element(ELT_SUB_IDENT_RIN, sub_user_rin_start,
126 void CLEANFUNC(user_ref_number)(struct user_ref_number* refn)
129 SAFE_FREE(refn->value);
130 SAFE_FREE(refn->type);
131 DESTROY_CHAIN_ELTS(user_data, refn->extra);
135 int write_user_refs(Gedcom_write_hndl hndl, int parent,
136 struct user_ref_number *refn)
139 struct user_ref_number* obj;
143 for (obj = refn; obj; obj = obj->next) {
144 result |= gedcom_write_element_str(hndl, ELT_SUB_IDENT_REFN, 0,
147 result |= gedcom_write_element_str(hndl, ELT_SUB_IDENT_REFN_TYPE, 0,
148 ELT_SUB_IDENT_REFN, obj->type);
150 result |= write_user_data(hndl, obj->extra);