source: trunk/gsdl/packages/yaz/odr/odr_bit.c@ 1343

Last change on this file since 1343 was 1343, checked in by johnmcp, 24 years ago

Added the YAZ toolkit source to the packages directory (for z39.50 stuff)

  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/*
2 * Copyright (c) 1995-2000, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
5 *
6 * $Log$
7 * Revision 1.1 2000/08/03 03:11:18 johnmcp
8 * Added the YAZ toolkit source to the packages directory (for z39.50 stuff)
9 *
10 * Revision 1.14 2000/02/29 13:44:55 adam
11 * Check for config.h (currently not generated).
12 *
13 * Revision 1.13 1999/11/30 13:47:11 adam
14 * Improved installation. Moved header files to include/yaz.
15 *
16 * Revision 1.12 1999/04/20 09:56:48 adam
17 * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
18 * Modified all encoders/decoders to reflect this change.
19 *
20 * Revision 1.11 1998/02/11 11:53:34 adam
21 * Changed code so that it compiles as C++.
22 *
23 * Revision 1.10 1995/09/29 17:12:22 quinn
24 * Smallish
25 *
26 * Revision 1.9 1995/09/27 15:02:58 quinn
27 * Modified function heads & prototypes.
28 *
29 * Revision 1.8 1995/05/16 08:50:51 quinn
30 * License, documentation, and memory fixes
31 *
32 * Revision 1.7 1995/03/17 10:17:48 quinn
33 * Added memory management.
34 *
35 * Revision 1.6 1995/03/08 12:12:19 quinn
36 * Added better error checking.
37 *
38 * Revision 1.5 1995/02/10 18:57:25 quinn
39 * More in the way of error-checking.
40 *
41 * Revision 1.4 1995/02/09 15:51:47 quinn
42 * Works better now.
43 *
44 * Revision 1.3 1995/02/07 14:13:45 quinn
45 * Bug fixes.
46 *
47 * Revision 1.2 1995/02/03 17:04:37 quinn
48 * *** empty log message ***
49 *
50 * Revision 1.1 1995/02/02 20:38:50 quinn
51 * Updates.
52 *
53 *
54 */
55#if HAVE_CONFIG_H
56#include <config.h>
57#endif
58
59#include <string.h>
60#include <yaz/odr.h>
61
62/*
63 * Top level bitstring string en/decoder.
64 * Returns 1 on success, 0 on error.
65 */
66int odr_bitstring(ODR o, Odr_bitmask **p, int opt, const char *name)
67{
68 int res, cons = 0;
69
70 if (o->error)
71 return 0;
72 if (o->t_class < 0)
73 {
74 o->t_class = ODR_UNIVERSAL;
75 o->t_tag = ODR_BITSTRING;
76 }
77 if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
78 return 0;
79 if (!res)
80 return opt;
81 if (o->direction == ODR_PRINT)
82 {
83 odr_prname(o, name);
84 fprintf(o->print, "BITSTRING(len=%d)\n",(*p)->top + 1);
85 return 1;
86 }
87 if (o->direction == ODR_DECODE)
88 {
89 *p = (Odr_bitmask *)odr_malloc(o, sizeof(Odr_bitmask));
90 memset((*p)->bits, 0, ODR_BITMASK_SIZE);
91 (*p)->top = -1;
92 }
93 return ber_bitstring(o, *p, cons);
94}
Note: See TracBrowser for help on using the repository browser.