#include <DynSequence_i.h>
Public Member Functions | |
TAO_DynSequence_i (void) | |
Constructor. | |
~TAO_DynSequence_i (void) | |
Destructor. | |
void | init (CORBA::TypeCode_ptr tc) |
Initialize using just a TypeCode. | |
void | init (const CORBA::Any &any) |
Initialize using an Any. | |
virtual CORBA::ULong | get_length (void) |
virtual void | set_length (CORBA::ULong len) |
virtual DynamicAny::AnySeq * | get_elements (void) |
virtual void | set_elements (const DynamicAny::AnySeq &value) |
virtual DynamicAny::DynAnySeq * | get_elements_as_dyn_any (void) |
virtual void | set_elements_as_dyn_any (const DynamicAny::DynAnySeq &value) |
virtual void | from_any (const CORBA::Any &value) |
virtual CORBA::Any * | to_any (void) |
virtual CORBA::Boolean | equal (DynamicAny::DynAny_ptr dyn_any) |
virtual void | destroy (void) |
virtual DynamicAny::DynAny_ptr | current_component (void) |
Static Public Member Functions | |
static TAO_DynSequence_i * | _narrow (CORBA::Object_ptr obj) |
Private Member Functions | |
CORBA::TypeCode_ptr | get_element_type (void) |
void | init_common (void) |
TAO_DynSequence_i (const TAO_DynSequence_i &src) | |
TAO_DynSequence_i & | operator= (const TAO_DynSequence_i &src) |
Private Attributes | |
ACE_Array_Base < DynamicAny::DynAny_var > | da_members_ |
Each component is also a DynAny. |
Implementation of Dynamic Any type for Sequences.
Definition at line 42 of file DynSequence_i.h.
TAO_DynSequence_i::TAO_DynSequence_i | ( | void | ) |
TAO_DynSequence_i::~TAO_DynSequence_i | ( | void | ) |
TAO_DynSequence_i::TAO_DynSequence_i | ( | const TAO_DynSequence_i & | src | ) | [private] |
TAO_DynSequence_i * TAO_DynSequence_i::_narrow | ( | CORBA::Object_ptr | obj | ) | [static] |
is_local
member into CORBA::Object. I'll take the easier route for now. Reimplemented from CORBA::LocalObject.
Definition at line 129 of file DynSequence_i.cpp.
{ if (CORBA::is_nil (_tao_objref)) { return 0; } return dynamic_cast<TAO_DynSequence_i *> (_tao_objref); }
DynamicAny::DynAny_ptr TAO_DynSequence_i::current_component | ( | void | ) | [virtual] |
Definition at line 692 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } if (this->current_position_ == -1) { return DynamicAny::DynAny::_nil (); } CORBA::ULong index = static_cast<CORBA::ULong> (this->current_position_); this->set_flag (this->da_members_[index].in (), 0); return DynamicAny::DynAny::_duplicate (this->da_members_[index].in ()); }
void TAO_DynSequence_i::destroy | ( | void | ) | [virtual] |
Definition at line 670 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } if (!this->ref_to_component_ || this->container_is_destroying_) { // Do a deep destroy. for (CORBA::ULong i = 0; i < this->component_count_; ++i) { this->set_flag (da_members_[i].in (), 1); this->da_members_[i]->destroy (); } this->destroyed_ = 1; } }
CORBA::Boolean TAO_DynSequence_i::equal | ( | DynamicAny::DynAny_ptr | dyn_any | ) | [virtual] |
Definition at line 627 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } CORBA::TypeCode_var tc = rhs->type (); CORBA::Boolean equivalent = tc->equivalent (this->type_.in ()); if (!equivalent) { return false; } if (rhs->component_count () != this->component_count_) { return false; } DynamicAny::DynAny_var tmp; CORBA::Boolean member_equal; for (CORBA::ULong i = 0; i < this->component_count_; ++i) { rhs->seek (static_cast<CORBA::Long> (i)); tmp = rhs->current_component (); // Recursive step. member_equal = tmp->equal (this->da_members_[i].in ()); if (!member_equal) { return false; } } return true; }
void TAO_DynSequence_i::from_any | ( | const CORBA::Any & | value | ) | [virtual] |
Definition at line 465 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } CORBA::TypeCode_var tc = any.type (); CORBA::Boolean equivalent = this->type_.in ()->equivalent (tc.in ()); if (equivalent) { // Get the CDR stream of the Any, if there isn't one, make one. TAO::Any_Impl *impl = any.impl (); TAO_OutputCDR out; TAO_InputCDR cdr (static_cast<ACE_Message_Block *> (0)); if (impl->encoded ()) { TAO::Unknown_IDL_Type * const unk = dynamic_cast<TAO::Unknown_IDL_Type *> (impl); if (!unk) throw CORBA::INTERNAL (); cdr = unk->_tao_get_cdr (); } else { impl->marshal_value (out); TAO_InputCDR tmp_in (out); cdr = tmp_in; } CORBA::ULong arg_length; // If the any is a sequence, first 4 bytes of cdr hold the // length. cdr.read_ulong (arg_length); // If the array grows, we must do it now. if (arg_length > this->component_count_) { this->da_members_.size (arg_length); } CORBA::TypeCode_var field_tc = this->get_element_type (); for (CORBA::ULong i = 0; i < arg_length; ++i) { CORBA::Any field_any; TAO_InputCDR unk_in (cdr); TAO::Unknown_IDL_Type *field_unk = 0; ACE_NEW (field_unk, TAO::Unknown_IDL_Type (field_tc.in (), unk_in)); field_any.replace (field_unk); if (i < this->component_count_) { this->da_members_[i]->destroy (); } this->da_members_[i] = TAO::MakeDynAnyUtils::make_dyn_any_t<const CORBA::Any&> ( field_any._tao_get_typecode (), field_any); // Move to the next field in the CDR stream. (void) TAO_Marshal_Object::perform_skip (field_tc.in (), &cdr); } // Destroy any dangling members. for (CORBA::ULong j = arg_length; j < this->component_count_; ++j) { this->da_members_[j]->destroy (); } // If the array shrinks, we must wait until now to do it. if (arg_length < this->component_count_) { this->da_members_.size (arg_length); } // Now we can update component_count_. this->component_count_ = arg_length; this->current_position_ = arg_length ? 0 : -1; } else { throw DynamicAny::DynAny::TypeMismatch (); } }
CORBA::TypeCode_ptr TAO_DynSequence_i::get_element_type | ( | void | ) | [private] |
Definition at line 142 of file DynSequence_i.cpp.
{ CORBA::TypeCode_var element_type = CORBA::TypeCode::_duplicate (this->type_.in ()); // Strip away aliases (if any) on top of the outer type. CORBA::TCKind kind = element_type->kind (); while (kind != CORBA::tk_sequence) { element_type = element_type->content_type (); kind = element_type->kind (); } // Return the content type. CORBA::TypeCode_ptr retval = element_type->content_type (); return retval; }
DynamicAny::AnySeq * TAO_DynSequence_i::get_elements | ( | void | ) | [virtual] |
Definition at line 251 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } CORBA::ULong length = static_cast<CORBA::ULong> (this->da_members_.size ()); DynamicAny::AnySeq *elements; ACE_NEW_THROW_EX (elements, DynamicAny::AnySeq (length), CORBA::NO_MEMORY ()); elements->length (length); DynamicAny::AnySeq_var safe_retval = elements; // Initialize each Any. for (CORBA::ULong i = 0; i < length; ++i) { CORBA::Any_var tmp = this->da_members_[i]->to_any (); safe_retval[i] = tmp.in (); } return safe_retval._retn (); }
DynamicAny::DynAnySeq * TAO_DynSequence_i::get_elements_as_dyn_any | ( | void | ) | [virtual] |
Definition at line 363 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } DynamicAny::DynAnySeq *retval = 0; ACE_NEW_THROW_EX (retval, DynamicAny::DynAnySeq (this->component_count_), CORBA::NO_MEMORY ()); retval->length (this->component_count_); DynamicAny::DynAnySeq_var safe_retval (retval); for (CORBA::ULong i = 0; i < this->component_count_; ++i) { // A deep copy is made only by copy() (CORBA 2.4.2 section 9.2.3.6). // Set the flag so the caller can't destroy. this->set_flag (this->da_members_[i].in (), 0); safe_retval[i] = DynamicAny::DynAny::_duplicate (this->da_members_[i].in ()); } return safe_retval._retn (); }
CORBA::ULong TAO_DynSequence_i::get_length | ( | void | ) | [virtual] |
Definition at line 166 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } return this->component_count_; }
void TAO_DynSequence_i::init | ( | const CORBA::Any & | any | ) |
Initialize using an Any.
Definition at line 39 of file DynSequence_i.cpp.
{ CORBA::TypeCode_var tc = any.type (); CORBA::TCKind kind = TAO_DynAnyFactory::unalias (tc.in ()); if (kind != CORBA::tk_sequence) { throw DynamicAny::DynAnyFactory::InconsistentTypeCode (); } this->type_ = tc; // Get the CDR stream of the Any, if there isn't one, make one. TAO::Any_Impl *impl = any.impl (); CORBA::ULong length; TAO_OutputCDR out; TAO_InputCDR cdr (static_cast<ACE_Message_Block *> (0)); if (impl->encoded ()) { TAO::Unknown_IDL_Type * const unk = dynamic_cast<TAO::Unknown_IDL_Type *> (impl); if (!unk) throw CORBA::INTERNAL (); cdr = unk->_tao_get_cdr (); } else { impl->marshal_value (out); TAO_InputCDR tmp_in (out); cdr = tmp_in; } // If the any is a sequence, first 4 bytes of cdr hold the // length. cdr.read_ulong (length); // Resize the array. this->da_members_.size (length); this->init_common (); // Get the type of the sequence elments. CORBA::TypeCode_var field_tc = this->get_element_type (); for (CORBA::ULong i = 0; i < length; ++i) { CORBA::Any field_any; TAO_InputCDR unk_in (cdr); TAO::Unknown_IDL_Type *field_unk = 0; ACE_NEW (field_unk, TAO::Unknown_IDL_Type (field_tc.in (), unk_in)); field_any.replace (field_unk); // This recursive step will call the correct constructor // based on the type of field_any. this->da_members_[i] = TAO::MakeDynAnyUtils::make_dyn_any_t<const CORBA::Any&> ( field_any._tao_get_typecode (), field_any); // Move to the next field in the CDR stream. (void) TAO_Marshal_Object::perform_skip (field_tc.in (), &cdr); } }
void TAO_DynSequence_i::init | ( | CORBA::TypeCode_ptr | tc | ) |
Initialize using just a TypeCode.
Definition at line 109 of file DynSequence_i.cpp.
{ CORBA::TCKind kind = TAO_DynAnyFactory::unalias (tc); if (kind != CORBA::tk_sequence) { throw DynamicAny::DynAnyFactory::InconsistentTypeCode (); } // Empty sequence. this->da_members_.size (0); this->init_common (); this->type_ = CORBA::TypeCode::_duplicate (tc); }
void TAO_DynSequence_i::init_common | ( | void | ) | [private] |
Definition at line 28 of file DynSequence_i.cpp.
{ this->ref_to_component_ = false; this->container_is_destroying_ = false; this->has_components_ = true; this->destroyed_ = false; this->current_position_ = -1; this->component_count_ = static_cast<CORBA::ULong> (this->da_members_.size ()); }
TAO_DynSequence_i& TAO_DynSequence_i::operator= | ( | const TAO_DynSequence_i & | src | ) | [private] |
void TAO_DynSequence_i::set_elements | ( | const DynamicAny::AnySeq & | value | ) | [virtual] |
Definition at line 282 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } CORBA::TypeCode_var stripped_tc = TAO_DynAnyFactory::strip_alias (this->type_.in ()); CORBA::ULong length = value.length (); CORBA::ULong bound = stripped_tc->length (); if (bound > 0 && length > bound) { throw DynamicAny::DynAny::InvalidValue (); } // CORBA 2.4.2. if (length == 0) { this->current_position_ = -1; } else { this->current_position_ = 0; } // If the array grows, we must do it now. if (length > this->component_count_) { this->da_members_.size (length); } CORBA::TypeCode_var element_type = this->get_element_type (); CORBA::TypeCode_var value_tc; for (CORBA::ULong i = 0; i < length; ++i) { // Check each arg element for type match. value_tc = value[i].type (); CORBA::Boolean equivalent = value_tc->equivalent (element_type.in ()); if (equivalent) { // Destroy any existing members. if (i < this->component_count_) { this->da_members_[i]->destroy (); } this->da_members_[i] = TAO::MakeDynAnyUtils::make_dyn_any_t<const CORBA::Any&> ( value[i]._tao_get_typecode (), value[i]); } else { throw DynamicAny::DynAny::TypeMismatch (); } } // Destroy any dangling members. for (CORBA::ULong j = length; j < this->component_count_; ++j) { this->da_members_[j]->destroy (); } // If the array shrinks, we must wait until now to do it. if (length < this->component_count_) { this->da_members_.size (length); } // Now we can update component_count_. this->component_count_ = length; }
void TAO_DynSequence_i::set_elements_as_dyn_any | ( | const DynamicAny::DynAnySeq & | value | ) | [virtual] |
Definition at line 392 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } CORBA::TypeCode_var stripped_tc = TAO_DynAnyFactory::strip_alias (this->type_.in ()); CORBA::ULong length = values.length (); CORBA::ULong bound = stripped_tc->length (); if (bound > 0 && length > bound) { throw DynamicAny::DynAny::InvalidValue (); } // If the array grows, we must do it now. if (length > this->component_count_) { this->da_members_.size (length); } CORBA::TypeCode_var element_type = this->get_element_type (); CORBA::TypeCode_var val_type; CORBA::Boolean equivalent; for (CORBA::ULong i = 0; i < length; ++i) { val_type = values[i]->type (); equivalent = val_type->equivalent (element_type.in ()); if (equivalent) { // Destroy any existing members. if (i < this->component_count_) { this->da_members_[i]->destroy (); } this->da_members_[i] = values[i]->copy (); } else { throw DynamicAny::DynAny::TypeMismatch (); } } // Destroy any dangling members. for (CORBA::ULong j = length; j < this->component_count_; ++j) { this->da_members_[j]->destroy (); } // If the array shrinks, we must wait until now to do it. if (length < this->component_count_) { this->da_members_.size (length); } // Now we can update component_count_. this->component_count_ = length; }
void TAO_DynSequence_i::set_length | ( | CORBA::ULong | len | ) | [virtual] |
Definition at line 177 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } // CORBA::TypeCode::length() does not accept aliased type codes. CORBA::TypeCode_var stripped_tc = TAO_DynAnyFactory::strip_alias (this->type_.in ()); CORBA::ULong bound = stripped_tc->length (); if (bound > 0 && length > bound) { throw DynamicAny::DynAny::InvalidValue (); } // CORBA 2.3.1 has several explicit rules about resetting the // current position, depending on the current value of the // current position, the current size, and the new length. if (length == 0) { this->current_position_ = -1; } else if (length > this->component_count_) { if (this->current_position_ == -1) { // Set it to the first new slot. this->current_position_ = static_cast<CORBA::Long> (this->component_count_); } } else if (length < this->component_count_) { // If the current position will no longer exist.. if (this->current_position_ >= static_cast<CORBA::Long> (length)) { this->current_position_ = -1; } } if (length > this->component_count_) { // Grow array first, then initialize new members. this->da_members_.size (length); CORBA::TypeCode_var elemtype = stripped_tc->content_type (); for (CORBA::ULong i = this->component_count_; i < length; ++i) { this->da_members_[i] = TAO::MakeDynAnyUtils::make_dyn_any_t<CORBA::TypeCode_ptr> ( elemtype.in (), elemtype.in ()); } } else if (length < this->component_count_) { // Destroy any dangling members first, then shrink array. for (CORBA::ULong j = length; j < this->component_count_; ++j) { this->da_members_[j]->destroy (); } this->da_members_.size (length); } // Now we can update component_count_. this->component_count_ = length; }
CORBA::Any_ptr TAO_DynSequence_i::to_any | ( | void | ) | [virtual] |
Definition at line 564 of file DynSequence_i.cpp.
{ if (this->destroyed_) { throw ::CORBA::OBJECT_NOT_EXIST (); } TAO_OutputCDR out_cdr; out_cdr.write_ulong (this->component_count_); CORBA::TypeCode_var field_tc = this->get_element_type (); for (CORBA::ULong i = 0; i < this->component_count_; ++i) { // Recursive step CORBA::Any_var field_any = this->da_members_[i]->to_any (); TAO::Any_Impl *field_impl = field_any->impl (); TAO_OutputCDR field_out; TAO_InputCDR field_cdr (static_cast<ACE_Message_Block *> (0)); if (field_impl->encoded ()) { TAO::Unknown_IDL_Type * const field_unk = dynamic_cast<TAO::Unknown_IDL_Type *> (field_impl); if (!field_unk) throw CORBA::INTERNAL (); field_cdr = field_unk->_tao_get_cdr (); } else { field_impl->marshal_value (field_out); TAO_InputCDR tmp_in (field_out); field_cdr = tmp_in; } (void) TAO_Marshal_Object::perform_append (field_tc.in (), &field_cdr, &out_cdr); } TAO_InputCDR in_cdr (out_cdr); CORBA::Any_ptr retval = 0; ACE_NEW_THROW_EX (retval, CORBA::Any, CORBA::NO_MEMORY ()); TAO::Unknown_IDL_Type *unk = 0; ACE_NEW_THROW_EX (unk, TAO::Unknown_IDL_Type (this->type_.in (), in_cdr), CORBA::NO_MEMORY ()); retval->replace (unk); return retval; }
ACE_Array_Base<DynamicAny::DynAny_var> TAO_DynSequence_i::da_members_ [private] |
Each component is also a DynAny.
Definition at line 103 of file DynSequence_i.h.