*** empty log message ***
[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.13  1995-05-22 14:56:57  quinn
8  * Fixed problem in decoding empty sequence.
9  *
10  * Revision 1.12  1995/05/18  13:06:32  quinn
11  * Smallish.
12  *
13  * Revision 1.11  1995/05/17  08:41:54  quinn
14  * Small, hopefully insignificant change.
15  *
16  * Revision 1.10  1995/05/16  08:50:59  quinn
17  * License, documentation, and memory fixes
18  *
19  * Revision 1.9  1995/03/17  10:17:57  quinn
20  * Added memory management.
21  *
22  * Revision 1.8  1995/03/15  11:18:05  quinn
23  * Fixed serious bug in odr_cons
24  *
25  * Revision 1.7  1995/03/08  12:12:30  quinn
26  * Added better error checking.
27  *
28  * Revision 1.6  1995/02/10  15:55:29  quinn
29  * Bug fixes, mostly.
30  *
31  * Revision 1.5  1995/02/09  15:51:49  quinn
32  * Works better now.
33  *
34  * Revision 1.4  1995/02/07  17:53:00  quinn
35  * A damn mess, but now things work, I think.
36  *
37  * Revision 1.3  1995/02/07  14:13:46  quinn
38  * Bug fixes.
39  *
40  * Revision 1.2  1995/02/06  16:45:03  quinn
41  * Small mods.
42  *
43  * Revision 1.1  1995/02/02  16:21:54  quinn
44  * First kick.
45  *
46  */
47
48 #include <odr.h>
49 #include <assert.h>
50
51 int odr_sequence_begin(ODR o, void *p, int size)
52 {
53     char **pp = (char**) p;
54
55     if (o->error)
56         return 0;
57     if (o->t_class < 0)
58     {
59         o->t_class = ODR_UNIVERSAL;
60         o->t_tag = ODR_SEQUENCE;
61     }
62     if (o->direction == ODR_DECODE)
63         *pp = 0;
64     if (odr_constructed_begin(o, p, o->t_class, o->t_tag))
65     {
66         if (o->direction == ODR_DECODE && size)
67             *pp = odr_malloc(o, size);
68         if (o->direction == ODR_PRINT)
69         {
70             fprintf(o->print, "%s{\n", odr_indent(o));
71             o->indent++;
72         }
73         return 1;
74     }
75     else
76         return 0;
77 }
78
79 int odr_sequence_end(ODR o)
80 {
81     if (o->direction == ODR_PRINT)
82     {
83         assert(o->indent > 0);
84         o->indent--;
85         fprintf(o->print, "%s}\n", odr_indent(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 }