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

TAO_Unbounded_Sequence< CORBA::Octet > Class Reference

An unbounded sequence of Octets. More...

#include <Sequence.h>

Inheritance diagram for TAO_Unbounded_Sequence< CORBA::Octet >:

Inheritance graph
[legend]
Collaboration diagram for TAO_Unbounded_Sequence< CORBA::Octet >:

Collaboration graph
[legend]
List of all members.

Public Methods

 TAO_Unbounded_Sequence (void)
 see TAO_Unbounded_Sequence in "Sequence_T.h". More...

 TAO_Unbounded_Sequence (CORBA::ULong max)
 TAO_Unbounded_Sequence (CORBA::ULong max, CORBA::ULong length, CORBA::Octet *data, CORBA::Boolean release=0)
virtual ~TAO_Unbounded_Sequence (void)
 TAO_Unbounded_Sequence (const TAO_Unbounded_Sequence< CORBA::Octet > &)
 The copy constructor and assignment operators *do* copy the data, though we could simply duplicate the ref count in the ACE_Message_Block this will change the semantics for this operations. More...

TAO_Unbounded_Sequence< CORBA::Octet > & operator= (const TAO_Unbounded_Sequence< CORBA::Octet > &)
CORBA::Octetoperator[] (CORBA::ULong)
 See the general description in "Sequence_T.h" NOTE: This last two methods can be rendered useless in certain cases, see below. More...

const CORBA::Octetoperator[] (CORBA::ULong) const
virtual void _allocate_buffer (CORBA::ULong length)
 Implement the methods for all the sequence, please seee TAO_Base_Sequence. More...

virtual void _deallocate_buffer (void)
 Must deallocate the buffer and then set it to zero. More...

CORBA::Octetget_buffer (CORBA::Boolean orphan=0)
const CORBA::Octetget_buffer (void) const
void replace (CORBA::ULong max, CORBA::ULong length, CORBA::Octet *data, CORBA::Boolean release=0)
 See the general description of this methods in "Sequence_T.h". More...

ACE_Message_Blockmb (void) const
 Returns the underlying message block, the caller must *not* release the copy. More...

 TAO_Unbounded_Sequence (CORBA::ULong length, const ACE_Message_Block *mb)
 Create a sequence of octets from a single message block (i.e. it ignores any chaining in the meesage block). More...

void replace (CORBA::ULong length, const ACE_Message_Block *mb)
 Replaces the current buffer with <mb>, using only <length> bytes. It takes a duplicate of <mb> so the user still owns it. More...


Static Public Methods

void _tao_any_destructor (void *)
 Use in the implementation of insertion and extraction operators from CORBA::Any. More...

CORBA::Octetallocbuf (CORBA::ULong)
 Allocate storage for the sequence, please note that the storage is always held in a ACE_Message_Block. More...

void freebuf (CORBA::Octet *)
 Free the storage. More...


Private Attributes

ACE_Message_Blockmb_

Friends

class TAO_Marshal_Sequence
 For efficient marshalling and demarshalling. More...


Detailed Description

An unbounded sequence of Octets.

Marshalling and demarshalling octet sequences can be highly optimize, for instance at demarshalling we don't require a copy from the CDR buffer to the octet sequence buffer, we can simply hold a duplicate of the underlying ACE_Message_Block. Specializing the TAO_Unbounded_Sequence<T> parametric class, is an excellent way to achieve this optimizations.


Constructor & Destructor Documentation

virtual TAO_Unbounded_Sequence< CORBA::Octet >::~TAO_Unbounded_Sequence void    [virtual]
 


Member Function Documentation

virtual void TAO_Unbounded_Sequence< CORBA::Octet >::_allocate_buffer CORBA::ULong    length [virtual]
 

Implement the methods for all the sequence, please seee TAO_Base_Sequence.

Reimplemented from TAO_Base_Sequence.

virtual void TAO_Unbounded_Sequence< CORBA::Octet >::_deallocate_buffer void    [virtual]
 

