Added better error checking.
[yaz-moved-to-github.git] / odr / odr_seq.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_seq.c,v $
7  * Revision 1.7  1995-03-08 12:12:30  quinn
8  * Added better error checking.
9  *
10  * Revision 1.6  1995/02/10  15:55:29  quinn
11  * Bug fixes, mostly.
12  *
13  * Revision 1.5  1995/02/09  15:51:49  quinn
14  * Works better now.
15  *
16  * Revision 1.4  1995/02/07  17:53:00  quinn
17  * A damn mess, but now things work, I think.
18  *
19  * Revision 1.3  1995/02/07  14:13:46  quinn
20  * Bug fixes.
21  *
22  * Revision 1.2  1995/02/06  16:45:03  quinn
23  * Small mods.
24  *
25  * Revision 1.1  1995/02/02  16:21:54  quinn
26  * First kick.
27  *
28  */
29
30 #include <odr.h>
31 #include <assert.h>
32
33 int odr_sequence_begin(ODR o, void *p, int size)
34 {
35     char **pp = (char**) p;
36
37     if (o->error)
38         return 0;
39     if (o->t_class < 0)
40     {
41         o->t_class = ODR_UNIVERSAL;
42         o->t_tag = ODR_SEQUENCE;
43     }
44     if (o->direction == ODR_DECODE)
45         *pp = 0;
46     if (odr_constructed_begin(o, p, o->t_class, o->t_tag))
47     {
48         if (o->direction == ODR_DECODE && size)
49             *pp = nalloc(o, size);
50         if (o->direction == ODR_PRINT)
51         {
52             fprintf(o->print, "%s{\n", odr_indent(o));
53             o->indent++;
54         }
55         return 1;
56     }
57     else
58         return 0;
59 }
60
61 int odr_sequence_end(ODR o)
62 {
63     if (o->direction == ODR_PRINT)
64     {
65         assert(o->indent > 0);
66         o->indent--;
67         fprintf(o->print, "%s}\n", odr_indent(o));
68     }
69     return odr_constructed_end(o);    
70 }
71
72 int odr_sequence_more(ODR o)
73 {
74     return odr_constructed_more(o);
75 }
76
77 int odr_sequence_of(ODR o, Odr_fun type, void *p, int *num)
78 {
79     char ***pp = (char***) p;  /* for dereferencing */
80     char **tmp;
81     char *dummy = "Nothing";
82     int size = 0, i;
83
84     if (!odr_sequence_begin(o, &dummy, 0))
85         return 0;
86
87     switch (o->direction)
88     {
89         case ODR_DECODE:
90             *num = 0;
91             while (odr_sequence_more(o))
92             {
93                 /* outgrown array? */
94                 if (*num * sizeof(void*) >= size)
95                 {
96                     /* double the buffer size */
97                     tmp = nalloc(o, sizeof(void*) * (size += size ? size :
98                         128));
99                     if (*num)
100                     {
101                         memcpy(tmp, *pp, *num * sizeof(void*));
102                         /*
103                          * For now, we just throw the old *p away, since we use
104                          * nibble memory anyway (disgusting, isn't it?).
105                          */
106                     }
107                     *pp = tmp;
108                 }
109                 if (!(*type)(o, (*pp) + *num, 0))
110                     return 0;
111                 (*num)++;
112             }
113             break;
114         case ODR_ENCODE: case ODR_PRINT:
115             for (i = 0; i < *num; i++)
116                 if (!(*type)(o, *pp + i, 0))
117                     return 0;
118             break;
119         default:
120             o->error = OOTHER;
121             return 0;
122     }
123     return odr_sequence_end(o);
124 }