Directive s=pw sets structure to phrase if term includes blank(s).
[yaz-moved-to-github.git] / odr / odr_any.c
1 /*
2  * Copyright (c) 1995-2000, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_any.c,v $
7  * Revision 1.10  2000-02-29 13:44:55  adam
8  * Check for config.h (currently not generated).
9  *
10  * Revision 1.9  1999/11/30 13:47:11  adam
11  * Improved installation. Moved header files to include/yaz.
12  *
13  * Revision 1.8  1999/04/20 09:56:48  adam
14  * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
15  * Modified all encoders/decoders to reflect this change.
16  *
17  * Revision 1.7  1998/02/11 11:53:34  adam
18  * Changed code so that it compiles as C++.
19  *
20  * Revision 1.6  1995/09/29 17:12:22  quinn
21  * Smallish
22  *
23  * Revision 1.5  1995/09/27  15:02:58  quinn
24  * Modified function heads & prototypes.
25  *
26  * Revision 1.4  1995/05/16  08:50:50  quinn
27  * License, documentation, and memory fixes
28  *
29  * Revision 1.3  1995/03/17  10:17:46  quinn
30  * Added memory management.
31  *
32  * Revision 1.2  1995/03/08  12:12:18  quinn
33  * Added better error checking.
34  *
35  * Revision 1.1  1995/02/09  15:51:47  quinn
36  * Works better now.
37  *
38  */
39 #if HAVE_CONFIG_H
40 #include <config.h>
41 #endif
42
43 #include <yaz/odr.h>
44
45 /*
46  * This is a catch-all type. It stuffs a random ostring (assumed to be properly
47  * encoded) into the stream, or reads a full data element. Implicit tagging
48  * does not work, and neither does the optional flag, unless the element
49  * is the last in a sequence.
50  */
51 int odr_any(ODR o, Odr_any **p, int opt, const char *name)
52 {
53     if (o->error)
54         return 0;
55     if (o->direction == ODR_PRINT)
56     {
57         odr_prname(o, name);
58         fprintf(o->print, "ANY (len=%d)\n", (*p)->len);
59         return 1;
60     }
61     if (o->direction == ODR_DECODE)
62         *p = (Odr_oct *)odr_malloc(o, sizeof(**p));
63     if (ber_any(o, p))
64         return 1;
65     *p = 0;
66     if (!opt)
67         o->error = OREQUIRED;
68     return opt;
69 }