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