scummvm/common/debug.cpp

214 lines
4.9 KiB
C++
Raw Normal View History

2011-04-16 14:08:33 +02:00
/* ScummVM - Graphic Adventure Engine
*
2011-04-16 14:08:33 +02:00
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
2006-04-02 14:20:45 +00:00
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
2006-04-02 14:20:45 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2006-04-02 14:20:45 +00:00
*/
2003-08-15 18:00:22 +00:00
#include "common/debug.h"
2011-04-10 21:59:04 +02:00
#include "common/debug-channels.h"
2011-04-14 12:41:26 +02:00
#include "common/system.h"
2011-05-01 17:49:40 +02:00
#include "common/textconsole.h"
2011-07-20 06:58:19 +02:00
#include "common/algorithm.h"
#include <stdarg.h> // For va_list etc.
2010-01-21 19:25:03 +00:00
// TODO: Move gDebugLevel into namespace Common.
int gDebugLevel = -1;
namespace Common {
2011-07-20 06:58:19 +02:00
DECLARE_SINGLETON(DebugManager);
namespace {
struct DebugLevelComperator {
2011-04-10 21:59:04 +02:00
bool operator()(const DebugManager::DebugChannel &l, const DebugManager::DebugChannel &r) {
return (l.name.compareToIgnoreCase(r.name) < 0);
}
};
} // end of anonymous namespace
2011-04-10 21:59:04 +02:00
bool DebugManager::addDebugChannel(uint32 channel, const String &name, const String &description) {
if (gDebugChannels.contains(name))
warning("Duplicate declaration of engine debug channel '%s'", name.c_str());
gDebugChannels[name] = DebugChannel(channel, name, description);
return true;
}
2011-04-10 21:59:04 +02:00
void DebugManager::clearAllDebugChannels() {
gDebugChannelsEnabled = 0;
gDebugChannels.clear();
}
2011-04-10 21:59:04 +02:00
bool DebugManager::enableDebugChannel(const String &name) {
DebugChannelMap::iterator i = gDebugChannels.find(name);
if (i != gDebugChannels.end()) {
gDebugChannelsEnabled |= i->_value.channel;
i->_value.enabled = true;
return true;
} else {
return false;
}
}
2011-04-10 21:59:04 +02:00
bool DebugManager::disableDebugChannel(const String &name) {
DebugChannelMap::iterator i = gDebugChannels.find(name);
if (i != gDebugChannels.end()) {
gDebugChannelsEnabled &= ~i->_value.channel;
i->_value.enabled = false;
return true;
} else {
return false;
}
}
2011-04-10 21:59:04 +02:00
DebugManager::DebugChannelList DebugManager::listDebugChannels() {
DebugChannelList tmp;
for (DebugChannelMap::iterator i = gDebugChannels.begin(); i != gDebugChannels.end(); ++i)
tmp.push_back(i->_value);
sort(tmp.begin(), tmp.end(), DebugLevelComperator());
return tmp;
}
2011-04-10 21:59:04 +02:00
bool DebugManager::isDebugChannelEnabled(uint32 channel) {
2009-06-18 11:52:26 +00:00
// Debug level 11 turns on all special debug level messages
if (gDebugLevel == 11)
return true;
else
return (gDebugChannelsEnabled & channel) != 0;
}
2010-01-21 19:25:03 +00:00
} // End of namespace Common
2009-05-25 06:49:57 +00:00
#ifndef DISABLE_TEXT_CONSOLE
static void debugHelper(const char *s, va_list va, bool caret = true) {
2011-07-20 06:58:19 +02:00
Common::String buf = Common::String::vformat(s, va);
2008-07-30 09:54:22 +00:00
2011-07-20 06:58:19 +02:00
if (caret)
buf += '\n';
2011-04-14 12:41:26 +02:00
if (g_system)
2011-07-20 06:58:19 +02:00
g_system->logMessage(LogMessageType::kDebug, buf.c_str());
2011-04-14 12:41:26 +02:00
// TODO: Think of a good fallback in case we do not have
// any OSystem yet.
2008-07-30 09:54:22 +00:00
}
2003-08-15 18:00:22 +00:00
void debug(const char *s, ...) {
2008-07-30 09:54:22 +00:00
va_list va;
2003-08-15 18:00:22 +00:00
2008-07-30 09:54:22 +00:00
va_start(va, s);
debugHelper(s, va);
va_end(va);
2003-08-15 18:00:22 +00:00
}
void debug(int level, const char *s, ...) {
2008-07-30 09:54:22 +00:00
va_list va;
2003-08-15 18:00:22 +00:00
if (level > gDebugLevel)
2008-07-30 09:54:22 +00:00
return;
2003-08-15 18:00:22 +00:00
2008-07-30 09:54:22 +00:00
va_start(va, s);
debugHelper(s, va);
va_end(va);
2008-07-30 09:54:22 +00:00
}
2011-04-14 12:41:26 +02:00
void debugN(const char *s, ...) {
va_list va;
va_start(va, s);
debugHelper(s, va, false);
va_end(va);
}
void debugN(int level, const char *s, ...) {
2008-07-30 09:54:22 +00:00
va_list va;
if (level > gDebugLevel)
return;
2008-07-30 09:54:22 +00:00
va_start(va, s);
debugHelper(s, va, false);
2008-07-30 09:54:22 +00:00
va_end(va);
}
2008-07-30 09:54:22 +00:00
void debugC(int level, uint32 debugChannels, const char *s, ...) {
va_list va;
2008-07-30 09:54:22 +00:00
2009-06-18 11:52:26 +00:00
// Debug level 11 turns on all special debug level messages
if (gDebugLevel != 11)
2011-04-10 21:59:04 +02:00
if (level > gDebugLevel || !(DebugMan.isDebugChannelEnabled(debugChannels)))
return;
2003-08-15 18:00:22 +00:00
va_start(va, s);
debugHelper(s, va);
va_end(va);
2003-08-15 18:00:22 +00:00
}
2005-08-10 08:33:45 +00:00
2009-06-18 11:52:26 +00:00
void debugCN(int level, uint32 debugChannels, const char *s, ...) {
va_list va;
// Debug level 11 turns on all special debug level messages
if (gDebugLevel != 11)
2011-04-10 21:59:04 +02:00
if (level > gDebugLevel || !(DebugMan.isDebugChannelEnabled(debugChannels)))
2009-06-18 11:52:26 +00:00
return;
va_start(va, s);
debugHelper(s, va, false);
va_end(va);
}
void debugC(uint32 debugChannels, const char *s, ...) {
2008-07-30 09:54:22 +00:00
va_list va;
2009-06-18 11:52:26 +00:00
// Debug level 11 turns on all special debug level messages
if (gDebugLevel != 11)
2011-04-10 21:59:04 +02:00
if (!(DebugMan.isDebugChannelEnabled(debugChannels)))
return;
va_start(va, s);
debugHelper(s, va);
2008-07-30 09:54:22 +00:00
va_end(va);
}
2009-06-18 11:52:26 +00:00
void debugCN(uint32 debugChannels, const char *s, ...) {
va_list va;
// Debug level 11 turns on all special debug level messages
if (gDebugLevel != 11)
2011-04-10 21:59:04 +02:00
if (!(DebugMan.isDebugChannelEnabled(debugChannels)))
2009-06-18 11:52:26 +00:00
return;
va_start(va, s);
debugHelper(s, va, false);
va_end(va);
}
#endif