Initial revision
[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.1  1995-02-03 17:04:38  quinn
8  * Initial revision
9  *
10  *
11  */
12
13 #include <odr.h>
14
15 /*
16  * Top level oid en/decoder.
17  * Returns 1 on success, 0 on error.
18  */
19 int odr_oid(ODR o, Odr_oid **p, int opt)
20 {
21     int res, cons = 0;
22
23     if (o->t_class < 0)
24     {
25         o->t_class = ODR_UNIVERSAL;
26         o->t_tag = ODR_OID;
27     }
28     if ((res = ber_tag(o, *p, o->t_class, o->t_tag, &cons)) < 0)
29         return 0;
30     if (!res || cons)
31     {
32         *p = 0;
33         return opt;
34     }
35     if (o->direction == ODR_PRINT)
36     {
37         fprintf(o->print, "OID\n");
38         return 1;
39     }
40     if (o->direction == ODR_DECODE && !*p)
41         *p = nalloc(o, ODR_OID_SIZE);
42     return ber_oid(o, *p);
43 }