log4cplus
1.1.0
|
00001 // -*- C++ -*- 00002 // Module: Log4CPLUS 00003 // File: hierarchylocker.h 00004 // Created: 8/2003 00005 // Author: Tad E. Smith 00006 // 00007 // 00008 // Copyright 2003-2010 Tad E. Smith 00009 // 00010 // Licensed under the Apache License, Version 2.0 (the "License"); 00011 // you may not use this file except in compliance with the License. 00012 // You may obtain a copy of the License at 00013 // 00014 // http://www.apache.org/licenses/LICENSE-2.0 00015 // 00016 // Unless required by applicable law or agreed to in writing, software 00017 // distributed under the License is distributed on an "AS IS" BASIS, 00018 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00019 // See the License for the specific language governing permissions and 00020 // limitations under the License. 00021 00024 #ifndef LOG4CPLUS_HIERARCHY_LOCKER_HEADER_ 00025 #define LOG4CPLUS_HIERARCHY_LOCKER_HEADER_ 00026 00027 #include <log4cplus/config.hxx> 00028 00029 #if defined (LOG4CPLUS_HAVE_PRAGMA_ONCE) 00030 #pragma once 00031 #endif 00032 00033 #include <log4cplus/tstring.h> 00034 #include <log4cplus/appender.h> 00035 #include <log4cplus/logger.h> 00036 00037 00038 namespace log4cplus 00039 { 00040 00041 class Hierarchy; 00042 00043 00047 class LOG4CPLUS_EXPORT HierarchyLocker { 00048 public: 00049 // ctor & dtor 00050 HierarchyLocker(Hierarchy& h); 00051 ~HierarchyLocker(); 00052 00056 void resetConfiguration(); 00057 00061 Logger getInstance(const log4cplus::tstring& name); 00062 00066 Logger getInstance(const log4cplus::tstring& name, spi::LoggerFactory& factory); 00067 00068 void addAppender(Logger &logger, log4cplus::SharedAppenderPtr& appender); 00069 00070 private: 00071 // Data 00072 Hierarchy& h; 00073 log4cplus::thread::MutexGuard hierarchyLocker; 00074 LoggerList loggerList; 00075 }; 00076 00077 } // end namespace log4cplus 00078 00079 #endif // LOG4CPLUS_HIERARCHY_LOCKER_HEADER_ 00080