Apache Log4cxx Version 1.0.0
|
The MDC class is similar to the NDC
class except that it is based on a map instead of a stack.
More...
#include <mdc.h>
Public Types | |
typedef std::map< LogString, LogString > | Map |
String to string stl map. | |
Public Member Functions | |
MDC (const std::string &key, const std::string &value) | |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor. | |
~MDC () | |
MDC (const std::wstring &key, const std::wstring &value) | |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor. | |
MDC (const std::basic_string< UniChar > &key, const std::basic_string< UniChar > &value) | |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor. | |
MDC (const CFStringRef &key, const CFStringRef &value) | |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor. | |
Static Public Member Functions | |
static void | put (const std::string &key, const std::string &value) |
Put a context value (the o parameter) as identified with the key parameter into the current thread's context map. | |
static void | putLS (const LogString &key, const LogString &value) |
Put a context value (the o parameter) as identified with the key parameter into the current thread's context map. | |
static std::string | get (const std::string &key) |
Get the context identified by the key parameter. | |
static bool | get (const LogString &key, LogString &dest) |
Gets the context identified by the key parameter. | |
static std::string | remove (const std::string &key) |
Remove the the context identified by the key parameter. | |
static void | put (const std::wstring &key, const std::wstring &value) |
Put a context value (the o parameter) as identified with the key parameter into the current thread's context map. | |
static std::wstring | get (const std::wstring &key) |
Get the context identified by the key parameter. | |
static std::wstring | remove (const std::wstring &key) |
Remove the the context identified by the key parameter. | |
static void | put (const std::basic_string< UniChar > &key, const std::basic_string< UniChar > &value) |
Put a context value (the o parameter) as identified with the key parameter into the current thread's context map. | |
static std::basic_string< UniChar > | get (const std::basic_string< UniChar > &key) |
Get the context identified by the key parameter. | |
static std::basic_string< UniChar > | remove (const std::basic_string< UniChar > &key) |
Remove the the context identified by the key parameter. | |
static void | put (const CFStringRef &key, const CFStringRef &value) |
Put a context value (the o parameter) as identified with the key parameter into the current thread's context map. | |
static CFStringRef | get (const CFStringRef &key) |
Get the context identified by the key parameter. | |
static CFStringRef | remove (const CFStringRef &key) |
Remove the the context identified by the key parameter. | |
static bool | remove (const LogString &key, LogString &prevValue) |
Remove the the context identified by the key parameter. | |
static void | clear () |
Clear all entries in the MDC. | |
The MDC class is similar to the NDC
class except that it is based on a map instead of a stack.
It provides mapped diagnostic contexts. A Mapped Diagnostic Context, or MDC in short, is an instrument for distinguishing interleaved log output from different sources. Log output is typically interleaved when a server handles multiple clients near-simultaneously.
typedef std::map<LogString, LogString> log4cxx::MDC::Map |
String to string stl map.
log4cxx::MDC::MDC | ( | const std::string & | key, |
const std::string & | value | ||
) |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor.
Both construction and destruction are expected to be on the same thread.
key | key |
value | value. |
log4cxx::MDC::~MDC | ( | ) |
log4cxx::MDC::MDC | ( | const std::wstring & | key, |
const std::wstring & | value | ||
) |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor.
Both construction and destruction are expected to be on the same thread.
key | key |
value | value. |
log4cxx::MDC::MDC | ( | const std::basic_string< UniChar > & | key, |
const std::basic_string< UniChar > & | value | ||
) |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor.
Both construction and destruction are expected to be on the same thread.
key | key |
value | value. |
log4cxx::MDC::MDC | ( | const CFStringRef & | key, |
const CFStringRef & | value | ||
) |
Places a key/value pair in the MDC for the current thread which will be removed during the corresponding destructor.
Both construction and destruction are expected to be on the same thread.
key | key |
value | value. |
|
static |
Clear all entries in the MDC.
|
static |
Get the context identified by the key
parameter.
This method has no side effects.
key | key. |
Gets the context identified by the key
parameter.
key | context key. |
dest | destination to which value is appended. |
|
static |
Get the context identified by the key
parameter.
This method has no side effects.
key | key. |
|
static |
Get the context identified by the key
parameter.
This method has no side effects.
key | key. |
|
static |
Get the context identified by the key
parameter.
This method has no side effects.
key | key. |
|
static |
Put a context value (the o
parameter) as identified with the key
parameter into the current thread's context map.
If the current thread does not have a context map it is created as a side effect.
key | key |
value | value. |
|
static |
Put a context value (the o
parameter) as identified with the key
parameter into the current thread's context map.
If the current thread does not have a context map it is created as a side effect.
key | key |
value | value. |
|
static |
Put a context value (the o
parameter) as identified with the key
parameter into the current thread's context map.
If the current thread does not have a context map it is created as a side effect.
key | key |
value | value. |
|
static |
Put a context value (the o
parameter) as identified with the key
parameter into the current thread's context map.
If the current thread does not have a context map it is created as a side effect.
key | key |
value | value. |
Put a context value (the o
parameter) as identified with the key
parameter into the current thread's context map.
If the current thread does not have a context map it is created as a side effect.
|
static |
Remove the the context identified by the key
parameter.
key | key. |
Remove the the context identified by the key
parameter.
key | key. |
prevValue | buffer to which previous value is appended. |
|
static |
Remove the the context identified by the key
parameter.
key | key. |
|
static |
Remove the the context identified by the key
parameter.
key | key. |
|
static |
Remove the the context identified by the key
parameter.
key | key. |