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