mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
215 lines
7.8 KiB
C++
215 lines
7.8 KiB
C++
/*
|
|
* This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
|
|
*
|
|
* 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, 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "AppenderConsole.h"
|
|
#include "LogMessage.h"
|
|
#include "SmartEnum.h"
|
|
#include "StringConvert.h"
|
|
#include "StringFormat.h"
|
|
#include "Util.h"
|
|
#include <algorithm>
|
|
|
|
#if TRINITY_PLATFORM == TRINITY_PLATFORM_WINDOWS
|
|
#include <Windows.h>
|
|
#endif
|
|
|
|
AppenderConsole::AppenderConsole(uint8 id, std::string name, LogLevel level, AppenderFlags flags, std::vector<std::string_view> const& args)
|
|
: Appender(id, std::move(name), level, flags), _colored(false)
|
|
{
|
|
std::ranges::fill(_colors, NUM_COLOR_TYPES);
|
|
|
|
if (args.size() > 3)
|
|
InitColors(getName(), args[3]);
|
|
}
|
|
|
|
void AppenderConsole::InitColors(std::string const& name, std::string_view str)
|
|
{
|
|
if (str.empty())
|
|
{
|
|
_colored = false;
|
|
return;
|
|
}
|
|
|
|
std::vector<std::string_view> colorStrs = Trinity::Tokenize(str, ' ', false);
|
|
if (colorStrs.size() != NUM_ENABLED_LOG_LEVELS)
|
|
{
|
|
throw InvalidAppenderArgsException(Trinity::StringFormat("Log::CreateAppenderFromConfig: Invalid color data '{}' for console appender {} (expected {} entries, got {})",
|
|
str, name, NUM_ENABLED_LOG_LEVELS, colorStrs.size()));
|
|
}
|
|
|
|
for (uint8 i = 0; i < NUM_ENABLED_LOG_LEVELS; ++i)
|
|
{
|
|
if (Optional<uint8> color = Trinity::StringTo<uint8>(colorStrs[i]); color && EnumUtils::IsValid<ColorTypes>(*color))
|
|
_colors[i] = static_cast<ColorTypes>(*color);
|
|
else
|
|
{
|
|
throw InvalidAppenderArgsException(Trinity::StringFormat("Log::CreateAppenderFromConfig: Invalid color '{}' for log level {} on console appender {}",
|
|
colorStrs[i], EnumUtils::ToTitle(static_cast<LogLevel>(i)), name));
|
|
}
|
|
}
|
|
|
|
_colored = true;
|
|
}
|
|
|
|
void AppenderConsole::SetColor(bool stdout_stream, ColorTypes color)
|
|
{
|
|
#if TRINITY_PLATFORM == TRINITY_PLATFORM_WINDOWS
|
|
static WORD WinColorFG[NUM_COLOR_TYPES] =
|
|
{
|
|
0, // BLACK
|
|
FOREGROUND_RED, // RED
|
|
FOREGROUND_GREEN, // GREEN
|
|
FOREGROUND_RED | FOREGROUND_GREEN, // BROWN
|
|
FOREGROUND_BLUE, // BLUE
|
|
FOREGROUND_RED | FOREGROUND_BLUE, // MAGENTA
|
|
FOREGROUND_GREEN | FOREGROUND_BLUE, // CYAN
|
|
FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE, // WHITE
|
|
// YELLOW
|
|
FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY,
|
|
// RED_BOLD
|
|
FOREGROUND_RED | FOREGROUND_INTENSITY,
|
|
// GREEN_BOLD
|
|
FOREGROUND_GREEN | FOREGROUND_INTENSITY,
|
|
FOREGROUND_BLUE | FOREGROUND_INTENSITY, // BLUE_BOLD
|
|
// MAGENTA_BOLD
|
|
FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_INTENSITY,
|
|
// CYAN_BOLD
|
|
FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY,
|
|
// WHITE_BOLD
|
|
FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_INTENSITY
|
|
};
|
|
|
|
HANDLE hConsole = GetStdHandle(stdout_stream ? STD_OUTPUT_HANDLE : STD_ERROR_HANDLE);
|
|
SetConsoleTextAttribute(hConsole, WinColorFG[color]);
|
|
#else
|
|
enum ANSITextAttr
|
|
{
|
|
TA_NORMAL = 0,
|
|
TA_BOLD = 1,
|
|
TA_BLINK = 5,
|
|
TA_REVERSE = 7
|
|
};
|
|
|
|
enum ANSIFgTextAttr
|
|
{
|
|
FG_BLACK = 30,
|
|
FG_RED,
|
|
FG_GREEN,
|
|
FG_BROWN,
|
|
FG_BLUE,
|
|
FG_MAGENTA,
|
|
FG_CYAN,
|
|
FG_WHITE,
|
|
FG_YELLOW
|
|
};
|
|
|
|
enum ANSIBgTextAttr
|
|
{
|
|
BG_BLACK = 40,
|
|
BG_RED,
|
|
BG_GREEN,
|
|
BG_BROWN,
|
|
BG_BLUE,
|
|
BG_MAGENTA,
|
|
BG_CYAN,
|
|
BG_WHITE
|
|
};
|
|
|
|
static uint8 UnixColorFG[NUM_COLOR_TYPES] =
|
|
{
|
|
FG_BLACK, // BLACK
|
|
FG_RED, // RED
|
|
FG_GREEN, // GREEN
|
|
FG_BROWN, // BROWN
|
|
FG_BLUE, // BLUE
|
|
FG_MAGENTA, // MAGENTA
|
|
FG_CYAN, // CYAN
|
|
FG_WHITE, // WHITE
|
|
FG_YELLOW, // YELLOW
|
|
FG_RED, // LRED
|
|
FG_GREEN, // LGREEN
|
|
FG_BLUE, // LBLUE
|
|
FG_MAGENTA, // LMAGENTA
|
|
FG_CYAN, // LCYAN
|
|
FG_WHITE // LWHITE
|
|
};
|
|
|
|
fprintf((stdout_stream? stdout : stderr), "\x1b[%d%sm", UnixColorFG[color], (color >= YELLOW && color < NUM_COLOR_TYPES ? ";1" : ""));
|
|
#endif
|
|
}
|
|
|
|
void AppenderConsole::ResetColor(bool stdout_stream)
|
|
{
|
|
#if TRINITY_PLATFORM == TRINITY_PLATFORM_WINDOWS
|
|
HANDLE hConsole = GetStdHandle(stdout_stream ? STD_OUTPUT_HANDLE : STD_ERROR_HANDLE);
|
|
SetConsoleTextAttribute(hConsole, FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED);
|
|
#else
|
|
fputs("\x1b[0m", stdout_stream ? stdout : stderr);
|
|
#endif
|
|
}
|
|
|
|
void AppenderConsole::Print(std::string const& prefix, std::string const& text, bool error)
|
|
{
|
|
#if TRINITY_PLATFORM == TRINITY_PLATFORM_WINDOWS
|
|
WriteWinConsole(prefix + text + "\n", error);
|
|
#else
|
|
FILE* out = error ? stderr : stdout;
|
|
fwrite(prefix.c_str(), 1, prefix.length(), out);
|
|
fwrite(text.c_str(), 1, text.length(), out);
|
|
fwrite("\n", 1, 1, out);
|
|
#endif
|
|
}
|
|
|
|
void AppenderConsole::_write(LogMessage const* message)
|
|
{
|
|
bool stdout_stream = !(message->level == LOG_LEVEL_ERROR || message->level == LOG_LEVEL_FATAL);
|
|
|
|
if (_colored)
|
|
{
|
|
uint8 index;
|
|
switch (message->level)
|
|
{
|
|
case LOG_LEVEL_TRACE:
|
|
index = 5;
|
|
break;
|
|
case LOG_LEVEL_DEBUG:
|
|
index = 4;
|
|
break;
|
|
case LOG_LEVEL_INFO:
|
|
index = 3;
|
|
break;
|
|
case LOG_LEVEL_WARN:
|
|
index = 2;
|
|
break;
|
|
case LOG_LEVEL_FATAL:
|
|
index = 0;
|
|
break;
|
|
case LOG_LEVEL_ERROR:
|
|
[[fallthrough]];
|
|
default:
|
|
index = 1;
|
|
break;
|
|
}
|
|
|
|
SetColor(stdout_stream, _colors[index]);
|
|
Print(message->prefix, message->text, !stdout_stream);
|
|
ResetColor(stdout_stream);
|
|
}
|
|
else
|
|
Print(message->prefix, message->text, !stdout_stream);
|
|
}
|