![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This concrete class provide a 'printf' tracing mechanism. More...
This concrete class provide a 'printf' tracing mechanism.
The output of tracing messages typically defaults (dependent on the target platform) to stdout. However, the output cat be redirected to any Cpl::Stream::Output instance.
The trace engine is thread safe, i.e. it guarantees that outputting a single trace message (info + user msg) is an Atomic operation within a multi-thread environment.
All of the ‘methods SHOULD be access via the preprocessor macros below to allow the 'trace code’ to be compiled out of a 'release' build if desired. In addition to a compile time decision to use/exclude tracing, there are run-time switches to selective enable and/or control what is displayed.
There are numerous application customizable (at compile time) options for how the internals of how the trace engine works (see OPTION_xxx macros below).
NOTE: The trace engine supports does NOT support tracing BEFORE the Colony library is initialized. This means that constructors of objects that are created statically can NOT contain trace logging calls.
For trace message to appear on the logging media the following must done:1. Enable Trace at compile time by defining the USE_CPL_SYSTEM_TRACE preprocessor symbol. 2. Enable the Trace engine at run time by calling CPL_SYSTEM_TRACE_ENABLE() 3. Enable at least one 'section' by calling CPL_SYSTEM_TRACE_ENABLE_SECTION()
The trace functionality is provided by the CPL_SYSTEM_TRACE and CPL_SYSTEM_TRACEMSG macros. The remaining macros are used to enable/disable and control the actual trace output. If the symbol, USE_CPL_SYSTEM_TRACE, is NOT defined at compile time – all of the trace macros are compiled out. If the symbol is defined, then the trace output can be enabled and disabled at run time. CPL_SYSTEM_TRACE() - This macro is used to trace the entry and exit of a scope block (a scope block is a pair of '{}'). For example: void foobar( int x ) { // Traces the entry & exit of foobar(), when // tracing is enabled for section "bob" CPL_SYSTEM_TRACE("bob"); int y = 2*x; ... } CPL_SYSTEM_TRACEMSG() - This macro is for the programmer/application to generate formatted message that are outputted to the "trace media." The macro has printf() semantics. The problem is that ANSI C++03 does not directly support var_args in a macro - so you HAVE TO USE AN EXTRA SET OF '()'. For example: void foobar( int x ) { // Traces the entry & exit of foobar(), when // tracing is enabled for section "bob" CPL_SYSTEM_TRACE("bob"); int y = 2*x; ... // Trace message outputs when tracing is // enabled for section "bob" CPL_SYSTEM_TRACEMSG( "bob, ("This is an example Trace Msg. Y=d, X=d", y, x) ); ... }
#include <Trace.h>
Public Types | |
enum | InfoLevel_T { eNONE =0 , eBRIEF , eINFO , eVERBOSE , eMAX } |
This enum is used to globally control the amount of 'Prologue' information that is prepended to the Trace log messages. More... | |
Public Member Functions | |
Trace (const char *filename, int linenum, const char *funcname, const char *section, const char *scope_name) | |
Constructor. | |
~Trace () | |
Destructor. | |
Static Public Member Functions | |
static void | traceLocation_ (const char *section, const char *filename, int linenum, const char *funcname) |
This function is used to trace the 'location' for general purpose trace messages. | |
static void | traceUserMsg_ (const char *format,...) |
This function is used to generate general purpose trace messages. | |
static void | enable_ (void) |
This method enables the output/logging of trace message at run-time. | |
static void | disable_ (void) |
This method disables the output/logging of trace message at run-time. | |
static bool | isEnabled_ (void) |
Returns true if tracing is enabled, i.e. | |
static InfoLevel_T | setInfoLevel_ (InfoLevel_T newLevel) |
This method sets the information level for the trace messages. | |
static InfoLevel_T | getInfoLevel_ (void) noexcept |
This method returns the current information level setting. | |
static bool | enableSection_ (const char *sectionToEnable) |
This method enables the output/logging of trace message at run-time for the specified 'section'. | |
static void | disableSection_ (const char *sectionToDisable) |
This method disables the output/logging of trace message at run-time for the specified 'section'. | |
static bool | isSectionEnabled_ (const char *section) |
Returns true if tracing is enabled AND the specified 'section' has been enabled. | |
static unsigned | getSections_ (Cpl::Text::String &dst) |
This method returns the number of enabled 'sections' and returns the actual section name(s) via the String 'dst'. | |
static void | setThreadFilter_ (const char *threadName1, const char *threadName2=0, const char *threadName3=0, const char *threadName4=0) |
This method applies a filter by thread name when generating output, i.e. | |
static unsigned | getThreadFilters_ (Cpl::Text::String &dst) |
This method returns the number of enabled 'thread filters' and returns the actual thread name(s) via the String 'dst'. | |
static void | clearThreadFilter_ (void) |
This method removes that thread filter (if there is one present). | |
static bool | passedThreadFilter_ () |
This method returns true if the thread filter has been set and the current thread's name 'passes' the thread filter check, i.e. | |
static void | redirect_ (Cpl::Io::Output &newMedia) |
This method is used to redirect the trace output to the provided Output stream. | |
static void | revert_ (void) |
This method is used to revert the trace output to its default output destination/stream/media. | |
static Cpl::Io::Output * | getDefaultOutputStream_ (void) noexcept |
This COMPONENT Scoped method provides the Output stream to the Trace Engine. | |
Protected Attributes | |
const char * | m_filename |
Caches trace info for exit message. | |
int | m_linenum |
Caches trace info for exit message. | |
const char * | m_funcname |
Caches trace info for exit message. | |
const char * | m_section |
Caches trace info for exit message. | |
const char * | m_scope |
Caches trace info for exit message. | |
This enum is used to globally control the amount of 'Prologue' information that is prepended to the Trace log messages.
The specifics of what information is added is platform specific.
Enumerator | |
---|---|
eNONE | Turns off ALL prologue info. |
eBRIEF | Default setting. |
eINFO | Additional prologue info. |
eVERBOSE | more prologue info |
eMAX | Maximum prologue info. |
Cpl::System::Trace::Trace | ( | const char * | filename, |
int | linenum, | ||
const char * | funcname, | ||
const char * | section, | ||
const char * | scope_name | ||
) |
Constructor.
Cpl::System::Trace::~Trace | ( | ) |
Destructor.
|
static |
This method removes that thread filter (if there is one present).
If no filter has been applied when this method is called, then this method does nothing.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method disables the output/logging of trace message at run-time.
The default is start with tracing enabled.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method disables the output/logging of trace message at run-time for the specified 'section'.
Setting 'sectionToDisable' to 0 will disable all sections.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method enables the output/logging of trace message at run-time.
The default is start with tracing enabled.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method enables the output/logging of trace message at run-time for the specified 'section'.
A 'section' name can NOT contain any white space. The method returns true if the section was enabled; else false is return, i.e. exceeded max active enabled sections.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
staticnoexcept |
This COMPONENT Scoped method provides the Output stream to the Trace Engine.
The Output stream instance MUST be created statically. However, the Output stream does not necessarily need to fully 'operational' when statically constructed - it just need to be "operationally" by the time Cpl::System::Api::initialize() is called.
NOTE: The Application is RESPONSIBLE for implementing this method!
|
staticnoexcept |
This method returns the current information level setting.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method returns the number of enabled 'sections' and returns the actual section name(s) via the String 'dst'.
It is the caller responsibility to ensure that 'dst' is large enough to hold all of the enable sections. If 'dst' is to short, the results will be truncated.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method returns the number of enabled 'thread filters' and returns the actual thread name(s) via the String 'dst'.
It is the caller responsibility to ensure that 'dst' is large enough to hold all of the enable thread filters. If 'dst' is to short, the results will be truncated.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
Returns true if tracing is enabled, i.e.
enable_() has been called.,
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
Returns true if tracing is enabled AND the specified 'section' has been enabled.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method returns true if the thread filter has been set and the current thread's name 'passes' the thread filter check, i.e.
the specified name match one of the names in the filter list.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method is used to redirect the trace output to the provided Output stream.
There is no guaranty on what happens to trace message(s) during the transition to the new output/media destination.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method is used to revert the trace output to its default output destination/stream/media.
There is no guaranty on what happens to trace message(s) during the transition to the default output/media destination.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method sets the information level for the trace messages.
The method returns the previous level setting.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This method applies a filter by thread name when generating output, i.e.
for a message to be output, trace must be enabled, the message's section enabled, and must be running in the one of the threads specified by the thread filter.
NOTE: NEVER call this method directly -->use the CPL_SYSTEM_TRACE_xxx() macros.
|
static |
This function is used to trace the 'location' for general purpose trace messages.
NOTE: NEVER call this method directly
|
static |
This function is used to generate general purpose trace messages.
NOTE: NEVER call this method directly
|
protected |
Caches trace info for exit message.
|
protected |
Caches trace info for exit message.
|
protected |
Caches trace info for exit message.
|
protected |
Caches trace info for exit message.
|
protected |
Caches trace info for exit message.