diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /examples/C++NPv2/Logging_Event_Handler.h | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'examples/C++NPv2/Logging_Event_Handler.h')
-rw-r--r-- | examples/C++NPv2/Logging_Event_Handler.h | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/examples/C++NPv2/Logging_Event_Handler.h b/examples/C++NPv2/Logging_Event_Handler.h deleted file mode 100644 index 614649daba8..00000000000 --- a/examples/C++NPv2/Logging_Event_Handler.h +++ /dev/null @@ -1,61 +0,0 @@ -/* -** $Id$ -** -** Copyright 2002 Addison Wesley. All Rights Reserved. -*/ - -#ifndef _LOGGING_EVENT_HANDLER_H -#define _LOGGING_EVENT_HANDLER_H - -#include "ace/Event_Handler.h" -#include "ace/FILE_IO.h" -#include "ace/Reactor.h" -#include "ace/SOCK_Stream.h" - -#include "Logging_Handler.h" - -class Logging_Event_Handler : public ACE_Event_Handler -{ -protected: - // File where log records are written. - ACE_FILE_IO log_file_; - - // Connection to remote peer. - Logging_Handler logging_handler_; - -public: - // Initialize the base class and logging handler. - Logging_Event_Handler (ACE_Reactor *reactor) - : ACE_Event_Handler (reactor), - logging_handler_ (log_file_) {}; - - virtual ~Logging_Event_Handler () {}; // No-op destructor. - - // Activate the object. - virtual int open (); - - // Called by a reactor when logging events arrive. - virtual int handle_input (ACE_HANDLE = ACE_INVALID_HANDLE); - - // Called when this object is destroyed, e.g., when it's - // removed from a reactor. - virtual int handle_close (ACE_HANDLE = ACE_INVALID_HANDLE, - ACE_Reactor_Mask = 0); - - // Return socket handle of the contained <Logging_Handler>. - virtual ACE_HANDLE get_handle (void) const { - // Need a non-const reference to call peer(), but that's - // safe since we call a const method using it. - Logging_Handler& h = - ACE_const_cast (Logging_Handler&, logging_handler_); - return h.peer ().get_handle (); - }; - - // Get a reference to the contained <ACE_SOCK_Stream>. - ACE_SOCK_Stream &peer () { return logging_handler_.peer (); }; - - // Return a reference to the <log_file_>. - ACE_FILE_IO &log_file () { return log_file_; }; -}; - -#endif /* _LOGGING_EVENT_HANDLER_H */ |