danicoin/src/Logging/ConsoleLogger.cpp

80 lines
2.4 KiB
C++
Raw Normal View History

2015-05-27 12:08:46 +00:00
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#include "ConsoleLogger.h"
#include <iostream>
#include <unordered_map>
#include <Common/ConsoleTools.h>
namespace Logging {
using Common::Console::Color;
ConsoleLogger::ConsoleLogger(Level level) : CommonLogger(level) {
}
void ConsoleLogger::doLogString(const std::string& message) {
std::lock_guard<std::mutex> lock(mutex);
bool readingText = true;
bool changedColor = false;
std::string color = "";
static std::unordered_map<std::string, Color> colorMapping = {
{ BLUE, Color::Blue },
{ GREEN, Color::Green },
{ RED, Color::Red },
{ YELLOW, Color::Yellow },
{ WHITE, Color::White },
{ CYAN, Color::Cyan },
{ MAGENTA, Color::Magenta },
{ BRIGHT_BLUE, Color::BrightBlue },
{ BRIGHT_GREEN, Color::BrightGreen },
{ BRIGHT_RED, Color::BrightRed },
{ BRIGHT_YELLOW, Color::BrightYellow },
{ BRIGHT_WHITE, Color::BrightWhite },
{ BRIGHT_CYAN, Color::BrightCyan },
{ BRIGHT_MAGENTA, Color::BrightMagenta },
{ DEFAULT, Color::Default }
};
for (size_t charPos = 0; charPos < message.size(); ++charPos) {
if (message[charPos] == ILogger::COLOR_DELIMETER) {
readingText = !readingText;
color += message[charPos];
if (readingText) {
auto it = colorMapping.find(color);
Common::Console::setTextColor(it == colorMapping.end() ? Color::Default : it->second);
changedColor = true;
color.clear();
}
} else if (readingText) {
std::cout << message[charPos];
} else {
color += message[charPos];
}
}
if (changedColor) {
Common::Console::setTextColor(Color::Default);
}
}
}