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