Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

TAO_Bounded_Array_Sequence< T, T_slice, MAX > Class Template Reference

Bounded version of TAO_Unbounded_Array_Sequence. More...

#include <Sequence_T.h>

Inheritance diagram for TAO_Bounded_Array_Sequence< T, T_slice, MAX >:

Inheritance graph
[legend]
Collaboration diagram for TAO_Bounded_Array_Sequence< T, T_slice, MAX >:

Collaboration graph
[legend]
List of all members.

Public Methods

 TAO_Bounded_Array_Sequence (void)
 default ctor.

 TAO_Bounded_Array_Sequence (CORBA::ULong length, T *value, CORBA::Boolean release=0)
 Constructor from data.

 TAO_Bounded_Array_Sequence (const TAO_Bounded_Array_Sequence< T, T_slice, MAX > &)
 Copy constructor.

 ~TAO_Bounded_Array_Sequence (void)
 destructor

TAO_Bounded_Array_Sequence & operator= (const TAO_Bounded_Array_Sequence< T, T_slice, MAX > &)
 Assignment from another Bounded sequence.

T & operator[] (CORBA::ULong)
 operator[]

const T & operator[] (CORBA::ULong) const
 operator[]

virtual void _allocate_buffer (CORBA::ULong length)
virtual void _deallocate_buffer (void)
 deallocate the buffer

T * get_buffer (CORBA::Boolean orphan=0)
const T * get_buffer (void) const
void replace (CORBA::ULong max, CORBA::ULong length, T *data, CORBA::Boolean release=0)

Static Public Methods

T * allocbuf (CORBA::ULong length)
 Allocate storage for a sequence..

void freebuf (T *buffer)

Detailed Description

template<class T, class T_slice, size_t MAX>
class TAO_Bounded_Array_Sequence< T, T_slice, MAX >

Bounded version of TAO_Unbounded_Array_Sequence.

Please see the documentation for the unbounded case.


Constructor & Destructor Documentation

template<typename T, typename T_slice, size_t MAX>
ACE_INLINE TAO_Bounded_Array_Sequence< T, T_slice, MAX >::TAO_Bounded_Array_Sequence void   
 

default ctor.

template<typename T, typename T_slice, size_t MAX>
ACE_INLINE TAO_Bounded_Array_Sequence< T, T_slice, MAX >::TAO_Bounded_Array_Sequence CORBA::ULong    length,
T *    value,
CORBA::Boolean    release = 0
 

Constructor from data.

template<typename T, typename T_slice, size_t MAX>
TAO_Bounded_Array_Sequence< T, T_slice, MAX >::TAO_Bounded_Array_Sequence const TAO_Bounded_Array_Sequence< T, T_slice, MAX > &   
 

Copy constructor.

template<typename T, typename T_slice, size_t MAX>
TAO_Bounded_Array_Sequence< T, T_slice, MAX >::~TAO_Bounded_Array_Sequence void   
 

destructor


Member Function Documentation

template<typename T, typename T_slice, size_t MAX>
void TAO_Bounded_Array_Sequence< T, T_slice, MAX >::_allocate_buffer CORBA::ULong    length [virtual]
 

allocate a buffer of the requested length. The buffer is allocated for the right type

Implements TAO_Base_Sequence.

template<typename T, typename T_slice, size_t MAX>
void TAO_Bounded_Array_Sequence< T, T_slice, MAX >::_deallocate_buffer void    [virtual]
 

deallocate the buffer

Implements TAO_Base_Sequence.

template<typename T, typename T_slice, size_t MAX>
T * TAO_Bounded_Array_Sequence< T, T_slice, MAX >::allocbuf CORBA::ULong    length [static]
 

Allocate storage for a sequence..

template<typename T, typename T_slice, size_t MAX>
void TAO_Bounded_Array_Sequence< T, T_slice, MAX >::freebuf T *    buffer [static]
 

Free a buffer allocated by allocbuf() and release each element on it.

template<typename T, typename T_slice, size_t MAX>
ACE_INLINE const T * TAO_Bounded_Array_Sequence< T, T_slice, MAX >::get_buffer void    const
 

This function allows read-only access to the sequence buffer. The sequence returns its buffer, allocating one of one has not yet been allocated. No direct modification of the returned buffer by the caller is permitted.

template<typename T, typename T_slice, size_t MAX>
T * TAO_Bounded_Array_Sequence< T, T_slice, MAX >::get_buffer CORBA::Boolean    orphan = 0
 

Allows read-write access to the underlying buffer. If <orphan> is FALSE the sequence returns a pointer to its buffer, allocating one if it has not yet done so. The number of elements in the buffer can be determined from the sequence <length> accessor.

If the <orphan> argument to <get_buffer> is FALSE, the sequence maintains ownership of the underlying buffer. Elements in the returned buffer may be directly replaced by the caller.

If the <orphan> argument to <get_buffer> is TRUE, the sequence yields ownership of the buffer to the caller. If <orphan> is TRUE and the sequence does not own its buffer (i.e., its <release> flag is FALSE), the return value is a null pointer. If the buffer is taken from the sequence using this form of <get_buffer>, the sequence reverts to the same state it would have if constructed using its default constructor. The caller becomes responsible for eventually freeing each element of the returned buffer (for strings, wide string, and object references), and then freeing the returned buffer itself using <freebuf>.

template<typename T, typename T_slice, size_t MAX>
TAO_Bounded_Array_Sequence< T, T_slice, MAX > & TAO_Bounded_Array_Sequence< T, T_slice, MAX >::operator= const TAO_Bounded_Array_Sequence< T, T_slice, MAX > &   
 

Assignment from another Bounded sequence.

template<typename T, typename T_slice, size_t MAX>
ACE_INLINE const T & TAO_Bounded_Array_Sequence< T, T_slice, MAX >::operator[] CORBA::ULong    const
 

operator[]

template<typename T, typename T_slice, size_t MAX>
ACE_INLINE T & TAO_Bounded_Array_Sequence< T, T_slice, MAX >::operator[] CORBA::ULong   
 

operator[]

template<typename T, typename T_slice, size_t MAX>
void TAO_Bounded_Array_Sequence< T, T_slice, MAX >::replace CORBA::ULong    max,
CORBA::ULong    length,
T *    data,
CORBA::Boolean    release = 0
 

Allows the buffer underlying a sequence to be replaced. The parameters to <replace> are identical in type, order, and purpose to those for the <T *data> constructor for the sequence.


The documentation for this class was generated from the following files:
Generated on Wed Jan 14 23:24:10 2004 for TAO by doxygen1.2.18