type Ref is new Ada.Finalization.Limited_Controlled with private;
Construct a new DDS.WaitSet.
Important: The DDS.WaitSet allocates native resources. When the DDS.WaitSet is no longer being used, users should call DDSWaitSet::~DDSWaitSet() explicitly to properly clean up all native resources.
Raises: DDS.RETCODE_OUT_OF_RESOURCES if a new DDS.WaitSet could not be allocated.
type Ref_Access is access all Ref'Class;
procedure Initialize
( | Self | : in out Ref); |
procedure Finalize
( | Self | : in out Ref); |
procedure Wait
( | Self | : not null access Ref; |
Active_Conditions | : access DDS.ConditionSeq.Sequence; | |
Timeout | : in DDS.Duration_T); |
If none of the conditions attached to the DDS.WaitSet have a trigger_value of DDS.BOOLEAN_TRUE, the wait operation will block, suspending the calling thread.
The result of the wait operation is the list of all the attached conditions that have a trigger_value of DDS.BOOLEAN_TRUE (i.e., the conditions that unblocked the wait).
The wait operation takes a timeout argument that specifies the maximum duration for the wait. If this duration is exceeded and none of the attached DDS.Condition objects are DDS.BOOLEAN_TRUE, wait fails with DDS.RETCODE_TIMEOUT. In this case, the resulting list of conditions will be empty.
Note: The resolution of the timeout period is constrained by the resolution of the system clock.
When the DDS.WaitSet is configured to wait for more than one trigger event and the timeout is exceeded before that number is reached, this function returns normally as long as at least one trigger event has occurred.
It is not allowable for more than one application thread to be waiting on the same DDS.WaitSet. If the wait operation is invoked on a DDS.WaitSet that already has a thread blocking on it, the operation will return immediately with the value DDS.RETCODE_PRECONDITION_NOT_MET.
active_conditions: <<inout>> a valid non- ull_value DDSConditionSeq object. Note that RTI Connext will not allocate a new object if active_conditions is ull_value; the procedure will return DDS.RETCODE_PRECONDITION_NOT_MET.
self: <<in>> Cannot be NULL
timeout: <<in>> a wait timeout
Raises: One of the DDSReturnTypesModule_std_retcodes or DDS.RETCODE_PRECONDITION_NOT_MET or DDS.RETCODE_TIMEOUT.
procedure Wait
( | Self | : not null access Ref; |
Active_Conditions | : access DDS.ConditionSeq.Sequence; | |
Timeout | : in Duration); |
If none of the conditions attached to the DDS.WaitSet have a trigger_value of DDS.BOOLEAN_TRUE, the wait operation will block, suspending the calling thread.
The result of the wait operation is the list of all the attached conditions that have a trigger_value of DDS.BOOLEAN_TRUE (i.e., the conditions that unblocked the wait).
The wait operation takes a timeout argument that specifies the maximum duration for the wait. If this duration is exceeded and none of the attached DDS.Condition objects are DDS.BOOLEAN_TRUE, wait fails with DDS.RETCODE_TIMEOUT. In this case, the resulting list of conditions will be empty.
Note: The resolution of the timeout period is constrained by the resolution of the system clock.
When the DDS.WaitSet is configured to wait for more than one trigger event and the timeout is exceeded before that number is reached, this function returns normally as long as at least one trigger event has occurred.
It is not allowable for more than one application thread to be waiting on the same DDS.WaitSet. If the wait operation is invoked on a DDS.WaitSet that already has a thread blocking on it, the operation will return immediately with the value DDS.RETCODE_PRECONDITION_NOT_MET.
active_conditions: <<inout>> a valid non- ull_value DDSConditionSeq object. Note that RTI Connext will not allocate a new object if active_conditions is ull_value; the procedure will return DDS.RETCODE_PRECONDITION_NOT_MET.
self: <<in>> Cannot be NULL
timeout: <<in>> a wait timeout
Raises: One of the DDSReturnTypesModule_std_retcodes or DDS.RETCODE_PRECONDITION_NOT_MET or DDS.RETCODE_TIMEOUT.
procedure Attach_Condition
( | Self | : not null access Ref; |
Cond | : access DDS.Condition.Ref'Class); |
It is possible to attach a DDS.Condition on a DDS.WaitSet that is currently being waited upon (via the wait operation). In this case, if the DDS.Condition has a trigger_value of DDS.BOOLEAN_TRUE, then attaching the condition will unblock the DDS.WaitSet.
self: <<in>> Cannot be NULL
cond: <<in>> Condition to be attached.
Raises: One of the DDSReturnTypesModule_std_retcodes, or DDS.RETCODE_OUT_OF_RESOURCES.
procedure Detach_Condition
( | Self | : not null access Ref; |
Cond | : access DDS.Condition.Ref'Class); |
If the DDS.Condition was not attached to the DDS.WaitSet the operation will return DDS.RETCODE_BAD_PARAMETER.
self: <<in>> Cannot be NULL
cond: <<in>> Condition to be detached.
Raises: One of the DDSReturnTypesModule_std_retcodes, or DDS.RETCODE_PRECONDITION_NOT_MET.
procedure Get_Conditions
( | Self | : not null access Ref; |
Attached_Conditions | : access DDS.ConditionSeq.Sequence); |
self: <<in>> Cannot be NULL
attached_conditions: <<inout>> a DDSConditionSeq object where the list of attached conditions will be returned
Raises: One of the DDSReturnTypesModule_std_retcodes, or DDS.RETCODE_PRECONDITION_NOT_MET.
procedure Free
( | This | : in out Ref_Access); |
Releases the resources asociated with this DDS.WaitSet.
Calling this method multiple times on the same DDS.WaitSet is safe; subsequent deletions will have no effect.
procedure Set_Property
( | Self | : not null access Ref; |
prop | : access WaitSetProperty_T); |
self: <<in>> Cannot be NULL
prop: <<in>>
Raises: One of the DDSReturnTypesModule_std_retcodes
procedure Get_Property
( | Self | : not null access Ref; |
prop | : access WaitSetProperty_T); |
self: <<in>> Cannot be NULL
prop: <<out>>
Raises: One of the DDSReturnTypesModule_std_retcodes
Usage
DDS.Condition (s) (in conjunction with wait-sets) provide an alternative mechanism to allow the middleware to communicate communication status changes (including arrival of data) to the application.
This mechanism is wait-based. Its general use pattern is as follows:
Usually the first step is done in an initialization phase, while the others are put in the application main loop.
As there is no extra information passed from the middleware to the application when a wait returns (only the list of triggered DDS.Condition objects), DDS.Condition objects are meant to embed all that is needed to react properly when enabled. In particular, DDS.Entity-related conditions are related to exactly one DDS.Entity and cannot be shared.
The blocking behavior of the DDS.WaitSet is illustrated below.
The result of a DDS.WaitSet.wait operation depends on the state of the DDS.WaitSet, which in turn depends on whether at least one attached DDS.Condition has a trigger_value of DDS.BOOLEAN_TRUE. If the wait operation is called on DDS.WaitSet with state BLOCKED, it will block the calling thread. If wait is called on a DDS.WaitSet with state UNBLOCKED, it will return immediately. In addition, when the DDS.WaitSet transitions from BLOCKED to UNBLOCKED it wakes up any threads that had called wait on it.
A key aspect of the Condition and WaitSet mechanism is the setting of the trigger_value of each DDS.Condition.
The DDS.WaitSet cannot be used after calling DDS.DomainParticipantFactory.finalize_instance.
Trigger State of a DDS.StatusCondition
The trigger_value of a DDS.StatusCondition is the boolean OR of the ChangedStatusFlag of all the communication statuses (see DDSStatusTypesModule) to which it is sensitive. That is, trigger_value == DDS.BOOLEAN_FALSE only if all the values of the ChangedStatusFlags are DDS.BOOLEAN_FALSE.
The sensitivity of the DDS.StatusCondition to a particular communication status is controlled by the list of enabled_statuses set on the condition by means of the DDS.StatusCondition.set_enabled_statuses operation.
Once the trigger_value of a StatusCondition becomes true, it remains true until the status that changed is reset. To reset a status, call the related get_*_status() operation. Or, in the case of the data available status, call read(), take(), or one of their variants. Therefore, if you are using a DDS.StatusCondition on a DDS.WaitSet to be notified of events, your thread will wake up when one of the statuses associated with the StatusCondition becomes true. If you do not reset the status, the StatusCondition trigger_value remains true and your WaitSet will not block again; it will immediately wake up when you call DDS.WaitSet.wait.
Trigger State of a DDS.ReadCondition
Similar to the DDS.StatusCondition, a DDS.ReadCondition also has a trigger_value that determines whether the attached DDS.WaitSet is BLOCKED or UNBLOCKED. However, unlike the DDS.StatusCondition, the trigger_value of the DDS.ReadCondition is tied to the presence of at least a sample managed by RTI Connext with DDS.SampleStateKind and DDS.ViewStateKind matching those of the DDS.ReadCondition. Furthermore, for the DDS.QueryCondition to have a trigger_value == DDS.BOOLEAN_TRUE, the data associated with the sample must be such that the query_expression evaluates to DDS.BOOLEAN_TRUE.
The fact that the trigger_value of a DDS.ReadCondition depends on the presence of samples on the associated DDS.DataReader implies that a single take operation can potentially change the trigger_value of several DDS.ReadCondition or DDS.QueryCondition conditions. For example, if all samples are taken, any DDS.ReadCondition and DDS.QueryCondition conditions associated with the DDS.DataReader that had their trigger_value==TRUE before will see the trigger_value change to FALSE. Note that this does not guarantee that DDS.WaitSet objects that were separately attached to those conditions will not be woken up. Once we have trigger_value==TRUE on a condition, it may wake up the attached DDS.WaitSet, the condition transitioning to trigger_value==FALSE does not necessarily 'unwakeup' the WaitSet as 'unwakening' may not be possible in general.
The consequence is that an application blocked on a DDS.WaitSet may return from the wait with a list of conditions, some of which are not no longer 'active'. This is unavoidable if multiple threads are concurrently waiting on separate DDS.WaitSet objects and taking data associated with the same DDS.DataReader entity.
To elaborate further, consider the following example: A DDS.ReadCondition that has a sample_state_mask = {DDS.NOT_READ_SAMPLE_STATE} will have trigger_value of DDS.BOOLEAN_TRUE whenever a new sample arrives and will transition to DDS.BOOLEAN_FALSE as soon as all the newly-arrived samples are either read (so their sample state changes to READ) or taken (so they are no longer managed by dds). However if the same DDS.ReadCondition had a sample_state_mask = { DDS.READ_SAMPLE_STATE, DDS.NOT_READ_SAMPLE_STATE }, then the trigger_value would only become DDS.BOOLEAN_FALSE once all the newly-arrived samples are taken (it is not sufficient to read them as that would only change the sample state to READ), which overlaps the mask on the DDS.ReadCondition.
Trigger State of a DDS.GuardCondition
The trigger_value of a DDS.GuardCondition is completely controlled by the application via the operation DDS.GuardCondition.set_trigger_value.
Important: The DDS.WaitSet allocates native resources. When DDS.WaitSet is no longer being used, user should call DDSWaitSet::~DDSWaitSet() explicitly to properly cleanup all native resources.
See also: DDSStatusTypesModule
See also: DDS.StatusCondition, DDS.GuardCondition
See also: DDS.Listener