Functions | |
unsigned char * | DDS_OctetBuffer_alloc (unsigned int size) |
Create a new empty OctetBuffer that can hold up to size octets. | |
unsigned char * | DDS_OctetBuffer_dup (const unsigned char *buffer, unsigned int size) |
Clone an OctetBuffer. | |
void | DDS_OctetBuffer_free (unsigned char *buffer) |
Delete an OctetBuffer. |
The methods in this class ensure consistent cross-platform implementations for OctetBuffer creation (DDS_OctetBuffer_alloc()), deletion (DDS_OctetBuffer_free()), and cloning (DDS_OctetBuffer_dup()) that preserve the mutable value type semantics. These are to be viewed as methods that define an OctetBuffer
class whose data is represented by a 'unsigned
char*'.
OctetBuffer
class methods. The representation of an OctetBuffer in C/C++ unfortunately does not allow programs to detect how much memory has been allocated for a OctetBuffer. RTI Connext must therefore make some assumptions when a user requests that a OctetBuffer be copied into. The following rules apply when RTI Connext is copying into an OctetBuffer.
Always use DDS_OctetBuffer_alloc() to create, DDS_OctetBuffer_dup() to clone, DDS_OctetBuffer_free() to delete a 'unsigned char*' that is passed back and forth between user code and the DDS C/C++ APIs.
Not adhering to this idiom can result in bad pointers, and incorrect memory being freed.
In addition, the user code should be vigilant to avoid memory leaks. It is good practice to:
unsigned char* DDS_OctetBuffer_alloc | ( | unsigned int | size | ) |
Create a new empty OctetBuffer that can hold up to size
octets.
An OctetBuffer created by this method must be deleted using DDS_OctetBuffer_free().
This function will allocate enough memory to hold an OctetBuffer of size
octets.
size | <<in>> Size of the buffer. |
unsigned char* DDS_OctetBuffer_dup | ( | const unsigned char * | buffer, | |
unsigned int | size | |||
) |
Clone an OctetBuffer.
An OctetBuffer created by this method must be deleted using DDS_OctetBuffer_free()
buffer | <<in>> The OctetBuffer to duplicate. | |
size | <<in>> Size of the OctetBuffer to duplicate. |
src
== NULL or size <0, this method always returns NULL. Otherwise, upon success it returns a newly created OctetBuffer whose value is src
; upon failure it returns NULL. void DDS_OctetBuffer_free | ( | unsigned char * | buffer | ) |
Delete an OctetBuffer.
buffer
must be either NULL, or must have been created using DDS_OctetBuffer_alloc(), DDS_OctetBuffer_dup()buffer | <<in>> The buffer to delete. |