This file is indexed.

/usr/include/log4cxx/net/sockethubappender.h is in liblog4cxx-dev 0.10.0-10ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */

#ifndef _LOG4CXX_NET_SOCKET_HUB_APPENDER_H
#define _LOG4CXX_NET_SOCKET_HUB_APPENDER_H

#if defined(_MSC_VER)
#pragma warning ( push )
#pragma warning ( disable: 4231 4251 4275 4786 )
#endif


#include <log4cxx/appenderskeleton.h>
#include <vector>
#include <log4cxx/helpers/thread.h>
#include <log4cxx/helpers/objectoutputstream.h>


namespace log4cxx
{
        namespace helpers {
                class ObjectOutputStream;
                typedef ObjectPtrT<ObjectOutputStream> ObjectOutputStreamPtr;
        }
        namespace net
        {
                /**
                Sends {@link log4cxx::spi::LoggingEvent LoggingEvent} objects to a set of remote log
                servers, usually a SocketNode.

                <p>Acts just like SocketAppender except that instead of
                connecting to a given remote log server,
                <code>SocketHubAppender</code> accepts connections from the remote
                log servers as clients.  It can accept more than one connection.
                When a log event is received, the event is sent to the set of
                currently connected remote log servers. Implemented this way it does
                not require any update to the configuration file to send data to
                another remote log server. The remote log server simply connects to
                the host and port the <code>SocketHubAppender</code> is running on.

                <p>The <code>SocketHubAppender</code> does not store events such
                that the remote side will events that arrived after the
                establishment of its connection. Once connected, events arrive in
                order as guaranteed by the TCP protocol.

                <p>This implementation borrows heavily from the SocketAppender.

                <p>The SocketHubAppender has the following characteristics:

                - If sent to a SocketNode, logging is non-intrusive as
                far as the log event is concerned. In other words, the event will be
                logged with the same time stamp, NDC,
                location info as if it were logged locally.

                - <code>SocketHubAppender</code> does not use a layout. It
                ships a serialized spi::LoggingEvent object to the remote side.

                - <code>SocketHubAppender</code> relies on the TCP
                protocol. Consequently, if the remote side is reachable, then log
                events will eventually arrive at remote client.

                - If no remote clients are attached, the logging requests are
                simply dropped.

                - Logging events are automatically <em>buffered</em> by the
                native TCP implementation. This means that if the link to remote
                client is slow but still faster than the rate of (log) event
                production, the application will not be affected by the slow network
                connection. However, if the network connection is slower then the
                rate of event production, then the local application can only
                progress at the network rate. In particular, if the network link to
                the the remote client is down, the application will be blocked.
                @n @n On the other hand, if the network link is up, but the remote
                client is down, the client will not be blocked when making log
                requests but the log events will be lost due to client
                unavailability.
                @n @n The single remote client case extends to multiple clients
                connections. The rate of logging will be determined by the slowest
                link.

                - If the application hosting the <code>SocketHubAppender</code>
                exits before the <code>SocketHubAppender</code> is closed either
                explicitly or subsequent to garbage collection, then there might
                be untransmitted data in the pipe which might be lost. This is a
                common problem on Windows based systems.
                @n @n To avoid lost data, it is usually sufficient to #close
                the <code>SocketHubAppender</code> either explicitly or by calling
                the LogManager#shutdown method before
                exiting the application.
                */

                class LOG4CXX_EXPORT SocketHubAppender : public AppenderSkeleton
                {
                private:
                        /**
                        The default port number of the ServerSocket will be created on.
                        */
                        static int DEFAULT_PORT;

                        int port;
                        LOG4CXX_LIST_DEF(ObjectOutputStreamList, log4cxx::helpers::ObjectOutputStreamPtr);
                        ObjectOutputStreamList streams;
                        bool locationInfo;

                public:
                        DECLARE_LOG4CXX_OBJECT(SocketHubAppender)
                        BEGIN_LOG4CXX_CAST_MAP()
                                LOG4CXX_CAST_ENTRY(SocketHubAppender)
                                LOG4CXX_CAST_ENTRY_CHAIN(AppenderSkeleton)
                        END_LOG4CXX_CAST_MAP()

                        SocketHubAppender();
                        ~SocketHubAppender();

                        /**
                        Connects to remote server at <code>address</code> and <code>port</code>.
                        */
                        SocketHubAppender(int port) ;

                        /**
                        Set up the socket server on the specified port.
                        */
                        virtual void activateOptions(log4cxx::helpers::Pool& p);

                    /**
                    Set options
                    */
                        virtual void setOption(const LogString& option, const LogString& value);

                        virtual void close();

                        /**
                        Append an event to all of current connections. */
                        virtual void append(const spi::LoggingEventPtr& event, log4cxx::helpers::Pool& p);

                        /**
                        The SocketHubAppender does not use a layout. Hence, this method returns
                        <code>false</code>. */
                        virtual bool requiresLayout() const
                                { return false; }

                        /**
                        The <b>Port</b> option takes a positive integer representing
                        the port where the server is waiting for connections. */
                        inline void setPort(int port1)
                                { this->port = port1; }

                        /**
                        Returns value of the <b>Port</b> option. */
                        inline int getPort() const
                                { return port; }

                        /**
                        The <b>LocationInfo</b> option takes a boolean value. If true,
                        the information sent to the remote host will include location
                        information. By default no location information is sent to the server. */
                        inline void setLocationInfo(bool locationInfo1)
                                {  this->locationInfo = locationInfo1; }

                        /**
                        Returns value of the <b>LocationInfo</b> option. */
                        inline bool getLocationInfo() const
                                { return locationInfo; }

                        /**
                        Start the ServerMonitor thread. */
                private:
                        void startServer();

                        helpers::Thread thread;
                        static void* LOG4CXX_THREAD_FUNC monitor(apr_thread_t* thread, void* data);

                }; // class SocketHubAppender
                LOG4CXX_PTR_DEF(SocketHubAppender);
        }  // namespace net
} // namespace log4cxx


#if defined(_MSC_VER)
#pragma warning ( pop )
#endif

#endif // _LOG4CXX_NET_SOCKET_HUB_APPENDER_H