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