I’m working on debug logging infrastructure for a server application. Each logging point in source code specifies its level (CRITICAL, ERROR, etc.) among other parameters. So in source code logging point looks as:
DBG_LOG_HIGH( … )
which is a macro that expands to
if ( CURRENT_DEBUG_LOG_LEVEL >= DEBUG_LOG_LEVEL_HIGH ) {
// prepare and emit log record
}
where DEBUG_LOG_LEVEL_HIGH is a predefined constant (let’s say 2) and CURRENT_DEBUG_LOG_LEVEL is some expression that evaluates to the current debug logging level set by the user.
The simplest approach would be to define CURRENT_DEBUG_LOG_LEVEL as:
extern int g_current_debug_log_level;
#define CURRENT_DEBUG_LOG_LEVEL (g_current_debug_log_level)
I would like to allow user to change the current debug logging level during the application execution and its okay for the change to take a few seconds to take effect. The application is multi-threaded and changes to g_current_debug_log_level can be easily serialized (for instance by CRITICAL_SECTION) but in order not to impact performance expression ( CURRENT_DEBUG_LOG_LEVEL >= DEBUG_LOG_LEVEL_HIGH ) should execute as fast as possible so I would like to avoid using any thread synchronization mechanism there.
So my questions are:
Can the absence of synchronization in
g_current_debug_log_levelreads cause incorrect value to be read? While it should not affect application correctness because user could have set the current debug logging level to the incorrect value anyway it might affect the application performance because it might cause it to emit very high volume of debug log for uncontrollable period of time.Will my solution guarantee that change in the current debug logging level will reach all the threads after the acceptable amount of time (let’s say a few seconds)? Ideally I would like level change operation to be synchronous so that when user receives acknowledgement on level change operation she can count on subsequent log to be emitted according the new level.
I would also greatly appreciate any suggestions for alternative implementations that satisfies the above requirements (minimal performance impact for level comparison and synchronous level change with no more than a few seconds latency).
volatileso that the compiler will not optimize it out of loops. (e.g.while (CURRENT_DEBUG_LOG_LEVEL < DEBUG_LOG_LEVEL_HIGH) { ... }may be optimized toif (CURRENT_DEBUG_LOG_LEVEL < DEBUG_LOG_LEVEL_HIGH) while (true) { ... }because the compiler "knows" thatg_current_debug_log_levelis not modified in the loop. – Raymond Chen Sep 30 '11 at 19:43CURRENT_DEBUG_LOG_LEVELread being optimized out of very tight loops because as I said it changes rarely and its semantics is such that if some tight loop uses the same level for all its iterations even though it became stale in the middle it's ok. The only requirement is that new level will reach all the threads in short period of time and I could acknowledge the change to the outside caller. – Sergey Kleyman Sep 30 '11 at 19:59volatilewill cause acquire memory fence on each level check and I expect performance to suffer. – Sergey Kleyman Sep 30 '11 at 20:05