25edfa0dcc7f8184be1b5766c0aec1c61755c565
[yaz-moved-to-github.git] / odr / odr_bit.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_bit.c,v $
7  * Revision 1.6  1995-03-08 12:12:19  quinn
8  * Added better error checking.
9  *
10  * Revision 1.5  1995/02/10  18:57:25  quinn
11  * More in the way of error-checking.
12  *
13  * Revision 1.4  1995/02/09  15:51:47  quinn
14  * Works better now.
15  *
16  * Revision 1.3  1995/02/07  14:13:45  quinn
17  * Bug fixes.
18  *
19  * Revision 1.2  1995/02/03  17:04:37  quinn
20  * *** empty log message ***
21  *
22  * Revision 1.1  1995/02/02  20:38:50  quinn
23  * Updates.
24  *
25  *
26  */
27
28 #include <odr.h>
29 #include <string.h>
30
31 /*
32  * Top level bitstring string en/decoder.
33  * Returns 1 on success, 0 on error.
34  */
35 int odr_bitstring(ODR o, Odr_bitmask **p, int opt)
36 {
37     int res, cons = 0;
38
39     if (o->error)
40         return 0;
41     if (o->t_class < 0)
42     {
43         o->t_class = ODR_UNIVERSAL;
44         o->t_tag = ODR_BITSTRING;
45     }
46     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
47         return 0;
48     if (!res)
49         return opt;
50     if (o->direction == ODR_PRINT)
51     {
52         fprintf(o->print, "%sBITSTRING(len=%d)\n", odr_indent(o),
53             (*p)->top + 1);
54         return 1;
55     }
56     if (o->direction == ODR_DECODE)
57     {
58         *p = nalloc(o, sizeof(Odr_bitmask));
59         memset((*p)->bits, 0, ODR_BITMASK_SIZE);
60         (*p)->top = -1;
61     }
62     return ber_bitstring(o, *p, cons);
63 }