1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
|
// This may look like C, but it's really -*- C++ -*-
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// xdr.h
//
// = DESCRIPTION
//
// XDR stream interface and implementation (partially implemented)
//
// = AUTHOR
// Copyright 1994-1995 by Sun Microsystems, Inc.
//
// ============================================================================
#ifndef _xdr_hh
#define _xdr_hh
#include <sys/types.h>
#include <netinet/in.h>
// Define on systems that fully support exceptions ... excluding
// some very common platforms like G++ and VC++ 2.2
//
// #define THROWS_NOTHING throw()
//
// On DevPro's 4.0.1a compilers, null throw specs carry a big
// performance penalty: slower by about 25% here. Disable!!
#define THROWS_NOTHING
class XDR_stream
// = TITLE
// XXX as of 3-Nov-95 XDR_stream should only be relied on to marshal
// the simplest primitives ... not objrefs, typecodes, etc. Also, the
// handling of sequences of chars/octets/shorts/wchars is wrong.
{
public:
enum
{
STANDARD_BUFSIZE = 4096,
// ~3 enet packets with TCP
BUFFER_LEN = 1 + (STANDARD_BUFSIZE / sizeof (CORBA_Long))
};
XDR_stream (int _fd) THROWS_NOTHING
: fd (_fd)
{
index = 0;
decode_flag = CORBA_B_FALSE;
max_index = 0;
is_last_frag = CORBA_B_FALSE;
}
~XDR_stream (void) THROWS_NOTHING {}
// Write the last bit of an encoded message ... or tell if we've
// decoded all the data in an encoded message we're processing.
//
// NOTE: these assume the mode is appropriate for these operations.
CORBA_Boolean output_msg_at_end (void) THROWS_NOTHING;
CORBA_Boolean input_msg_at_end (void) THROWS_NOTHING
{ return is_last_frag && index == max_index; }
// Tell if we're decoding or encoding data.
CORBA_Boolean is_decoding (void) THROWS_NOTHING
{ return decode_flag; }
CORBA_Boolean is_encoding (void) THROWS_NOTHING
{ return !is_decoding (); }
// private ... iff there's a routine to set it!
CORBA_Boolean decode_flag;
// true iff decoding
// ENCODING SUPPORT ...
CORBA_Boolean put32 (CORBA_Long word) THROWS_NOTHING;
CORBA_Boolean put_byte (char c) THROWS_NOTHING
{ return put32 (c); }
CORBA_Boolean put_short (CORBA_Short s) THROWS_NOTHING
{ return put32 (s); }
CORBA_Boolean put_long (CORBA_Long l) THROWS_NOTHING
{ return put32 (l); }
CORBA_Boolean put_longlong (const CORBA_LongLong &ll)
THROWS_NOTHING;
inline CORBA_Boolean put_char (CORBA_Char c) THROWS_NOTHING
{ return put_byte ((char) c); }
inline CORBA_Boolean put_wchar (wchar_t wc) THROWS_NOTHING
{
// "wchar_t" isn't always 2 bytes, such systems might need further
// conversion (e.g. hosts with multibyte characters native, rather
// than UNICODE)
return put_short ((short)wc);
}
inline CORBA_Boolean put_boolean (CORBA_Boolean b) THROWS_NOTHING
{ return put_byte ((char) (b != CORBA_B_FALSE)); }
inline CORBA_Boolean put_octet (CORBA_Octet o) THROWS_NOTHING
{ return put_byte ((char) o); }
inline CORBA_Boolean put_ushort (CORBA_UShort s) THROWS_NOTHING
{ return put_short ((CORBA_Short) s); }
inline CORBA_Boolean put_ulong (CORBA_ULong l) THROWS_NOTHING
{ return put_long ((CORBA_Long) l); }
inline CORBA_Boolean put_ulonglong (const CORBA_ULongLong &ll)
THROWS_NOTHING
{ return put_longlong ((CORBA_LongLong &) ll); }
inline CORBA_Boolean put_float (float f) THROWS_NOTHING
{ return put_long (*(CORBA_Long *) &f); }
inline CORBA_Boolean put_double (const double &d) THROWS_NOTHING
{ return put_longlong (*(CORBA_LongLong *) &d); }
CORBA_Boolean put_longdouble (const CORBA_LongDouble &ld)
THROWS_NOTHING;
//
// marshaling interpreter ... 'context' really points to a stream.
//
static CORBA_TypeCode::traverse_status
encoder (CORBA_TypeCode_ptr tc,
const void *data,
const void *,
void *context,
CORBA_Environment &env) THROWS_NOTHING;
// DECODING SUPPORT
//
// XXX fix lack of error reporting here !!
CORBA_Long get32 (void) THROWS_NOTHING
{
if (index <= max_index
|| read_frag () == CORBA_B_TRUE)
return ntohl (buffer [index++]);
else
return 0;
}
CORBA_Boolean get_byte (char &c) THROWS_NOTHING
{
c = (char) get32();
return CORBA_B_TRUE;
}
CORBA_Boolean get_short (CORBA_Short &s) THROWS_NOTHING
{
s = (short) get32();
return CORBA_B_TRUE;
}
CORBA_Boolean get_long (CORBA_Long &l) THROWS_NOTHING
{
l = get32();
return CORBA_B_TRUE;
}
CORBA_Boolean get_longlong (CORBA_LongLong &ll)
THROWS_NOTHING;
inline CORBA_Boolean get_char (CORBA_Char &o) THROWS_NOTHING
{ return get_byte ((char &) o); }
inline CORBA_Boolean get_wchar (wchar_t &wc) THROWS_NOTHING
{
short s;
// wchar_t isn't always "short"
CORBA_Boolean retval = get_short (s);
wc = s;
return retval;
}
inline CORBA_Boolean get_boolean (CORBA_Boolean &b) THROWS_NOTHING
{
CORBA_Char c;
// CORBA_Boolean is rarely 'char'
CORBA_Boolean retval = get_char (c);
b = (c == 1);
return retval;
}
inline CORBA_Boolean get_octet (CORBA_Octet &o) THROWS_NOTHING
{ return get_byte ((char &) o); }
inline CORBA_Boolean get_ushort (CORBA_UShort &s) THROWS_NOTHING
{ return get_short ((short&) s); }
inline CORBA_Boolean get_ulong (CORBA_ULong &l) THROWS_NOTHING
{ return get_long ((CORBA_Long &) l); }
inline CORBA_Boolean get_ulonglong (const CORBA_ULongLong &ull)
THROWS_NOTHING
{ return get_longlong ((CORBA_LongLong &) ull); }
inline CORBA_Boolean get_float (float &f) THROWS_NOTHING
{ return get_long ((CORBA_Long &) f); }
inline CORBA_Boolean get_double (double &d) THROWS_NOTHING
{ return get_longlong ((CORBA_LongLong &) d); }
CORBA_Boolean get_longdouble (CORBA_LongDouble &ld) THROWS_NOTHING;
// Unmarshaling interpreter ... 'context' really points to a buffer.
static CORBA_TypeCode::traverse_status
decoder (CORBA_TypeCode_ptr tc,
const void *data,
const void *,
void *context,
CORBA_Environment &env) THROWS_NOTHING;
private:
// Low level I/O primitives ... flush a fragment (maybe as the last
// one), read a fragment in.
CORBA_Boolean flush_frag (CORBA_Boolean is_last) THROWS_NOTHING;
CORBA_Boolean read_frag (void) THROWS_NOTHING;
// The actual buffer and the index to the current entry. (Next
// buffer entry read/written is index+1 ...)
CORBA_Long buffer [BUFFER_LEN];
u_int index;
// The (TCP) stream on which this writes its message fragments.
const int fd;
// Used when reading fragments ... max_index controls where the end
// of the fragment is recorded to be, and is_last_frag says if it's
// OK to read_frag() to get the next fragment.
//
// To move to the next message in the stream, create a new XDR
// stream (e.g. on the stack).
CORBA_Long max_index;
CORBA_Boolean is_last_frag;
//
// Two operations not supported by this class.
//
XDR_stream (const XDR_stream &);
XDR_stream &operator = (const XDR_stream &);
};
inline CORBA_Boolean
XDR_stream::output_msg_at_end (void) THROWS_NOTHING
{
return flush_frag (CORBA_B_TRUE);
}
inline CORBA_Boolean
XDR_stream::put32 (CORBA_Long word) THROWS_NOTHING
{
if (index < (BUFFER_LEN - 1)
|| (flush_frag (CORBA_B_FALSE) == CORBA_B_TRUE))
{
buffer [++index] = htonl (word);
return CORBA_B_TRUE;
}
else
return CORBA_B_FALSE;
}
#endif // _xdr_hh
|