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