ACE 8.0.1
|
Generic factory for passively connecting clients and creating exactly one service handler of the type SVC_HANDLER specified in the template. More...
#include <Acceptor.h>
Public Types | |
typedef PEER_ACCEPTOR::PEER_ADDR | addr_type |
typedef PEER_ACCEPTOR | acceptor_type |
typedef SVC_HANDLER | handler_type |
typedef SVC_HANDLER::stream_type | stream_type |
![]() | |
enum | { LO_PRIORITY = 0 , HI_PRIORITY = 10 , NULL_MASK = 0 , READ_MASK = (1 << 0) , WRITE_MASK = (1 << 1) , EXCEPT_MASK = (1 << 2) , ACCEPT_MASK = (1 << 3) , CONNECT_MASK = (1 << 4) , TIMER_MASK = (1 << 5) , QOS_MASK = (1 << 6) , GROUP_QOS_MASK = (1 << 7) , SIGNAL_MASK = (1 << 8) , ALL_EVENTS_MASK , RWE_MASK , DONT_CALL = (1 << 9) } |
enum | { ACE_EVENT_HANDLER_NOT_RESUMED = -1 , ACE_REACTOR_RESUMES_HANDLER = 0 , ACE_APPLICATION_RESUMES_HANDLER } |
typedef long | Reference_Count |
Reference count type. | |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
![]() | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Protected Member Functions | |
virtual int | activate_svc_handler (SVC_HANDLER *svc_handler) |
int | shared_accept (SVC_HANDLER *svc_handler, typename PEER_ACCEPTOR::PEER_ADDR *remote_addr, ACE_Time_Value *timeout, bool restart, bool reset_new_handle) |
virtual ACE_HANDLE | get_handle () const |
Returns the listening acceptor's {ACE_HANDLE}. | |
virtual int | handle_close (ACE_HANDLE=ACE_INVALID_HANDLE, ACE_Reactor_Mask=ACE_Event_Handler::ALL_EVENTS_MASK) |
virtual int | handle_input (ACE_HANDLE) |
virtual int | handle_timeout (const ACE_Time_Value &tv, const void *arg) |
Called when an acceptor times out... | |
virtual int | init (int argc, ACE_TCHAR *argv[]) |
virtual int | fini () |
virtual int | info (ACE_TCHAR **, size_t) const |
Default version returns address info in {buf}. | |
virtual int | suspend () |
virtual int | resume () |
![]() | |
ACE_Event_Handler (ACE_Reactor *=nullptr, int priority=ACE_Event_Handler::LO_PRIORITY) | |
Force ACE_Event_Handler to be an abstract base class. | |
Private Member Functions | |
int | register_handler (SVC_HANDLER *svc_handler, const ACE_Synch_Options &options, bool restart) |
Private Attributes | |
SVC_HANDLER * | svc_handler_ |
Hold the svc_handler_ across asynchrony boundaries. | |
bool | restart_ |
Hold the restart flag across asynchrony boundaries. | |
PEER_ACCEPTOR | peer_acceptor_ |
Factory that establishes connections passively. | |
ACE_Concurrency_Strategy< SVC_HANDLER > * | concurrency_strategy_ |
Concurrency strategy for an Acceptor. | |
bool | delete_concurrency_strategy_ |
Additional Inherited Members | |
![]() | |
static ACE_THR_FUNC_RETURN | read_adapter (void *event_handler) |
static int | register_stdin_handler (ACE_Event_Handler *eh, ACE_Reactor *reactor, ACE_Thread_Manager *thr_mgr, int flags=THR_DETACHED) |
static int | remove_stdin_handler (ACE_Reactor *reactor, ACE_Thread_Manager *thr_mgr) |
Performs the inverse of the register_stdin_handler() method. | |
![]() | |
typedef std::atomic< Reference_Count > | Atomic_Reference_Count |
Typedef for implementation of reference counting. | |
![]() | |
Atomic_Reference_Count | reference_count_ |
Reference count. | |
Generic factory for passively connecting clients and creating exactly one service handler of the type SVC_HANDLER specified in the template.
This class works similarly to the regular ACE_Acceptor, but with the following differences:
The usage model for ACE_Oneshot_Acceptor is:
typedef PEER_ACCEPTOR ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::acceptor_type |
typedef PEER_ACCEPTOR::PEER_ADDR ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::addr_type |
typedef SVC_HANDLER ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::handler_type |
typedef SVC_HANDLER::stream_type ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::stream_type |
Constructor.
ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::ACE_Oneshot_Acceptor | ( | const typename PEER_ACCEPTOR::PEER_ADDR & | local_addr, |
ACE_Reactor * | reactor = ACE_Reactor::instance (), | ||
ACE_Concurrency_Strategy< SVC_HANDLER > * | cs = 0 ) |
Initialize the appropriate strategies for concurrency and then open the acceptor at the designated local_addr. Note that unlike ACE_Acceptor and ACE_Strategy_Acceptor, this method does NOT register this acceptor with the reactor at this point – the reactor parameter is saved in case it's needed later.
|
virtual |
Close down the {Oneshot_Acceptor}.
|
virtual |
Create a {SVC_HANDLER}, accept the connection into the {SVC_HANDLER}, and activate the {SVC_HANDLER}.
|
virtual |
Return the underlying {PEER_ACCEPTOR} object.
|
protectedvirtual |
Bridge method for activating a {svc_handler} with the appropriate concurrency strategy. Default behavior is to activate the {SVC_HANDLER} as a "passive object." However, subclasses can override this strategy to do more sophisticated concurrency activations (such as creating the {SVC_HANDLER} as an "active object" via multi-threading or multi-processing).
|
virtual |
Cancel a oneshot acceptor that was started asynchronously.
|
virtual |
Close down the {Oneshot_Acceptor}.
PEER_ACCEPTOR void ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::dump | ( | ) | const |
Dump the state of an object.
|
protectedvirtual |
Default version does no work and returns -1. Must be overloaded by application developer to do anything meaningful.
Reimplemented from ACE_Shared_Object.
|
protectedvirtual |
Returns the listening acceptor's {ACE_HANDLE}.
Reimplemented from ACE_Event_Handler.
|
protectedvirtual |
Perform termination activities when {this} is removed from the {reactor}.
Reimplemented from ACE_Event_Handler.
|
protectedvirtual |
Accept one connection from a client and activates the SVC_HANDLER.
Reimplemented from ACE_Event_Handler.
|
protectedvirtual |
Called when an acceptor times out...
Reimplemented from ACE_Event_Handler.
|
protectedvirtual |
Default version returns address info in {buf}.
Reimplemented from ACE_Shared_Object.
|
protectedvirtual |
Default version does no work and returns -1. Must be overloaded by application developer to do anything meaningful.
Reimplemented from ACE_Shared_Object.
int ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::open | ( | const typename PEER_ACCEPTOR::PEER_ADDR & | local_addr, |
ACE_Reactor * | reactor = ACE_Reactor::instance (), | ||
ACE_Concurrency_Strategy< SVC_HANDLER > * | con_s = 0 ) |
Initialize the appropriate strategies for concurrency and then open the acceptor at the designated local_addr. Note that unlike ACE_Acceptor and ACE_Strategy_Acceptor, this method does NOT register this acceptor with the reactor at this point – the reactor parameter is saved in case it's needed later.
|
virtual |
Return the underlying {PEER_ACCEPTOR} object.
|
private |
Insert ourselves into the {ACE_Reactor} so that we can continue accepting this connection asynchronously. This method should NOT be called by developers directly.
|
protectedvirtual |
Default version does no work and returns -1. Must be overloaded by application developer to do anything meaningful.
Reimplemented from ACE_Service_Object.
|
protected |
Factors out the code shared between the {accept} and {handle_input} methods.
|
protectedvirtual |
Default version does no work and returns -1. Must be overloaded by application developer to do anything meaningful.
Reimplemented from ACE_Service_Object.
ACE_Oneshot_Acceptor< SVC_HANDLER, PEER_ACCEPTOR >::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
|
private |
Concurrency strategy for an Acceptor.
|
private |
true if Acceptor created the concurrency strategy and thus should delete it, else false.
|
private |
Factory that establishes connections passively.
|
private |
Hold the restart flag across asynchrony boundaries.
|
private |
Hold the svc_handler_ across asynchrony boundaries.