Old versions of GILS tables
[yaz-moved-to-github.git] / odr / odr_oct.c
1 /*
2  * Copyright (c) 1995, Index Data
3  * See the file LICENSE for details.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: odr_oct.c,v $
7  * Revision 1.11  1995-09-29 17:12:25  quinn
8  * Smallish
9  *
10  * Revision 1.10  1995/09/27  15:02:59  quinn
11  * Modified function heads & prototypes.
12  *
13  * Revision 1.9  1995/05/16  08:50:56  quinn
14  * License, documentation, and memory fixes
15  *
16  * Revision 1.8  1995/03/17  10:17:54  quinn
17  * Added memory management.
18  *
19  * Revision 1.7  1995/03/08  12:12:27  quinn
20  * Added better error checking.
21  *
22  * Revision 1.6  1995/02/10  18:57:26  quinn
23  * More in the way of error-checking.
24  *
25  * Revision 1.5  1995/02/09  15:51:49  quinn
26  * Works better now.
27  *
28  * Revision 1.4  1995/02/07  14:13:46  quinn
29  * Bug fixes.
30  *
31  * Revision 1.3  1995/02/03  17:04:38  quinn
32  * *** empty log message ***
33  *
34  * Revision 1.2  1995/02/02  20:38:51  quinn
35  * Updates.
36  *
37  * Revision 1.1  1995/02/02  16:21:54  quinn
38  * First kick.
39  *
40  */
41
42 #include <odr.h>
43
44 /*
45  * Top level octet string en/decoder.
46  * Returns 1 on success, 0 on error.
47  */
48 int odr_octetstring(ODR o, Odr_oct **p, int opt)
49 {
50     int res, cons = 0;
51
52     if (o->error)
53         return 0;
54     if (o->t_class < 0)
55     {
56         o->t_class = ODR_UNIVERSAL;
57         o->t_tag = ODR_OCTETSTRING;
58     }
59     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
60         return 0;
61     if (!res)
62         return opt;
63     if (o->direction == ODR_PRINT)
64     {
65         fprintf(o->print, "%sOCTETSTRING(len=%d)\n", odr_indent(o), (*p)->len);
66         return 1;
67     }
68     if (o->direction == ODR_DECODE)
69     {
70         *p = odr_malloc(o, sizeof(Odr_oct));
71         (*p)->size= 0;
72         (*p)->len = 0;
73         (*p)->buf = 0;
74     }
75     if (ber_octetstring(o, *p, cons))
76         return 1;
77     o->error = OOTHER;
78     return 0;
79 }
80
81 /*
82  * Friendlier interface to octetstring.
83  */
84 int odr_cstring(ODR o, char **p, int opt)
85 {
86     int cons = 0, res;
87     Odr_oct *t;
88
89     if (o->error)
90         return 0;
91     if (o->t_class < 0)
92     {
93         o->t_class = ODR_UNIVERSAL;
94         o->t_tag = ODR_OCTETSTRING;
95     }
96     if ((res = ber_tag(o, p, o->t_class, o->t_tag, &cons, opt)) < 0)
97         return 0;
98     if (!res)
99         return opt;
100     if (o->direction == ODR_PRINT)
101     {
102         fprintf(o->print, "%s'%s'\n", odr_indent(o), *p);
103         return 1;
104     }
105     t = odr_malloc(o, sizeof(Odr_oct));   /* wrapper for octstring */
106     if (o->direction == ODR_ENCODE)
107     {
108         t->buf = (unsigned char *) *p;
109         t->size = t->len = strlen(*p);
110     }
111     else
112     {
113         t->size= 0;
114         t->len = 0;
115         t->buf = 0;
116     }
117     if (!ber_octetstring(o, t, cons))
118         return 0;
119     if (o->direction == ODR_DECODE)
120     {
121         *p = (char *) t->buf;
122         *(*p + t->len) = '\0';  /* ber_octs reserves space for this */
123     }
124     return 1;
125 }