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