#ifndef guard_unbounded_valuetype_sequence_hpp #define guard_unbounded_valuetype_sequence_hpp /** * @file * * @brief Implement unbounded sequences for value types. * * @author Carlos O'Ryan */ #include "Unbounded_Valuetype_Allocation_Traits_T.h" #include "Valuetype_Traits_T.h" #include "tao/Generic_Sequence_T.h" #include "Valuetype_Sequence_Element_T.h" #include "tao/MM_Sequence_Iterator_T.h" #include "tao/Unbounded_Reference_Allocation_Traits_T.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL namespace TAO { template class unbounded_valuetype_sequence { public: typedef object_t object_type; typedef object_type * value_type; typedef value_type const const_value_type; typedef ::CORBA::ULong size_type; typedef details::valuetype_traits element_traits; typedef details::unbounded_reference_allocation_traits allocation_traits; typedef details::valuetype_sequence_element element_type; typedef element_type subscript_type; typedef value_type const & const_subscript_type; typedef details::generic_sequence implementation_type; inline unbounded_valuetype_sequence() : impl_() {} inline explicit unbounded_valuetype_sequence(CORBA::ULong maximum) : impl_(maximum) {} inline unbounded_valuetype_sequence( CORBA::ULong maximum, CORBA::ULong length, value_type * data, CORBA::Boolean release) : impl_(maximum, length, data, release) {} /* Use default ctor, operator= and dtor */ inline CORBA::ULong maximum() const { return impl_.maximum(); } inline CORBA::Boolean release() const { return impl_.release(); } inline CORBA::ULong length() const { return impl_.length(); } inline void length(CORBA::ULong length) { impl_.length(length); } inline value_type const & operator[](CORBA::ULong i) const { return impl_[i]; } inline element_type operator[](CORBA::ULong i) { return element_type(impl_[i], release()); } inline value_type const * get_buffer() const { return impl_.get_buffer(); } inline void replace( CORBA::ULong maximum, CORBA::ULong length, value_type * data, CORBA::Boolean release = false) { impl_.replace(maximum, length, data, release); } inline value_type * get_buffer(CORBA::Boolean orphan = false) { return impl_.get_buffer(orphan); } inline void swap(unbounded_valuetype_sequence & rhs) throw() { impl_.swap(rhs.impl_); } static value_type * allocbuf(CORBA::ULong maximum) { return implementation_type::allocbuf(maximum); } static void freebuf(value_type * buffer) { implementation_type::freebuf(buffer); } #if defined TAO_HAS_SEQUENCE_ITERATORS && TAO_HAS_SEQUENCE_ITERATORS == 1 /// /// Additions to support iterator semantics for TAO unbounded value type /// sequences. /// // = Traits and factory methods that create iterators. typedef MM_Sequence_Iterator > iterator; typedef Const_MM_Sequence_Iterator > const_iterator; typedef MM_Sequence_Reverse_Iterator > reverse_iterator; typedef Const_MM_Sequence_Reverse_Iterator > const_reverse_iterator; // Get an iterator that points to the beginning of the sequence. inline iterator begin (void) { return iterator (&this->impl_); } // Get a const iterator that points to the beginning of the sequence. inline const_iterator begin (void) const { return const_iterator (&this->impl_); } // Get an iterator that points to the end of the sequence. inline iterator end (void) { return iterator (&this->impl_, this->impl_.length ()); } // Get a const iterator that points to the end of the sequence. inline const_iterator end (void) const { return const_iterator (&this->impl_, this->impl_.length ()); } // Get a reverse iterator that points to the end of the sequence. inline reverse_iterator rbegin (void) { return reverse_iterator (&this->impl_, this->impl_.length () - 1); } // Get a const reverse iterator that points to the end of the sequence. inline const_reverse_iterator rbegin (void) const { return const_reverse_iterator (&this->impl_, this->impl_.length () - 1); } // Get a reverse iterator that points to one before the beginning // of the sequence. inline reverse_iterator rend (void) { return reverse_iterator (&this->impl_, -1); } // Get a const reverse iterator that points to one before the // beginning of the sequence. inline const_reverse_iterator rend (void) const { return const_reverse_iterator (&this->impl_, -1); } #endif /* TAO_HAS_SEQUENCE_ITERATORS==1 */ private: implementation_type impl_; }; template bool marshal_sequence(stream & strm, const TAO::unbounded_valuetype_sequence & source) { ::CORBA::ULong const length = source.length (); if (!(strm << length)) { return false; } for(CORBA::ULong i = 0; i < length; ++i) { if (!(strm << source[i])) { return false; } } return true; } template bool demarshal_sequence(stream & strm, TAO::unbounded_valuetype_sequence & target) { typedef typename TAO::unbounded_valuetype_sequence sequence; typedef typename sequence::allocation_traits sequence_allocation_traits; ::CORBA::ULong new_length = 0; if (!(strm >> new_length)) { return false; } if (new_length > strm.length()) { return false; } sequence tmp(new_length, new_length, sequence_allocation_traits::allocbuf_noinit(new_length), true); typename sequence::value_type * buffer = tmp.get_buffer(); for(CORBA::ULong i = 0; i < new_length; ++i) { if (!(strm >> buffer[i])) { return false; } } tmp.swap(target); return true; } } // namespace TAO TAO_END_VERSIONED_NAMESPACE_DECL #endif // guard_unbounded_valuetype_sequence_hpp