More in the way of error-checking.
[yaz-moved-to-github.git] / odr / odr_oid.c
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_oid.c,v $
7  * Revision 1.5  1995-02-10 18:57:26  quinn
8  * More in the way of error-checking.
9  *
10  * Revision 1.4  1995/02/10  15:55:29  quinn
11  * Bug fixes, mostly.
12  *
13  * Revision 1.3  1995/02/09  15:51:49  quinn
14  * Works better now.
15  *
16  * Revision 1.2  1995/02/07  14:13:46  quinn
17  * Bug fixes.
18  *
19  * Revision 1.1  1995/02/03  17:04:38  quinn
20  * Initial revision
21  *
22  *
23  */
24
25 #include <odr.h>
26
27 /*
28  * Top level oid en/decoder.
29  * Returns 1 on success, 0 on error.
30  */
31 int odr_oid(ODR o, Odr_oid **p, int opt)
32 {
33     int res, cons = 0;
34
35     if (o->t_class < 0)
36     {
37         o->t_class = ODR_UNIVERSAL;
38         o->t_tag = ODR_OID;
39     }
40     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons)) < 0)
41         return 0;
42     if (!res || cons)
43         return opt;
44     if (o->direction == ODR_PRINT)
45     {
46         int i;
47
48         fprintf(o->print, "%sOID:", odr_indent(o));
49         for (i = 0; (*p)[i] > -1; i++)
50             fprintf(o->print, " %d", (*p)[i]);
51         fprintf(o->print, "\n");
52         return 1;
53     }
54     if (o->direction == ODR_DECODE)
55         *p = nalloc(o, ODR_OID_SIZE * sizeof(**p));
56     return ber_oid(o, *p);
57 }