TAO 4.0.2
|
Specialize TAO_Queued_Message for synchronous requests, i.e. twoways and oneways sent with reliability better than SYNC_NONE. More...
#include <Synch_Queued_Message.h>
Public Member Functions | |
TAO_Synch_Queued_Message (const ACE_Message_Block *contents, TAO_ORB_Core *oc, ACE_Allocator *alloc=0, bool is_heap_allocated=false) | |
Constructor. | |
virtual | ~TAO_Synch_Queued_Message () |
Destructor. | |
const ACE_Message_Block * | current_block () const |
![]() | |
TAO_Queued_Message (TAO_ORB_Core *oc, ACE_Allocator *alloc=0, bool is_heap_allocated=false) | |
Constructor. | |
virtual | ~TAO_Queued_Message () |
Destructor. | |
TAO_Queued_Message * | next () const |
Set/get the next element in the list. | |
TAO_Queued_Message * | prev () const |
Set/get the previous element in the list. | |
void | remove_from_list (TAO_Queued_Message *&head, TAO_Queued_Message *&tail) |
Remove this element from the list. | |
void | push_back (TAO_Queued_Message *&head, TAO_Queued_Message *&tail) |
Insert the current element at the tail of the queue. | |
void | push_front (TAO_Queued_Message *&head, TAO_Queued_Message *&tail) |
Insert the current element at the head of the queue. | |
virtual bool | is_expired (const ACE_Time_Value &now) const |
Check for timeout. | |
![]() | |
TAO_LF_Invocation_Event () | |
Constructor. | |
virtual | ~TAO_LF_Invocation_Event () |
Destructor. | |
![]() | |
TAO_LF_Event () | |
Constructor. | |
virtual | ~TAO_LF_Event () |
Destructor. | |
virtual int | bind (TAO_LF_Follower *follower) |
Bind a follower. | |
virtual int | unbind (TAO_LF_Follower *follower) |
Unbind the follower. | |
void | state_changed (LFS_STATE new_state, TAO_Leader_Follower &lf) |
bool | successful (TAO_Leader_Follower &lf) const |
bool | error_detected (TAO_Leader_Follower &lf) const |
bool | keep_waiting (TAO_Leader_Follower &lf) const |
Check if we should keep waiting. | |
void | reset_state (LFS_STATE new_state) |
Reset the state, irrespective of the previous states. | |
Implement the Template Methods from TAO_Queued_Message | |
ACE_Message_Block * | contents_ |
The contents of the message. | |
ACE_Message_Block * | current_block_ |
The current message block. | |
bool | own_contents_ |
Do we own the contents_ message block? | |
virtual size_t | message_length () const |
The contents of the message. | |
virtual int | all_data_sent () const |
The contents of the message. | |
virtual void | fill_iov (int iovcnt_max, int &iovcnt, iovec iov[]) const |
The contents of the message. | |
virtual void | bytes_transferred (size_t &byte_count) |
The contents of the message. | |
virtual TAO_Queued_Message * | clone (ACE_Allocator *alloc) |
The contents of the message. | |
virtual void | destroy () |
The contents of the message. | |
virtual void | copy_if_necessary (const ACE_Message_Block *chain) |
The contents of the message. | |
Additional Inherited Members | |
![]() | |
enum | LFS_STATE { LFS_IDLE = 0 , LFS_ACTIVE , LFS_CONNECTION_WAIT , LFS_SUCCESS , LFS_FAILURE , LFS_TIMEOUT , LFS_CONNECTION_CLOSED } |
The current state. More... | |
![]() | |
static const char * | state_name (LFS_STATE st) |
The current state. | |
![]() | |
virtual void | state_changed_i (LFS_STATE new_state) |
Validate and perform the state change. | |
virtual bool | successful_i () const |
virtual bool | error_detected_i () const |
![]() | |
bool | keep_waiting_i () const |
Check if we should keep waiting. | |
![]() | |
ACE_Allocator * | allocator_ |
Cached copy of ORB_Core pointer. | |
bool const | is_heap_created_ |
Cached copy of ORB_Core pointer. | |
TAO_ORB_Core * | orb_core_ |
Cached copy of ORB_Core pointer. | |
![]() | |
LFS_STATE | state_ |
The current state. | |
TAO_LF_Follower * | follower_ |
The bounded follower. | |
Specialize TAO_Queued_Message for synchronous requests, i.e. twoways and oneways sent with reliability better than SYNC_NONE.
Reliable requests block the sending thread until the message is sent, likewise, the sending thread must be informed if the connection is closed or the message times out.
In contrast oneway (and AMI) requests sent with the SYNC_NONE policy are simple discarded if the connection fails or they timeout.
Another important difference is the management of the data buffer: one SYNC_NONE messages the buffer is immediately copied into a newly allocated buffer, and must be deallocated. Other types of requests use the memory allocated by the sending thread.
TAO_Synch_Queued_Message::TAO_Synch_Queued_Message | ( | const ACE_Message_Block * | contents, |
TAO_ORB_Core * | oc, | ||
ACE_Allocator * | alloc = 0, | ||
bool | is_heap_allocated = false ) |
Constructor.
contents | The message block chain that must be sent. |
alloc | The allocator that is used to allocate objects of this type. |
|
virtual |
Destructor.
|
virtual |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
Implements TAO_Queued_Message.
|
virtual |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
Implements TAO_Queued_Message.
|
virtual |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
Implements TAO_Queued_Message.
|
virtual |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
Implements TAO_Queued_Message.
const ACE_Message_Block * TAO_Synch_Queued_Message::current_block | ( | ) | const |
|
virtual |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
Implements TAO_Queued_Message.
|
virtual |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
Implements TAO_Queued_Message.
|
virtual |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
Implements TAO_Queued_Message.
|
private |
The contents of the message.
The message is normally generated by a TAO_OutputCDR stream. The application marshals the payload, possibly generating a chain of message block connected via the 'cont()' field.
|
private |
The current message block.
The message may be set in multiple writev() operations. This point keeps track of the next message to send out.
|
private |
Do we own the contents_ message block?
This flag differs from the is_heap_allocated_ flag in that it only applies to the contents_ message block and not the TAO_Synch_Queued_Message object itself.