2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2013-01-08 19:21:54 +01:00
|
|
|
* Copyright (c) 2010-2013 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"
|
2012-07-14 03:10:24 +02:00
|
|
|
|
2013-01-23 18:35:43 +01:00
|
|
|
//#include <boost/regex.hpp>
|
2013-01-08 21:45:27 +01:00
|
|
|
#include <framework/core/resourcemanager.h>
|
|
|
|
|
2012-07-14 03:10:24 +02:00
|
|
|
#ifdef FW_GRAPHICS
|
2012-01-06 21:15:41 +01:00
|
|
|
#include <framework/platform/platformwindow.h>
|
2013-01-08 21:45:27 +01:00
|
|
|
#include <framework/luaengine/luainterface.h>
|
2012-07-14 03:10:24 +02:00
|
|
|
#endif
|
2011-08-20 22:30:41 +02:00
|
|
|
|
|
|
|
Logger g_logger;
|
|
|
|
|
2012-01-07 00:26:29 +01:00
|
|
|
void Logger::log(Fw::LogLevel level, const std::string& message)
|
2011-08-20 22:30:41 +02:00
|
|
|
{
|
2013-03-05 03:05:22 +01:00
|
|
|
stdext::lock_guard<stdext::recursive_mutex> lock(m_mutex);
|
2013-03-04 22:56:22 +01:00
|
|
|
|
2012-06-20 02:15:56 +02:00
|
|
|
#ifdef NDEBUG
|
|
|
|
if(level == Fw::LogDebug)
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2012-03-21 16:31:34 +01:00
|
|
|
static bool ignoreLogs = false;
|
|
|
|
if(ignoreLogs)
|
|
|
|
return;
|
|
|
|
|
2011-08-20 22:30:41 +02:00
|
|
|
const static std::string logPrefixes[] = { "", "", "WARNING: ", "ERROR: ", "FATAL ERROR: " };
|
|
|
|
|
2012-01-07 00:26:29 +01:00
|
|
|
std::string outmsg = logPrefixes[level] + message;
|
2013-01-08 21:45:27 +01:00
|
|
|
|
2013-01-23 18:35:43 +01:00
|
|
|
/*
|
2013-01-08 21:45:27 +01:00
|
|
|
#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
|
2013-01-23 18:35:43 +01:00
|
|
|
*/
|
2013-01-08 21:45:27 +01:00
|
|
|
|
2012-01-07 00:26:29 +01:00
|
|
|
std::cout << outmsg << std::endl;
|
2011-08-20 22:30:41 +02:00
|
|
|
|
2012-03-22 13:57:43 +01: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);
|
2012-01-07 00:26:29 +01:00
|
|
|
m_logMessages.push_back(LogMessage(level, outmsg, now));
|
2012-03-22 22:47:52 +01:00
|
|
|
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) {
|
2012-07-14 03:10:24 +02:00
|
|
|
#ifdef FW_GRAPHICS
|
2012-01-06 21:15:41 +01:00
|
|
|
g_window.displayFatalError(message);
|
2012-07-12 05:21:10 +02:00
|
|
|
#endif
|
2012-03-21 16:31:34 +01:00
|
|
|
ignoreLogs = true;
|
2012-01-06 21:15:41 +01:00
|
|
|
exit(-1);
|
|
|
|
}
|
2011-08-20 22:30:41 +02:00
|
|
|
}
|
|
|
|
|
2011-08-28 18:02:26 +02:00
|
|
|
void Logger::logFunc(Fw::LogLevel level, const std::string& message, std::string prettyFunction)
|
2011-08-20 22:30:41 +02:00
|
|
|
{
|
2013-03-05 03:05:22 +01:00
|
|
|
stdext::lock_guard<stdext::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-01-08 21:45:27 +01:00
|
|
|
std::string out = message;
|
|
|
|
|
|
|
|
if(!prettyFunction.empty()) {
|
|
|
|
if(g_lua.isInCppCallback())
|
|
|
|
out = g_lua.traceback(out, 1);
|
|
|
|
else
|
|
|
|
out += "\nat:\t[C++]: " + prettyFunction;
|
|
|
|
}
|
|
|
|
|
|
|
|
log(level, out);
|
2011-08-20 22:30:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Logger::fireOldMessages()
|
|
|
|
{
|
2013-03-05 03:05:22 +01:00
|
|
|
stdext::lock_guard<stdext::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
|
|
|
}
|
|
|
|
}
|
2012-03-22 13:57:43 +01:00
|
|
|
|
|
|
|
void Logger::setLogFile(const std::string& file)
|
|
|
|
{
|
2013-03-05 03:05:22 +01:00
|
|
|
stdext::lock_guard<stdext::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);
|
2012-03-22 13:57:43 +01:00
|
|
|
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));
|
2012-03-22 13:57:43 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_outFile.flush();
|
|
|
|
}
|