#include <Message_Block.h>
Inheritance diagram for ACE_Dynamic_Message_Strategy:
Public Types | |
enum | Priority_Status { PENDING = 0x01, LATE = 0x02, BEYOND_LATE = 0x04, ANY_STATUS = 0x07 } |
Public Methods | |
ACE_Dynamic_Message_Strategy (unsigned long static_bit_field_mask, unsigned long static_bit_field_shift, unsigned long dynamic_priority_max, unsigned long dynamic_priority_offset) | |
Constructor. | |
virtual | ~ACE_Dynamic_Message_Strategy (void) |
Virtual destructor. | |
Priority_Status | priority_status (ACE_Message_Block &mb, const ACE_Time_Value &tv) |
Updates the message's priority and returns its priority status. | |
unsigned long | static_bit_field_mask (void) const |
Get static bit field mask. | |
void | static_bit_field_mask (unsigned long) |
Set static bit field mask. | |
unsigned long | static_bit_field_shift (void) const |
Get left shift value to make room for static bit field. | |
void | static_bit_field_shift (unsigned long) |
Set left shift value to make room for static bit field. | |
unsigned long | dynamic_priority_max (void) const |
Get maximum supported priority value. | |
void | dynamic_priority_max (unsigned long) |
Set maximum supported priority value. | |
unsigned long | dynamic_priority_offset (void) const |
Get offset to boundary between signed range and unsigned range. | |
void | dynamic_priority_offset (unsigned long) |
Set offset to boundary between signed range and unsigned range. | |
virtual void | dump (void) const |
Dump the state of the strategy. | |
Protected Methods | |
virtual void | convert_priority (ACE_Time_Value &priority, const ACE_Message_Block &mb)=0 |
Hook method for dynamic priority conversion. | |
Protected Attributes | |
unsigned long | static_bit_field_mask_ |
This is a bit mask with all ones in the static bit field. | |
unsigned long | static_bit_field_shift_ |
unsigned long | dynamic_priority_max_ |
Maximum supported priority value. | |
unsigned long | dynamic_priority_offset_ |
Offset to boundary between signed range and unsigned range. | |
ACE_Time_Value | max_late_ |
Maximum late time value that can be represented. | |
ACE_Time_Value | min_pending_ |
Minimum pending time value that can be represented. | |
ACE_Time_Value | pending_shift_ |
Time value by which to shift pending priority. |
Methods for deadline and laxity based priority evaluation are provided. These methods assume a specific partitioning of the message priority number into a higher order dynamic bit field and a lower order static priority bit field. The default partitioning assumes an unsigned dynamic message priority field of 22 bits and an unsigned static message priority field of 10 bits. This corresponds to the initial values of the static class members. To provide a different partitioning, assign a different set of values to the static class memebers before using the static member functions.
|
|
|
Constructor.
|
|
Virtual destructor.
|
|
Hook method for dynamic priority conversion.
Implemented in ACE_Deadline_Message_Strategy, and ACE_Laxity_Message_Strategy. |
|
Dump the state of the strategy.
Reimplemented in ACE_Deadline_Message_Strategy, and ACE_Laxity_Message_Strategy. |
|
Set maximum supported priority value.
|
|
Get maximum supported priority value.
|
|
Set offset to boundary between signed range and unsigned range.
|
|
Get offset to boundary between signed range and unsigned range.
|
|
Updates the message's priority and returns its priority status.
|
|
Set static bit field mask.
|
|
Get static bit field mask.
|
|
Set left shift value to make room for static bit field.
|
|
Get left shift value to make room for static bit field.
|
|
Maximum supported priority value.
|
|
Offset to boundary between signed range and unsigned range.
|
|
Maximum late time value that can be represented.
|
|
Minimum pending time value that can be represented.
|
|
Time value by which to shift pending priority.
|
|
This is a bit mask with all ones in the static bit field.
|
|
This is a left shift value to make room for static bit field: this value should be the logarithm base 2 of (static_bit_field_mask_ + 1). |