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