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 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
// -*- Mode: C++; -*-
// Package : omniORB
// tcDescriptor.h Created on: 9/98
// Author : James Weatherall (jnw)
//
// Copyright (C) 1996-1999 AT&T Laboratories Cambridge
//
// This file is part of the omniORB library
//
// The omniORB library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA
//
//
// Description:
// *** PROPRIETORY INTERFACE ***
//
// TypeCode-oriented data parser.
//
// The tcParser class is initialised with a TypeCode and
// a MemBufferedStream. The MemBufferedStream is used to
// store data of type described by the associated TypeCode.
//
// The operations <copyTo> and <copyFrom> are used to
// insert and extract the data from the MemBufferedStream.
// Overloaded versions are provided to marshal the data
// into and out of Mem and Net BufferedStreams - this is
// used for (un)marshalling values of type Any.
//
// In addition the data passed into and out of the internal
// MemBufferedStream may be described by a tcDescriptor.
// The user of the tcParser will setup a tcDescriptor to
// describe where the data to be copied to/from the
// MemBufferedStream is in memory. For simple types this is
// a pointer to the location in memory. For more complex
// types the tcDescriptor provides call-backs to provide
// additional information such as the length and data of
// a string, or to create a tcDescriptor for the members
// of a struct.
//
#ifndef __TCDESCRIPTOR_H__
#define __TCDESCRIPTOR_H__
#include <omniORB3/CORBA.h>
// Forward declarations
union tcDescriptor;
// Complex type descriptors
struct tcObjrefDesc;
// Constructed type descriptors
struct tcUnionDesc;
struct tcStructDesc;
struct tcSequenceDesc;
struct tcArrayDesc;
//////////////////////////////////////////////////////////////////////
////////////////////// TYPECODE DATA DESCRIPTORS /////////////////////
//////////////////////////////////////////////////////////////////////
//
// NB: tcDescriptor storage is managed by whoever created the
// descriptor (and will usually be allocated on the stack).
// Data storage is always handled by the calling application.
//
// Each descriptor class must provide accessor functions
// and is provided with a void* which must be initialised
// to point to the implementation of the data.
// When accessor functions are called, the relevant
// tc***Desc structure is also passed, through which the
// void * storage pointer may then be accessed.
// BASIC DESCRIPTOR CLASSES
//
// For types using these descriptor classes, the data should
// be filled in before the class is passed into the
// tcDescriptor.
//////////////
// tcObjref //
//////////////
typedef void (*tcObjrefSetReferenceFn)(tcObjrefDesc*, CORBA::Object_ptr);
typedef CORBA::Object_ptr (*tcObjrefGetReferenceFn)(tcObjrefDesc*);
struct tcObjrefDesc
{
// Set the object reference from a supplied Object_ptr
tcObjrefSetReferenceFn setObjectPtr;
// Retrieve the Object_ptr version of the reference
tcObjrefGetReferenceFn getObjectPtr;
// Data members for use only in the callbacks
void * opq_objref;
CORBA::Boolean opq_release;
};
// COMPLEX DESCRIPTOR CLASSES
//
// These classes must have their methods overridden to
// retrieve tcDescriptors for their elements.
/////////////
// tcUnion //
/////////////
typedef void (*tcUnionGetDiscriminatorFn)
(tcUnionDesc*, tcDescriptor&, CORBA::PR_unionDiscriminator&);
typedef void (*tcUnionSetDiscriminatorFn)
(tcUnionDesc*, CORBA::PR_unionDiscriminator, int is_default);
typedef CORBA::Boolean (*tcUnionGetValueDescFn)
(tcUnionDesc*, tcDescriptor& data_desc);
// This type is used to allocate storage for the maximum
// possible size of discriminator.
union tcUnionDiscriminatorType
{
CORBA::Long u_long;
CORBA::Short u_short;
CORBA::ULong u_ulong;
CORBA::UShort u_ushort;
CORBA::Char u_char;
CORBA::Boolean u_boolean;
CORBA::ULong u_enum;
};
struct tcUnionDesc
{
// This callback must fill in the descriptor for
// the discriminator value, and also pass back the
// discriminator value itself.
tcUnionGetDiscriminatorFn getDiscriminator;
// Parser passes descriptor indicating the discriminator
// value it wishes the union to have.
tcUnionSetDiscriminatorFn setDiscriminator;
// Callback must fill in the descriptor for the
// data member currently selected. If the current
// value of the discriminant is invalid, returns
// 0, otherwise 1.
tcUnionGetValueDescFn getValueDesc;
void * opq_union;
};
//////////////
// tcStruct //
//////////////
typedef CORBA::Boolean (*tcStructGetMemberDescFn)
(tcStructDesc *, CORBA::ULong, tcDescriptor&);
typedef CORBA::ULong (*tcStructGetMemberCountFn)
(tcStructDesc *);
struct tcStructDesc
{
tcStructGetMemberDescFn getMemberDesc;
tcStructGetMemberCountFn getMemberCount;
void * opq_struct;
};
////////////////
// tcSequence //
////////////////
typedef CORBA::Boolean (*tcSeqGetElementDescFn)
(tcSequenceDesc *, CORBA::ULong, tcDescriptor&, CORBA::ULong&);
typedef CORBA::ULong (*tcSeqGetElementCountFn)
(tcSequenceDesc *);
typedef void (*tcSeqSetElementCountFn)
(tcSequenceDesc *, CORBA::ULong);
struct tcSequenceDesc
{
// Get a descriptor for a particular element
tcSeqGetElementDescFn getElementDesc;
// Get the sequence length
tcSeqGetElementCountFn getElementCount;
// Set the sequence length
tcSeqSetElementCountFn setElementCount;
void * opq_seq;
};
/////////////
// tcArray //
/////////////
typedef CORBA::Boolean (*tcArrayGetElementDescFn)
(tcArrayDesc*, CORBA::ULong, tcDescriptor&, CORBA::ULong&);
struct tcArrayDesc
{
tcArrayGetElementDescFn getElementDesc;
void * opq_array;
};
//////////////////////////////////////////////////////////////////////
//////////////////////////// tcDescriptor ////////////////////////////
//////////////////////////////////////////////////////////////////////
union tcDescriptor {
// Pointer used in streaming tcDescriptors
void * p_streamdata;
// BASIC types
// appendItem() will read in the data pointed to
// fetchItem() will overwrite the data pointed to with new data
CORBA::Short* p_short;
CORBA::Long* p_long;
CORBA::UShort* p_ushort;
CORBA::ULong* p_ulong;
CORBA::Float* p_float;
CORBA::Double* p_double;
CORBA::Boolean* p_boolean;
CORBA::Char* p_char;
CORBA::Octet* p_octet;
CORBA::ULong* p_enum;
CORBA::Any* p_any;
// COMPLEX types
// appendItem() will read in the objects from the _ptrs pointed to
// fetchItem() will overwrite the _ptr to point to a new object -
// if the _ptr is not nil, it will be released
CORBA::TypeCode_member* p_TypeCode;
// appendItem() will read in the objects from the _ptrs pointed to
// fetchItem() will overwrite the _ptr to point to a new object -
// if the _ptr still points to valid storage then that storage is lost
CORBA::PrincipalID* p_Principal;
// Note: release is now passed by value since it is no longer allowed to
// change the state of release to 1.
// appendItem() will read in the string from string pointer
// fetchItem() will overwrite the string pointer to a new string -
// if( *ptr && release ) existing string will be freed.
// If new memory is allocated for the string and release is not 1 then it is
// the callers responsibility to free.
struct {
char** ptr;
_CORBA_Boolean release;
} p_string;
// CONSTRUCTED types
// These types have manager classes to help handle them, since their
// internal details are not generally known to the tcParser
tcObjrefDesc p_objref;
tcUnionDesc p_union;
tcStructDesc p_struct;
tcStructDesc p_except;
tcSequenceDesc p_sequence;
tcArrayDesc p_array;
};
//////////////////////////////////////////////////////////////////////
////////////////////// Data Descriptor Functions /////////////////////
//////////////////////////////////////////////////////////////////////
//
// The _0RL_tcParser_buildDesc(tcDescriptor &desc, T &data) function is
// overloaded for each datatype, to fill out the supplied descriptor with
// the information required by the tcParser to parse the data.
// These functions are required by the Any marshalling stubs generated by
// the IDL compiler, to avoid having to make them fill out descriptors
// manually.
//
inline void
_0RL_buildDesc_cboolean(tcDescriptor &desc, const CORBA::Boolean& data)
{
desc.p_boolean = (CORBA::Boolean*)&data;
}
inline void
_0RL_buildDesc_coctet(tcDescriptor &desc, const CORBA::Octet& data)
{
desc.p_octet = (CORBA::Octet*)&data;
}
inline void
_0RL_buildDesc_cchar(tcDescriptor &desc, const CORBA::Char &data)
{
desc.p_char = (CORBA::Char *)&data;
}
inline void
_0RL_buildDesc_cshort(tcDescriptor &desc, const CORBA::Short &data)
{
desc.p_short = (CORBA::Short *)&data;
}
inline void
_0RL_buildDesc_cunsigned_pshort(tcDescriptor &desc, const CORBA::UShort &data)
{
desc.p_ushort = (CORBA::UShort *)&data;
}
inline void
_0RL_buildDesc_clong(tcDescriptor &desc, const CORBA::Long &data)
{
desc.p_long = (CORBA::Long *)&data;
}
inline void
_0RL_buildDesc_cunsigned_plong(tcDescriptor &desc, const CORBA::ULong &data)
{
desc.p_ulong = (CORBA::ULong *)&data;
}
#if !defined(NO_FLOAT)
inline void
_0RL_buildDesc_cfloat(tcDescriptor &desc, const CORBA::Float &data)
{
desc.p_float = (CORBA::Float *)&data;
}
inline void
_0RL_buildDesc_cdouble(tcDescriptor &desc, const CORBA::Double &data)
{
desc.p_double = (CORBA::Double *)&data;
}
#endif
/////////
// Any //
/////////
inline void
_0RL_buildDesc_cany(tcDescriptor &desc, const CORBA::Any& data)
{
desc.p_any = (CORBA::Any *)&data;
}
///////////////////
// String //
///////////////////
inline void
_0RL_buildDesc_cstring(tcDescriptor &desc,_CORBA_String_member const& data)
{
desc.p_string.ptr = (char**)&data._ptr;
desc.p_string.release
= (data._ptr==omni::empty_string) ? 0 : 1;
}
inline void
_0RL_buildDesc_cstring(tcDescriptor &desc,_CORBA_String_element const& data)
{
desc.p_string.ptr = (char**) &data.pd_data;
desc.p_string.release = data.pd_rel;
}
///////////////////
// Object_member //
///////////////////
extern void
_0RL_tcParser_objref_setObjectPtr(tcObjrefDesc* desc, CORBA::Object_ptr ptr);
extern CORBA::Object_ptr
_0RL_tcParser_objref_getObjectPtr(tcObjrefDesc* desc);
inline void
_0RL_buildDesc_cCORBA_mObject(tcDescriptor& desc,
const CORBA::Object_tcDesc_arg& d)
{
desc.p_objref.opq_objref = (void*) &d._data;
desc.p_objref.opq_release = d._rel;
desc.p_objref.setObjectPtr = _0RL_tcParser_objref_setObjectPtr;
desc.p_objref.getObjectPtr = _0RL_tcParser_objref_getObjectPtr;
}
/////////////////////
// TypeCode_member //
/////////////////////
inline void
_0RL_buildDesc_cTypeCode(tcDescriptor& desc, const CORBA::TypeCode_member& data)
{
desc.p_TypeCode = (CORBA::TypeCode_member*) &data;
}
#endif // __TCDESCRIPTOR_H__
|