tibia-client/src/framework/core/logger.cpp

143 lines
4.2 KiB
C++
Raw Normal View History

2011-08-28 15:17:58 +02:00
/*
2017-01-13 11:47:07 +01:00
* Copyright (c) 2010-2017 OTClient <https://github.com/edubart/otclient>
2011-08-28 15:17:58 +02:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
2011-08-20 22:30:41 +02:00
#include "logger.h"
#include "eventdispatcher.h"
//#include <boost/regex.hpp>
#include <framework/core/resourcemanager.h>
#ifdef FW_GRAPHICS
2012-01-06 21:15:41 +01:00
#include <framework/platform/platformwindow.h>
2013-03-12 05:33:45 +01:00
#include <framework/platform/platform.h>
#include <framework/luaengine/luainterface.h>
#endif
2011-08-20 22:30:41 +02:00
Logger g_logger;
void Logger::log(Fw::LogLevel level, const std::string& message)
2011-08-20 22:30:41 +02:00
{
std::lock_guard<std::recursive_mutex> lock(m_mutex);
2013-03-04 22:56:22 +01:00
#ifdef NDEBUG
if(level == Fw::LogDebug)
return;
#endif
static bool ignoreLogs = false;
if(ignoreLogs)
return;
2011-08-20 22:30:41 +02:00
const static std::string logPrefixes[] = { "", "", "WARNING: ", "ERROR: ", "FATAL ERROR: " };
std::string outmsg = logPrefixes[level] + message;
/*
#if !defined(NDEBUG) && !defined(WIN32)
// replace paths for improved debug with vim
std::stringstream tmp;
boost::smatch m;
boost::regex e ("/[^ :]+");
while(boost::regex_search(outmsg,m,e)) {
tmp << m.prefix().str();
tmp << g_resources.getRealDir(m.str()) << m.str();
outmsg = m.suffix().str();
}
if(!tmp.str().empty())
outmsg = tmp.str();
#endif
*/
std::cout << outmsg << std::endl;
2011-08-20 22:30:41 +02:00
if(m_outFile.good()) {
m_outFile << outmsg << std::endl;
m_outFile.flush();
}
2011-12-09 16:01:04 +01:00
std::size_t now = std::time(NULL);
m_logMessages.push_back(LogMessage(level, outmsg, now));
if(m_logMessages.size() > MAX_LOG_HISTORY)
m_logMessages.pop_front();
2011-08-20 22:30:41 +02:00
2012-03-28 21:59:51 +02:00
if(m_onLog) {
// schedule log callback, because this callback can run lua code that may affect the current state
2012-06-26 00:13:30 +02:00
g_dispatcher.addEvent([=] {
2012-03-28 21:59:51 +02:00
if(m_onLog)
m_onLog(level, outmsg, now);
});
}
2011-08-20 22:30:41 +02:00
2012-01-06 21:15:41 +01:00
if(level == Fw::LogFatal) {
#ifdef FW_GRAPHICS
2012-01-06 21:15:41 +01:00
g_window.displayFatalError(message);
#endif
ignoreLogs = true;
2012-01-06 21:15:41 +01:00
exit(-1);
}
2011-08-20 22:30:41 +02:00
}
void Logger::logFunc(Fw::LogLevel level, const std::string& message, std::string prettyFunction)
2011-08-20 22:30:41 +02:00
{
std::lock_guard<std::recursive_mutex> lock(m_mutex);
2013-03-04 22:56:22 +01:00
2011-08-20 22:30:41 +02:00
prettyFunction = prettyFunction.substr(0, prettyFunction.find_first_of('('));
if(prettyFunction.find_last_of(' ') != std::string::npos)
prettyFunction = prettyFunction.substr(prettyFunction.find_last_of(' ') + 1);
2013-03-12 05:33:45 +01:00
std::stringstream ss;
ss << message;
if(!prettyFunction.empty()) {
if(g_lua.isInCppCallback())
2013-03-12 05:33:45 +01:00
ss << g_lua.traceback("", 1);
ss << g_platform.traceback(prettyFunction, 1, 8);
}
2013-03-12 05:33:45 +01:00
log(level, ss.str());
2011-08-20 22:30:41 +02:00
}
void Logger::fireOldMessages()
{
std::lock_guard<std::recursive_mutex> lock(m_mutex);
2013-03-04 22:56:22 +01:00
2011-08-20 22:30:41 +02:00
if(m_onLog) {
2011-08-23 03:08:36 +02:00
auto backup = m_logMessages;
2012-06-02 20:58:30 +02:00
for(const LogMessage& logMessage : backup) {
2011-08-23 03:08:36 +02:00
m_onLog(logMessage.level, logMessage.message, logMessage.when);
2012-06-02 20:58:30 +02:00
}
2011-08-20 22:30:41 +02:00
}
}
void Logger::setLogFile(const std::string& file)
{
std::lock_guard<std::recursive_mutex> lock(m_mutex);
2013-03-04 22:56:22 +01:00
2012-10-24 22:03:15 +02:00
m_outFile.open(stdext::utf8_to_latin1(file.c_str()).c_str(), std::ios::out | std::ios::app);
if(!m_outFile.is_open() || !m_outFile.good()) {
2012-06-01 22:39:23 +02:00
g_logger.error(stdext::format("Unable to save log to '%s'", file));
return;
}
m_outFile.flush();
}