source: trunk/gsdl/packages/yaz/odr/odr_null.c@ 1343

Last change on this file since 1343 was 1343, checked in by johnmcp, 24 years ago

Added the YAZ toolkit source to the packages directory (for z39.50 stuff)

  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1/*
2 * Copyright (c) 1995-2000, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
5 *
6 * $Log$
7 * Revision 1.1 2000/08/03 03:11:22 johnmcp
8 * Added the YAZ toolkit source to the packages directory (for z39.50 stuff)
9 *
10 * Revision 1.13 2000/02/29 13:44:55 adam
11 * Check for config.h (currently not generated).
12 *
13 * Revision 1.12 1999/11/30 13:47:11 adam
14 * Improved installation. Moved header files to include/yaz.
15 *
16 * Revision 1.11 1999/04/20 09:56:48 adam
17 * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
18 * Modified all encoders/decoders to reflect this change.
19 *
20 * Revision 1.10 1997/11/24 11:33:56 adam
21 * Using function odr_nullval() instead of global ODR_NULLVAL when
22 * appropriate.
23 *
24 * Revision 1.9 1995/10/18 16:12:56 quinn
25 * Better diagnostics. Added special case in NULL to handle WAIS server.
26 *
27 * Revision 1.8 1995/09/29 17:12:24 quinn
28 * Smallish
29 *
30 * Revision 1.7 1995/09/27 15:02:59 quinn
31 * Modified function heads & prototypes.
32 *
33 * Revision 1.6 1995/05/22 11:32:03 quinn
34 * Fixing Interface to odr_null.
35 *
36 * Revision 1.5 1995/05/16 08:50:56 quinn
37 * License, documentation, and memory fixes
38 *
39 * Revision 1.4 1995/03/08 12:12:26 quinn
40 * Added better error checking.
41 *
42 * Revision 1.3 1995/02/10 18:57:25 quinn
43 * More in the way of error-checking.
44 *
45 * Revision 1.2 1995/02/09 15:51:49 quinn
46 * Works better now.
47 *
48 * Revision 1.1 1995/02/02 16:21:54 quinn
49 * First kick.
50 *
51 */
52#if HAVE_CONFIG_H
53#include <config.h>
54#endif
55
56#include <yaz/odr.h>
57
58/*
59 * Top level null en/decoder.
60 * Returns 1 on success, 0 on error.
61 */
62int odr_null(ODR o, Odr_null **p, int opt, const char *name)
63{
64 int res, cons = 0;
65
66 if (o->error)
67 return 0;
68 if (o->t_class < 0)
69 {
70 o->t_class = ODR_UNIVERSAL;
71 o->t_tag = ODR_NULL;
72 }
73 if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
74 return 0;
75 if (!res)
76 return opt;
77 if (o->direction == ODR_PRINT)
78 {
79 odr_prname(o, name);
80 fprintf(o->print, "NULL\n");
81 return 1;
82 }
83 if (cons)
84 {
85#ifdef ODR_STRICT_NULL
86 o->error = OPROTO;
87 return 0;
88#else
89 fprintf(stderr, "odr: Warning: Bad NULL\n");
90#endif
91 }
92 if (o->direction == ODR_DECODE)
93 *p = odr_nullval();
94 return ber_null(o);
95}
Note: See TracBrowser for help on using the repository browser.