Implemented data1_add_insert_taggeddata utility which is more flexible
[yaz-moved-to-github.git] / odr / odr_seq.c
1 /*
2  * Copyright (c) 1995-1997, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_seq.c,v $
7  * Revision 1.22  1998-02-11 11:53:34  adam
8  * Changed code so that it compiles as C++.
9  *
10  * Revision 1.21  1997/11/24 11:33:56  adam
11  * Using function odr_nullval() instead of global ODR_NULLVAL when
12  * appropriate.
13  *
14  * Revision 1.20  1997/09/29 07:17:31  adam
15  * Added typecast to avoid warnings on MSVC.
16  *
17  * Revision 1.19  1997/06/23 10:31:11  adam
18  * Added RVDM's SEQUENCE OF patch again!
19  *
20  * Revision 1.18  1997/05/14 06:53:58  adam
21  * C++ support.
22  *
23  * Revision 1.17  1997/05/05 11:21:09  adam
24  * In handling of SEQUENCE OF: Counter set to zero when SEQUENCE
25  * OF isn't there at all.
26  *
27  * Revision 1.16  1995/09/29 17:12:26  quinn
28  * Smallish
29  *
30  * Revision 1.15  1995/09/27  15:03:00  quinn
31  * Modified function heads & prototypes.
32  *
33  * Revision 1.14  1995/08/15  11:16:39  quinn
34  * Fixed pretty-printers.
35  * CV:e ----------------------------------------------------------------------
36  * CV:e ----------------------------------------------------------------------
37  *
38  * Revision 1.13  1995/05/22  14:56:57  quinn
39  * Fixed problem in decoding empty sequence.
40  *
41  * Revision 1.12  1995/05/18  13:06:32  quinn
42  * Smallish.
43  *
44  * Revision 1.11  1995/05/17  08:41:54  quinn
45  * Small, hopefully insignificant change.
46  *
47  * Revision 1.10  1995/05/16  08:50:59  quinn
48  * License, documentation, and memory fixes
49  *
50  * Revision 1.9  1995/03/17  10:17:57  quinn
51  * Added memory management.
52  *
53  * Revision 1.8  1995/03/15  11:18:05  quinn
54  * Fixed serious bug in odr_cons
55  *
56  * Revision 1.7  1995/03/08  12:12:30  quinn
57  * Added better error checking.
58  *
59  * Revision 1.6  1995/02/10  15:55:29  quinn
60  * Bug fixes, mostly.
61  *
62  * Revision 1.5  1995/02/09  15:51:49  quinn
63  * Works better now.
64  *
65  * Revision 1.4  1995/02/07  17:53:00  quinn
66  * A damn mess, but now things work, I think.
67  *
68  * Revision 1.3  1995/02/07  14:13:46  quinn
69  * Bug fixes.
70  *
71  * Revision 1.2  1995/02/06  16:45:03  quinn
72  * Small mods.
73  *
74  * Revision 1.1  1995/02/02  16:21:54  quinn
75  * First kick.
76  *
77  */
78
79 #include <odr.h>
80 #include <assert.h>
81
82 int odr_sequence_begin(ODR o, void *p, int size)
83 {
84     char **pp = (char**) p;
85
86     if (o->error)
87         return 0;
88     if (o->t_class < 0)
89     {
90         o->t_class = ODR_UNIVERSAL;
91         o->t_tag = ODR_SEQUENCE;
92     }
93     if (o->direction == ODR_DECODE)
94         *pp = 0;
95     if (odr_constructed_begin(o, p, o->t_class, o->t_tag))
96     {
97         if (o->direction == ODR_DECODE && size)
98             *pp = (char *)odr_malloc(o, size);
99         return 1;
100     }
101     else
102         return 0;
103 }
104
105 int odr_sequence_end(ODR o)
106 {
107     return odr_constructed_end(o);    
108 }
109
110 int odr_sequence_more(ODR o)
111 {
112     return odr_constructed_more(o);
113 }
114
115 int odr_sequence_of(ODR o, Odr_fun type, void *p, int *num)
116 {
117     char ***pp = (char***) p;  /* for dereferencing */
118     char **tmp = 0;
119     int size = 0, i;
120
121     if (!odr_sequence_begin(o, p, 0)) {
122         if (o->direction == ODR_DECODE)
123             *num = 0;
124         return 0;
125     }
126
127     switch (o->direction)
128     {
129         case ODR_DECODE:
130             *num = 0;
131             *pp = (char **)odr_nullval();
132             while (odr_sequence_more(o))
133             {
134                 /* outgrown array? */
135                 if (*num * (int) sizeof(void*) >= size)
136                 {
137                     /* double the buffer size */
138                     tmp = (char **)odr_malloc(o, sizeof(void*) * (size += size ? size :
139                         128));
140                     if (*num)
141                     {
142                         memcpy(tmp, *pp, *num * sizeof(void*));
143                         /*
144                          * For now, we just throw the old *p away, since we use
145                          * nibble memory anyway (disgusting, isn't it?).
146                          */
147                     }
148                     *pp = tmp;
149                 }
150                 if (!(*type)(o, (*pp) + *num, 0))
151                     return 0;
152                 (*num)++;
153             }
154             break;
155         case ODR_ENCODE: case ODR_PRINT:
156 #ifdef ODR_DEBUG
157             fprintf(stderr, "[seqof: num=%d]", *num);
158 #endif
159             for (i = 0; i < *num; i++)
160             {
161 #ifdef ODR_DEBUG
162                 fprintf(stderr, "[seqof: elem #%d]", i);
163 #endif
164                 if (!(*type)(o, *pp + i, 0))
165                     return 0;
166             }
167             break;
168         default:
169             o->error = OOTHER;
170             return 0;
171     }
172     return odr_sequence_end(o);
173 }