RTI Connext Traditional C++ API
Version 6.1.0
|
<<interface>> <<generic>> A type-safe, ordered collection of elements. The type of these elements is referred to in this documentation as Foo
.
More...
Public Member Functions | |
FooSeq & | operator= (const struct FooSeq &src_seq) |
Copy elements from another sequence, resizing the sequence if necessary. More... | |
bool | copy_no_alloc (const struct FooSeq &src_seq) |
Copy elements from another sequence, only if the destination sequence has enough capacity. More... | |
bool | from_array (const Foo array[], DDS_Long length) |
Copy elements from an array of elements, resizing the sequence if necessary. The original contents of the sequence (if any) are replaced. More... | |
bool | to_array (Foo array[], DDS_Long length) |
Copy elements to an array of elements. The original contents of the array (if any) are replaced. More... | |
Foo & | operator[] (DDS_Long i) |
Set the i-th element of the sequence. More... | |
const Foo & | operator[] (DDS_Long i) const |
Get the i-th element for a const sequence. More... | |
DDS_Long | length () const |
Get the logical length of this sequence. More... | |
bool | length (DDS_Long new_length) |
Set the sequence to the desired length, and resize the sequence if necessary. More... | |
bool | ensure_length (DDS_Long length, DDS_Long max) |
Set the sequence to the desired length, and resize the sequence if necessary. More... | |
DDS_Long | maximum () const |
Get the current maximum number of elements that can be stored in this sequence. More... | |
bool | maximum (DDS_Long new_max) |
Resize this sequence to a new desired maximum. More... | |
bool | loan_contiguous (Foo *buffer, DDS_Long new_length, DDS_Long new_max) |
Loan a contiguous buffer to this sequence. More... | |
bool | loan_discontiguous (Foo **buffer, DDS_Long new_length, DDS_Long new_max) |
Loan a discontiguous buffer to this sequence. More... | |
bool | unloan () |
Return the loaned buffer in the sequence and set the maximum to 0. More... | |
Foo * | get_contiguous_buffer () const |
Return the contiguous buffer of the sequence. More... | |
Foo ** | get_discontiguous_buffer () const |
Return the discontiguous buffer of the sequence. More... | |
bool | has_ownership () |
Return the value of the owned flag. More... | |
~FooSeq () | |
Deallocate this sequence's buffer. More... | |
FooSeq (DDS_Long new_max=0) | |
Create a sequence with the given maximum. More... | |
FooSeq (const struct FooSeq &foo_seq) | |
Create a sequence by copying from an existing sequence. More... | |
<<interface>> <<generic>> A type-safe, ordered collection of elements. The type of these elements is referred to in this documentation as Foo
.
For users who define data types in OMG IDL, this type corresponds to the IDL express sequence
<Foo>
.
For any user-data type Foo
that an application defines for the purpose of data-distribution with RTI Connext, a FooSeq
is generated. The sequence offers a subset of the methods defined by the standard OMG IDL to C++ mapping for sequences. We refer to an IDL sequence
<Foo>
asFooSeq
.
The state of a sequence is described by the properties 'maximum', 'length' and 'owned'.
If owned == DDS_BOOLEAN_TRUE, the sequence has ownership on the buffer. It is then responsible for destroying the buffer when the sequence is destroyed.
If the owned == DDS_BOOLEAN_FALSE, the sequence does not have ownership on the buffer. This implies that the sequence is loaning the buffer. The sequence cannot be destroyed until the loan is returned.
FooSeq::~FooSeq | ( | ) |
Deallocate this sequence's buffer.
FooSeq::FooSeq | ( | DDS_Long | new_max = 0 | ) |
Create a sequence with the given maximum.
This is a constructor for the sequence. The constructor will automatically allocate memory to hold new_max elements of type Foo.
This constructor will be used when the application creates a sequence using one of the following:
new_max | Must be >= 0. Otherwise the sequence will be initialized to a new_max=0. |
FooSeq::FooSeq | ( | const struct FooSeq & | foo_seq | ) |
Create a sequence by copying from an existing sequence.
This is a constructor for the sequence. The constructor will automatically allocate memory to hold foo_seq::maximum() elements of type Foo and will copy the current contents of foo_seq into the new sequence.
This constructor will be used when the application creates a sequence using one of the following:
Copy elements from another sequence, resizing the sequence if necessary.
This method invokes FooSeq::copy_no_alloc after ensuring that the sequence has enough capacity to hold the elements to be copied.
This operator is invoked when the following expression appears in the code:
Important: This method will allocate memory if this::maximum < src_seq::length.
Therefore, to programatically detect the successful completion of the operator it is recommended that the application first sets the length of this sequence to zero, makes the assignment, and then checks that the length of this sequence matches that of src_seq.
src_seq | <<in>> the sequence from which to copy |
bool FooSeq::copy_no_alloc | ( | const struct FooSeq & | src_seq | ) |
Copy elements from another sequence, only if the destination sequence has enough capacity.
Fill the elements in this sequence by copying the corresponding elements in src_seq
. The original contents in this sequence are replaced via the element assignment operation (Foo_copy() function). By default, elements are discarded; 'delete' is not invoked on the discarded elements.
src_seq | <<in>> the sequence from which to copy |
Copy elements from an array of elements, resizing the sequence if necessary. The original contents of the sequence (if any) are replaced.
Fill the elements in this sequence by copying the corresponding elements in array
. The original contents in this sequence are replaced via the element assignment operation (Foo_copy() function). By default, elements are discarded; 'delete' is not invoked on the discarded elements.
length
length
array | <<in>> The array of elements to be copy elements from |
length | <<in>> The length of the array. |
Copy elements to an array of elements. The original contents of the array (if any) are replaced.
Copy the elements of this sequence to the corresponding elements in the array. The original contents of the array are replaced via the element assignment operation (Foo_copy() function). By default, elements are discarded; 'delete' is not invoked on the discarded elements.
array | <<in>> The array of elements to be filled with elements from this sequence |
length | <<in>> The number of elements to be copied. |
Set the i-th
element of the sequence.
This is the operator that is invoked when the application indexes into a non- const
sequence:
Note that a reference to the i-th
element is returned (and not a copy).
i | index of element to access, must be >= 0 and less than FooSeq::length() |
i-th
element Get the i-th
element for a const
sequence.
This is the operator that is invoked when the application indexes into a const
sequence:
Note that a reference to the i-th
element is returned (and not a copy).
i | index of element to access, must be >= 0 and less than FooSeq::length() |
i-th
element DDS_Long FooSeq::length | ( | ) | const |
Get the logical length of this sequence.
Get the length that was last set, or zero if the length has never been set.
bool FooSeq::length | ( | DDS_Long | new_length | ) |
Set the sequence to the desired length, and resize the sequence if necessary.
If the current maximum is greater than the desired length, then sequence is not resized.
Otherwise, if this sequence owns its buffer, the sequence is resized to the new length by freeing and re-allocating the buffer. However, if the sequence does not own its buffer, this operation will fail.
For sequences that are part of a type declared in IDL, the length must not exceed the maximum established for the sequence in the IDL.
new_length | the new desired length. This value must be non-negative. Must be >= 0. |
Set the sequence to the desired length, and resize the sequence if necessary.
If the current maximum is greater than the new length, then the sequence is not resized.
Otherwise, if this sequence owns its buffer, the sequence is resized to the new maximum by freeing and re-allocating the buffer, and the length is set to the new length. However, if the sequence does not own its buffer, this operation will fail.
This function allows user to avoid unnecessary buffer re-allocation.
length
<= max
max
<= maximum size for IDL bounded sequences length
max
if resized length | <<in>> The new length that should be set. Must be >= 0. |
max | <<in>> If sequence need to be resized, this is the maximum that should be set. max >= length |
DDS_Long FooSeq::maximum | ( | ) | const |
Get the current maximum number of elements that can be stored in this sequence.
The maximum
of the sequence represents the maximum number of elements that the underlying buffer can hold. It does not represent the current number of elements.
The maximum
is a non-negative number. It is initialized when the sequence is first created.
maximum
can only be changed with the FooSeq::maximum(DDS_Long) operation.
bool FooSeq::maximum | ( | DDS_Long | new_max | ) |
Resize this sequence to a new desired maximum.
This operation does nothing if the new desired maximum matches the current maximum.
If this sequence owns its buffer and the new maximum is not equal to the old maximum, then the existing buffer will be freed and re-allocated.
new_max
<= maximum size for IDL bounded sequences. new_max | Must be >= 0. |
Loan a contiguous buffer to this sequence.
This operation changes the owned
flag of the sequence to DDS_BOOLEAN_FALSE and also sets the underlying buffer used by the sequence. See the User's Manual for more information about sequences and memory ownership.
Use this method if you want to manage the memory used by the sequence yourself. You must provide an array of elements and integers indicating how many elements are allocated in that array (i.e. the maximum) and how many elements are valid (i.e. the length). The sequence will subsequently use the memory you provide and will not permit it to be freed by a call to FooSeq::maximum(DDS_Long).
Once you have loaned a buffer to a sequence, make sure that you don't free it before calling FooSeq::unloan: the next time you access the sequence, you will be accessing freed memory!
You can use this method to wrap stack memory with a sequence interface, thereby avoiding dynamic memory allocation. Create a FooSeq and an array of type Foo and then loan the array to the sequence:
By default, a sequence you create owns its memory unless you explicitly loan memory of your own to it. In a very few cases, RTI Connext will return a sequence to you that has a loan; those cases are documented as such. For example, if you call FooDataReader::read or FooDataReader::take and pass in sequences with no loan and no memory allocated, RTI Connext will loan memory to your sequences which must be unloaned with FooDataReader::return_loan. See the documentation of those methods for more information.
buffer | The new buffer that the sequence will use. Must point to enough memory to hold new_max elements of type Foo. It may be NULL if new_max == 0. |
new_length | The desired new length for the sequence. It must be the case that that 0 <= new_length <= new_max. |
new_max | The allocated number of elements that could fit in the loaned buffer. |
buffer
is successfully loaned to this sequence or DDS_BOOLEAN_FALSE otherwise. Failure only occurs due to failing to meet the pre-conditions. Upon failure the sequence remains unmodified. Loan a discontiguous buffer to this sequence.
This method is exactly like FooSeq::loan_contiguous except that the buffer loaned is an array of Foo pointers, not an array of Foo.
buffer | The new buffer that the sequence will use. Must point to enough memory to hold new_max elements of type Foo*. It may be NULL if new_max == 0. |
new_length | The desired new length for the sequence. It must be the case that that 0 <= new_length <= new_max. |
new_max | The allocated number of elements that could fit in the loaned buffer. |
bool FooSeq::unloan | ( | ) |
Return the loaned buffer in the sequence and set the maximum to 0.
This method affects only the state of this sequence; it does not change the contents of the buffer in any way.
Only the user who originally loaned a buffer should return that loan, as the user may have dependencies on that memory known only to them. Unloaning someone else's buffer may cause unspecified problems. For example, suppose a sequence is loaning memory from a custom memory pool. A user of the sequence likely has no way to release the memory back into the pool, so unloaning the sequence buffer would result in a resource leak. If the user were to then re-loan a different buffer, the original creator of the sequence would have no way to discover, when freeing the sequence, that the loan no longer referred to its own memory and would thus not free the user's memory properly, exacerbating the situation and leading to undefined behavior.
Foo* FooSeq::get_contiguous_buffer | ( | ) | const |
Return the contiguous buffer of the sequence.
Get the underlying buffer where contiguous elements of the sequence are stored. The size of the buffer matches the maximum of the sequence, but only the elements up to the FooSeq::length() of the sequence are valid.
This method provides almost no encapsulation of the sequence's underlying implementation. Certain operations, such as FooSeq::maximum(DDS_Long), may render the buffer invalid. In light of these caveats, this operation should be used with care.
Foo** FooSeq::get_discontiguous_buffer | ( | ) | const |
Return the discontiguous buffer of the sequence.
This operation returns the underlying buffer where discontiguous elements of the sequence are stored. The size of the buffer matches the maximum of this sequence, but only the elements up to the FooSeq::length() of the sequence are valid.
The same caveats apply to this method as to FooSeq::get_contiguous_buffer.
The sequence will dereference pointers in the discontiguous buffer to provide access to its elements by value in C and by reference in C++. If you access the discontiguous buffer directly by means of this method, do not store any NULL values into it, as acessing those values will result in a segmentation fault.
bool FooSeq::has_ownership | ( | ) |
Return the value of the owned flag.