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