Changed code so that it compiles as C++.
[yaz-moved-to-github.git] / odr / ber_oct.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: ber_oct.c,v $
7  * Revision 1.11  1998-02-11 11:53:34  adam
8  * Changed code so that it compiles as C++.
9  *
10  * Revision 1.10  1995/09/29 17:12:18  quinn
11  * Smallish
12  *
13  * Revision 1.9  1995/09/27  15:02:55  quinn
14  * Modified function heads & prototypes.
15  *
16  * Revision 1.8  1995/05/16  08:50:47  quinn
17  * License, documentation, and memory fixes
18  *
19  * Revision 1.7  1995/04/18  08:15:17  quinn
20  * Added dynamic memory allocation on encoding (whew). Code is now somewhat
21  * neater. We'll make the same change for decoding one day.
22  *
23  * Revision 1.6  1995/03/17  10:17:41  quinn
24  * Added memory management.
25  *
26  * Revision 1.5  1995/03/08  12:12:10  quinn
27  * Added better error checking.
28  *
29  * Revision 1.4  1995/02/10  15:55:28  quinn
30  * Bug fixes, mostly.
31  *
32  * Revision 1.3  1995/02/03  17:04:34  quinn
33  * *** empty log message ***
34  *
35  * Revision 1.2  1995/02/02  20:38:50  quinn
36  * Updates.
37  *
38  * Revision 1.1  1995/02/02  16:21:52  quinn
39  * First kick.
40  *
41  */
42
43 #include <odr.h>
44
45 int ber_octetstring(ODR o, Odr_oct *p, int cons)
46 {
47     int res, len;
48     unsigned char *base, *c;
49
50     switch (o->direction)
51     {
52         case ODR_DECODE:
53             if ((res = ber_declen(o->bp, &len)) < 0)
54             {
55                 o->error = OPROTO;
56                 return 0;
57             }
58             o->bp += res;
59             o->left -= res;
60             if (cons)       /* fetch component strings */
61             {
62                 base = o->bp;
63                 while (odp_more_chunks(o, base, len))
64                     if (!odr_octetstring(o, &p, 0))
65                         return 0;
66                 return 1;
67             }
68             /* primitive octetstring */
69             if (len < 0)
70             {
71                 o->error = OOTHER;
72                 return 0;
73             }
74             if (len + 1 > p->size - p->len)
75             {
76                 c = (unsigned char *)odr_malloc(o, p->size += len + 1);
77                 if (p->len)
78                     memcpy(c, p->buf, p->len);
79                 p->buf = c;
80             }
81             if (len)
82                 memcpy(p->buf + p->len, o->bp, len);
83             p->len += len;
84             o->bp += len;
85             o->left -= len;
86             return 1;
87         case ODR_ENCODE:
88             if ((res = ber_enclen(o, p->len, 5, 0)) < 0)
89                 return 0;
90             if (p->len == 0)
91                 return 1;
92             if (odr_write(o, p->buf, p->len) < 0)
93                 return 0;
94             return 1;
95         case ODR_PRINT: return 1;
96         default: o->error = OOTHER; return 0;
97     }
98 }