diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-05-19 14:10:29 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-05-19 14:10:29 +0000 |
commit | acd1dfb23bc54cce952866f208b3f6ec53d16d60 (patch) | |
tree | 9972ba1985fb32d5af7752489517482fdd181004 | |
parent | 96ff2a76e2c5a824bc3a46cc75302c9c05eb5f26 (diff) | |
download | ATCD-acd1dfb23bc54cce952866f208b3f6ec53d16d60.tar.gz |
ChangeLogTag: Thu May 19 14:05:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | netsvcs/lib/Client_Logging_Handler.cpp | 47 |
2 files changed, 30 insertions, 22 deletions
diff --git a/ChangeLog b/ChangeLog index 2c94f24c09d..da3e7b4d3d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu May 19 14:05:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl> + + * netsvcs/clients/Logger/indirect_logging.cpp: + When we can't open the logger print out an error and exit with -1. + Thu May 19 00:38:46 2005 Ossama Othman <ossama@dre.vanderbilt.edu> * config-g++-common.h: diff --git a/netsvcs/lib/Client_Logging_Handler.cpp b/netsvcs/lib/Client_Logging_Handler.cpp index ec93d250348..804bc8a6e67 100644 --- a/netsvcs/lib/Client_Logging_Handler.cpp +++ b/netsvcs/lib/Client_Logging_Handler.cpp @@ -33,7 +33,7 @@ ACE_Client_Logging_Handler::ACE_Client_Logging_Handler (ACE_HANDLE output_handle // This is called when a <send> to the logging server fails... int -ACE_Client_Logging_Handler::handle_signal (int signum, +ACE_Client_Logging_Handler::handle_signal (int signum, siginfo_t *, ucontext_t *) { @@ -194,7 +194,7 @@ ACE_Client_Logging_Handler::handle_input (ACE_HANDLE handle) ACE_TEXT ("%n: %p\n"), ACE_TEXT ("remove_handler")), 0); - + ACE_OS::closesocket (handle); # if 0 ACE_DEBUG ((LM_DEBUG, @@ -203,11 +203,11 @@ ACE_Client_Logging_Handler::handle_input (ACE_HANDLE handle) return 0; } #endif /* ACE_WIN32 */ - + ssize_t retrieved = ACE_OS::recv (handle, (char *) &log_record, (int) length); - + // We got a ``short-read.'' Try once more, then abandon all // hope on this socket. Note that if we were trying to write a // totally "bullet-proof" app that couldn't lose any data @@ -225,7 +225,7 @@ ACE_Client_Logging_Handler::handle_input (ACE_HANDLE handle) ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("partial message retrieved, attempting second try...\n"))); #endif /* 0 */ - + int remainder = length - retrieved; int secondtry = ACE_OS::recv (handle, @@ -438,7 +438,10 @@ int ACE_Client_Logging_Acceptor::init (int argc, ACE_TCHAR *argv[]) { // We'll log *our* error and debug messages to stderr! - ACE_LOG_MSG->open (ACE_TEXT ("Client Logging Service")); + if (ACE_LOG_MSG->open (ACE_TEXT ("Client Logging Service")) == -1) + ACE_ERROR_RETURN ((LM_ERROR, + ACE_TEXT ("Can't open Log_Msg\n")), + -1); // Use the options hook to parse the command line arguments and set // options. @@ -476,7 +479,7 @@ ACE_Client_Logging_Acceptor::init (int argc, ACE_TCHAR *argv[]) // Figure out what remote port we're really bound to. if (stream.get_remote_addr (server_addr) == -1) - ACE_ERROR_RETURN ((LM_ERROR, + ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("get_remote_addr")), -1); @@ -502,23 +505,23 @@ ACE_Client_Logging_Acceptor::parse_args (int argc, ACE_TCHAR *argv[]) for (int c; (c = get_opt ()) != -1; ) { switch (c) - { - case 'h': + { + case 'h': ACE_OS::free ((void *) this->server_host_); - this->server_host_ = ACE_OS::strdup (get_opt.opt_arg ()); - break; - case 'k': + this->server_host_ = ACE_OS::strdup (get_opt.opt_arg ()); + break; + case 'k': ACE_OS::free ((void *) this->logger_key_); - this->logger_key_ = ACE_OS::strdup (get_opt.opt_arg ()); - break; - case 'p': - this->server_port_ = ACE_OS::atoi (get_opt.opt_arg ()); - break; - default: - ACE_ERROR_RETURN ((LM_ERROR, - ACE_TEXT ("%n:\n[-p server-port]\n%a"), 1), - -1); - } + this->logger_key_ = ACE_OS::strdup (get_opt.opt_arg ()); + break; + case 'p': + this->server_port_ = ACE_OS::atoi (get_opt.opt_arg ()); + break; + default: + ACE_ERROR_RETURN ((LM_ERROR, + ACE_TEXT ("%n:\n[-p server-port]\n%a"), 1), + -1); + } } if (this->server_addr_.set (this->server_port_, |