Added memory management.
[yaz-moved-to-github.git] / odr / odr_any.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_any.c,v $
7  * Revision 1.3  1995-03-17 10:17:46  quinn
8  * Added memory management.
9  *
10  * Revision 1.2  1995/03/08  12:12:18  quinn
11  * Added better error checking.
12  *
13  * Revision 1.1  1995/02/09  15:51:47  quinn
14  * Works better now.
15  *
16  */
17
18 #include <odr.h>
19
20 /*
21  * This is a catch-all type. It stuffs a random ostring (assumed to be properly
22  * encoded) into the stream, or reads a full data element. Implicit tagging
23  * does not work, and neither does the optional flag, unless the element
24  * is the last in a sequence.
25  */
26 int odr_any(ODR o, Odr_any **p, int opt)
27 {
28     if (o->error)
29         return 0;
30     if (o->direction == ODR_PRINT)
31     {
32         fprintf(o->print, "%sANY (len=%d)\n", odr_indent(o), (*p)->len);
33         return 1;
34     }
35     if (o->direction == ODR_DECODE)
36         *p = odr_malloc(o, sizeof(**p));
37     if (ber_any(o, p))
38         return 1;
39     *p = 0;
40     if (!opt)
41         o->error = OREQUIRED;
42     return opt;
43 }