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