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