Check for config.h (currently not generated).
[yaz-moved-to-github.git] / odr / ber_oct.c
1 /*
2  * Copyright (c) 1995-2000, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_oct.c,v $
7  * Revision 1.16  2000-02-29 13:44:55  adam
8  * Check for config.h (currently not generated).
9  *
10  * Revision 1.15  2000/01/31 13:15:21  adam
11  * Removed uses of assert(3). Cleanup of ODR. CCL parser update so
12  * that some characters are not surrounded by spaces in resulting term.
13  * ILL-code updates.
14  *
15  * Revision 1.14  1999/11/30 13:47:11  adam
16  * Improved installation. Moved header files to include/yaz.
17  *
18  * Revision 1.13  1999/04/20 09:56:48  adam
19  * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
20  * Modified all encoders/decoders to reflect this change.
21  *
22  * Revision 1.12  1999/01/08 11:23:24  adam
23  * Added const modifier to some of the BER/ODR encoding routines.
24  *
25  * Revision 1.11  1998/02/11 11:53:34  adam
26  * Changed code so that it compiles as C++.
27  *
28  * Revision 1.10  1995/09/29 17:12:18  quinn
29  * Smallish
30  *
31  * Revision 1.9  1995/09/27  15:02:55  quinn
32  * Modified function heads & prototypes.
33  *
34  * Revision 1.8  1995/05/16  08:50:47  quinn
35  * License, documentation, and memory fixes
36  *
37  * Revision 1.7  1995/04/18  08:15:17  quinn
38  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
39  * neater. We'll make the same change for decoding one day.
40  *
41  * Revision 1.6  1995/03/17  10:17:41  quinn
42  * Added memory management.
43  *
44  * Revision 1.5  1995/03/08  12:12:10  quinn
45  * Added better error checking.
46  *
47  * Revision 1.4  1995/02/10  15:55:28  quinn
48  * Bug fixes, mostly.
49  *
50  * Revision 1.3  1995/02/03  17:04:34  quinn
51  * *** empty log message ***
52  *
53  * Revision 1.2  1995/02/02  20:38:50  quinn
54  * Updates.
55  *
56  * Revision 1.1  1995/02/02  16:21:52  quinn
57  * First kick.
58  *
59  */
60 #if HAVE_CONFIG_H
61 #include <config.h>
62 #endif
63
64 #include <yaz/odr.h>
65
66 int ber_octetstring(ODR o, Odr_oct *p, int cons)
67 {
68     int res, len;
69     const unsigned char *base;
70     unsigned char *c;
71
72     switch (o->direction)
73     {
74         case ODR_DECODE:
75             if ((res = ber_declen(o->bp, &len)) < 0)
76             {
77                 o->error = OPROTO;
78                 return 0;
79             }
80             o->bp += res;
81             if (cons)       /* fetch component strings */
82             {
83                 base = o->bp;
84                 while (odp_more_chunks(o, base, len))
85                     if (!odr_octetstring(o, &p, 0, 0))
86                         return 0;
87                 return 1;
88             }
89             /* primitive octetstring */
90             if (len < 0)
91             {
92                 o->error = OOTHER;
93                 return 0;
94             }
95             if (len + 1 > p->size - p->len)
96             {
97                 c = (unsigned char *)odr_malloc(o, p->size += len + 1);
98                 if (p->len)
99                     memcpy(c, p->buf, p->len);
100                 p->buf = c;
101             }
102             if (len)
103                 memcpy(p->buf + p->len, o->bp, len);
104             p->len += len;
105             o->bp += len;
106             return 1;
107         case ODR_ENCODE:
108             if ((res = ber_enclen(o, p->len, 5, 0)) < 0)
109                 return 0;
110             if (p->len == 0)
111                 return 1;
112             if (odr_write(o, p->buf, p->len) < 0)
113                 return 0;
114             return 1;
115         case ODR_PRINT: return 1;
116         default: o->error = OOTHER; return 0;
117     }
118 }