Directive s=pw sets structure to phrase if term includes blank(s).
[yaz-moved-to-github.git] / odr / odr_int.c
1 /*
2  * Copyright (c) 1995-2000, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_int.c,v $
7  * Revision 1.15  2000-02-29 13:44:55  adam
8  * Check for config.h (currently not generated).
9  *
10  * Revision 1.14  1999/11/30 13:47:11  adam
11  * Improved installation. Moved header files to include/yaz.
12  *
13  * Revision 1.13  1999/04/20 09:56:48  adam
14  * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
15  * Modified all encoders/decoders to reflect this change.
16  *
17  * Revision 1.12  1999/01/08 11:23:28  adam
18  * Added const modifier to some of the BER/ODR encoding routines.
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:24  quinn
24  * Smallish
25  *
26  * Revision 1.9  1995/09/29  17:01:50  quinn
27  * More Windows work
28  *
29  * Revision 1.8  1995/09/27  15:02:59  quinn
30  * Modified function heads & prototypes.
31  *
32  * Revision 1.7  1995/05/16  08:50:54  quinn
33  * License, documentation, and memory fixes
34  *
35  * Revision 1.6  1995/03/17  10:17:51  quinn
36  * Added memory management.
37  *
38  * Revision 1.5  1995/03/08  12:12:25  quinn
39  * Added better error checking.
40  *
41  * Revision 1.4  1995/02/10  18:57:25  quinn
42  * More in the way of error-checking.
43  *
44  * Revision 1.3  1995/02/09  15:51:48  quinn
45  * Works better now.
46  *
47  * Revision 1.2  1995/02/07  14:13:45  quinn
48  * Bug fixes.
49  *
50  * Revision 1.1  1995/02/02  16:21:53  quinn
51  * First kick.
52  *
53  */
54 #if HAVE_CONFIG_H
55 #include <config.h>
56 #endif
57
58 #include <yaz/odr.h>
59
60 /*
61  * Top level integer en/decoder.
62  * Returns 1 on success, 0 on error.
63  */
64 int odr_integer(ODR o, int **p, int opt, const char *name)
65 {
66     int res, cons = 0;
67
68     if (o->error)
69         return 0;
70     if (o->t_class < 0)
71     {
72         o->t_class = ODR_UNIVERSAL;
73         o->t_tag = ODR_INTEGER;
74     }
75     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
76         return 0;
77     if (!res)
78         return opt;
79     if (o->direction == ODR_PRINT)
80     {
81         odr_prname(o, name);
82         fprintf(o->print, "%d\n", **p);
83         return 1;
84     }
85     if (cons)
86     {
87         o->error = OPROTO;
88         return 0;
89     }
90     if (o->direction == ODR_DECODE)
91         *p = (int *)odr_malloc(o, sizeof(int));
92     return ber_integer(o, *p);
93 }