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