| 1 | /* |
|---|
| 2 | ----------------------------------------------------------------------------- |
|---|
| 3 | This source file is part of OGRE |
|---|
| 4 | (Object-oriented Graphics Rendering Engine) |
|---|
| 5 | For the latest info, see http://www.ogre3d.org/ |
|---|
| 6 | |
|---|
| 7 | Copyright (c) 2000-2006 Torus Knot Software Ltd |
|---|
| 8 | Also see acknowledgements in Readme.html |
|---|
| 9 | |
|---|
| 10 | This program is free software; you can redistribute it and/or modify it under |
|---|
| 11 | the terms of the GNU Lesser General Public License as published by the Free Software |
|---|
| 12 | Foundation; either version 2 of the License, or (at your option) any later |
|---|
| 13 | version. |
|---|
| 14 | |
|---|
| 15 | This program is distributed in the hope that it will be useful, but WITHOUT |
|---|
| 16 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
|---|
| 17 | FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
|---|
| 18 | |
|---|
| 19 | You should have received a copy of the GNU Lesser General Public License along with |
|---|
| 20 | this program; if not, write to the Free Software Foundation, Inc., 59 Temple |
|---|
| 21 | Place - Suite 330, Boston, MA 02111-1307, USA, or go to |
|---|
| 22 | http://www.gnu.org/copyleft/lesser.txt. |
|---|
| 23 | |
|---|
| 24 | You may alternatively use this source under the terms of a specific version of |
|---|
| 25 | the OGRE Unrestricted License provided you have obtained such a license from |
|---|
| 26 | Torus Knot Software Ltd. |
|---|
| 27 | ----------------------------------------------------------------------------- |
|---|
| 28 | */ |
|---|
| 29 | #include "OgreStableHeaders.h" |
|---|
| 30 | |
|---|
| 31 | #include "OgreLogManager.h" |
|---|
| 32 | #include "OgreException.h" |
|---|
| 33 | #include <algorithm> |
|---|
| 34 | namespace Ogre { |
|---|
| 35 | |
|---|
| 36 | //----------------------------------------------------------------------- |
|---|
| 37 | template<> LogManager* Singleton<LogManager>::ms_Singleton = 0; |
|---|
| 38 | LogManager* LogManager::getSingletonPtr(void) |
|---|
| 39 | { |
|---|
| 40 | return ms_Singleton; |
|---|
| 41 | } |
|---|
| 42 | LogManager& LogManager::getSingleton(void) |
|---|
| 43 | { |
|---|
| 44 | assert( ms_Singleton ); return ( *ms_Singleton ); |
|---|
| 45 | } |
|---|
| 46 | //----------------------------------------------------------------------- |
|---|
| 47 | LogManager::LogManager() |
|---|
| 48 | { |
|---|
| 49 | mDefaultLog = NULL; |
|---|
| 50 | } |
|---|
| 51 | //----------------------------------------------------------------------- |
|---|
| 52 | LogManager::~LogManager() |
|---|
| 53 | { |
|---|
| 54 | OGRE_LOCK_AUTO_MUTEX |
|---|
| 55 | // Destroy all logs |
|---|
| 56 | LogList::iterator i; |
|---|
| 57 | for (i = mLogs.begin(); i != mLogs.end(); ++i) |
|---|
| 58 | { |
|---|
| 59 | delete i->second; |
|---|
| 60 | } |
|---|
| 61 | } |
|---|
| 62 | //----------------------------------------------------------------------- |
|---|
| 63 | Log* LogManager::createLog( const String& name, bool defaultLog, bool debuggerOutput, |
|---|
| 64 | bool suppressFileOutput) |
|---|
| 65 | { |
|---|
| 66 | OGRE_LOCK_AUTO_MUTEX |
|---|
| 67 | |
|---|
| 68 | Log* newLog = new Log(name, debuggerOutput, suppressFileOutput); |
|---|
| 69 | |
|---|
| 70 | if( !mDefaultLog || defaultLog ) |
|---|
| 71 | { |
|---|
| 72 | mDefaultLog = newLog; |
|---|
| 73 | } |
|---|
| 74 | |
|---|
| 75 | mLogs.insert( LogList::value_type( name, newLog ) ); |
|---|
| 76 | |
|---|
| 77 | return newLog; |
|---|
| 78 | } |
|---|
| 79 | //----------------------------------------------------------------------- |
|---|
| 80 | Log* LogManager::getDefaultLog() |
|---|
| 81 | { |
|---|
| 82 | OGRE_LOCK_AUTO_MUTEX |
|---|
| 83 | return mDefaultLog; |
|---|
| 84 | } |
|---|
| 85 | //----------------------------------------------------------------------- |
|---|
| 86 | Log* LogManager::setDefaultLog(Log* newLog) |
|---|
| 87 | { |
|---|
| 88 | OGRE_LOCK_AUTO_MUTEX |
|---|
| 89 | Log* oldLog = mDefaultLog; |
|---|
| 90 | mDefaultLog = newLog; |
|---|
| 91 | return oldLog; |
|---|
| 92 | } |
|---|
| 93 | //----------------------------------------------------------------------- |
|---|
| 94 | Log* LogManager::getLog( const String& name) |
|---|
| 95 | { |
|---|
| 96 | OGRE_LOCK_AUTO_MUTEX |
|---|
| 97 | LogList::iterator i = mLogs.find(name); |
|---|
| 98 | if (i != mLogs.end()) |
|---|
| 99 | return i->second; |
|---|
| 100 | else |
|---|
| 101 | OGRE_EXCEPT(Exception::ERR_INVALIDPARAMS, "Log not found. ", "LogManager::getLog"); |
|---|
| 102 | |
|---|
| 103 | |
|---|
| 104 | } |
|---|
| 105 | //----------------------------------------------------------------------- |
|---|
| 106 | void LogManager::destroyLog(const String& name) |
|---|
| 107 | { |
|---|
| 108 | LogList::iterator i = mLogs.find(name); |
|---|
| 109 | if (i != mLogs.end()) |
|---|
| 110 | { |
|---|
| 111 | if (mDefaultLog == i->second) |
|---|
| 112 | { |
|---|
| 113 | mDefaultLog = 0; |
|---|
| 114 | } |
|---|
| 115 | delete i->second; |
|---|
| 116 | mLogs.erase(i); |
|---|
| 117 | } |
|---|
| 118 | |
|---|
| 119 | // Set another default log if this one removed |
|---|
| 120 | if (!mDefaultLog && !mLogs.empty()) |
|---|
| 121 | { |
|---|
| 122 | mDefaultLog = mLogs.begin()->second; |
|---|
| 123 | } |
|---|
| 124 | } |
|---|
| 125 | //----------------------------------------------------------------------- |
|---|
| 126 | void LogManager::destroyLog(Log* log) |
|---|
| 127 | { |
|---|
| 128 | destroyLog(log->getName()); |
|---|
| 129 | } |
|---|
| 130 | //----------------------------------------------------------------------- |
|---|
| 131 | void LogManager::logMessage( const String& message, LogMessageLevel lml, bool maskDebug) |
|---|
| 132 | { |
|---|
| 133 | OGRE_LOCK_AUTO_MUTEX |
|---|
| 134 | if (mDefaultLog) |
|---|
| 135 | { |
|---|
| 136 | mDefaultLog->logMessage(message, lml, maskDebug); |
|---|
| 137 | } |
|---|
| 138 | } |
|---|
| 139 | //----------------------------------------------------------------------- |
|---|
| 140 | void LogManager::setLogDetail(LoggingLevel ll) |
|---|
| 141 | { |
|---|
| 142 | OGRE_LOCK_AUTO_MUTEX |
|---|
| 143 | if (mDefaultLog) |
|---|
| 144 | { |
|---|
| 145 | mDefaultLog->setLogDetail(ll); |
|---|
| 146 | } |
|---|
| 147 | } |
|---|
| 148 | } |
|---|