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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#ifndef I_LOG_H
#define I_LOG_H
/*
* Logging API
* -----------
* Leight-weight & flexible logging API.
*
* Aims:
* - Support a fixed set of severities levels:
* * L_DEBUG : fine-grained information that is most useful to debug
* * L_INFO : same as L_NOTICE just that it is surpressed on RELEASE builds when a non-default logSection is set
* * L_NOTICE : default log level (always outputed)
* * L_WARNING : potentially harmful situations
* * L_ERROR : errors that might still allow the application to keep running
* * L_FATAL : very severe errors that will lead the application to abort
* (the "L_" prefix is required for disambiguation from other symbols)
* - Support arbitrary sections (strings).
* - Allow to set the minimum severity level
* * ... at project configure stage (no overhead at runtime)
* * ... at runtime (keep overhead low)
* - Only allow printf-style message formatting (no streams), because:
* * it is C compatible
* * it is type safe
* * it is compatible with internationalization (i18n)
* * it is simple and a commonly known standard
* - The API used by clients consists of pre-processor macros only.
* - Can be used from C.
* - Keeps the API between sub-systems minimal:
* frontend <-> filter <-> backend(sinks)
*
* There is a graphical diagram, explaining the basic structure of this API
* under doc/logApi.dia (Dia diagram editor file).
*/
#ifdef __cplusplus
extern "C" {
#endif
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// Connection to the non-pre-processor part of the frontend
/**
* Allows the global filter to manage a minimal log level too,
* optionally per section.
* This will only ever be called for levels higher then the minimal level set
* during compile-time (_LOG_LEVEL_MIN), and if the section is not already
* disabled during compile-time.
*/
extern bool log_frontend_isEnabled(const char* section, int level);
/**
* Allows the global filter to maintain a set of all setions used in the binary.
* This will be called once per each LOG*() line in the source.
*/
extern void log_frontend_register_section(const char* section);
extern void log_frontend_register_runtime_section(const char* section, int level);
// format string error checking
#ifdef __GNUC__
#define FORMAT_STRING(n) __attribute__((format(printf, n, n + 1)))
#else
#define FORMAT_STRING(n)
#endif
/**
* Where all log messages get directed to after having passed the frontend.
* The main connection to the backend/sink.
* This will receive all log messages that are not disabled at compile-time
* already, so it has to check internally, whether the criteria for logging
* are really met, so it will have to call log_frontend_isEnabled() internally.
*/
extern void log_frontend_record(const char* section, int level, const char* fmt,
...) FORMAT_STRING(3);
#undef FORMAT_STRING
/**
* @see LOG_CLEANUP
*/
extern void log_frontend_cleanup();
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// Level & Section
#include "Level.h"
#include "Section.h"
#define _LOG_IS_ENABLED_LEVEL_STATIC(level) \
(LOG_LEVE##level >= _LOG_LEVEL_MIN)
// enable all log sections at compile-time
#define _LOG_IS_ENABLED_SECTION_STATIC(section) \
true
#define _LOG_IS_ENABLED_SECTION_DEFINED_STATIC(section) \
_LOG_IS_ENABLED_SECTION_STATIC(LOG_SECTION_CURRENT)
#define _LOG_IS_ENABLED_RUNTIME(section, level) \
log_frontend_isEnabled(section, LOG_LEVE##level)
#define _LOG_REGISTER_SECTION_RAW(section) \
log_frontend_register_section(section);
/*
* Pre-processor trickery, useful to create unique identifiers.
* see http://stackoverflow.com/questions/461062/c-anonymous-variables
*/
#define _STR_CONCAT_SUB(start, end) start##end
#define _STR_CONCAT(start, end) _STR_CONCAT_SUB(start, end)
#define _UNIQUE_IDENT(prefix) _STR_CONCAT(prefix##__, _STR_CONCAT(_STR_CONCAT(__COUNTER__, __), __LINE__))
// Register a section (only the first time the code is run)
#if defined(__cplusplus)
/*
* This would also be C++ compatible, but a bit slower.
* It can be used globally (outside of a function), where it would register
* the section before main() is called.
* When placed somewhere in a function, it will only register the function
* when and if that code is called.
*/
#define _LOG_REGISTER_SECTION_SUB(section, className) \
struct className { \
className() { \
_LOG_REGISTER_SECTION_RAW(section); \
} \
} _UNIQUE_IDENT(secReg);
#define _LOG_REGISTER_SECTION(section) \
_LOG_REGISTER_SECTION_SUB(section, _UNIQUE_IDENT(SectionRegistrator))
#define _LOG_REGISTER_SECTION_GLOBAL(section) \
namespace { \
_LOG_REGISTER_SECTION(section) \
} // namespace
#else // defined(__cplusplus)
/*
* This would also be C++ compatible, but it is a bit slower.
* Still, branch-prediction should work well here.
* It can not be used globally (outside of a function), and therefore will
* only register a section when the invoking code is executed, instead of
* before main() is called.
*/
#define _LOG_REGISTER_SECTION(section) \
{ \
static bool sectionRegistered = false; \
if (sectionRegistered) { \
sectionRegistered = true; \
_LOG_REGISTER_SECTION_RAW(section); \
} \
}
#define _LOG_REGISTER_SECTION_GLOBAL(section)
#endif // defined(__cplusplus)
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// Log pre-processing
/*
* For a discussion about variadic macros, see:
* http://stackoverflow.com/questions/679979/c-c-how-to-make-a-variadic-macro-variable-number-of-arguments
* The "##" before __VA_ARGS__ allows the var-args list to be empty.
*/
/*
* This is where we might add all sorts of additional info,
* like the LOG_SECTION, __FILE__, __LINE__ or a stack-trace.
* In theory, we could also use this to completely disable logging at
* compile-time already.
*/
/// Redirect to runtime processing
#define _LOG_RECORD(section, level, fmt, ...) log_frontend_record(section, LOG_LEVE##level, fmt, ##__VA_ARGS__)
/// per level compile-time filter
#define _LOG_FILTER(section, level, fmt, ...) if (_LOG_IS_ENABLED_LEVEL_STATIC(level)) _LOG_RECORD(section, level, fmt, ##__VA_ARGS__)
/// Registers the section and connects to the filter macro
#define _LOG_SECTION(section, level, fmt, ...) _LOG_FILTER(section, level, fmt, ##__VA_ARGS__)
/// Uses the section defined in LOG_SECTION
#define _LOG_SECTION_DEFINED(level, fmt, ...) _LOG_SECTION(LOG_SECTION_CURRENT, level, fmt, ##__VA_ARGS__)
/// Entry point for frontend-internal processing
#define _LOG(level, fmt, ...) _LOG_SECTION_DEFINED(level, fmt, ##__VA_ARGS__)
#define _LOG_IS_ENABLED_STATIC_S(section, level) \
( _LOG_IS_ENABLED_LEVEL_STATIC(level) \
&& _LOG_IS_ENABLED_SECTION_STATIC(section))
#define _LOG_IS_ENABLED_S(section, level) \
( _LOG_IS_ENABLED_STATIC_S(section, level) \
&& _LOG_IS_ENABLED_RUNTIME(section, level))
#define _LOG_IS_ENABLED_STATIC(level) _LOG_IS_ENABLED_STATIC_S(LOG_SECTION_CURRENT, level)
#define _LOG_IS_ENABLED(level) _LOG_IS_ENABLED_S(LOG_SECTION_CURRENT, level)
/// Redirect to runtime processing
#define _LOG_CLEANUP() \
log_frontend_cleanup()
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// API
/**
* @name logging_api
* Only stuff from in this doc-group should ever be used by clients of this API.
*/
///@{
/**
* Register a section name with the underlying log record processing system.
* This has to be placed inside a function.
* This will only register the section when and if that code is called.
* @see LOG_REGISTER_SECTION_GLOBAL
*/
#define LOG_REGISTER_SECTION(section) \
_LOG_REGISTER_SECTION(section);
/**
* Register a section name with the underlying log record processing system.
* This has to be used globally (outside of a function).
* This registers the section before main() is called.
* NOTE: This is supported in C++ only, not in C.
*/
#define LOG_REGISTER_SECTION_GLOBAL(section) \
_LOG_REGISTER_SECTION_GLOBAL(section)
/**
* Returns whether logging for the current section and the supplied level is
* enabled at compile-time.
* This might return true, even if the back-end will ignore the message anyway.
* You should consider using the LOG_IS_ENABLED macro instead (recommended).
* This may be used with the preprocessor directly
* (in an @code #if @endcode statement):
* @code
* #if LOG_IS_ENABLED_STATIC(L_DEBUG)
* const int statistics = calculateStats(); // performance-heavy
* LOG(L_DEBUG, "the stats: %i", statistics);
* #endif
* @endcode
* @see LOG_IS_ENABLED_STATIC_S
* @see LOG_IS_ENABLED
*/
#define LOG_IS_ENABLED_STATIC(level) \
_LOG_IS_ENABLED_STATIC(level)
/**
* Returns whether logging for a specific section and the supplied level is
* enabled at compile-time.
* @see LOG_IS_ENABLED_STATIC
* @see LOG_IS_ENABLED_S
*/
#define LOG_IS_ENABLED_STATIC_S(section, level) \
_LOG_IS_ENABLED_STATIC_S(section, level)
/**
* Returns whether logging for the current section and the supplied level is
* enabled at run-time.
* Usage example:
* <code>
* if (LOG_IS_ENABLED(L_DEBUG)) {
* const int statistics = calculateStats(); // performance-heavy
* LOG(L_DEBUG, "the stats: %i", statistics);
* }
* </code>
* @see LOG_IS_ENABLED_S
* @see LOG_IS_ENABLED_STATIC
*/
#define LOG_IS_ENABLED(level) \
_LOG_IS_ENABLED(level)
/**
* Returns whether logging for a specific section and the supplied level is
* enabled at run-time.
* @see LOG_IS_ENABLED
* @see LOG_IS_ENABLED_STATIC_S
*/
#define LOG_IS_ENABLED_S(section, level) \
_LOG_IS_ENABLED_S(section, level)
/**
* Registers a log message with level INFO.
* For message formatting help, see the printf documentation.
* Usage example:
* <code>
* LOG("my age is %i", 21);
* LOG("nothing to see here, move on.");
* </code>
* @see printf
* @see LOG_L()
* @see LOG_IS_ENABLED()
*/
#define LOG(fmt, ...) \
_LOG(DEFAULT_LOG_LEVEL_SHORT, fmt, ##__VA_ARGS__)
/**
* Registers a log message with a specifiable level.
* Usage example:
* <code>
* LOG_L(L_DEBUG, "my age is %i", 21);
* </code>
* @see LOG()
*/
#define LOG_L(level, fmt, ...) \
_LOG(level, fmt, ##__VA_ARGS__)
/**
* Registers a log message with a specifiable section.
* Usage example:
* <code>
* LOG_S("one-time-section", "my age is %i", 21);
* </code>
* @see LOG()
* @see LOG_SECTION
*/
#define LOG_S(section, fmt, ...) \
_LOG_SECTION(section, L_INFO, fmt, ##__VA_ARGS__)
/**
* Registers a log message with a specifiable section and level.
* Usage example:
* <code>
* LOG_SL("one-time-section", L_DEBUG, "my age is %i", 21);
* </code>
* @see LOG_L()
* @see LOG_S()
* @see LOG_SECTION
*/
#define LOG_SL(section, level, fmt, ...) \
_LOG_SECTION(section, level, fmt, ##__VA_ARGS__)
/**
* Registers a log message with a specifiable integer level.
* Usage example:
* <code>
* LOG_I(LOG_LEVEL_DEBUG, "my age is %i", 21);
* LOG_I(20, "my age is %i", 21);
* </code>
* @see LOG()
* @see LOG_L()
*/
#define LOG_I(level, fmt, ...) \
{ \
if (level >= _LOG_LEVEL_MIN) { \
log_frontend_record(LOG_SECTION_CURRENT, level, fmt, ##__VA_ARGS__); \
} \
}
/**
* Registers a log message with a specifiable section and integer level.
* Usage example:
* <code>
* LOG_SI("one-time-section", 20, "my age is %i", 21);
* </code>
* @see LOG_I()
* @see LOG_L()
* @see LOG_S()
* @see LOG_SECTION
*/
#define LOG_SI(section, level, fmt, ...) \
{ \
if (level >= _LOG_LEVEL_MIN) { \
log_frontend_record(section, level, fmt, ##__VA_ARGS__); \
} \
}
/**
* Informs all registered sinks to cleanup their state,
* to be ready for a shutdown.
* NOTE This is not a general way to cleanup the log sinks, but to be used in
* exceptional occasions only, for example while handling a graceful crash.
*/
#define LOG_CLEANUP() \
_LOG_CLEANUP()
///@}
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#ifdef __cplusplus
} // extern "C"
#endif
#endif // I_LOG_H
|