Renamed logf function to yaz_log. Removed VC++ project files.
[yaz-moved-to-github.git] / odr / odr_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: odr_bit.c,v $
7  * Revision 1.12  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.11  1998/02/11 11:53:34  adam
12  * Changed code so that it compiles as C++.
13  *
14  * Revision 1.10  1995/09/29 17:12:22  quinn
15  * Smallish
16  *
17  * Revision 1.9  1995/09/27  15:02:58  quinn
18  * Modified function heads & prototypes.
19  *
20  * Revision 1.8  1995/05/16  08:50:51  quinn
21  * License, documentation, and memory fixes
22  *
23  * Revision 1.7  1995/03/17  10:17:48  quinn
24  * Added memory management.
25  *
26  * Revision 1.6  1995/03/08  12:12:19  quinn
27  * Added better error checking.
28  *
29  * Revision 1.5  1995/02/10  18:57:25  quinn
30  * More in the way of error-checking.
31  *
32  * Revision 1.4  1995/02/09  15:51:47  quinn
33  * Works better now.
34  *
35  * Revision 1.3  1995/02/07  14:13:45  quinn
36  * Bug fixes.
37  *
38  * Revision 1.2  1995/02/03  17:04:37  quinn
39  * *** empty log message ***
40  *
41  * Revision 1.1  1995/02/02  20:38:50  quinn
42  * Updates.
43  *
44  *
45  */
46
47 #include <odr.h>
48 #include <string.h>
49
50 /*
51  * Top level bitstring string en/decoder.
52  * Returns 1 on success, 0 on error.
53  */
54 int odr_bitstring(ODR o, Odr_bitmask **p, int opt, const char *name)
55 {
56     int res, cons = 0;
57
58     if (o->error)
59         return 0;
60     if (o->t_class < 0)
61     {
62         o->t_class = ODR_UNIVERSAL;
63         o->t_tag = ODR_BITSTRING;
64     }
65     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
66         return 0;
67     if (!res)
68         return opt;
69     if (o->direction == ODR_PRINT)
70     {
71         odr_prname(o, name);
72         fprintf(o->print, "BITSTRING(len=%d)\n",(*p)->top + 1);
73         return 1;
74     }
75     if (o->direction == ODR_DECODE)
76     {
77         *p = (Odr_bitmask *)odr_malloc(o, sizeof(Odr_bitmask));
78         memset((*p)->bits, 0, ODR_BITMASK_SIZE);
79         (*p)->top = -1;
80     }
81     return ber_bitstring(o, *p, cons);
82 }