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