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