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