Client uses prefix query notation.
[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.9  1995-05-16 08:50:57  quinn
8  * License, documentation, and memory fixes
9  *
10  * Revision 1.8  1995/03/17  10:17:55  quinn
11  * Added memory management.
12  *
13  * Revision 1.7  1995/03/08  12:12:29  quinn
14  * Added better error checking.
15  *
16  * Revision 1.6  1995/03/01  08:40:56  quinn
17  * Smallish changes.
18  *
19  * Revision 1.5  1995/02/10  18:57:26  quinn
20  * More in the way of error-checking.
21  *
22  * Revision 1.4  1995/02/10  15:55:29  quinn
23  * Bug fixes, mostly.
24  *
25  * Revision 1.3  1995/02/09  15:51:49  quinn
26  * Works better now.
27  *
28  * Revision 1.2  1995/02/07  14:13:46  quinn
29  * Bug fixes.
30  *
31  * Revision 1.1  1995/02/03  17:04:38  quinn
32  * Initial revision
33  *
34  *
35  */
36
37 #include <odr.h>
38
39 /*
40  * Top level oid en/decoder.
41  * Returns 1 on success, 0 on error.
42  */
43 int odr_oid(ODR o, Odr_oid **p, int opt)
44 {
45     int res, cons = 0;
46
47     if (o->error)
48         return 0;
49     if (o->t_class < 0)
50     {
51         o->t_class = ODR_UNIVERSAL;
52         o->t_tag = ODR_OID;
53     }
54     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
55         return 0;
56     if (!res)
57         return opt;
58     if (cons)
59     {
60         o->error = OPROTO;
61         return 0;
62     }
63     if (o->direction == ODR_PRINT)
64     {
65         int i;
66
67         fprintf(o->print, "%sOID:", odr_indent(o));
68         for (i = 0; (*p)[i] > -1; i++)
69             fprintf(o->print, " %d", (*p)[i]);
70         fprintf(o->print, "\n");
71         return 1;
72     }
73     if (o->direction == ODR_DECODE)
74         *p = odr_malloc(o, ODR_OID_SIZE * sizeof(**p));
75     return ber_oidc(o, *p);
76 }