⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hierarchy.h

📁 log4cxx 0.10 unix下编译包
💻 H
字号:
/* * 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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -