This file is indexed.

/usr/include/log4cxx/hierarchy.h is in liblog4cxx-dev 0.10.0-12.

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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*
 * 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_HIERARCHY_H
#define _LOG4CXX_HIERARCHY_H

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

#include <log4cxx/spi/loggerrepository.h>
#include <log4cxx/spi/loggerfactory.h>
#include <vector>
#include <map>
#include <log4cxx/provisionnode.h>
#include <log4cxx/helpers/objectimpl.h>
#include <log4cxx/spi/hierarchyeventlistener.h>
#include <log4cxx/helpers/pool.h>

namespace log4cxx
{
        /**
        This class is specialized in retrieving loggers by name and also
        maintaining the logger hierarchy.

        <p><em>The casual user does not have to deal with this class
        directly.</em>

        <p>The structure of the logger hierarchy is maintained by the
        #getLogger method. The hierarchy is such that children link
        to their parent but parents do not have any pointers to their
        children. Moreover, loggers can be instantiated in any order, in
        particular descendant before ancestor.

        <p>In case a descendant is created before a particular ancestor,
        then it creates a provision node for the ancestor and adds itself
        to the provision node. Other descendants of the same ancestor add
        themselves to the previously created provision node.
        */
        class LOG4CXX_EXPORT Hierarchy :
                public virtual spi::LoggerRepository,
                public virtual helpers::ObjectImpl
        {
        private:
            log4cxx::helpers::Pool pool;
            log4cxx::helpers::Mutex mutex;
            bool configured;

            spi::LoggerFactoryPtr defaultFactory;
            spi::HierarchyEventListenerList listeners;

            typedef std::map<LogString, LoggerPtr> LoggerMap;
            LoggerMap* loggers;

            typedef std::map<LogString, ProvisionNode> ProvisionNodeMap;
            ProvisionNodeMap* provisionNodes;

            LoggerPtr root;

            int thresholdInt;
            LevelPtr threshold;

            bool emittedNoAppenderWarning;
            bool emittedNoResourceBundleWarning;

        public:
            DECLARE_ABSTRACT_LOG4CXX_OBJECT(Hierarchy)
            BEGIN_LOG4CXX_CAST_MAP()
                LOG4CXX_CAST_ENTRY(spi::LoggerRepository)
            END_LOG4CXX_CAST_MAP()

            /**
            Create a new logger hierarchy.
            */
            Hierarchy();

            ~Hierarchy();

            void addRef() const;
            void releaseRef() const;

            void addHierarchyEventListener(const spi::HierarchyEventListenerPtr& listener);

            /**
            This call will clear all logger definitions from the internal
            hashtable. Invoking this method will irrevocably mess up the
            logger hierarchy.

            <p>You should <em>really</em> know what you are doing before
            invoking this method.
            */
            void clear();

            void emitNoAppenderWarning(const LoggerPtr& logger);

            /**
            Check if the named logger exists in the hierarchy. If so return
            its reference, otherwise returns <code>null</code>.

              @param name The name of the logger to search for.

            */
            LoggerPtr exists(const LogString& name);

            /**
            The string form of {@link #setThreshold(const LevelPtr&) setThreshold}.
            */
            void setThreshold(const LogString& levelStr);

            /**
            Enable logging for logging requests with level <code>l</code> or
            higher. By default all levels are enabled.

                    @param l The minimum level for which logging requests are sent to
            their appenders.  */
            void setThreshold(const LevelPtr& l);

            void fireAddAppenderEvent(const LoggerPtr& logger, const AppenderPtr& appender);

            void fireRemoveAppenderEvent(const LoggerPtr& logger,
                    const AppenderPtr& appender);

            /**
            Returns a Level representation of the <code>enable</code>
            state.
            */
            const LevelPtr& getThreshold() const;

            /**
            Return a new logger instance named as the first parameter using
            the default factory.

            <p>If a logger of that name already exists, then it will be
            returned.  Otherwise, a new logger will be instantiated and
            then linked with its existing ancestors as well as children.

            @param name The name of the logger to retrieve.

            */
            LoggerPtr getLogger(const LogString& name);

            /**
            Return a new logger instance named as the first parameter using
            <code>factory</code>.

            <p>If a logger of that name already exists, then it will be
            returned.  Otherwise, a new logger will be instantiated by the
            <code>factory</code> parameter and linked with its existing
            ancestors as well as children.

            @param name The name of the logger to retrieve.
            @param factory The factory that will make the new logger instance.

            */
            LoggerPtr getLogger(const LogString& name,
                   const spi::LoggerFactoryPtr& factory);

            /**
            Returns all the currently defined loggers in this hierarchy as
            a LoggerList.

            <p>The root logger is <em>not</em> included in the returned
            LoggerList.  */
            LoggerList getCurrentLoggers() const;

            /**
            Get the root of this hierarchy.
            */
            LoggerPtr getRootLogger() const;

            /**
            This method will return <code>true</code> if this repository is
            disabled for <code>level</code> object passed as parameter and
            <code>false</code> otherwise. See also the
            {@link #setThreshold(const LevelPtr&) setThreshold} method.  */
            bool isDisabled(int level) const;

            /**
            Reset all values contained in this hierarchy instance to their
            default.  This removes all appenders from all categories, sets
            the level of all non-root categories to <code>null</code>,
            sets their additivity flag to <code>true</code> and sets the level
            of the root logger to DEBUG.  Moreover,
            message disabling is set its default "off" value.

            <p>Existing categories are not removed. They are just reset.

            <p>This method should be used sparingly and with care as it will
            block all logging until it is completed.</p>
            */
            void resetConfiguration();

            /**
            Used by subclasses to add a renderer to the hierarchy passed as parameter.
            */
            /**
            Shutting down a hierarchy will <em>safely</em> close and remove
            all appenders in all categories including the root logger.

            <p>Some appenders such as {@link net::SocketAppender SocketAppender}
            and AsyncAppender need to be closed before the
            application exists. Otherwise, pending logging events might be
            lost.

            <p>The <code>shutdown</code> method is careful to close nested
            appenders before closing regular appenders. This is allows
            configurations where a regular appender is attached to a logger
            and again to a nested appender.
            */
            void shutdown();


            virtual bool isConfigured();
            virtual void setConfigured(bool configured);


        private:

            /**
            This method loops through all the *potential* parents of
            'cat'. There 3 possible cases:

            1) No entry for the potential parent of 'cat' exists

            We create a ProvisionNode for this potential parent and insert
            'cat' in that provision node.

            2) There entry is of type Logger for the potential parent.

            The entry is 'cat's nearest existing parent. We update cat's
            parent field with this entry. We also break from the loop
            because updating our parent's parent is our parent's
            responsibility.

            3) There entry is of type ProvisionNode for this potential parent.

            We add 'cat' to the list of children for this potential parent.
            */
            void updateParents(LoggerPtr logger);

            /**
            We update the links for all the children that placed themselves
            in the provision node 'pn'. The second argument 'cat' is a
            reference for the newly created Logger, parent of all the
            children in 'pn'

            We loop on all the children 'c' in 'pn':

            If the child 'c' has been already linked to a child of
            'cat' then there is no need to update 'c'.

            Otherwise, we set cat's parent field to c's parent and set
            c's parent field to cat.
            */
            Hierarchy(const Hierarchy&);
            Hierarchy& operator=(const Hierarchy&);

            void updateChildren(ProvisionNode& pn, LoggerPtr logger);
        };

}  //namespace log4cxx


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

#endif //_LOG4CXX_HIERARCHY_H