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