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