2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2012-01-02 17:58:37 +01:00
|
|
|
* Copyright (c) 2010-2012 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"
|
|
|
|
|
|
|
|
Logger g_logger;
|
|
|
|
|
2011-12-28 20:38:29 +01:00
|
|
|
Logger::Logger()
|
2011-08-20 22:30:41 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-08-28 18:02:26 +02:00
|
|
|
void Logger::log(Fw::LogLevel level, std::string message)
|
2011-08-20 22:30:41 +02:00
|
|
|
{
|
|
|
|
const static std::string logPrefixes[] = { "", "", "WARNING: ", "ERROR: ", "FATAL ERROR: " };
|
|
|
|
|
2011-12-09 16:01:04 +01:00
|
|
|
message.insert(0, logPrefixes[level]);
|
|
|
|
std::cout << message << std::endl;
|
2011-08-20 22:30:41 +02:00
|
|
|
|
2011-12-09 16:01:04 +01:00
|
|
|
std::size_t now = std::time(NULL);
|
|
|
|
m_logMessages.push_back(LogMessage(level, message, now));
|
2011-08-20 22:30:41 +02:00
|
|
|
|
2011-12-09 16:01:04 +01:00
|
|
|
if(m_onLog)
|
|
|
|
m_onLog(level, message, now);
|
2011-08-20 22:30:41 +02:00
|
|
|
|
2011-12-09 16:01:04 +01:00
|
|
|
if(level == Fw::LogFatal)
|
2011-12-01 20:38:46 +01:00
|
|
|
throw std::runtime_error(message);
|
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
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
prettyFunction = prettyFunction.substr(0, prettyFunction.find_first_of('('));
|
|
|
|
if(prettyFunction.find_last_of(' ') != std::string::npos)
|
|
|
|
prettyFunction = prettyFunction.substr(prettyFunction.find_last_of(' ') + 1);
|
|
|
|
|
|
|
|
if(!prettyFunction.empty())
|
|
|
|
ss << "[" << prettyFunction << "] ";
|
|
|
|
|
|
|
|
ss << message;
|
|
|
|
log(level, ss.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Logger::fireOldMessages()
|
|
|
|
{
|
|
|
|
if(m_onLog) {
|
2011-08-23 03:08:36 +02:00
|
|
|
auto backup = m_logMessages;
|
|
|
|
for(const LogMessage& logMessage : backup)
|
|
|
|
m_onLog(logMessage.level, logMessage.message, logMessage.when);
|
2011-08-20 22:30:41 +02:00
|
|
|
}
|
|
|
|
}
|