Apache Log4cxx  Version 1.1.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 
99 class LOG4CXX_EXPORT XMLSocketAppender : public SocketAppenderSkeleton
100 {
101  public:
105  static int DEFAULT_PORT;
106 
111 
115  static const int MAX_EVENT_LEN;
116 
122 
125 
129  XMLSocketAppender(helpers::InetAddressPtr address, int port);
130 
134  XMLSocketAppender(const LogString& host, int port);
135 
136 
137  protected:
138  void setSocket(log4cxx::helpers::SocketPtr& socket, helpers::Pool& p) override;
139 
140  void cleanUp(helpers::Pool& p) override;
141 
142  int getDefaultDelay() const override;
143 
144  int getDefaultPort() const override;
145 
146  void append(const spi::LoggingEventPtr& event, helpers::Pool& pool) override;
147 
148  private:
149  // prevent copy and assignment statements
151  XMLSocketAppender& operator=(const XMLSocketAppender&);
152 
153  struct XMLSocketAppenderPriv;
154 }; // class XMLSocketAppender
155 
157 
158 } // namespace net
159 } // namespace log4cxx
160 
161 #endif // _LOG4CXX_NET_XML_SOCKET_APPENDER_H
162 
Implementation base class for all appenders.
Definition: appenderskeleton.h:41
Abstract base class for SocketAppender and XMLSocketAppender.
Definition: socketappenderskeleton.h:36
Sends spi::LoggingEvent elements to a remote a log server, usually in XML format.
Definition: xmlsocketappender.h:100
static int DEFAULT_RECONNECTION_DELAY
The default reconnection delay (30000 milliseconds or 30 seconds).
Definition: xmlsocketappender.h:110
static int DEFAULT_PORT
The default port number of remote logging server (4560).
Definition: xmlsocketappender.h:105
static const int MAX_EVENT_LEN
Unused.
Definition: xmlsocketappender.h:115
LOG4CXX_PTR_DEF(SMTPAppender)
std::shared_ptr< LoggingEvent > LoggingEventPtr
Definition: appender.h:31
Definition: appender.h:27
std::basic_string< logchar > LogString
Definition: logstring.h:60
#define LOG4CXX_CAST_ENTRY(Interface)
Definition: object.h:157
#define END_LOG4CXX_CAST_MAP()
Definition: object.h:151
#define DECLARE_LOG4CXX_OBJECT(object)
Definition: object.h:42
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition: object.h:163
#define BEGIN_LOG4CXX_CAST_MAP()
Definition: object.h:145