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