Must deallocate the buffer and then set it to zero.

Reimplemented from TAO_Base_Sequence.

void TAO_Unbounded_Sequence< CORBA::Octet >::_tao_any_destructor void *    _tao_void_pointer [static]
 

Use in the implementation of insertion and extraction operators from CORBA::Any.

Reimplemented in IOP::TaggedProfile::_tao_seq_Octet, IOP::TaggedComponent::_tao_seq_Octet, IOP::ServiceContext::_tao_seq_Octet, Messaging::PolicyValue::_tao_seq_Octet, and CORBA_OctetSeq.

CORBA::Octet* TAO_Unbounded_Sequence< CORBA::Octet >::allocbuf CORBA::ULong    [static]
 

Allocate storage for the sequence, please note that the storage is always held in a ACE_Message_Block.

void TAO_Unbounded_Sequence< CORBA::Octet >::freebuf CORBA::Octet   [static]
 

Free the storage.

const CORBA::Octet* TAO_Unbounded_Sequence< CORBA::Octet >::get_buffer void    const
 

CORBA::Octet* TAO_Unbounded_Sequence< CORBA::Octet >::get_buffer CORBA::Boolean    orphan = 0
 

ACE_Message_Block* TAO_Unbounded_Sequence< CORBA::Octet >::mb void    const
 

Returns the underlying message block, the caller must *not* release the copy.

TAO_Unbounded_Sequence<CORBA::Octet>& TAO_Unbounded_Sequence< CORBA::Octet >::operator= const TAO_Unbounded_Sequence< CORBA::Octet > &   
 

const CORBA::Octet& TAO_Unbounded_Sequence< CORBA::Octet >::operator[] CORBA::ULong    const
 

CORBA::Octet& TAO_Unbounded_Sequence< CORBA::Octet >::operator[] CORBA::ULong   
 

See the general description in "Sequence_T.h" NOTE: This last two methods can be rendered useless in certain cases, see below.

void TAO_Unbounded_Sequence< CORBA::Octet >::replace CORBA::ULong    length,
const ACE_Message_Block   mb
 

Replaces the current buffer with <mb>, using only <length> bytes. It takes a duplicate of <mb> so the user still owns it.

void TAO_Unbounded_Sequence< CORBA::Octet >::replace CORBA::ULong    max,
CORBA::ULong    length,
CORBA::Octet   data,
CORBA::Boolean    release = 0
 

See the general description of this methods in "Sequence_T.h".

TAO_Unbounded_Sequence< CORBA::Octet >::TAO_Unbounded_Sequence CORBA::ULong    length,
const ACE_Message_Block   mb
 

Create a sequence of octets from a single message block (i.e. it ignores any chaining in the meesage block).

TAO_Unbounded_Sequence< CORBA::Octet >::TAO_Unbounded_Sequence const TAO_Unbounded_Sequence< CORBA::Octet > &   
 

The copy constructor and assignment operators *do* copy the data, though we could simply duplicate the ref count in the ACE_Message_Block this will change the semantics for this operations.

TAO_Unbounded_Sequence< CORBA::Octet >::TAO_Unbounded_Sequence CORBA::ULong    max,
CORBA::ULong    length,
CORBA::Octet   data,
CORBA::Boolean    release = 0
 

TAO_Unbounded_Sequence< CORBA::Octet >::TAO_Unbounded_Sequence CORBA::ULong    max
 

TAO_Unbounded_Sequence< CORBA::Octet >::TAO_Unbounded_Sequence void   
 

see TAO_Unbounded_Sequence in "Sequence_T.h".


Friends And Related Function Documentation

friend class TAO_Marshal_Sequence [friend]
 

For efficient marshalling and demarshalling.

Reimplemented from TAO_Base_Sequence.


Member Data Documentation

ACE_Message_Block* TAO_Unbounded_Sequence< CORBA::Octet >::mb_ [private]
 


The documentation for this class was generated from the following file:
Generated on Thu Oct 10 18:55:46 2002 for TAO by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001