diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-10 02:02:45 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-03-10 02:02:45 +0000 |
commit | 239019fc7bfb4c3d7b7842f1bfe731c14a2e194d (patch) | |
tree | 659b03f52ac9d0a700866780164d54d18d993a2a | |
parent | 3636664f93c56d2777afd94cdd2c85ac7f464c68 (diff) | |
download | ATCD-239019fc7bfb4c3d7b7842f1bfe731c14a2e194d.tar.gz |
* tao/Makefile:
* tao/ORB.cpp:
* tao/TAO.dsp:
* tao/TAO4.mak:
* tao/TAO_Static.dsp:
* tao/Typecode.cpp:
* tao/tao.bld:
Updated these files to use the newly renamed CDR_Interpreter classes
and files.
* tao/IIOP_Interpreter.h
* tao/IIOP_Interpreter.cpp
Renamed these files to:
* tao/CDR_Interpreter.h
* tao/CDR_Interpreter.cpp
All references to IIOP_Interpreter have been changed to
CDR_Interpreter since "IIOP_Interpreter" is no longer an accurate
name for the classes and files in question.
-rw-r--r-- | TAO/ChangeLog-99c | 25 | ||||
-rw-r--r-- | TAO/tao/CDR_Interpreter.cpp | 1211 | ||||
-rw-r--r-- | TAO/tao/CDR_Interpreter.h | 261 | ||||
-rw-r--r-- | TAO/tao/Makefile | 10 | ||||
-rw-r--r-- | TAO/tao/ORB.cpp | 4 | ||||
-rw-r--r-- | TAO/tao/TAO.dsp | 232 | ||||
-rw-r--r-- | TAO/tao/TAO4.mak | 104 | ||||
-rw-r--r-- | TAO/tao/TAO_Static.dsp | 4 | ||||
-rw-r--r-- | TAO/tao/Typecode.cpp | 16 |
9 files changed, 1682 insertions, 185 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c index a167f65b129..fdcfc59e702 100644 --- a/TAO/ChangeLog-99c +++ b/TAO/ChangeLog-99c @@ -1,3 +1,28 @@ +Tue Mar 9 20:01:40 1999 Ossama Othman <othman@cs.wustl.edu> + + * tao/Makefile: + * tao/ORB.cpp: + * tao/TAO.dsp: + * tao/TAO4.mak: + * tao/TAO_Static.dsp: + * tao/Typecode.cpp: + * tao/tao.bld: + + Updated these files to use the newly renamed CDR_Interpreter classes + and files. + + * tao/IIOP_Interpreter.h + * tao/IIOP_Interpreter.cpp + + Renamed these files to: + + * tao/CDR_Interpreter.h + * tao/CDR_Interpreter.cpp + + All references to IIOP_Interpreter have been changed to + CDR_Interpreter since "IIOP_Interpreter" is no longer an accurate + name for the classes and files in question. + Tue Mar 9 19:58:54 1999 Nanbor Wang <nanbor@cs.wustl.edu> * tao/POA.{h,cpp}: diff --git a/TAO/tao/CDR_Interpreter.cpp b/TAO/tao/CDR_Interpreter.cpp new file mode 100644 index 00000000000..32f62c7b42b --- /dev/null +++ b/TAO/tao/CDR_Interpreter.cpp @@ -0,0 +1,1211 @@ +// $Id$ + +// @(#)interp.cpp 1.4 95/11/04 +// Copyright 1994-1995 by Sun Microsystems Inc. +// All Rights Reserved + +// We need to include Sequence.h and Sequence_T.h before the +// CDR_Interpreter to workaround a Greenhills (1.8.8 and 1.8.9) +// compiler bug. +#include "tao/Sequence.h" +#include "tao/Sequence_T.h" +#include "tao/CDR_Interpreter.h" +#include "tao/Any.h" +#include "tao/varout.h" +#include "tao/CDR.h" +#include "tao/Typecode.h" +#include "tao/Environment.h" +#include "tao/Union.h" + +ACE_RCSID(tao, CDR_Interpreter, "$Id$") + +TAO_CDR_Interpreter::Table_Element +TAO_CDR_Interpreter::table_[CORBA::TC_KIND_COUNT] = +{ + { 0, 1, 0 }, // CORBA::tk_null + { 0, 1, 0 }, // CORBA::tk_void + + { 0, 1, 0, 0 }, // CORBA::tk_short + { 0, 1, 0, 0 }, // CORBA::tk_long + { 0, 1, 0, 0 }, // CORBA::tk_ushort + { 0, 1, 0, 0 }, // CORBA::tk_ulong + + { 0, 1, 0, 0 }, // CORBA::tk_float + { 0, 1, 0, 0 }, // CORBA::tk_double + + { 0, 1, 0, 0 }, // CORBA::tk_boolean + { 0, 1, 0, 0 }, // CORBA::tk_char + { 0, 1, 0, 0 }, // CORBA::tk_octet + { 0, 1, 0, 0 }, // CORBA::tk_any + + { 0, 1, 0, 0 }, // CORBA::tk_TypeCode + { 0, 1, 0, 0 }, // CORBA::tk_Principal + { 0, 1, 0, skip_encapsulation }, // CORBA::tk_objref + + { 0, 1, calc_struct_attributes, 0 }, // CORBA::tk_struct + { 0, 1, calc_union_attributes, 0 }, // CORBA::tk_union + + { 0, 1, 0, skip_encapsulation }, // CORBA::tk_enum + { 0, 1, 0, skip_long }, // CORBA::tk_string +#if defined (TAO_NO_COPY_OCTET_SEQUENCES) + { 0, 1, calc_seq_attributes, 0 }, // CORBA::tk_sequence +#else + { 0, 1, 0, skip_encapsulation }, // CORBA::tk_sequence +#endif + { 0, 1, calc_array_attributes, 0 }, // CORBA::tk_array + + // = Two TCKind values added in 94-11-7 + { 0, 1, calc_alias_attributes, 0 }, // CORBA::tk_alias + { 0, 1, calc_exception_attributes, 0 }, // CORBA::tk_except + + // = Five extended IDL data types, defined in Appendix A of 94-9-32 + // but here with different numeric TCKind codes. These types + // represent extensions to CORBA (specifically, to IDL) which are + // not yet standardized. + + { 0, 1, 0, 0 }, // CORBA::tk_longlong + { 0, 1, 0, 0 }, // CORBA::tk_ulonglong + { 0, 1, 0, 0 }, // CORBA::tk_longdouble + { 0, 1, 0, 0 }, // CORBA::tk_wchar + { 0, 1, 0, skip_long } // CORBA::tk_wstring +}; + +// Runtime initialization of the table above; note that this compiles +// down to a set of assignment statements, with the real work done by +// the C++ compiler when this file gets compiled. +// +// "Natural alignment" is a policy that the processor controls the +// alignment of data based on its type. There's variation; some CPUs +// have a maximum alignment requirement of two or four bytes, others +// have some type-specific exceptions to the normal "alignment == +// size" rule. +// +// "Fixed" alignment ignores data type when establishing alignment; +// not all processors support such policies, and those which do often +// pay a cost to do so (viz. RISC/CISC discussions). The primary +// example of an OS family that chose "fixed" alignment is Microsoft's +// x86 systems, which normally align on one byte boundaries to promote +// data space efficiency. +// +// NOTE: typical PC compiler options let you specify other alignments, +// but none are "natural". Also, they don't apply consistently to all +// data types. Change the "one byte" assumption with extreme caution! +// And make sure all header files (e.g. generated by an IDL compiler) +// make sure that alignment of IDL-defined data types is consistent +// (one byte). + +enum TCKIND +{ + tk_null = 0, + tk_void = 1, + tk_short = 2, + tk_long = 3, + tk_ushort = 4, + tk_ulong = 5, + tk_float = 6, + tk_double = 7, + tk_boolean = 8, + tk_char = 9, + tk_octet = 10, + tk_any = 11, + tk_TypeCode = 12, + tk_Principal = 13, + tk_objref = 14, + tk_struct = 15, + tk_union = 16, + tk_enum = 17, + tk_string = 18, + tk_sequence = 19, + tk_array = 20, + tk_alias = 21, // 94-11-7 + tk_except = 22, // 94-11-7 + + // these five are OMG-IDL data type extensions + tk_longlong = 23, // 94-9-32 Appendix A (+ 2) + tk_ulonglong = 24, // 94-9-32 Appendix A (+ 2) + tk_longdouble = 25, // 94-9-32 Appendix A (+ 2) + tk_wchar = 26, // 94-9-32 Appendix A (+ 2) + tk_wstring = 27, // 94-9-32 Appendix A (+ 2) + + // This symbol is not defined by CORBA 2.0. It's used to speed up + // dispatch based on TCKind values, and lets many important ones + // just be table lookups. It must always be the last enum value!! + + TC_KIND_COUNT +}; + +#if defined (TAO_HAS_FIXED_BYTE_ALIGNMENT) +// Have a bogus one +#define declare_entry(x,t) struct align_struct_ ## t { } + +#define setup_entry(x,t) \ + { \ + TAO_CDR_Interpreter::table_ [t].size_ = sizeof (x); \ + TAO_CDR_Interpreter::table_ [t].alignment_ = 1; \ + } +#else /* ! TAO_HAS_FIXED_BYTE_ALIGNMENT */ + // unix, ACE_WIN32, VXWORKS, __Lynx__, at least + #define declare_entry(x,t) \ + struct align_struct_ ## t \ + { \ + x one; \ + char dummy [TAO_MAXIMUM_NATIVE_TYPE_SIZE + 1 - sizeof(x)]; \ + x two; \ + } + + #define setup_entry(x,t) \ + { \ + align_struct_ ## t align; \ + TAO_CDR_Interpreter::table_ [t].size_ = sizeof (x); \ + TAO_CDR_Interpreter::table_ [t].alignment_ = \ + (char *) &align.two - (char *) &align.one - TAO_MAXIMUM_NATIVE_TYPE_SIZE; \ + } +#endif /* ! TAO_HAS_FIXED_BYTE_ALIGNMENT */ + +// Fills in fixed size and alignment values. + +declare_entry (CORBA::Short, tk_short); +declare_entry (CORBA::Long, tk_long); +declare_entry (CORBA::UShort, tk_ushort); +declare_entry (CORBA::ULong, tk_ulong); + +declare_entry (CORBA::Float, tk_float); +declare_entry (CORBA::Double, tk_double); + +declare_entry (CORBA::Boolean, tk_boolean); +declare_entry (CORBA::Char, tk_char); +declare_entry (CORBA::Octet, tk_octet); +declare_entry (CORBA::Any, tk_any); + +declare_entry (CORBA::TypeCode_ptr, tk_TypeCode); +declare_entry (CORBA::Principal_ptr, tk_Principal); +declare_entry (TAO_Object_Field_T<CORBA_Object>, tk_objref); + +declare_entry (CORBA::String, tk_string); +#if !defined (TAO_NO_COPY_OCTET_SEQUENCES) +declare_entry (TAO_opaque, tk_sequence); +#endif + +declare_entry (CORBA::LongLong, tk_longlong); +declare_entry (CORBA::ULongLong, tk_ulonglong); +declare_entry (CORBA::LongDouble, tk_longdouble); +declare_entry (CORBA::WChar, tk_wchar); +declare_entry (CORBA::WString, tk_wstring); + +void +TAO_CDR_Interpreter::init (void) +{ + setup_entry (CORBA::Short, tk_short); + setup_entry (CORBA::Long, tk_long); + setup_entry (CORBA::UShort, tk_ushort); + setup_entry (CORBA::ULong, tk_ulong); + + setup_entry (CORBA::Float, tk_float); + setup_entry (CORBA::Double, tk_double); + + setup_entry (CORBA::Boolean, tk_boolean); + setup_entry (CORBA::Char, tk_char); + setup_entry (CORBA::Octet, tk_octet); + setup_entry (CORBA::Any, tk_any); + + setup_entry (CORBA::TypeCode_ptr, tk_TypeCode); + setup_entry (CORBA::Principal_ptr, tk_Principal); + setup_entry (CORBA::Object_ptr, tk_objref); + + enum generic_enum {a, b, c, d}; + + // XXX workaround for G++ 2.6.3 bug + // setup_entry (generic_enum, CORBA::tk_enum); + TAO_CDR_Interpreter::table_ [CORBA::tk_enum].size_ = + sizeof (generic_enum); + TAO_CDR_Interpreter::table_ [CORBA::tk_enum].alignment_ = + sizeof (generic_enum); + + setup_entry (CORBA::String, tk_string); +#if !defined (TAO_NO_COPY_OCTET_SEQUENCES) + setup_entry (TAO_opaque, tk_sequence); +#endif /* defined (TAO_NO_COPY_OCTET_SEQUENCES) */ + + setup_entry (CORBA::LongLong, tk_longlong); + setup_entry (CORBA::ULongLong, tk_ulonglong); + setup_entry (CORBA::LongDouble, tk_longdouble); + setup_entry (CORBA::WChar, tk_wchar); + setup_entry (CORBA::WString, tk_wstring); +} + +#undef setup + +CORBA::Boolean +TAO_CDR_Interpreter::skip_encapsulation (TAO_InputCDR *stream) +{ + return stream->skip_string (); +} + +CORBA::Boolean +TAO_CDR_Interpreter::skip_long (TAO_InputCDR *stream) +{ + CORBA::ULong scratch; + + return stream->read_ulong (scratch); +} + +// For a given typecode, figure out its size and alignment needs. +// This version is used mostly when traversing other typecodes, and +// follows these rules: +// +// - Some typecodes are illegal (can't be nested inside others); +// - Indirections are allowed; +// - The whole typecode (including TCKind enum) is in the stream +// +// When the routine returns, the stream has skipped this TypeCode. +// +// "size" is returned, "alignment" is an 'out' parameter. If it is +// non-null, "tc" is initialized to hold the contents of the TypeCode; +// it depends on the contents of the original stream to be valid. +// +// XXX explore splitting apart returning the size/alignment data and +// the TypeCode initialization; union traversal would benefit a bit, +// but it would need more than that to make it as speedy as struct +// traversal. + +size_t +TAO_CDR_Interpreter::calc_nested_size_and_alignment_i (CORBA::TypeCode_ptr tc, + TAO_InputCDR *stream, + CORBA::TCKind kind, + size_t &alignment, + CORBA::Environment &env) +{ + CORBA::ULong temp; + // Just a temporary to retrieve CORBA::TCKind variables as ULong's + + // Check for illegal TCKind enum values ... out of range, or which + // represent data values that can't be nested. (Some can't even + // exist freestanding!) + + if (kind >= CORBA::TC_KIND_COUNT + || kind <= CORBA::tk_void + || kind == CORBA::tk_except) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Use attribute calculator routine if it exists; these are needed + // only for variable-sized data types, with encapsulated parameter + // lists that affect the size and alignment of "top level" memory + // needed to hold an instance of this type. + + if (TAO_CDR_Interpreter::table_[kind].calc_ != 0) + { + assert (TAO_CDR_Interpreter::table_[kind].size_ == 0); + + // Pull encapsulation length out of the stream. + if (stream->read_ulong (temp) == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Initialize the TypeCode if requested + if (tc) + { + tc->kind_ = kind; + tc->buffer_ = stream->rd_ptr (); + tc->length_ = temp; + } + + // Set up a separate stream for the parameters; it may easily + // have a different byte order, and this is as simple a way as + // any to ensure correctness. Then use the calculator routine + // to calculate size and alignment. + + assert (temp <= UINT_MAX); + + TAO_InputCDR nested (*stream, temp); + + if (nested.good_bit () == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + size_t size = TAO_CDR_Interpreter::table_[kind].calc_ (&nested, + alignment, + env); + if (env.exception () != 0) + { + return 0; + } + + // Check for garbage at end of parameter lists, or other cases + // where parameters and the size allocated to them don't jive. + + stream->skip_bytes (temp); + + if (stream->rd_ptr () != nested.rd_ptr ()) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + return size; + } + assert (TAO_CDR_Interpreter::table_[kind].size_ != 0); + + // Reinitialize the TypeCode if requested; this consumes any + // TypeCode parameters in the stream. They only exist for TCKind + // values that have parameters, but which represent fixed-size data + // types in the binary representation: CORBA::tk_string, CORBA::tk_wstring, + // CORBA::tk_objref, CORBA::tk_enum, and CORBA::tk_sequence. + + if (tc) + { + CORBA::ULong len; + + tc->kind_ = kind; + switch (kind) + { + default: + assert (TAO_CDR_Interpreter::table_[kind].skipper_ == 0); + break; + + case CORBA::tk_string: + case CORBA::tk_wstring: + if (stream->read_ulong (len) == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + tc->length_ = len; + break; + + case CORBA::tk_enum: + case CORBA::tk_objref: + case CORBA::tk_sequence: + if (stream->read_ulong (len) == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + tc->length_ = len; + + assert (len < UINT_MAX); + tc->buffer_ = stream->rd_ptr (); + stream->skip_bytes (len); + break; + } + + // Otherwise, consume any parameters without stuffing them into + // a temporary TypeCode. + } + else if (TAO_CDR_Interpreter::table_[kind].skipper_ != 0 + && TAO_CDR_Interpreter::table_[kind].skipper_ (stream) == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Return statically known values. + alignment = TAO_CDR_Interpreter::table_[kind].alignment_; + return TAO_CDR_Interpreter::table_[kind].size_; +} + +size_t +TAO_CDR_Interpreter::calc_nested_size_and_alignment (CORBA::TypeCode_ptr tc, + TAO_InputCDR *stream, + size_t &alignment, + CORBA::Environment &env) +{ + // Get the "kind" ... if this is an indirection, this is a guess + // which will soon be updated. + CORBA::ULong temp; + if (stream->read_ulong (temp) == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + env.clear (); + + CORBA::TCKind kind = (CORBA::TCKind) temp; + + if (kind != (CORBA::TCKind) ~0u) + { + return TAO_CDR_Interpreter::calc_nested_size_and_alignment_i + (tc, + stream, + kind, + alignment, + env); + } + + // Get indirection, sanity check it, set up new stream pointing + // there. + // + // XXX access to "real" size limit for this typecode and use it + // to check for errors before indirect and to limit the new + // stream's length. ULONG_MAX is too much! + + // @@ ASG @@ - comparison with -8 or -4. I think the spec says it must be + // larger than -4 (absolute value) + // 09/04/98 - check this + // + + CORBA::Long offset; + if (!stream->read_long (offset) + || offset >= -8 + || ((-offset) & 0x03) != 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Notice how we change the sign of the offset to estimate the + // maximum size. + TAO_InputCDR indirected_stream (*stream, -offset, offset); + + // Fetch indirected-to TCKind. + if (!indirected_stream.read_ulong (temp)) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + kind = (CORBA::TCKind) temp; + + return TAO_CDR_Interpreter::calc_nested_size_and_alignment_i (tc, + &indirected_stream, + kind, + alignment, + env); +} + +// Given typecode bytes for a structure (or exception), figure out its +// alignment and size; return size, alignment is an 'out' parameter. +// Only "CORBA::tk_struct" (or "CORBA::tk_except") has been taken out of the stream +// parameter holding the bytes. +// +// We use a one-pass algorithm, calculating size and inter-element +// padding while recording the strongest alignment restriction. Then +// we correct the size to account for tail-padding. +// +// This routine recognizes that exceptions are just structs with some +// additional information. Different environments may differ in what +// that additional information is, so this routine may need to be +// taught about compiler-specific representation of that additional +// "RTTI" data. + +size_t +TAO_CDR_Interpreter::calc_struct_and_except_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Boolean is_exception, + CORBA::Environment &env) +{ + CORBA::ULong members; + size_t size; + + // Exceptions are like structs, with key additions (all of which + // might need to be be applied to structures!): vtable, typecode, + // and refcount. The size must include these "hidden" members. + // + // NOTE: in environments with "true" C++ exceptions, there may need + // to be a slot for additional "RTTI" information; maybe it is part + // of the vtable, or maybe not. Or, that information (needed to + // determine which 'catch' clauses apply) may only be provided by + // the compiler to the runtime support for the "throw" statement. + + if (is_exception) + { + size = sizeof (CORBA::Exception); + alignment = TAO_CDR_Interpreter::table_[CORBA::tk_TypeCode].alignment_; + } + else + { + alignment = 1; + size = 0; + } + + // skip rest of header (type ID and name) and collect the number of + // struct members + + if (!stream->skip_string () + || !stream->skip_string () + || !stream->read_ulong (members)) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // iterate over all the members, skipping their names and looking + // only at type data. + + for ( ; members != 0; members--) { + size_t member_size; + size_t member_alignment; + + // Skip name of the member. + if (!stream->skip_string ()) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Get size and alignment of the member, accounting for + // indirection and the various kinds of parameter encoding. + + member_size = calc_nested_size_and_alignment (0, + stream, + member_alignment, + env); + if (env.exception () != 0) + return 0; + + // Round up the struct size to handle member alignment (by adding + // internal padding), then update the current size to handle the + // member's size. + + size = (size_t) align_binary (size, member_alignment); + size += member_size; + + // Finally update the overall structure alignment requirement, if + // this element must be more strongly aligned. + + if (member_alignment > alignment) + alignment = member_alignment; + }; + + // Round up the structure size to match its overall alignment. This + // adds tail padding, if needed. + return (size_t) align_binary (size, alignment); +} + +// Calculate size and alignment for a structure. + +size_t +TAO_CDR_Interpreter::calc_struct_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Environment &env) +{ + return calc_struct_and_except_attributes (stream, + alignment, + 0, + env); +} + +// Calculate size and alignment for an exception. + +size_t +TAO_CDR_Interpreter::calc_exception_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Environment &env) +{ + return calc_struct_and_except_attributes (stream, + alignment, + 1, + env); +} + +// Calculate and return sizes for both parts of a union, as needed by +// other code. Return value is the overall size. The padded size of +// the discriminant is needed to traverse the two values separately. +// Unfortunately that is not quite practical to do with a single pass +// over the typecode: the inter-element padding changes depending on +// the strictest alignment required by _any_ arm of the union. + +size_t +TAO_CDR_Interpreter::calc_key_union_attributes (TAO_InputCDR *stream, + size_t &overall_alignment, + size_t &discrim_size_with_pad, + CORBA::Environment &env) +{ + CORBA::ULong members; + CORBA::ULong temp; + size_t discrim_and_base_size; + size_t discrim_and_base_size_with_pad; + size_t value_alignment; + size_t value_size; + // define a dummy structure to compute alignment of pointer type + struct align_ptr + { + void *one; + char dummy [TAO_MAXIMUM_NATIVE_TYPE_SIZE + 1 - sizeof (void*)]; + void *two; + }; + align_ptr ap; + + // the first member of the union internal representation is the VPTR + // since every union inherits from TAO_Base_Union + overall_alignment = (char *) &ap.two - (char *) &ap.one + - TAO_MAXIMUM_NATIVE_TYPE_SIZE; + + value_alignment = 1; + value_size = discrim_size_with_pad = 0; + + // Skip initial optional members (type ID and name). + + if (!stream->skip_string () // type ID + || !stream->skip_string ()) + { // typedef name + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Calculate discriminant size and alignment: it's the first member + // of the "struct" representing the union. We detect illegal + // discriminant kinds a bit later. + + CORBA::TypeCode discrim_tc (CORBA::tk_void); + + discrim_and_base_size = sizeof (TAO_Base_Union) + + calc_nested_size_and_alignment (&discrim_tc, + stream, + value_alignment, + env); + if (env.exception () != 0) + return 0; + + if (value_alignment > overall_alignment) + overall_alignment = value_alignment; + + + // skip "default used" indicator, and save "member count" + + if (!stream->read_ulong (temp) // default used + || !stream->read_ulong (members)) + { // member count + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // iterate over the tuples for all the members; all we care about is + // their types, which can affect either alignment or padding + // requirement for the union part of the construct. + + value_alignment = 1; + for ( ; members != 0; members--) { + size_t member_size, member_alignment; + + // Skip member label; its size varies with discriminant type, but + // here we don't care about its content. This is where illegal + // discriminant kinds are detected. + // + // NOTE: This modifies 94-9-32 Appendix A to stipulate that + // "long long" values are not legal as discriminants. + + switch (discrim_tc.kind_) + { + case CORBA::tk_short: + case CORBA::tk_ushort: + case CORBA::tk_wchar: + { + CORBA::Short s; + + if (!stream->read_short (s)) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + } + break; + + case CORBA::tk_long: + case CORBA::tk_ulong: + case CORBA::tk_enum: + { + CORBA::Long l; + + if (!stream->read_long (l)) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + } + break; + + case CORBA::tk_boolean: + case CORBA::tk_char: + { + CORBA::Char c; + + if (!stream->read_char (c)) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + } + break; + + default: + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // We also don't care about any member name. + + if (!stream->skip_string ()) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Get the member size and alignment. + // However, for variable sized member types and types that have + // constructors, these become members of the pointer types. We need to + // determine if we are dealing with such a member and accordingly adjust + // the size and alignment + CORBA::Boolean var_sized_member = 0; + TAO_InputCDR temp (*stream); + if (calc_union_attr_is_var_sized_member (&temp, var_sized_member) == -1) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + if (var_sized_member) + { + member_size = sizeof (void*); + member_alignment = (char *) &ap.two - (char *) &ap.one + - TAO_MAXIMUM_NATIVE_TYPE_SIZE; + (void) CORBA::TypeCode::skip_typecode (*stream); + } + else + { + // proceed with the normal way of computing the size and alignment + member_size = calc_nested_size_and_alignment (0, + stream, + member_alignment, + env); + } + + if (env.exception () != 0) + return 0; + + // Save the largest member and alignment. They don't need to be + // changed in sync -- e.g. "long double" size is larger than its + // alignment restriction on SPARC, x86, and some m68k platforms. + if (member_size > value_size) + value_size = member_size; + if (member_alignment > value_alignment) + value_alignment = member_alignment; + } + + // Round up the discriminator's size to include padding it needs in + // order to be followed by the value. + discrim_and_base_size_with_pad = + (size_t) align_binary (discrim_and_base_size, value_alignment); + discrim_size_with_pad = discrim_and_base_size_with_pad - + sizeof (TAO_Base_Union); + // Now calculate the overall size of the structure, which is the + // discriminator, inter-element padding, value, and tail padding. + // We know all of those except tail padding, which is a function of + // the overall alignment. (Ensures that arrays of these can be + // safely allocated and accessed!) + + if (value_alignment > overall_alignment) + overall_alignment = value_alignment; + + return (size_t) align_binary (discrim_and_base_size_with_pad + value_size, + overall_alignment); +} + +// Calculate size and alignment for a CORBA discriminated union. +// +// Note that this is really a two-element structure. The first +// element is the discriminator; the second is the value. All normal +// structure padding/alignment rules apply. In particular, all arms +// of the union have the same initial address (adequately aligned for +// any of the members). + +size_t +TAO_CDR_Interpreter::calc_union_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Environment &env) +{ + size_t scratch; + + return calc_key_union_attributes (stream, alignment, scratch, env); +} + +// Calculate size and alignment for a typedeffed type. + +size_t +TAO_CDR_Interpreter::calc_alias_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Environment &env) +{ + // Skip type ID and name in the parameter stream + + if (!stream->skip_string () // type ID + || !stream->skip_string ()) // typedef name + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // The typedef is identical to the type for which it stands. + return calc_nested_size_and_alignment (0, stream, alignment, env); +} + +// Calculate size and alignment of an array. (All such arrays are +// described as single dimensional, even though the IDL definition may +// specify a multidimensional array ... such arrays are treated as +// nested single dimensional arrays.) + +size_t +TAO_CDR_Interpreter::calc_array_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Environment &env) +{ + size_t member_size; + CORBA::ULong member_count; + + // get size and alignment of the array member + + member_size = calc_nested_size_and_alignment (0, stream, alignment, env); + if (env.exception () != 0) + return 0; + + // Get and check count of members. + + if (stream->read_ulong (member_count) == 0 + || member_count > UINT_MAX) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + // Array size is a function only of member number and count + return member_size * (size_t) member_count; +} + +#if defined (TAO_NO_COPY_OCTET_SEQUENCES) +// Calculate size and alignment of a sequence. +// If octet sequence optimizations are enabled the size of octet +// sequences differ from the size of a regular sequence. + +size_t +TAO_CDR_Interpreter::calc_seq_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Environment &env) +{ + CORBA::TCKind kind; + + // Get the "kind" ... if this is an indirection, this is a guess + // which will soon be updated. + CORBA::ULong temp; + if (stream->read_ulong (temp) == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + if (temp == ~0u) + { + // Get indirection, sanity check it, set up new stream pointing + // there. + // + // XXX access to "real" size limit for this typecode and use it + // to check for errors before indirect and to limit the new + // stream's length. ULONG_MAX is too much! + CORBA::Long offset; + if (!stream->read_long (offset) + || offset >= -8 + || ((-offset) & 0x03) != 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + // Notice how we change the sign of the offset to estimate the + // maximum size. + TAO_InputCDR indirected_stream (*stream, -offset, offset); + + // Fetch indirected-to TCKind; this *cannot* be an indirection + // again because multiple indirections are non-complaint. + if (indirected_stream.read_ulong (temp) == 0 + || temp == ~0u) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + } + + kind = ACE_static_cast(CORBA::TCKind, temp); + + // Skip the rest of the stream because we don't use it. + if (stream->skip_bytes (stream->length ()) == 0) + { + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + return 0; + } + + size_t size; + if (kind == CORBA::tk_octet) + { + declare_entry (TAO_opaque, tk_sequence); + align_struct_tk_sequence align; + size = sizeof (TAO_opaque); +#if defined (TAO_HAS_FIXED_BYTE_ALIGNMENT) + alignment = 1; +#else + alignment = + (char*)&align.two - (char*)&align.one - TAO_MAXIMUM_NATIVE_TYPE_SIZE; +#endif /* TAO_HAS_FIXED_BYTE_ALIGNMENT */ + } + else + { + // Note: GHS can't handle TAO_Unbounded_Sequence<CORBA::Long> below. + // Instead, use TAO_Unbounded_String_Sequence. + declare_entry (TAO_Unbounded_String_Sequence, tk_sequence); + size = sizeof (TAO_Unbounded_String_Sequence); + align_struct_tk_sequence align; +#if defined (TAO_HAS_FIXED_BYTE_ALIGNMENT) + alignment = 1; +#else + alignment = + (char*)&align.two - (char*)&align.one - TAO_MAXIMUM_NATIVE_TYPE_SIZE; +#endif /* TAO_HAS_FIXED_BYTE_ALIGNMENT */ + } + return size; +} +#endif /* defined (TAO_NO_COPY_OCTET_SEQUENCES) */ + +// Cast the discriminant values to the right type and compare them. + +CORBA::Boolean +TAO_CDR_Interpreter::match_value (CORBA::TCKind kind, + TAO_InputCDR *tc_stream, + const void *value, + CORBA::Environment &env) +{ + CORBA::Boolean retval = 0; + + switch (kind) + { + case CORBA::tk_short: + case CORBA::tk_ushort: + { + CORBA::UShort discrim; + + if (tc_stream->read_ushort (discrim) != 0) + retval = (discrim == *(CORBA::UShort *)value); + else + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + } + break; + + case CORBA::tk_long: + case CORBA::tk_ulong: + { + CORBA::ULong discrim; + + if (tc_stream->read_ulong (discrim) != 0) + retval = (discrim == *(CORBA::ULong *)value); + else + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + } + break; + + case CORBA::tk_enum: + { + CORBA::ULong discrim; + + if (tc_stream->read_ulong (discrim) != 0) + retval = (discrim == *(unsigned *)value); + else + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + } + break; + + case CORBA::tk_boolean: + { + CORBA::Boolean discrim; + + if (tc_stream->read_boolean (discrim) != 0) + retval = (discrim == *(CORBA::Boolean *)value); + else + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + } + break; + + case CORBA::tk_char: + { + CORBA::Char discrim; + + if (tc_stream->read_char (discrim) != 0) + retval = (discrim == *(CORBA::Char *)value); + else + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + } + break; + + case CORBA::tk_wchar: + { + CORBA::WChar discrim; + + if (tc_stream->read_wchar (discrim) != 0) + retval = (discrim == *(CORBA::WChar *)value); + else + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + } + break; + + default: + env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO)); + } + + return retval; +} + +int +TAO_CDR_Interpreter +::calc_union_attr_is_var_sized_member (TAO_InputCDR *stream, + CORBA::Boolean &flag) +{ + CORBA::Environment env; + CORBA::ULong temp; + flag = 0; + + // Get the tk_ "kind" field + if (stream->read_ulong (temp) == 0) + { + // error + return -1; + } + + env.clear (); + + CORBA::TCKind kind = (CORBA::TCKind) temp; + + switch (kind) + { + case CORBA::tk_null: + case CORBA::tk_void: + // error + return -1; + case CORBA::tk_short: + case CORBA::tk_ushort: + case CORBA::tk_long: + case CORBA::tk_ulong: + case CORBA::tk_longlong: + case CORBA::tk_ulonglong: + case CORBA::tk_float: + case CORBA::tk_double: + case CORBA::tk_longdouble: + case CORBA::tk_boolean: + case CORBA::tk_char: + case CORBA::tk_wchar: + case CORBA::tk_octet: + case CORBA::tk_enum: + case CORBA::tk_Principal: + // not variable sized + return 0; + case CORBA::tk_any: + case CORBA::tk_TypeCode: + case CORBA::tk_objref: + case CORBA::tk_union: + case CORBA::tk_string: + case CORBA::tk_wstring: + case CORBA::tk_sequence: + case CORBA::tk_array: + case CORBA::tk_except: + // always variable sized + flag = 1; + return 0; + case CORBA::tk_alias: + // find out what its base says + { + CORBA::ULong encap; + + // Pull encapsulation length out of the stream. + if (stream->read_ulong (encap) == 0) + { + return -1; + } + + assert (encap <= UINT_MAX); + + TAO_InputCDR nested (*stream, temp); + + if (nested.good_bit () == 0) + { + return -1; + } + + // Skip type ID and name in the parameter stream + if (!nested.skip_string () // type ID + || !nested.skip_string ()) // typedef name + { + return -1; + } + + // stream->skip_bytes (encap); + return calc_union_attr_is_var_sized_member (&nested, flag); + } + ACE_NOTREACHED (break); + case CORBA::tk_struct: + // explore further based on members + { + CORBA::ULong encap; + + // Pull encapsulation length out of the stream. + if (stream->read_ulong (encap) == 0) + { + return -1; + } + + assert (encap <= UINT_MAX); + + TAO_InputCDR nested (*stream, temp); + + if (nested.good_bit () == 0) + { + return -1; + } + + // stream.skip_bytes (encap); + // Skip type ID and name in the parameter stream + if (!nested.skip_string () // type ID + || !nested.skip_string ()) // typedef name + { + return -1; + } + + CORBA::ULong member_count; + if (nested.read_ulong (member_count) == 0) + { + return -1; + } + for (CORBA::ULong i = 0; i < member_count && !flag; i++) + { + // stop this loop the moment we discover that a member is variable + // in size + + // skip the name + if (nested.skip_string () == 0) + { + return -1; + } + TAO_InputCDR member_tc (nested); + if (calc_union_attr_is_var_sized_member (&member_tc, flag) == -1) + { + return -1; + } + CORBA::TypeCode::skip_typecode (nested); + } + } + return flag; + ACE_NOTREACHED (break); + case ~0: + // TO-DO + return 0; + default: + // error + return -1; + } + // cannot reach here + ACE_NOTREACHED (return -1); +} + +#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) +template class TAO_Unbounded_Sequence<CORBA::Long>; +#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA) +#pragma instantiate TAO_Unbounded_Sequence<CORBA::Long> +#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */ diff --git a/TAO/tao/CDR_Interpreter.h b/TAO/tao/CDR_Interpreter.h new file mode 100644 index 00000000000..c28e40891a5 --- /dev/null +++ b/TAO/tao/CDR_Interpreter.h @@ -0,0 +1,261 @@ +// This may look like C, but it's really -*- C++ -*- +// $Id$ + +// ============================================================================ +// +// = LIBRARY +// TAO +// +// = FILENAME +// CDR_Interpreter.h +// +// = DESCRIPTION +// Header file for TAO's CDR interpreter. +// +// = AUTHOR +// Douglas C. Schmidt +// +// ============================================================================ + +#ifndef TAO_CDR_INTERPRETER_H +#define TAO_CDR_INTERPRETER_H + +#include "tao/corbafwd.h" + +// Useful typedefs. +typedef size_t TAO_attribute_calculator (TAO_InputCDR *stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV); +typedef CORBA::Boolean TAO_param_skip_rtn (TAO_InputCDR *); + +class TAO_Export TAO_CDR_Interpreter +{ + // = TITLE + // TAO's CORBA TypeCode interpreter, which traverses GIOP/CDR + // data structures. + // + // = DESCRIPTION + // This uses the standard C/C++ representation for data, and knows + // how to do things like align and pad according to standard + // rules. It is driven by CDR marshaled representations of + // TypeCodes. + // + // It does two key things: (a) calculate size and alignment + // restrictions for the data type described by any given typecode; + // and (b) "visits" each element of a data type in the order those + // elements are defined in the type's IDL definition. + // + // A typical use is that some application-specific "visit" + // function will be called with a typecode and data value. Then + // that "visit" function may choose to use the interpreter's + // knowledge of the environment's size, padding, and alignment + // rules to help it examine each of the constituents of complex + // data values. It does so by making a call to + // <TypeCode::traverse>, and passing itself for future recursive + // calls. + // + // NOTE that this module has system dependent parts, and so should + // be examined when porting to new CPU architectures, compilers, + // and so forth to make sure it correctly implements the + // appropriate binary interfaces. + // + // Issues of concern are primarily that sizes and representations + // of CORBA primitive data types are correct (key issues are + // verified when the ORB initializes) and that the alignment rules + // are recognized. + // + // Also, exceptions have vtables in them, which may cause trouble + // if they aren't located at the very beginning by the compiler in + // question. + // + // So for example, moving to another CPU architecture which still + // uses standard sized two's complement integers and IEEE floating + // point, and expects "natural" alignment, won't be hard. Even + // using PC style tightly packed data is simple; the alignment + // rules are just simpler. Most volume microprocessors used in + // 1995 are correctly supported. + // + // Using data representations that are far from the standard C/C++ + // style data layout is probably not practical with this + // implementation. LISP systems, as one example, probably won't + // use "in-memory" representations much like C/C++, even though + // its "wire form" could directly match CDR. + // + // ALSO, the treatment of exceptions may need to be examined in + // language environments which actually rely on C++ exceptions. + // The RTTI data that identifies exceptions can easily be ignored + // by this interpreter (if it's taught about that compiler's RTTI) + // but it may not be practical for any code not generated by that + // specific C++ compiler to store such data in the right place to + // look like a C++ exception, or to throw exceptions when that's + // needed. (RTTI == "Run Time Typing Information", needed to make + // C++ exceptions work correctly and partially exposed to users by + // the ANSI standards comittee. It provides type-safe + // "downcasting" and other features previously unavailable in + // C++.) + // + // THREADING NOTE: Data structures being traversed should only be + // modified by the thread doing the traversal. The interpretive + // code itself is reentrant (recursive!) so presents no threading + // issues; only the data being fed to the interpreter must be + // protected against concurrency. +public: + static void init (void); + // Initialize TAO's TypeCode table. + + static size_t calc_nested_size_and_alignment (CORBA::TypeCode_ptr tc, + TAO_InputCDR *original_stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + static size_t calc_nested_size_and_alignment_i (CORBA::TypeCode_ptr tc, + TAO_InputCDR *stream, + CORBA::TCKind kind, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // For a given typecode, figure out its size and alignment needs. + // This version is used mostly when traversing other typecodes, and + // follows these rules: + // + // - Some typecodes are illegal (can't be nested inside others); + // - Indirections are allowed; + // - The whole typecode (including TCKind enum) is in the stream + // + // When the routine returns, the stream has skipped this TypeCode. + // + // "size" is returned, "alignment" is an 'out' parameter. If it is + // non-null, "tc" is initialized to hold the contents of the TypeCode; + // it depends on the contents of the original stream to be valid. + // + // The _i routine encapsulates some common code for the case were an + // indirected TypeCode is in use. + // + // @@ explore splitting apart returning the size/alignment data and + // the TypeCode initialization; union traversal would benefit a bit, + // but it would need more than that to make it as speedy as struct + // traversal. + + // = Static visitor methods. + + // These methods manipulate CDR-encapsulated TypeCode parameter + // lists, calculating the size and alignment of the data type being + // described. The TCKind value has always been removed from the CDR + // stream when these calculator routines get called. + + static size_t calc_struct_and_except_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA::Boolean is_exception, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Given typecode bytes for a structure (or exception), figure out + // its alignment and size; return size, alignment is an 'out' + // parameter. Only "CORBA::tk_struct" (or "CORBA::tk_except") has + // been taken out of the stream parameter holding the bytes. + // + // We use a one-pass algorithm, calculating size and inter-element + // padding while recording the strongest alignment restriction. + // Then we correct the size to account for tail-padding. + // + // This routine recognizes that exceptions are just structs with + // some additional information. Different environments may differ + // in what that additional information is, so this routine may need + // to be taught about compiler-specific representation of that + // additional "RTTI" data. + + static size_t calc_struct_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Calculate size and alignment for a structure. + + +#if defined (TAO_NO_COPY_OCTET_SEQUENCES) + static size_t calc_seq_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Calculate size and alignment for a sequence, most of them have + // the same requirements, but for the sequences of Octets that are + // optimized to minimize copying. +#endif /* defined (TAO_NO_COPY_OCTET_SEQUENCES) */ + + static size_t calc_exception_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Calculate size and alignment for an exception. + + + static size_t calc_union_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Calculate size and alignment for a CORBA discriminated union. + // + // Note that this is really a two-element structure. The first + // element is the discriminator; the second is the value. All normal + // structure padding/alignment rules apply. In particular, all arms + // of the union have the same initial address (adequately aligned for + // any of the members). + + + static size_t calc_alias_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Calculate size and alignment for a typedeffed type. + + static size_t calc_array_attributes (TAO_InputCDR *stream, + size_t &alignment, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Calculate size and alignment of an array. (All such arrays are + // described as single dimensional, even though the IDL definition + // may specify a multidimensional array ... such arrays are treated + // as nested single dimensional arrays.) + + static CORBA::Boolean match_value (CORBA::TCKind kind, + TAO_InputCDR *tc_stream, + const void *value, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + // Cast the discriminant values to the right type and compare them. + + static size_t + calc_key_union_attributes (TAO_InputCDR *stream, + size_t &overall_alignment, + size_t &discrim_size_with_pad, + CORBA_Environment &TAO_IN_ENV = CORBA::default_environment ()); + + + // = Utility routine that checks if a union member is a variable sized type + // (and hence is a pointer) + static int calc_union_attr_is_var_sized_member (TAO_InputCDR *temp, + CORBA::Boolean &flag); + + // = Utility routines that skip unneeded parameter lists. + static CORBA::Boolean skip_encapsulation (TAO_InputCDR *stream); + static CORBA::Boolean skip_long (TAO_InputCDR *stream); + + struct Table_Element + { + size_t size_; + size_t alignment_; + TAO_attribute_calculator *calc_; + TAO_param_skip_rtn *skipper_; + }; + + static Table_Element table_[CORBA::TC_KIND_COUNT]; + // Table supporting calculation of size and alignment requirements + // for any one instance of a given data types. + // + // This is indexed via CDR's TCKind values, which are "frozen" as + // part of the CDR standard. Entries hold either the size and + // alignment values for that data type, or a pointer to a function + // that is used to calculate those values. Function pointers are + // normally needed only for constructed types. + // + // A "skipper" routine is provided for some data types whose size is + // known statically (e.g. objrefs, structures, strings) but whose + // typecodes have parameters that sometimes need to be ignored when + // found in a CDR stream. Any attribute calculator routine always + // skips parameters in the CDR input stream, so no type with such a + // routine also needs a "skipper". + // + // Rather than growing a set of processor-specific #ifdefs, we + // calculate most of this table (except functions) at ORB + // initialization time. +}; + +#endif /* TAO_CDR_INTERPRETER_H */ diff --git a/TAO/tao/Makefile b/TAO/tao/Makefile index 167cab1f0c2..2a116fefdb3 100644 --- a/TAO/tao/Makefile +++ b/TAO/tao/Makefile @@ -70,7 +70,7 @@ ORBCORE_SRCS = \ GIOP \ Invocation \ IIOP_ORB \ - IIOP_Interpreter \ + CDR_Interpreter \ Marshal \ Active_Object_Map \ Operation_Table \ @@ -2311,7 +2311,7 @@ LDFLAGS += $(RLDFLAGS) $(TAO_ROOT)/tao/params.i \ $(TAO_ROOT)/tao/ORB_Core.i \ $(TAO_ROOT)/tao/Server_Strategy_Factory.h \ - $(TAO_ROOT)/tao/IIOP_Interpreter.h \ + $(TAO_ROOT)/tao/CDR_Interpreter.h \ $(TAO_ROOT)/tao/debug.h \ $(TAO_ROOT)/tao/TAO_Internal.h \ $(TAO_ROOT)/tao/Timeprobe.h \ @@ -4885,7 +4885,7 @@ LDFLAGS += $(RLDFLAGS) $(TAO_ROOT)/tao/Marshal.i \ $(TAO_ROOT)/tao/CDR.i \ $(TAO_ROOT)/tao/Any.i \ - $(TAO_ROOT)/tao/IIOP_Interpreter.h \ + $(TAO_ROOT)/tao/CDR_Interpreter.h \ $(TAO_ROOT)/tao/Principal.h \ $(TAO_ROOT)/tao/Sequence.h \ $(TAO_ROOT)/tao/Managed_Types.h \ @@ -7286,8 +7286,8 @@ LDFLAGS += $(RLDFLAGS) $(TAO_ROOT)/tao/ORB_Core.i \ $(ACE_ROOT)/ace/Dynamic_Service.h \ $(ACE_ROOT)/ace/Dynamic_Service.cpp -.obj/IIOP_Interpreter.o .obj/IIOP_Interpreter.so .shobj/IIOP_Interpreter.o .shobj/IIOP_Interpreter.so: IIOP_Interpreter.cpp \ - $(TAO_ROOT)/tao/IIOP_Interpreter.h \ +.obj/CDR_Interpreter.o .obj/CDR_Interpreter.so .shobj/CDR_Interpreter.o .shobj/CDR_Interpreter.so: CDR_Interpreter.cpp \ + $(TAO_ROOT)/tao/CDR_Interpreter.h \ $(TAO_ROOT)/tao/corbafwd.h \ $(ACE_ROOT)/ace/CDR_Stream.h \ $(ACE_ROOT)/ace/Message_Block.h \ diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp index 5007298085e..6d4c3acdfa8 100644 --- a/TAO/tao/ORB.cpp +++ b/TAO/tao/ORB.cpp @@ -23,7 +23,7 @@ #include "tao/DynAny_i.h" #include "tao/ORB_Core.h" #include "tao/Server_Strategy_Factory.h" -#include "tao/IIOP_Interpreter.h" +#include "tao/CDR_Interpreter.h" #include "tao/debug.h" #include "tao/TAO_Internal.h" @@ -1041,7 +1041,7 @@ CORBA_ORB::init_orb_globals (CORBA::Environment &env) // initialize the factory for marshaling TAO_Marshal::init (); // initialize the interpreter - TAO_IIOP_Interpreter::init (); + TAO_CDR_Interpreter::init (); // initialize the system exceptions TAO_Exceptions::init (env); } diff --git a/TAO/tao/TAO.dsp b/TAO/tao/TAO.dsp index 45a3d644dcc..e53611901f9 100644 --- a/TAO/tao/TAO.dsp +++ b/TAO/tao/TAO.dsp @@ -365,7 +365,7 @@ DEP_CPP_ACTIV=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -627,7 +627,7 @@ DEP_CPP_ACTIV=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -900,7 +900,7 @@ DEP_CPP_ANY_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -1162,7 +1162,7 @@ DEP_CPP_ANY_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -1435,7 +1435,7 @@ DEP_CPP_APPEN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -1697,7 +1697,7 @@ DEP_CPP_APPEN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -1976,7 +1976,7 @@ DEP_CPP_CDR_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -2244,7 +2244,7 @@ DEP_CPP_CDR_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -2517,7 +2517,7 @@ DEP_CPP_CLIEN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -2779,7 +2779,7 @@ DEP_CPP_CLIEN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -3058,7 +3058,7 @@ DEP_CPP_CONNE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -3327,7 +3327,7 @@ DEP_CPP_CONNE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -3601,7 +3601,7 @@ DEP_CPP_CURRE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -3863,7 +3863,7 @@ DEP_CPP_CURRE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -4136,7 +4136,7 @@ DEP_CPP_CURREN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -4398,7 +4398,7 @@ DEP_CPP_CURREN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -4671,7 +4671,7 @@ DEP_CPP_DEBUG=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -4933,7 +4933,7 @@ DEP_CPP_DEBUG=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -5206,7 +5206,7 @@ DEP_CPP_DECOD=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -5468,7 +5468,7 @@ DEP_CPP_DECOD=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -5741,7 +5741,7 @@ DEP_CPP_DEEP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -6003,7 +6003,7 @@ DEP_CPP_DEEP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -6276,7 +6276,7 @@ DEP_CPP_DEFAU=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -6538,7 +6538,7 @@ DEP_CPP_DEFAU=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -6811,7 +6811,7 @@ DEP_CPP_DEFAUL=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -7073,7 +7073,7 @@ DEP_CPP_DEFAUL=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -7353,7 +7353,7 @@ DEP_CPP_DYNAN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -7622,7 +7622,7 @@ DEP_CPP_DYNAN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -7895,7 +7895,7 @@ DEP_CPP_DYNANY=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -8157,7 +8157,7 @@ DEP_CPP_DYNANY=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -8430,7 +8430,7 @@ DEP_CPP_DYNANYS=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -8692,7 +8692,7 @@ DEP_CPP_DYNANYS=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -8966,7 +8966,7 @@ DEP_CPP_DYNAR=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -9229,7 +9229,7 @@ DEP_CPP_DYNAR=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -9503,7 +9503,7 @@ DEP_CPP_DYNEN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -9766,7 +9766,7 @@ DEP_CPP_DYNEN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -10040,7 +10040,7 @@ DEP_CPP_DYNSE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -10303,7 +10303,7 @@ DEP_CPP_DYNSE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -10577,7 +10577,7 @@ DEP_CPP_DYNST=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -10840,7 +10840,7 @@ DEP_CPP_DYNST=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -11116,7 +11116,7 @@ DEP_CPP_DYNUN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -11381,7 +11381,7 @@ DEP_CPP_DYNUN=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -11654,7 +11654,7 @@ DEP_CPP_ENCOD=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -11916,7 +11916,7 @@ DEP_CPP_ENCOD=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -12189,7 +12189,7 @@ DEP_CPP_ENVIR=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -12451,7 +12451,7 @@ DEP_CPP_ENVIR=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -12724,7 +12724,7 @@ DEP_CPP_EXCEP=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -12986,7 +12986,7 @@ DEP_CPP_EXCEP=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -13260,7 +13260,7 @@ DEP_CPP_FORWA=\ ".\Forwarding_Servant.h"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -13523,7 +13523,7 @@ DEP_CPP_FORWA=\ ".\Forwarding_Servant.h"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -13802,7 +13802,7 @@ DEP_CPP_GIOP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -14071,7 +14071,7 @@ DEP_CPP_GIOP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -14175,7 +14175,7 @@ SOURCE=.\IIOP_Connector.cpp # End Source File
# Begin Source File
-SOURCE=.\IIOP_Interpreter.cpp
+SOURCE=.\CDR_Interpreter.cpp
!IF "$(CFG)" == "TAO - Win32 Release"
@@ -14375,7 +14375,7 @@ DEP_CPP_IIOP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -14637,7 +14637,7 @@ DEP_CPP_IIOP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -14910,7 +14910,7 @@ DEP_CPP_IIOP_O=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -15172,7 +15172,7 @@ DEP_CPP_IIOP_O=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -15475,7 +15475,7 @@ DEP_CPP_INCON=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -15737,7 +15737,7 @@ DEP_CPP_INCON=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -16016,7 +16016,7 @@ DEP_CPP_INVOC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -16285,7 +16285,7 @@ DEP_CPP_INVOC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -16559,7 +16559,7 @@ DEP_CPP_MANAG=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -16821,7 +16821,7 @@ DEP_CPP_MANAG=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -17094,7 +17094,7 @@ DEP_CPP_MARSH=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -17356,7 +17356,7 @@ DEP_CPP_MARSH=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -17644,7 +17644,7 @@ DEP_CPP_NVLIS=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -17906,7 +17906,7 @@ DEP_CPP_NVLIS=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -18179,7 +18179,7 @@ DEP_CPP_OBJEC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -18441,7 +18441,7 @@ DEP_CPP_OBJEC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -18714,7 +18714,7 @@ DEP_CPP_OBJECT=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -18976,7 +18976,7 @@ DEP_CPP_OBJECT=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -19255,7 +19255,7 @@ DEP_CPP_OPERA=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -19524,7 +19524,7 @@ DEP_CPP_OPERA=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -19808,7 +19808,7 @@ DEP_CPP_ORB_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -20082,7 +20082,7 @@ DEP_CPP_ORB_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -20377,7 +20377,7 @@ DEP_CPP_ORB_CO=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -20660,7 +20660,7 @@ DEP_CPP_ORB_CO=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -20934,7 +20934,7 @@ DEP_CPP_PARAM=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -21196,7 +21196,7 @@ DEP_CPP_PARAM=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -21491,7 +21491,7 @@ DEP_CPP_POA_C=\ ".\Forwarding_Servant.h"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -21761,7 +21761,7 @@ DEP_CPP_POA_C=\ ".\Forwarding_Servant.h"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -22035,7 +22035,7 @@ DEP_CPP_POAC_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -22297,7 +22297,7 @@ DEP_CPP_POAC_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -22585,7 +22585,7 @@ DEP_CPP_POAS_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -22847,7 +22847,7 @@ DEP_CPP_POAS_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -23120,7 +23120,7 @@ DEP_CPP_POLIC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -23382,7 +23382,7 @@ DEP_CPP_POLIC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -23655,7 +23655,7 @@ DEP_CPP_POLICY=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -23917,7 +23917,7 @@ DEP_CPP_POLICY=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -24190,7 +24190,7 @@ DEP_CPP_PRINC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -24452,7 +24452,7 @@ DEP_CPP_PRINC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -24725,7 +24725,7 @@ DEP_CPP_REQUE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -24987,7 +24987,7 @@ DEP_CPP_REQUE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -25260,7 +25260,7 @@ DEP_CPP_SEQUE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -25522,7 +25522,7 @@ DEP_CPP_SEQUE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -25801,7 +25801,7 @@ DEP_CPP_SERVA=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -26070,7 +26070,7 @@ DEP_CPP_SERVA=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -26350,7 +26350,7 @@ DEP_CPP_SERVE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -26619,7 +26619,7 @@ DEP_CPP_SERVE=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -26893,7 +26893,7 @@ DEP_CPP_SERVER=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -27155,7 +27155,7 @@ DEP_CPP_SERVER=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -27428,7 +27428,7 @@ DEP_CPP_SKIP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -27690,7 +27690,7 @@ DEP_CPP_SKIP_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -27963,7 +27963,7 @@ DEP_CPP_STUB_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -28225,7 +28225,7 @@ DEP_CPP_STUB_=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -28498,7 +28498,7 @@ DEP_CPP_TAO_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -28761,7 +28761,7 @@ DEP_CPP_TAO_C=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -29035,7 +29035,7 @@ DEP_CPP_TAO_I=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -29298,7 +29298,7 @@ DEP_CPP_TAO_I=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -29572,7 +29572,7 @@ DEP_CPP_TYPEC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -29834,7 +29834,7 @@ DEP_CPP_TYPEC=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -30107,7 +30107,7 @@ DEP_CPP_TYPECO=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -30369,7 +30369,7 @@ DEP_CPP_TYPECO=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -30642,7 +30642,7 @@ DEP_CPP_UNION=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -30904,7 +30904,7 @@ DEP_CPP_UNION=\ ".\Exception.i"\
".\giop.h"\
".\giop.i"\
- ".\IIOP_Interpreter.h"\
+ ".\CDR_Interpreter.h"\
".\IIOP_ORB.h"\
".\IIOP_ORB.i"\
".\InconsistentTypeCodeC.h"\
@@ -31077,7 +31077,7 @@ SOURCE=.\IIOP_Connector.h # End Source File
# Begin Source File
-SOURCE=.\IIOP_Interpreter.h
+SOURCE=.\CDR_Interpreter.h
# End Source File
# Begin Source File
diff --git a/TAO/tao/TAO4.mak b/TAO/tao/TAO4.mak index c4530cf7c6d..b8da83db9d9 100644 --- a/TAO/tao/TAO4.mak +++ b/TAO/tao/TAO4.mak @@ -70,7 +70,7 @@ CLEAN : -@erase "$(INTDIR)\Exception.obj"
-@erase "$(INTDIR)\Forwarding_Servant.obj"
-@erase "$(INTDIR)\GIOP.obj"
- -@erase "$(INTDIR)\IIOP_Interpreter.obj"
+ -@erase "$(INTDIR)\CDR_Interpreter.obj"
-@erase "$(INTDIR)\IIOP_Object.obj"
-@erase "$(INTDIR)\IIOP_ORB.obj"
-@erase "$(INTDIR)\Marshal.obj"
@@ -150,7 +150,7 @@ LINK32_OBJS= \ "$(INTDIR)\Exception.obj" \
"$(INTDIR)\Forwarding_Servant.obj" \
"$(INTDIR)\GIOP.obj" \
- "$(INTDIR)\IIOP_Interpreter.obj" \
+ "$(INTDIR)\CDR_Interpreter.obj" \
"$(INTDIR)\IIOP_Object.obj" \
"$(INTDIR)\IIOP_ORB.obj" \
"$(INTDIR)\Marshal.obj" \
@@ -220,7 +220,7 @@ CLEAN : -@erase "$(INTDIR)\Exception.obj"
-@erase "$(INTDIR)\Forwarding_Servant.obj"
-@erase "$(INTDIR)\GIOP.obj"
- -@erase "$(INTDIR)\IIOP_Interpreter.obj"
+ -@erase "$(INTDIR)\CDR_Interpreter.obj"
-@erase "$(INTDIR)\IIOP_Object.obj"
-@erase "$(INTDIR)\IIOP_ORB.obj"
-@erase "$(INTDIR)\Marshal.obj"
@@ -305,7 +305,7 @@ LINK32_OBJS= \ "$(INTDIR)\Exception.obj" \
"$(INTDIR)\Forwarding_Servant.obj" \
"$(INTDIR)\GIOP.obj" \
- "$(INTDIR)\IIOP_Interpreter.obj" \
+ "$(INTDIR)\CDR_Interpreter.obj" \
"$(INTDIR)\IIOP_Object.obj" \
"$(INTDIR)\IIOP_ORB.obj" \
"$(INTDIR)\Marshal.obj" \
@@ -403,7 +403,7 @@ DEP_CPP_TYPEC=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -638,7 +638,7 @@ DEP_CPP_APPEN=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -873,7 +873,7 @@ DEP_CPP_CDR_C=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -1108,7 +1108,7 @@ DEP_CPP_CLIEN=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -1344,7 +1344,7 @@ DEP_CPP_CONNE=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -1586,7 +1586,7 @@ DEP_CPP_DEBUG=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -1821,7 +1821,7 @@ DEP_CPP_DECOD=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -2056,7 +2056,7 @@ DEP_CPP_DEEP_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -2291,7 +2291,7 @@ DEP_CPP_DEEP_F=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -2526,7 +2526,7 @@ DEP_CPP_DEFAU=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -2761,7 +2761,7 @@ DEP_CPP_DEFAUL=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -2996,7 +2996,7 @@ DEP_CPP_ENCOD=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -3231,7 +3231,7 @@ DEP_CPP_EXCEP=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -3466,7 +3466,7 @@ DEP_CPP_GIOP_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -3680,7 +3680,7 @@ DEP_CPP_GIOP_=\ ################################################################################
# Begin Source File
-SOURCE=.\IIOP_Interpreter.cpp
+SOURCE=.\CDR_Interpreter.cpp
DEP_CPP_IIOP_=\
".\CurrentC.i"\
".\Object_KeyC.i"\
@@ -3708,7 +3708,7 @@ DEP_CPP_IIOP_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -3908,7 +3908,7 @@ DEP_CPP_IIOP_=\ {$(INCLUDE)}"\ace\ws2tcpip.h"\
-"$(INTDIR)\IIOP_Interpreter.obj" : $(SOURCE) $(DEP_CPP_IIOP_) "$(INTDIR)"
+"$(INTDIR)\CDR_Interpreter.obj" : $(SOURCE) $(DEP_CPP_IIOP_) "$(INTDIR)"
# End Source File
@@ -3943,7 +3943,7 @@ DEP_CPP_IIOP_O=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -4185,7 +4185,7 @@ DEP_CPP_IIOP_OR=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -4420,7 +4420,7 @@ DEP_CPP_MARSH=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -4655,7 +4655,7 @@ DEP_CPP_NVLIS=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -4890,7 +4890,7 @@ DEP_CPP_OBJEC=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -5125,7 +5125,7 @@ DEP_CPP_OBJECT=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -5360,7 +5360,7 @@ DEP_CPP_OBJECT_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -5595,7 +5595,7 @@ DEP_CPP_OPERA=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -5830,7 +5830,7 @@ DEP_CPP_ORB_C=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -6077,7 +6077,7 @@ DEP_CPP_ORB_CO=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -6325,7 +6325,7 @@ DEP_CPP_PARAM=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -6561,7 +6561,7 @@ DEP_CPP_POA_C=\ {$(INCLUDE)}"\.\Forwarding_Servant.h"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -6803,7 +6803,7 @@ DEP_CPP_POAC_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -7038,7 +7038,7 @@ DEP_CPP_POAS_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -7273,7 +7273,7 @@ DEP_CPP_POLIC=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -7508,7 +7508,7 @@ DEP_CPP_POLICY=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -7743,7 +7743,7 @@ DEP_CPP_PRINC=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -7981,7 +7981,7 @@ DEP_CPP_REQUE=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -8216,7 +8216,7 @@ DEP_CPP_SEQUE=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -8451,7 +8451,7 @@ DEP_CPP_SERVA=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -8686,7 +8686,7 @@ DEP_CPP_SERVE=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -8928,7 +8928,7 @@ DEP_CPP_SERVER=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -9164,7 +9164,7 @@ DEP_CPP_SKIP_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -9399,7 +9399,7 @@ DEP_CPP_STUB_=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -9635,7 +9635,7 @@ DEP_CPP_TAO_C=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -9870,7 +9870,7 @@ DEP_CPP_TAO_I=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -10106,7 +10106,7 @@ DEP_CPP_TYPECO=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -10341,7 +10341,7 @@ DEP_CPP_ANY_C=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -10577,7 +10577,7 @@ DEP_CPP_FORWA=\ {$(INCLUDE)}"\.\Forwarding_Servant.h"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -10812,7 +10812,7 @@ DEP_CPP_CURRE=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
@@ -11047,7 +11047,7 @@ DEP_CPP_CURREN=\ {$(INCLUDE)}"\.\Exception.i"\
{$(INCLUDE)}"\.\GIOP.h"\
{$(INCLUDE)}"\.\GIOP.i"\
- {$(INCLUDE)}"\.\IIOP_Interpreter.h"\
+ {$(INCLUDE)}"\.\CDR_Interpreter.h"\
{$(INCLUDE)}"\.\IIOP_Object.h"\
{$(INCLUDE)}"\.\IIOP_Object.i"\
{$(INCLUDE)}"\.\IIOP_ORB.h"\
diff --git a/TAO/tao/TAO_Static.dsp b/TAO/tao/TAO_Static.dsp index 012cf47d434..467d18e5d34 100644 --- a/TAO/tao/TAO_Static.dsp +++ b/TAO/tao/TAO_Static.dsp @@ -198,7 +198,7 @@ SOURCE=.\IIOP_Connector.cpp # End Source File
# Begin Source File
-SOURCE=.\IIOP_Interpreter.cpp
+SOURCE=.\CDR_Interpreter.cpp
# End Source File
# Begin Source File
@@ -442,7 +442,7 @@ SOURCE=.\IIOP_Connector.h # End Source File
# Begin Source File
-SOURCE=.\IIOP_Interpreter.h
+SOURCE=.\CDR_Interpreter.h
# End Source File
# Begin Source File
diff --git a/TAO/tao/Typecode.cpp b/TAO/tao/Typecode.cpp index 26a01a726b6..c8a9559daa3 100644 --- a/TAO/tao/Typecode.cpp +++ b/TAO/tao/Typecode.cpp @@ -16,7 +16,7 @@ #include "tao/Environment.h" #include "tao/Any.h" #include "tao/Exception.h" -#include "tao/IIOP_Interpreter.h" +#include "tao/CDR_Interpreter.h" #include "tao/Principal.h" #if !defined (__ACE_INLINE__) @@ -1970,7 +1970,7 @@ CORBA_TypeCode::private_discrim_pad_size (CORBA::Environment &env) size_t discrim_size; size_t overall_align; - (void) TAO_IIOP_Interpreter::calc_key_union_attributes (&stream, + (void) TAO_CDR_Interpreter::calc_key_union_attributes (&stream, overall_align, discrim_size, env); @@ -2314,11 +2314,11 @@ CORBA::TypeCode::private_size (CORBA::Environment &env) if (this->private_state_->tc_size_known_) return this->private_state_->tc_size_; - if (TAO_IIOP_Interpreter::table_[kind_].calc_ == 0) + if (TAO_CDR_Interpreter::table_[kind_].calc_ == 0) { private_state_->tc_size_known_ = 1; private_state_->tc_size_ = - TAO_IIOP_Interpreter::table_[kind_].size_; + TAO_CDR_Interpreter::table_[kind_].size_; return private_state_->tc_size_; } @@ -2328,7 +2328,7 @@ CORBA::TypeCode::private_size (CORBA::Environment &env) private_state_->tc_size_known_ = 1; private_state_->tc_size_ = - TAO_IIOP_Interpreter::table_[kind_].calc_ (&stream, alignment, env); + TAO_CDR_Interpreter::table_[kind_].calc_ (&stream, alignment, env); return private_state_->tc_size_; } @@ -2350,11 +2350,11 @@ CORBA::TypeCode::private_alignment (CORBA::Environment &env) if (this->private_state_->tc_alignment_known_) return this->private_state_->tc_alignment_; - if (TAO_IIOP_Interpreter::table_[kind_].calc_ == 0) + if (TAO_CDR_Interpreter::table_[kind_].calc_ == 0) { private_state_->tc_alignment_known_ = 1; private_state_->tc_alignment_ = - TAO_IIOP_Interpreter::table_[kind_].alignment_; + TAO_CDR_Interpreter::table_[kind_].alignment_; return private_state_->tc_alignment_; } @@ -2362,7 +2362,7 @@ CORBA::TypeCode::private_alignment (CORBA::Environment &env) TAO_InputCDR stream (this->buffer_+4, this->length_-4, this->byte_order_); - (void) TAO_IIOP_Interpreter::table_[kind_].calc_ (&stream, + (void) TAO_CDR_Interpreter::table_[kind_].calc_ (&stream, alignment, env); TAO_CHECK_ENV_RETURN (env, 0); |