Apache log4cxx Version 0.13.0
Loading...
Searching...
No Matches
socketappender.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_SOCKET_APPENDER_H
19#define _LOG4CXX_NET_SOCKET_APPENDER_H
20
23
24namespace log4cxx
25{
26namespace net
27{
86class LOG4CXX_EXPORT SocketAppender : public SocketAppenderSkeleton
87{
88 public:
92 static int DEFAULT_PORT;
93
98
104
107
111 SocketAppender(helpers::InetAddressPtr& address, int port);
112
116 SocketAppender(const LogString& host, int port);
117
118 protected:
119 virtual void setSocket(log4cxx::helpers::SocketPtr& socket, log4cxx::helpers::Pool& p);
120 virtual void cleanUp(log4cxx::helpers::Pool& p);
121 virtual int getDefaultDelay() const;
122 virtual int getDefaultPort() const;
123 void append(const spi::LoggingEventPtr& event, log4cxx::helpers::Pool& pool);
124
125 private:
126 log4cxx::helpers::ObjectOutputStreamPtr oos;
127
128}; // class SocketAppender
129
130LOG4CXX_PTR_DEF(SocketAppender);
131} // namespace net
132} // namespace log4cxx
133
134#endif // _LOG4CXX_NET_SOCKET_APPENDER_H
135
Implementation base class for all appenders.
Definition: appenderskeleton.h:46
Abstract base class for SocketAppender and XMLSocketAppender.
Definition: socketappenderskeleton.h:42
Sends LoggingEvent objects to a remote a log server, usually Apache Chainsaw.
Definition: socketappender.h:87
static int DEFAULT_PORT
The default port number of remote logging server (4560).
Definition: socketappender.h:92
static int DEFAULT_RECONNECTION_DELAY
The default reconnection delay (30000 milliseconds or 30 seconds).
Definition: socketappender.h:97
Definition: messagehandler.h:23
std::basic_string< logchar > LogString
Definition: logstring.h:66
#define LOG4CXX_CAST_ENTRY(Interface)
Definition: object.h:153
#define END_LOG4CXX_CAST_MAP()
Definition: object.h:147
#define DECLARE_LOG4CXX_OBJECT(object)
Definition: object.h:39
#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)
Definition: object.h:159
#define BEGIN_LOG4CXX_CAST_MAP()
Definition: object.h:141