summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Alias_TypeCode.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/AnyTypeCode/Alias_TypeCode.cpp
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/AnyTypeCode/Alias_TypeCode.cpp')
-rw-r--r--TAO/tao/AnyTypeCode/Alias_TypeCode.cpp204
1 files changed, 0 insertions, 204 deletions
diff --git a/TAO/tao/AnyTypeCode/Alias_TypeCode.cpp b/TAO/tao/AnyTypeCode/Alias_TypeCode.cpp
deleted file mode 100644
index d968f65b205..00000000000
--- a/TAO/tao/AnyTypeCode/Alias_TypeCode.cpp
+++ /dev/null
@@ -1,204 +0,0 @@
-// $Id$
-
-#ifndef TAO_ALIAS_TYPECODE_CPP
-#define TAO_ALIAS_TYPECODE_CPP
-
-#include "tao/AnyTypeCode/Alias_TypeCode.h"
-
-#ifndef __ACE_INLINE__
-# include "tao/AnyTypeCode/Alias_TypeCode.inl"
-#endif /* !__ACE_INLINE__ */
-
-#include "tao/ORB_Core.h"
-#include "tao/CDR.h"
-#include "tao/AnyTypeCode/TypeCode_Traits.h"
-
-#include "ace/Dynamic_Service.h"
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template <typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-bool
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::tao_marshal (TAO_OutputCDR & cdr,
- CORBA::ULong offset) const
-{
- // A tk_alias TypeCode has a "complex" parameter list type (see
- // Table 15-2 in Section 15.3.5.1 "TypeCode" in the CDR section of
- // the CORBA specification), meaning that it must be marshaled into
- // a CDR encapsulation.
-
- // Create a CDR encapsulation.
-
- TAO_OutputCDR enc;
-
- // Account for the encoded CDR encapsulation length and byte order.
- //
- // Aligning on an octet since the next value after the CDR
- // encapsulation length will always be the byte order octet/boolean
- // in this case.
- offset = ACE_align_binary (offset + 4,
- ACE_CDR::OCTET_ALIGN);
-
- return
- enc << TAO_OutputCDR::from_boolean (TAO_ENCAP_BYTE_ORDER)
- && enc << TAO_OutputCDR::from_string (this->attributes_.id (), 0)
- && enc << TAO_OutputCDR::from_string (this->attributes_.name (), 0)
- && marshal (enc,
- Traits<StringType>::get_typecode (this->content_type_),
- offset + enc.total_length ())
- && cdr << static_cast<CORBA::ULong> (enc.total_length ())
- && cdr.write_octet_array_mb (enc.begin ());
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-void
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::tao_duplicate (void)
-{
- this->RefCountPolicy::add_ref ();
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-void
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::tao_release (void)
-{
- this->RefCountPolicy::remove_ref ();
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-CORBA::Boolean
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::equal_i (CORBA::TypeCode_ptr tc
- ACE_ENV_ARG_DECL) const
-{
- // The CORBA::TypeCode base class already verified equality of the
- // base attributes (id and name). Perform an equality comparison of
- // the content.
-
- CORBA::TypeCode_var rhs_content_type =
- tc->content_type (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK_RETURN (0);
-
- return
- Traits<StringType>::get_typecode (this->content_type_)->equal (
- rhs_content_type.in ()
- ACE_ENV_ARG_PARAMETER);
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-CORBA::Boolean
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::equivalent_i (
- CORBA::TypeCode_ptr
- ACE_ENV_ARG_DECL_NOT_USED) const
-{
- // Equivalence already verified in the base class
- // CORBA::TypeCode::equivalent() method.
-
- return true;
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-CORBA::TypeCode_ptr
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::get_compact_typecode_i (
- ACE_ENV_SINGLE_ARG_DECL) const
-{
- TAO_TypeCodeFactory_Adapter * const adapter =
- ACE_Dynamic_Service<TAO_TypeCodeFactory_Adapter>::instance (
- TAO_ORB_Core::typecodefactory_adapter_name ()
- );
-
- if (adapter == 0)
- {
- ACE_THROW_RETURN (CORBA::INITIALIZE (),
- CORBA::TypeCode::_nil ());
- }
-
- CORBA::TypeCode_var compact_content_type =
- Traits<StringType>::get_typecode (
- this->content_type_)->get_compact_typecode (
- ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK_RETURN (CORBA::TypeCode::_nil ());
-
- if (this->kind_ == CORBA::tk_alias)
- {
- return adapter->create_alias_tc (this->attributes_.id (),
- "", /* empty name */
- compact_content_type.in ()
- ACE_ENV_ARG_PARAMETER);
- }
- else
- {
- return adapter->create_value_box_tc (this->attributes_.id (),
- "", /* empty name */
- compact_content_type.in ()
- ACE_ENV_ARG_PARAMETER);
- }
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-char const *
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::id_i (
- ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
-{
- // Ownership is retained by the TypeCode, as required by the C++
- // mapping.
- return this->attributes_.id ();
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-char const *
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::name_i (
- ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
-{
- // Ownership is retained by the TypeCode, as required by the C++
- // mapping.
- return this->attributes_.name ();
-}
-
-template<typename StringType,
- typename TypeCodeType,
- class RefCountPolicy>
-CORBA::TypeCode_ptr
-TAO::TypeCode::Alias<StringType,
- TypeCodeType,
- RefCountPolicy>::content_type_i (
- ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
-{
- return
- CORBA::TypeCode::_duplicate (
- Traits<StringType>::get_typecode (this->content_type_));
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#endif /* TAO_ALIAS_TYPECODE_CPP */