Apache log4cxx  Version 0.13.0
xmlsocketappender.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef _LOG4CXX_NET_XML_SOCKET_APPENDER_H
19 #define _LOG4CXX_NET_XML_SOCKET_APPENDER_H
20 
22 #include <log4cxx/helpers/writer.h>
23 
24 namespace log4cxx
25 {
26 namespace net
27 {
28 
88 class LOG4CXX_EXPORT XMLSocketAppender : public SocketAppenderSkeleton
89 {
90  public:
94  static int DEFAULT_PORT;
95 
100 
104  static const int MAX_EVENT_LEN;
105 
111 
113  ~XMLSocketAppender();
114 
118  XMLSocketAppender(helpers::InetAddressPtr address, int port);
119 
123  XMLSocketAppender(const LogString& host, int port);
124 
125 
126  protected:
127  virtual void setSocket(log4cxx::helpers::SocketPtr& socket, log4cxx::helpers::Pool& p);
128 
129  virtual void cleanUp(log4cxx::helpers::Pool& p);
130 
131  virtual int getDefaultDelay() const;
132 
133  virtual int getDefaultPort() const;
134 
135  void append(const spi::LoggingEventPtr& event, log4cxx::helpers::Pool& pool);
136 
137  private:
138  log4cxx::helpers::WriterPtr writer;
139  // prevent copy and assignment statements
140  XMLSocketAppender(const XMLSocketAppender&);
141  XMLSocketAppender& operator=(const XMLSocketAppender&);
142 }; // class XMLSocketAppender
143 
144 LOG4CXX_PTR_DEF(XMLSocketAppender);
145 
146 } // namespace net
147 } // namespace log4cxx
148 
149 #endif // _LOG4CXX_NET_XML_SOCKET_APPENDER_H
150 
#define LOG4CXX_CAST_ENTRY(Interface)
Definition: object.h:153
#define END_LOG4CXX_CAST_MAP()
Definition: object.h:147
Implementation base class for all appenders.
Definition: appenderskeleton.h:43
Sends LoggingEvent objects in XML format to a remote a log server, usually a XMLSocketNode.
Definition: xmlsocketappender.h:88
std::shared_ptr< LoggingEvent > LoggingEventPtr
Definition: appender.h:37
#define BEGIN_LOG4CXX_CAST_MAP()
Definition: object.h:141
static int DEFAULT_RECONNECTION_DELAY
The default reconnection delay (30000 milliseconds or 30 seconds).
Definition: xmlsocketappender.h:99
static int DEFAULT_PORT
The default port number of remote logging server (4560).
Definition: xmlsocketappender.h:94
Abstract base class for SocketAppender and XMLSocketAppender.
Definition: socketappenderskeleton.h:41
#define DECLARE_LOG4CXX_OBJECT(object)
Definition: object.h:39
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition: object.h:159
static const int MAX_EVENT_LEN
An event XML stream cannot exceed 1024 bytes.
Definition: xmlsocketappender.h:104
LOG4CXX_PTR_DEF(SMTPAppender)
Definition: appender.h:32
std::basic_string< logchar > LogString
Definition: logstring.h:66