Definition of SUB_MAKEFUNC.
[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 = SUB_MAKEFUNC(user_ref_number)();
47     if (refn) {
48       refn->value = strdup(GEDCOM_STRING(parsed_value));
49       if (! refn->value) {
50         MEMORY_ERROR;
51         free(refn);
52       }
53       else {
54         switch (ctxt->ctxt_type) {
55           case REC_FAM:
56             ADDFUNC2(family,user_ref_number)(ctxt, refn); break;
57           case REC_INDI:
58             ADDFUNC2(individual,user_ref_number)(ctxt, refn); break;
59           case REC_OBJE:
60             ADDFUNC2(multimedia,user_ref_number)(ctxt, refn); break;
61           case REC_NOTE:
62             ADDFUNC2(note,user_ref_number)(ctxt, refn); break;
63           case REC_REPO:
64             ADDFUNC2(repository,user_ref_number)(ctxt, refn); break;
65           case REC_SOUR:
66             ADDFUNC2(source,user_ref_number)(ctxt, refn); break;
67           default:
68             UNEXPECTED_CONTEXT(ctxt->ctxt_type);
69         }
70         
71         result = MAKE_GOM_CTXT(elt, user_ref_number, refn);
72       }
73     }
74   }
75
76   return (Gedcom_ctxt)result;
77 }
78
79 DEFINE_SUB_MAKEFUNC(user_ref_number)
80      
81 DEFINE_STRING_CB(user_ref_number, sub_user_ref_type_start, type)
82
83 DEFINE_ADDFUNC2(user_ref_number, user_data, extra)
84      
85 Gedcom_ctxt sub_user_rin_start(_ELT_PARAMS_)
86 {
87   Gom_ctxt ctxt = (Gom_ctxt)parent;
88   Gom_ctxt result = NULL;
89   
90   if (! ctxt)
91     NO_CONTEXT;
92   else {
93     char *str = GEDCOM_STRING(parsed_value);
94
95     switch (ctxt->ctxt_type) {
96       case REC_FAM:
97         ADDFUNC2_STR(family,record_id)(ctxt, str); break;
98       case REC_INDI:
99         ADDFUNC2_STR(individual,record_id)(ctxt, str); break;
100       case REC_OBJE:
101         ADDFUNC2_STR(multimedia,record_id)(ctxt, str); break;
102       case REC_NOTE:
103         ADDFUNC2_STR(note,record_id)(ctxt, str); break;
104       case REC_REPO:
105         ADDFUNC2_STR(repository,record_id)(ctxt, str); break;
106       case REC_SOUR:
107         ADDFUNC2_STR(source,record_id)(ctxt, str); break;
108       default:
109         UNEXPECTED_CONTEXT(ctxt->ctxt_type);
110     }
111     result = make_gom_ctxt(elt, ctxt->obj_type, ctxt->ctxt_ptr);
112   }
113   return (Gedcom_ctxt)result;
114 }
115
116 void user_ref_subscribe()
117 {
118   gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN, sub_user_ref_start,
119                               def_elt_end);
120   gedcom_subscribe_to_element(ELT_SUB_IDENT_REFN_TYPE, sub_user_ref_type_start,
121                               def_elt_end);
122   gedcom_subscribe_to_element(ELT_SUB_IDENT_RIN, sub_user_rin_start,
123                               def_elt_end);
124 }
125
126 void CLEANFUNC(user_ref_number)(struct user_ref_number* refn)
127 {
128   if (refn) {
129     SAFE_FREE(refn->value);
130     SAFE_FREE(refn->type);
131     DESTROY_CHAIN_ELTS(user_data, refn->extra);
132   }
133 }
134
135 int write_user_refs(Gedcom_write_hndl hndl, int parent,
136                     struct user_ref_number *refn)
137 {
138   int result = 0;
139   struct user_ref_number* obj;
140
141   if (!refn) return 1;
142
143   for (obj = refn; obj; obj = obj->next) {
144     result |= gedcom_write_element_str(hndl, ELT_SUB_IDENT_REFN, 0,
145                                        parent, obj->value);
146     if (obj->type)
147       result |= gedcom_write_element_str(hndl, ELT_SUB_IDENT_REFN_TYPE, 0,
148                                          ELT_SUB_IDENT_REFN, obj->type);
149     if (obj->extra)
150       result |= write_user_data(hndl, obj->extra);    
151   }
152
153   return result;
154 }