source: main/tags/2.25a/gsdl/packages/yaz/odr/ber_oct.c@ 21893

Last change on this file since 21893 was 1343, checked in by johnmcp, 24 years ago

Added the YAZ toolkit source to the packages directory (for z39.50 stuff)

  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
Line 
1/*
2 * Copyright (c) 1995-2000, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
5 *
6 * $Log$
7 * Revision 1.1 2000/08/03 03:11:15 johnmcp
8 * Added the YAZ toolkit source to the packages directory (for z39.50 stuff)
9 *
10 * Revision 1.16 2000/02/29 13:44:55 adam
11 * Check for config.h (currently not generated).
12 *
13 * Revision 1.15 2000/01/31 13:15:21 adam
14 * Removed uses of assert(3). Cleanup of ODR. CCL parser update so
15 * that some characters are not surrounded by spaces in resulting term.
16 * ILL-code updates.
17 *
18 * Revision 1.14 1999/11/30 13:47:11 adam
19 * Improved installation. Moved header files to include/yaz.
20 *
21 * Revision 1.13 1999/04/20 09:56:48 adam
22 * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
23 * Modified all encoders/decoders to reflect this change.
24 *
25 * Revision 1.12 1999/01/08 11:23:24 adam
26 * Added const modifier to some of the BER/ODR encoding routines.
27 *
28 * Revision 1.11 1998/02/11 11:53:34 adam
29 * Changed code so that it compiles as C++.
30 *
31 * Revision 1.10 1995/09/29 17:12:18 quinn
32 * Smallish
33 *
34 * Revision 1.9 1995/09/27 15:02:55 quinn
35 * Modified function heads & prototypes.
36 *
37 * Revision 1.8 1995/05/16 08:50:47 quinn
38 * License, documentation, and memory fixes
39 *
40 * Revision 1.7 1995/04/18 08:15:17 quinn
41 * Added dynamic memory allocation on encoding (whew). Code is now somewhat
42 * neater. We'll make the same change for decoding one day.
43 *
44 * Revision 1.6 1995/03/17 10:17:41 quinn
45 * Added memory management.
46 *
47 * Revision 1.5 1995/03/08 12:12:10 quinn
48 * Added better error checking.
49 *
50 * Revision 1.4 1995/02/10 15:55:28 quinn
51 * Bug fixes, mostly.
52 *
53 * Revision 1.3 1995/02/03 17:04:34 quinn
54 * *** empty log message ***
55 *
56 * Revision 1.2 1995/02/02 20:38:50 quinn
57 * Updates.
58 *
59 * Revision 1.1 1995/02/02 16:21:52 quinn
60 * First kick.
61 *
62 */
63#if HAVE_CONFIG_H
64#include <config.h>
65#endif
66
67#include <yaz/odr.h>
68
69int ber_octetstring(ODR o, Odr_oct *p, int cons)
70{
71 int res, len;
72 const unsigned char *base;
73 unsigned char *c;
74
75 switch (o->direction)
76 {
77 case ODR_DECODE:
78 if ((res = ber_declen(o->bp, &len)) < 0)
79 {
80 o->error = OPROTO;
81 return 0;
82 }
83 o->bp += res;
84 if (cons) /* fetch component strings */
85 {
86 base = o->bp;
87 while (odp_more_chunks(o, base, len))
88 if (!odr_octetstring(o, &p, 0, 0))
89 return 0;
90 return 1;
91 }
92 /* primitive octetstring */
93 if (len < 0)
94 {
95 o->error = OOTHER;
96 return 0;
97 }
98 if (len + 1 > p->size - p->len)
99 {
100 c = (unsigned char *)odr_malloc(o, p->size += len + 1);
101 if (p->len)
102 memcpy(c, p->buf, p->len);
103 p->buf = c;
104 }
105 if (len)
106 memcpy(p->buf + p->len, o->bp, len);
107 p->len += len;
108 o->bp += len;
109 return 1;
110 case ODR_ENCODE:
111 if ((res = ber_enclen(o, p->len, 5, 0)) < 0)
112 return 0;
113 if (p->len == 0)
114 return 1;
115 if (odr_write(o, p->buf, p->len) < 0)
116 return 0;
117 return 1;
118 case ODR_PRINT: return 1;
119 default: o->error = OOTHER; return 0;
120 }
121}
Note: See TracBrowser for help on using the repository browser.