Classes | |
class | DDSPropertyQosPolicyHelper |
Policy Helpers which facilitate management of the properties in the input policy. More... | |
struct | DDS_Property_t |
Properties are name/value pairs objects. More... | |
struct | DDS_PropertySeq |
Declares IDL sequence < DDS_Property_t >. More... | |
struct | DDS_PropertyQosPolicy |
Stores name/value(string) pairs that can be used to configure certain parameters of RTI Data Distribution Service that are not exposed through formal QoS policies. Can also be used to store and propagate application-specific name/value pairs that can be retrieved by user code during discovery. More... | |
Functions | |
static DDS_Long | DDSPropertyQosPolicyHelper::get_number_of_properties (DDS_PropertyQosPolicy &policy) |
Gets the number of properties in the input policy. | |
static DDS_ReturnCode_t | DDSPropertyQosPolicyHelper::assert_property (DDS_PropertyQosPolicy &policy, const char *name, const char *value, DDS_Boolean propagate) |
Asserts the property identified by name in the input policy. | |
static DDS_ReturnCode_t | DDSPropertyQosPolicyHelper::add_property (DDS_PropertyQosPolicy &policy, const char *name, const char *value, DDS_Boolean propagate) |
Adds a new property to the input policy. | |
static struct DDS_Property_t * | DDSPropertyQosPolicyHelper::lookup_property (DDS_PropertyQosPolicy &policy, const char *name) |
Searches for a property in the input policy given its name. | |
static DDS_ReturnCode_t | DDSPropertyQosPolicyHelper::remove_property (DDS_PropertyQosPolicy &policy, const char *name) |
Removes a property from the input policy. | |
static DDS_ReturnCode_t | DDSPropertyQosPolicyHelper::get_properties (DDS_PropertyQosPolicy &policy, struct DDS_PropertySeq &properties, const char *name_prefix) |
Retrieves a list of properties whose names match the input prefix. | |
Variables | |
const char *const | DDS_PROPERTY_QOS_POLICY_NAME |
Stringified human-readable name for DDS_PropertyQosPolicy. |
static DDS_Long DDSPropertyQosPolicyHelper::get_number_of_properties | ( | DDS_PropertyQosPolicy & | policy | ) | [static, inherited] |
Gets the number of properties in the input policy.
policy | <<in>> Input policy. |
static DDS_ReturnCode_t DDSPropertyQosPolicyHelper::assert_property | ( | DDS_PropertyQosPolicy & | policy, | |
const char * | name, | |||
const char * | value, | |||
DDS_Boolean | propagate | |||
) | [static, inherited] |
Asserts the property identified by name in the input policy.
If the property already exists, this function replaces its current value with the new one.
If the property identified by name does not exist, this function adds it to the property set.
This function increases the maximum number of elements of the policy sequence when this number is not enough to store the new property.
policy | <<in>> Input policy. | |
name | <<in>> Property name. | |
value | <<in>> Property value. | |
propagate | <<in>> Indicates if the property will be propagated on discovery. |
static DDS_ReturnCode_t DDSPropertyQosPolicyHelper::add_property | ( | DDS_PropertyQosPolicy & | policy, | |
const char * | name, | |||
const char * | value, | |||
DDS_Boolean | propagate | |||
) | [static, inherited] |
Adds a new property to the input policy.
This function will allocate memory to store the (name,value) pair. The memory allocated is owned by RTI Data Distribution Service.
If the maximum number of elements of the policy sequence is not enough to store the new property, this function will increase it.
If the property already exists the function fails with DDS_RETCODE_PRECONDITION_NOT_MET.
The property is not in the policy.
policy | <<in>> Input policy. | |
name | <<in>> Property name. | |
value | <<in>> Property value. | |
propagate | <<in>> Indicates if the property will be propagated on discovery. |
static struct DDS_Property_t* DDSPropertyQosPolicyHelper::lookup_property | ( | DDS_PropertyQosPolicy & | policy, | |
const char * | name | |||
) | [static, read, inherited] |
static DDS_ReturnCode_t DDSPropertyQosPolicyHelper::remove_property | ( | DDS_PropertyQosPolicy & | policy, | |
const char * | name | |||
) | [static, inherited] |
Removes a property from the input policy.
If the property does not exist, the function fails with DDS_RETCODE_PRECONDITION_NOT_MET.
The property is in the policy.
static DDS_ReturnCode_t DDSPropertyQosPolicyHelper::get_properties | ( | DDS_PropertyQosPolicy & | policy, | |
struct DDS_PropertySeq & | properties, | |||
const char * | name_prefix | |||
) | [static, inherited] |
Retrieves a list of properties whose names match the input prefix.
If the properties sequence doesn't own its buffer, and its maximum is less than the total number of properties matching the input prefix, it will be filled up to its maximum and fail with an error of DDS_RETCODE_OUT_OF_RESOURCES.
policy | <<in>> Input policy. | |
properties | <<inout>> A DDS_PropertySeq object where the set or list of properties will be returned. | |
name_prefix | Name prefix. |
const char* const DDS_PROPERTY_QOS_POLICY_NAME |
Stringified human-readable name for DDS_PropertyQosPolicy.