Check for config.h (currently not generated).
[yaz-moved-to-github.git] / odr / odr_null.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_null.c,v $
7  * Revision 1.13  2000-02-29 13:44:55  adam
8  * Check for config.h (currently not generated).
9  *
10  * Revision 1.12  1999/11/30 13:47:11  adam
11  * Improved installation. Moved header files to include/yaz.
12  *
13  * Revision 1.11  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.10  1997/11/24 11:33:56  adam
18  * Using function odr_nullval() instead of global ODR_NULLVAL when
19  * appropriate.
20  *
21  * Revision 1.9  1995/10/18 16:12:56  quinn
22  * Better diagnostics. Added special case in NULL to handle WAIS server.
23  *
24  * Revision 1.8  1995/09/29  17:12:24  quinn
25  * Smallish
26  *
27  * Revision 1.7  1995/09/27  15:02:59  quinn
28  * Modified function heads & prototypes.
29  *
30  * Revision 1.6  1995/05/22  11:32:03  quinn
31  * Fixing Interface to odr_null.
32  *
33  * Revision 1.5  1995/05/16  08:50:56  quinn
34  * License, documentation, and memory fixes
35  *
36  * Revision 1.4  1995/03/08  12:12:26  quinn
37  * Added better error checking.
38  *
39  * Revision 1.3  1995/02/10  18:57:25  quinn
40  * More in the way of error-checking.
41  *
42  * Revision 1.2  1995/02/09  15:51:49  quinn
43  * Works better now.
44  *
45  * Revision 1.1  1995/02/02  16:21:54  quinn
46  * First kick.
47  *
48  */
49 #if HAVE_CONFIG_H
50 #include <config.h>
51 #endif
52
53 #include <yaz/odr.h>
54
55 /*
56  * Top level null en/decoder.
57  * Returns 1 on success, 0 on error.
58  */
59 int odr_null(ODR o, Odr_null **p, int opt, const char *name)
60 {
61     int res, cons = 0;
62
63     if (o->error)
64         return 0;
65     if (o->t_class < 0)
66     {
67         o->t_class = ODR_UNIVERSAL;
68         o->t_tag = ODR_NULL;
69     }
70     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
71         return 0;
72     if (!res)
73         return opt;
74     if (o->direction == ODR_PRINT)
75     {
76         odr_prname(o, name);
77         fprintf(o->print, "NULL\n");
78         return 1;
79     }
80     if (cons)
81     {
82 #ifdef ODR_STRICT_NULL
83         o->error = OPROTO;
84         return 0;
85 #else
86         fprintf(stderr, "odr: Warning: Bad NULL\n");
87 #endif
88     }
89     if (o->direction == ODR_DECODE)
90         *p = odr_nullval();
91     return ber_null(o);
92 }