// -*- C++ -*- // Module: LOG4CPLUS // File: log4judp.h // Created: 7/2012 // Author: Siva Chandran P // // // Copyright 2012 Siva Chandran P // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /** @file */ #ifndef DCMTK_LOG4CPLUS_LOG4J_UDP_APPENDER_HEADER_ #define DCMTK_LOG4CPLUS_LOG4J_UDP_APPENDER_HEADER_ #include "dcmtk/oflog/config.h" #include "dcmtk/oflog/appender.h" #include "dcmtk/oflog/helpers/socket.h" namespace dcmtk { namespace log4cplus { /** * Sends log events as Log4j XML to a remote a log server. * * The Log4jUdpAppender has the following properties: * * * *

Properties

*
*
host
*
Remote host name to connect and send events to.
* *
port
*
Port on remote host to send events to.
* *
*/ class DCMTK_LOG4CPLUS_EXPORT Log4jUdpAppender : public Appender { public: // Ctors Log4jUdpAppender(const log4cplus::tstring& host, int port); Log4jUdpAppender(const log4cplus::helpers::Properties & properties); // Dtor ~Log4jUdpAppender(); // Methods virtual void close(); protected: void openSocket(); virtual void append(const spi::InternalLoggingEvent& event); // Data log4cplus::helpers::Socket socket; log4cplus::tstring host; int port; private: // Disallow copying of instances of this class Log4jUdpAppender(const Log4jUdpAppender&); Log4jUdpAppender& operator=(const Log4jUdpAppender&); }; } // end namespace log4cplus } // end namespace dcmtk #endif // DCMTK_LOG4CPLUS_LOG4J_UDP_APPENDER_HEADER_