1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include "DefaultFilter.h"
#include "Level.h"
#include "Section.h"
#include "ILog.h"
#include <cstdio>
#include <cstdarg>
#include <cassert>
#include <map>
#include <set>
#ifdef __cplusplus
extern "C" {
#endif
bool log_frontend_isEnabled(const char* section, int level);
extern void log_backend_record(const char* section, int level,
const char* fmt, va_list arguments);
extern void log_backend_cleanup();
struct log_filter_section_compare {
inline bool operator()(const char* const& section1,
const char* const& section2) const
{
return LOG_SECTION_COMPARE(section1, section2);
}
};
namespace {
typedef std::set<const char*, log_filter_section_compare> secSet_t;
typedef std::map<const char*, int, log_filter_section_compare> secIntMap_t;
int minLevel = LOG_LEVEL_ALL;
secIntMap_t& log_filter_getSectionMinLevels() {
static secIntMap_t sectionMinLevels;
return sectionMinLevels;
}
secSet_t& log_filter_getRegisteredSections() {
static secSet_t sections;
return sections;
}
}
static inline int log_filter_section_getDefaultMinLevel(const char* section) {
if (LOG_SECTION_IS_DEFAULT(section)) {
#ifdef DEBUG
return LOG_LEVEL_DEBUG;
} else {
return LOG_LEVEL_INFO;
#else
return LOG_LEVEL_INFO;
} else {
return LOG_LEVEL_WARNING;
#endif
}
}
static inline void log_filter_checkCompileTimeMinLevel(int level) {
if (level < _LOG_LEVEL_MIN) {
// to prevent an endless recursion
if (_LOG_LEVEL_MIN <= LOG_LEVEL_WARNING) {
LOG_L(L_WARNING,
"Tried to set minimum log level %i, but it was set to %i"
" at compile-time -> effective min-level is %i.",
level, _LOG_LEVEL_MIN, _LOG_LEVEL_MIN);
}
}
}
int log_filter_global_getMinLevel() {
return minLevel;
}
void log_filter_global_setMinLevel(int level) {
log_filter_checkCompileTimeMinLevel(level);
minLevel = level;
}
int log_filter_section_getMinLevel(const char* section) {
int level = -1;
const secIntMap_t& sectionMinLevels = log_filter_getSectionMinLevels();
const secIntMap_t::const_iterator sectionMinLevel
= sectionMinLevels.find(section);
if (sectionMinLevel == sectionMinLevels.end()) {
level = log_filter_section_getDefaultMinLevel(section);
} else {
level = sectionMinLevel->second;
}
return level;
}
void log_filter_section_setMinLevel(const char* section, int level) {
log_filter_checkCompileTimeMinLevel(level);
secIntMap_t& sectionMinLevels = log_filter_getSectionMinLevels();
if (level == log_filter_section_getDefaultMinLevel(section)) {
sectionMinLevels.erase(section);
} else {
sectionMinLevels[section] = level;
}
}
int log_filter_section_getRegistered() {
return log_filter_getRegisteredSections().size();
}
const char* log_filter_section_getRegisteredIndex(int index) {
const char* section = NULL;
const secSet_t& registeredSections = log_filter_getRegisteredSections();
if ((index >= 0) && (index < (int)registeredSections.size())) {
secSet_t::const_iterator si = registeredSections.begin();
for (int curIndex = 0; curIndex < index; ++curIndex) {
si = ++si;
}
section = *si;
}
return section;
}
static void log_filter_record(const char* section, int level, const char* fmt,
va_list arguments)
{
assert(level > LOG_LEVEL_ALL);
assert(level < LOG_LEVEL_NONE);
if (!log_frontend_isEnabled(section, level)) {
return;
}
// format (and later store) the log record
log_backend_record(section, level, fmt, arguments);
}
/**
* @name logging_frontend_defaultFilter
* ILog.h frontend implementation.
*/
///@{
bool log_frontend_isEnabled(const char* section, int level) {
return ((level >= log_filter_global_getMinLevel())
&& (level >= log_filter_section_getMinLevel(section)));
}
void log_frontend_registerSection(const char* section) {
if (!LOG_SECTION_IS_DEFAULT(section)) {
secSet_t& registeredSections = log_filter_getRegisteredSections();
secSet_t::const_iterator si = registeredSections.find(section);
if (si == registeredSections.end()) {
registeredSections.insert(section);
}
}
}
void log_frontend_record(const char* section, int level, const char* fmt,
...)
{
assert(level > LOG_LEVEL_ALL);
assert(level < LOG_LEVEL_NONE);
// pass the log record on to the filter
va_list arguments;
va_start(arguments, fmt);
log_filter_record(section, level, fmt, arguments);
va_end(arguments);
}
void log_frontend_cleanup() {
log_backend_cleanup();
}
///@}
#ifdef __cplusplus
} // extern "C"
#endif
std::set<const char*> log_filter_section_getRegisteredSet() {
std::set<const char*> outSet;
const secSet_t& registeredSections = log_filter_getRegisteredSections();
secSet_t::const_iterator si;
for (si = registeredSections.begin(); si != registeredSections.end();
++si)
{
outSet.insert(*si);
}
return outSet;
}
|