#include <Bounded_Value_Sequence_T.h>
Public Types | |
typedef T | value_type |
typedef T | element_type |
typedef T const | const_value_type |
typedef value_type & | subscript_type |
typedef value_type const & | const_subscript_type |
typedef details::bounded_value_allocation_traits< value_type, MAX, true > | allocation_traits |
typedef details::value_traits< value_type, true > | element_traits |
typedef details::generic_sequence< value_type, allocation_traits, element_traits > | implementation_type |
Public Member Functions | |
bounded_value_sequence () | |
bounded_value_sequence (CORBA::ULong length, value_type *data, CORBA::Boolean release=false) | |
CORBA::ULong | maximum () const |
| |
CORBA::Boolean | release () const |
| |
CORBA::ULong | length () const |
| |
void | length (CORBA::ULong length) |
| |
value_type const & | operator[] (CORBA::ULong i) const |
[] | |
value_type & | operator[] (CORBA::ULong i) |
[] | |
void | replace (CORBA::ULong length, value_type *data, CORBA::Boolean release=false) |
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. | |
value_type const * | get_buffer () 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. | |
value_type * | get_buffer (CORBA::Boolean orphan=false) |
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. For sequences of strings, wide strings, and object references, the caller must use the sequence
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(). | |
void | swap (bounded_value_sequence &rhs) throw () |
| |
Static Public Member Functions | |
value_type * | allocbuf (CORBA::ULong maximum) |
value_type * | allocbuf () |
void | freebuf (value_type *buffer) |
Private Attributes | |
implementation_type | impl_ |
|
Definition at line 33 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 31 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 29 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 34 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 28 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 35 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 30 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 27 of file Bounded_Value_Sequence_T.h. |
|
Definition at line 37 of file Bounded_Value_Sequence_T.h.
00038 : impl_() 00039 {} |
|
Definition at line 40 of file Bounded_Value_Sequence_T.h.
00044 : impl_(MAX, length, data, release) 00045 {} |
|
Definition at line 95 of file Bounded_Value_Sequence_T.h.
00095 {
00096 return implementation_type::allocbuf(MAX);
00097 }
|
|
Definition at line 92 of file Bounded_Value_Sequence_T.h.
00092 {
00093 return implementation_type::allocbuf(maximum);
00094 }
|
|
Definition at line 98 of file Bounded_Value_Sequence_T.h.
00099 { 00100 implementation_type::freebuf(buffer); 00101 } |
|
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. For sequences of strings, wide strings, and object references, the caller must use the sequence 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().
Definition at line 85 of file Bounded_Value_Sequence_T.h.
00085 { 00086 return impl_.get_buffer(orphan); 00087 } |
|
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.
Definition at line 81 of file Bounded_Value_Sequence_T.h. Referenced by TAO::marshal_sequence().
00081 { 00082 return impl_.get_buffer(); 00083 } |
|
Definition at line 61 of file Bounded_Value_Sequence_T.h.
00061 { 00062 implementation_type::range::check_length(length, MAX); 00063 impl_.length(length); 00064 } |
|
Definition at line 57 of file Bounded_Value_Sequence_T.h. Referenced by TAO::demarshal_sequence(), and TAO::marshal_sequence().
00057 { 00058 return impl_.length(); 00059 } |
|
Definition at line 49 of file Bounded_Value_Sequence_T.h. Referenced by TAO::demarshal_sequence().
00049 { 00050 return impl_.maximum(); 00051 } |
|
[]
Definition at line 70 of file Bounded_Value_Sequence_T.h.
00070 { 00071 return impl_[i]; 00072 } |
|
[]
Definition at line 66 of file Bounded_Value_Sequence_T.h.
00066 { 00067 return impl_[i]; 00068 } |
|
Definition at line 53 of file Bounded_Value_Sequence_T.h.
00053 { 00054 return impl_.release(); 00055 } |
|
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.
Definition at line 74 of file Bounded_Value_Sequence_T.h.
00077 { 00078 impl_.replace(MAX, length, data, release); 00079 } |
|
Definition at line 89 of file Bounded_Value_Sequence_T.h.
00089 { 00090 impl_.swap(rhs.impl_); 00091 } |
|
Definition at line 104 of file Bounded_Value_Sequence_T.h. |