Getting and setting strings.
[gedcom-parse.git] / gom / user_ref.c
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.
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 "user_ref.h"
27 #include "family.h"
28 #include "individual.h"
29 #include "multimedia.h"
30 #include "note.h"
31 #include "repository.h"
32 #include "source.h"
33 #include "user_rec.h"
34 #include "gom.h"
35 #include "gedcom.h"
36 #include "gom_internal.h"
37
38 Gedcom_ctxt sub_user_ref_start(_ELT_PARAMS_)
39 {
40   Gom_ctxt ctxt = (Gom_ctxt)parent;
41   Gom_ctxt result = NULL;
42
43   if (! ctxt)
44     NO_CONTEXT;
45   else {
46     struct user_ref_number *refn
47       = (struct user_ref_number *)malloc(sizeof(struct user_ref_number));
48
49     if (! refn)
50       MEMORY_ERROR;
51     else {
52       memset (refn, 0, sizeof(struct user_ref_number));
53       refn->value = strdup(GEDCOM_STRING(parsed_value));
54       if (! refn->value) {
55         MEMORY_ERROR;
56         free(refn);
57       }
58       else {
59         switch (ctxt->ctxt_type) {
60           case REC_FAM:
61             family_add_user_ref(ctxt, refn); break;
62           case REC_INDI:
63             individual_add_user_ref(ctxt, refn); break;
64           case REC_OBJE:
65             multimedia_add_user_ref(ctxt, refn); break;
66           case REC_NOTE:
67             note_add_user_ref(ctxt, refn); break;
68           case REC_REPO:
69             repository_add_user_ref(ctxt, refn); break;
70           case REC_SOUR:
71             source_add_user_ref(ctxt, refn); break;
72           default:
73             UNEXPECTED_CONTEXT(ctxt->ctxt_type);
74         }
75         
76         result = MAKE_GOM_CTXT(elt, user_ref_number, refn);
77       }
78     }
79   }
80
81   return (Gedcom_ctxt)result;
82 }
83
84 STRING_CB(user_ref_number, sub_user_ref_type_start, type)
85      
86 Gedcom_ctxt sub_user_rin_start(_ELT_PARAMS_)
87 {
88   Gom_ctxt ctxt = (Gom_ctxt)parent;
89   Gom_ctxt result = NULL;
90   
91   if (! ctxt)
92     NO_CONTEXT;
93   else {
94     char *str = GEDCOM_STRING(parsed_value);
95
96     switch (ctxt->ctxt_type) {
97       case REC_FAM:
98         family_set_record_id(ctxt, str); break;
99       case REC_INDI:
100         individual_set_record_id(ctxt, str); break;
101       case REC_OBJE:
102         multimedia_set_record_id(ctxt, str); break;
103       case REC_NOTE:
104         note_set_record_id(ctxt, str); break;
105       case REC_REPO:
106         repository_set_record_id(ctxt, str); break;
107       case REC_SOUR:
108         source_set_record_id(ctxt, str); break;
109       default:
110         UNEXPECTED_CONTEXT(ctxt->ctxt_type);
111     }
112     result = make_gom_ctxt(elt, ctxt->obj_type, ctxt->ctxt_ptr);
113   }
114   return (Gedcom_ctxt)result;
115 }
116
117 void user_ref_subscribe()
118 {
119   gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN, sub_user_ref_start,
120                               def_elt_end);
121   gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN_TYPE, sub_user_ref_type_start,
122                               def_elt_end);
123   gedcom_subscribe_to_element(ELT_SUB_IDENT_RIN, sub_user_rin_start,
124                               def_elt_end);
125 }
126
127 void user_ref_add_user_data(Gom_ctxt ctxt, struct user_data* data)
128 {
129   struct user_ref_number *obj = SAFE_CTXT_CAST(user_ref_number, ctxt);
130   if (obj)
131     LINK_CHAIN_ELT(user_data, obj->extra, data);
132 }
133
134 void user_ref_cleanup(struct user_ref_number* refn)
135 {
136   if (refn) {
137     SAFE_FREE(refn->value);
138     SAFE_FREE(refn->type);
139     DESTROY_CHAIN_ELTS(user_data, refn->extra, user_data_cleanup);
140   }
141 }