/* * 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 . */ #include "LogCommon.h" #include "Define.h" #include "SmartEnum.h" #include namespace Trinity::Impl::EnumUtilsImpl { /************************************************************\ |* data for enum 'LogLevel' in 'LogCommon.h' auto-generated *| \************************************************************/ template <> TC_API_EXPORT EnumText EnumUtils::ToString(LogLevel value) { switch (value) { case LOG_LEVEL_DISABLED: return { "LOG_LEVEL_DISABLED", "LOG_LEVEL_DISABLED", "" }; case LOG_LEVEL_TRACE: return { "LOG_LEVEL_TRACE", "LOG_LEVEL_TRACE", "" }; case LOG_LEVEL_DEBUG: return { "LOG_LEVEL_DEBUG", "LOG_LEVEL_DEBUG", "" }; case LOG_LEVEL_INFO: return { "LOG_LEVEL_INFO", "LOG_LEVEL_INFO", "" }; case LOG_LEVEL_WARN: return { "LOG_LEVEL_WARN", "LOG_LEVEL_WARN", "" }; case LOG_LEVEL_ERROR: return { "LOG_LEVEL_ERROR", "LOG_LEVEL_ERROR", "" }; case LOG_LEVEL_FATAL: return { "LOG_LEVEL_FATAL", "LOG_LEVEL_FATAL", "" }; default: throw std::out_of_range("value"); } } template <> TC_API_EXPORT size_t EnumUtils::Count() { return 7; } template <> TC_API_EXPORT LogLevel EnumUtils::FromIndex(size_t index) { switch (index) { case 0: return LOG_LEVEL_DISABLED; case 1: return LOG_LEVEL_TRACE; case 2: return LOG_LEVEL_DEBUG; case 3: return LOG_LEVEL_INFO; case 4: return LOG_LEVEL_WARN; case 5: return LOG_LEVEL_ERROR; case 6: return LOG_LEVEL_FATAL; default: throw std::out_of_range("index"); } } template <> TC_API_EXPORT size_t EnumUtils::ToIndex(LogLevel value) { switch (value) { case LOG_LEVEL_DISABLED: return 0; case LOG_LEVEL_TRACE: return 1; case LOG_LEVEL_DEBUG: return 2; case LOG_LEVEL_INFO: return 3; case LOG_LEVEL_WARN: return 4; case LOG_LEVEL_ERROR: return 5; case LOG_LEVEL_FATAL: return 6; default: throw std::out_of_range("value"); } } /****************************************************************\ |* data for enum 'AppenderType' in 'LogCommon.h' auto-generated *| \****************************************************************/ template <> TC_API_EXPORT EnumText EnumUtils::ToString(AppenderType value) { switch (value) { case APPENDER_NONE: return { "APPENDER_NONE", "APPENDER_NONE", "" }; case APPENDER_CONSOLE: return { "APPENDER_CONSOLE", "APPENDER_CONSOLE", "" }; case APPENDER_FILE: return { "APPENDER_FILE", "APPENDER_FILE", "" }; case APPENDER_DB: return { "APPENDER_DB", "APPENDER_DB", "" }; default: throw std::out_of_range("value"); } } template <> TC_API_EXPORT size_t EnumUtils::Count() { return 4; } template <> TC_API_EXPORT AppenderType EnumUtils::FromIndex(size_t index) { switch (index) { case 0: return APPENDER_NONE; case 1: return APPENDER_CONSOLE; case 2: return APPENDER_FILE; case 3: return APPENDER_DB; default: throw std::out_of_range("index"); } } template <> TC_API_EXPORT size_t EnumUtils::ToIndex(AppenderType value) { switch (value) { case APPENDER_NONE: return 0; case APPENDER_CONSOLE: return 1; case APPENDER_FILE: return 2; case APPENDER_DB: return 3; default: throw std::out_of_range("value"); } } }