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