Renamed logf function to yaz_log. Removed VC++ project files.
[yaz-moved-to-github.git] / odr / odr_null.c
1 /*
2  * Copyright (c) 1995-1999, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_null.c,v $
7  * Revision 1.11  1999-04-20 09:56:48  adam
8  * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
9  * Modified all encoders/decoders to reflect this change.
10  *
11  * Revision 1.10  1997/11/24 11:33:56  adam
12  * Using function odr_nullval() instead of global ODR_NULLVAL when
13  * appropriate.
14  *
15  * Revision 1.9  1995/10/18 16:12:56  quinn
16  * Better diagnostics. Added special case in NULL to handle WAIS server.
17  *
18  * Revision 1.8  1995/09/29  17:12:24  quinn
19  * Smallish
20  *
21  * Revision 1.7  1995/09/27  15:02:59  quinn
22  * Modified function heads & prototypes.
23  *
24  * Revision 1.6  1995/05/22  11:32:03  quinn
25  * Fixing Interface to odr_null.
26  *
27  * Revision 1.5  1995/05/16  08:50:56  quinn
28  * License, documentation, and memory fixes
29  *
30  * Revision 1.4  1995/03/08  12:12:26  quinn
31  * Added better error checking.
32  *
33  * Revision 1.3  1995/02/10  18:57:25  quinn
34  * More in the way of error-checking.
35  *
36  * Revision 1.2  1995/02/09  15:51:49  quinn
37  * Works better now.
38  *
39  * Revision 1.1  1995/02/02  16:21:54  quinn
40  * First kick.
41  *
42  */
43
44 #include <odr.h>
45
46 /*
47  * Top level null en/decoder.
48  * Returns 1 on success, 0 on error.
49  */
50 int odr_null(ODR o, Odr_null **p, int opt, const char *name)
51 {
52     int res, cons = 0;
53
54     if (o->error)
55         return 0;
56     if (o->t_class < 0)
57     {
58         o->t_class = ODR_UNIVERSAL;
59         o->t_tag = ODR_NULL;
60     }
61     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
62         return 0;
63     if (!res)
64         return opt;
65     if (o->direction == ODR_PRINT)
66     {
67         odr_prname(o, name);
68         fprintf(o->print, "NULL\n");
69         return 1;
70     }
71     if (cons)
72     {
73 #ifdef ODR_STRICT_NULL
74         o->error = OPROTO;
75         return 0;
76 #else
77         fprintf(stderr, "odr: Warning: Bad NULL\n");
78 #endif
79     }
80     if (o->direction == ODR_DECODE)
81         *p = odr_nullval();
82     return ber_null(o);
83 }