Updated information about YAZ.
[yaz-moved-to-github.git] / odr / ber_bit.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_bit.c,v $
7  * Revision 1.10  1999-11-30 13:47:11  adam
8  * Improved installation. Moved header files to include/yaz.
9  *
10  * Revision 1.9  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.8  1999/01/08 11:23:21  adam
15  * Added const modifier to some of the BER/ODR encoding routines.
16  *
17  * Revision 1.7  1995/09/29 17:12:16  quinn
18  * Smallish
19  *
20  * Revision 1.6  1995/09/27  15:02:54  quinn
21  * Modified function heads & prototypes.
22  *
23  * Revision 1.5  1995/05/16  08:50:43  quinn
24  * License, documentation, and memory fixes
25  *
26  * Revision 1.4  1995/04/18  08:15:13  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.3  1995/03/08  12:12:04  quinn
31  * Added better error checking.
32  *
33  * Revision 1.2  1995/02/03  17:04:31  quinn
34  * *** empty log message ***
35  *
36  * Revision 1.1  1995/02/02  20:38:49  quinn
37  * Updates.
38  *
39  *
40  */
41
42 #include <yaz/odr.h>
43
44 int ber_bitstring(ODR o, Odr_bitmask *p, int cons)
45 {
46     int res, len;
47     const unsigned char *base;
48
49     switch (o->direction)
50     {
51         case ODR_DECODE:
52             if ((res = ber_declen(o->bp, &len)) < 0)
53             {
54                 o->error = OPROTO;
55                 return 0;
56             }
57             o->bp += res;
58             o->left -= res;
59             if (cons)       /* fetch component strings */
60             {
61                 base = o->bp;
62                 while (odp_more_chunks(o, base, len))
63                     if (!odr_bitstring(o, &p, 0, 0))
64                         return 0;
65                 return 1;
66             }
67             /* primitive bitstring */
68             if (len < 0)
69             {
70                 o->error = OOTHER;
71                 return 0;
72             }
73             if (len == 0)
74                 return 1;
75             if (len - 1 > ODR_BITMASK_SIZE)
76             {
77                 o->error = OOTHER;
78                 return 0;
79             }
80             o->bp++;      /* silently ignore the unused-bits field */
81             o->left--;
82             len--;
83             memcpy(p->bits + p->top + 1, o->bp, len);
84             p->top += len;
85             o->bp += len;
86             o->left -= len;
87             return 1;
88         case ODR_ENCODE:
89             if ((res = ber_enclen(o, p->top + 2, 5, 0)) < 0)
90                 return 0;
91             if (odr_putc(o, 0) < 0)    /* no unused bits here */
92                 return 0;
93             if (p->top < 0)
94                 return 1;
95             if (odr_write(o, p->bits, p->top + 1) < 0)
96                 return 0;
97             return 1;
98         case ODR_PRINT: return 1;
99         default: o->error = OOTHER; return 0;
100     }
101 }