Added memory management.
[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.7  1995-03-17 10:17:48  quinn
8  * Added memory management.
9  *
10  * Revision 1.6  1995/03/08  12:12:19  quinn
11  * Added better error checking.
12  *
13  * Revision 1.5  1995/02/10  18:57:25  quinn
14  * More in the way of error-checking.
15  *
16  * Revision 1.4  1995/02/09  15:51:47  quinn
17  * Works better now.
18  *
19  * Revision 1.3  1995/02/07  14:13:45  quinn
20  * Bug fixes.
21  *
22  * Revision 1.2  1995/02/03  17:04:37  quinn
23  * *** empty log message ***
24  *
25  * Revision 1.1  1995/02/02  20:38:50  quinn
26  * Updates.
27  *
28  *
29  */
30
31 #include <odr.h>
32 #include <string.h>
33
34 /*
35  * Top level bitstring string en/decoder.
36  * Returns 1 on success, 0 on error.
37  */
38 int odr_bitstring(ODR o, Odr_bitmask **p, int opt)
39 {
40     int res, cons = 0;
41
42     if (o->error)
43         return 0;
44     if (o->t_class < 0)
45     {
46         o->t_class = ODR_UNIVERSAL;
47         o->t_tag = ODR_BITSTRING;
48     }
49     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
50         return 0;
51     if (!res)
52         return opt;
53     if (o->direction == ODR_PRINT)
54     {
55         fprintf(o->print, "%sBITSTRING(len=%d)\n", odr_indent(o),
56             (*p)->top + 1);
57         return 1;
58     }
59     if (o->direction == ODR_DECODE)
60     {
61         *p = odr_malloc(o, sizeof(Odr_bitmask));
62         memset((*p)->bits, 0, ODR_BITMASK_SIZE);
63         (*p)->top = -1;
64     }
65     return ber_bitstring(o, *p, cons);
66 }