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