Changed code so that it compiles as C++.
[yaz-moved-to-github.git] / odr / odr_oid.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_oid.c,v $
7  * Revision 1.13  1998-02-11 11:53:34  adam
8  * Changed code so that it compiles as C++.
9  *
10  * Revision 1.12  1995/09/29 17:12:25  quinn
11  * Smallish
12  *
13  * Revision 1.11  1995/09/27  15:03:00  quinn
14  * Modified function heads & prototypes.
15  *
16  * Revision 1.10  1995/05/29  08:11:44  quinn
17  * Moved oid from odr/asn to util.
18  *
19  * Revision 1.9  1995/05/16  08:50:57  quinn
20  * License, documentation, and memory fixes
21  *
22  * Revision 1.8  1995/03/17  10:17:55  quinn
23  * Added memory management.
24  *
25  * Revision 1.7  1995/03/08  12:12:29  quinn
26  * Added better error checking.
27  *
28  * Revision 1.6  1995/03/01  08:40:56  quinn
29  * Smallish changes.
30  *
31  * Revision 1.5  1995/02/10  18:57:26  quinn
32  * More in the way of error-checking.
33  *
34  * Revision 1.4  1995/02/10  15:55:29  quinn
35  * Bug fixes, mostly.
36  *
37  * Revision 1.3  1995/02/09  15:51:49  quinn
38  * Works better now.
39  *
40  * Revision 1.2  1995/02/07  14:13:46  quinn
41  * Bug fixes.
42  *
43  * Revision 1.1  1995/02/03  17:04:38  quinn
44  * Initial revision
45  *
46  *
47  */
48
49 #include <odr.h>
50 #include <oid.h>
51
52 /*
53  * Top level oid en/decoder.
54  * Returns 1 on success, 0 on error.
55  */
56 int odr_oid(ODR o, Odr_oid **p, int opt)
57 {
58     int res, cons = 0;
59
60     if (o->error)
61         return 0;
62     if (o->t_class < 0)
63     {
64         o->t_class = ODR_UNIVERSAL;
65         o->t_tag = ODR_OID;
66     }
67     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
68         return 0;
69     if (!res)
70         return opt;
71     if (cons)
72     {
73         o->error = OPROTO;
74         return 0;
75     }
76     if (o->direction == ODR_PRINT)
77     {
78         int i;
79
80         fprintf(o->print, "%sOID:", odr_indent(o));
81         for (i = 0; (*p)[i] > -1; i++)
82             fprintf(o->print, " %d", (*p)[i]);
83         fprintf(o->print, "\n");
84         return 1;
85     }
86     if (o->direction == ODR_DECODE)
87         *p = (int *)odr_malloc(o, OID_SIZE * sizeof(**p));
88     return ber_oidc(o, *p);
89 }