/* -*- C++ -*- */ // $Id$ #if !defined (SP_ACCEPTOR_H) #define SP_ACCEPTOR_H #include "ace/Svc_Handler.h" #include "ace/Acceptor.h" #include "ace/SPIPE_Stream.h" #include "ace/SPIPE_Acceptor.h" // This is the class that does the work once the ACE_Oneshot_Acceptor // has accepted a connection. class Svc_Handler : public ACE_Svc_Handler { public: Svc_Handler (void); ~Svc_Handler (void); virtual int open (void *); virtual ACE_Message_Block *get_message (void); virtual int handle_input_complete (ACE_Message_Block *msg, long bytes_transfered); // Handle data from the client. private: }; class IPC_Server : public ACE_Oneshot_Acceptor { public: IPC_Server (void); ~IPC_Server (void); // = Dynamic linking hooks. virtual int init (int argc, char *argv[]); // Initialize the network server. virtual int fini (void); // Close down the server. virtual int svc (void); // Run the interative service. private: int parse_args (int argc, char *argv[]); // Parse command-line arguments. int n_threads_; // Size of thread pool to use. const char *rendezvous_; // Meeting place for pipe. ACE_Sig_Adapter done_handler_; // Keeps track of when we shut down due to receipt of the SIGINT // signal. }; #endif /* SP_ACCEPTOR_H */