1 /* Submitter object 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 "submitter.h"
28 #include "multimedia_link.h"
29 #include "change_date.h"
33 #include "gom_internal.h"
35 struct submitter* gom_first_submitter = NULL;
37 DEFINE_MAKEFUNC(submitter, gom_first_submitter)
38 DEFINE_DESTROYFUNC(submitter, gom_first_submitter)
39 DEFINE_ADDFUNC(submitter, XREF_SUBM)
40 DEFINE_DELETEFUNC(submitter)
41 DEFINE_GETXREFFUNC(submitter, XREF_SUBM)
43 DEFINE_REC_CB(submitter, subm_start)
44 DEFINE_STRING_CB(submitter, subm_name_start, name)
45 DEFINE_STRING_CB(submitter, subm_rfn_start, record_file_nr)
46 DEFINE_STRING_CB(submitter, subm_rin_start, record_id)
48 DEFINE_ADDFUNC2(submitter, multimedia_link, mm_link)
49 DEFINE_ADDFUNC2(submitter, user_data, extra)
50 DEFINE_ADDFUNC2_NOLIST(submitter, address, address)
51 DEFINE_ADDFUNC2_NOLIST(submitter, change_date, change_date)
52 DEFINE_ADDFUNC2_STRN(submitter, phone, 3)
54 Gedcom_ctxt subm_lang_start(_ELT_PARAMS_)
56 Gom_ctxt ctxt = (Gom_ctxt)parent;
57 Gom_ctxt result = NULL;
62 struct submitter *subm = SAFE_CTXT_CAST(submitter, ctxt);
66 char *str = GEDCOM_STRING(parsed_value);
69 while (i<2 && subm->language[i]) i++;
70 if (! subm->language[i]) {
71 subm->language[i] = strdup(str);
72 if (! subm->language[i]) {
78 result = MAKE_GOM_CTXT(elt, submitter, subm);
82 return (Gedcom_ctxt)result;
85 void submitter_subscribe()
87 gedcom_subscribe_to_record(REC_SUBM, subm_start, def_rec_end);
88 gedcom_subscribe_to_element(ELT_SUBM_NAME, subm_name_start, def_elt_end);
89 gedcom_subscribe_to_element(ELT_SUBM_LANG, subm_lang_start, def_elt_end);
90 gedcom_subscribe_to_element(ELT_SUBM_RFN, subm_rfn_start, def_elt_end);
91 gedcom_subscribe_to_element(ELT_SUBM_RIN, subm_rin_start, def_elt_end);
94 void CLEANFUNC(submitter)(struct submitter* rec)
97 SAFE_FREE(rec->xrefstr);
99 CLEANFUNC(address)(rec->address);
100 SAFE_FREE(rec->phone[0]);
101 SAFE_FREE(rec->phone[1]);
102 SAFE_FREE(rec->phone[2]);
103 DESTROY_CHAIN_ELTS(multimedia_link, rec->mm_link);
104 SAFE_FREE(rec->language[0]);
105 SAFE_FREE(rec->language[1]);
106 SAFE_FREE(rec->language[2]);
107 SAFE_FREE(rec->record_file_nr);
108 SAFE_FREE(rec->record_id);
109 CLEANFUNC(change_date)(rec->change_date);
110 DESTROY_CHAIN_ELTS(user_data, rec->extra);
114 void submitters_cleanup()
116 DESTROY_CHAIN_ELTS(submitter, gom_first_submitter);
119 struct submitter* gom_get_first_submitter()
121 return gom_first_submitter;
124 int write_submitters(Gedcom_write_hndl hndl)
128 struct submitter* obj;
130 for (obj = gom_first_submitter; obj; obj = obj->next) {
131 result |= gedcom_write_record_str(hndl, REC_SUBM, obj->xrefstr, NULL);
133 result |= gedcom_write_element_str(hndl, ELT_SUBM_NAME, 0, REC_SUBM,
136 result |= write_address(hndl, REC_SUBM, obj->address);
137 for (i = 0; i < 3 && obj->phone[i]; i++)
138 result |= gedcom_write_element_str(hndl, ELT_SUB_PHON, 0, REC_SUBM,
141 result |= write_multimedia_links(hndl, REC_SUBM, obj->mm_link);
142 for (i = 0; i < 3 && obj->language[i]; i++)
143 result |= gedcom_write_element_str(hndl, ELT_SUBM_LANG, 0, REC_SUBM,
145 if (obj->record_file_nr)
146 result |= gedcom_write_element_str(hndl, ELT_SUBM_RFN, 0, REC_SUBM,
147 obj->record_file_nr);
149 result |= gedcom_write_element_str(hndl, ELT_SUBM_RIN, 0, REC_SUBM,
151 if (obj->change_date)
152 result |= write_change_date(hndl, REC_SUBM, obj->change_date);
154 result |= write_user_data(hndl, obj->extra);