1#ifndef Cpl_System_Trace_h_
2#define Cpl_System_Trace_h_
16#include "colony_config.h"
108 Trace(
const char* filename,
int linenum,
const char* funcname,
const char* section,
const char* scope_name );
133 static void traceLocation_(
const char* section,
const char* filename,
int linenum,
const char* funcname );
226 const char* threadName2 =0,
227 const char* threadName3 =0,
228 const char* threadName4 =0
314#ifdef USE_CPL_SYSTEM_TRACE
320#define CPL_SYSTEM_TRACE_PRETTY_FUNCNAME __PRETTY_FUNCTION__
322#elif defined(_MSC_VER)
324#define CPL_SYSTEM_TRACE_PRETTY_FUNCNAME __FUNCSIG__
329#define CPL_SYSTEM_TRACE_PRETTY_FUNCNAME __func__
334#define CPL_SYSTEM_TRACE_FUNC(sect) Cpl::System::Trace cplSystemTraceInstance_ (__FILE__,__LINE__,CPL_SYSTEM_TRACE_PRETTY_FUNCNAME,sect,CPL_SYSTEM_TRACE_PRETTY_FUNCNAME)
337#define CPL_SYSTEM_TRACE_SCOPE(sect,label) Cpl::System::Trace cplSystemTraceInstance_ (__FILE__,__LINE__,CPL_SYSTEM_TRACE_PRETTY_FUNCNAME,sect,label)
340#define CPL_SYSTEM_TRACE_MSG(sect, var_args) do { if ( Cpl::System::Trace::isSectionEnabled_(sect) && Cpl::System::Trace::passedThreadFilter_() ) {Cpl::System::Trace::traceLocation_(sect,__FILE__,__LINE__,CPL_SYSTEM_TRACE_PRETTY_FUNCNAME);Cpl::System::Trace::traceUserMsg_ var_args;}} while(0)
343#define CPL_SYSTEM_TRACE_ENABLE() Cpl::System::Trace::enable_()
346#define CPL_SYSTEM_TRACE_DISABLE() Cpl::System::Trace::disable_()
349#define CPL_SYSTEM_TRACE_IS_ENABLED() Cpl::System::Trace::isEnabled_()
352#define CPL_SYSTEM_TRACE_IS_SECTION_ENABLED(sect) Cpl::System::Trace::isSectionEnabled(sect)
355#define CPL_SYSTEM_TRACE_SET_INFO_LEVEL(l) Cpl::System::Trace::setInfoLevel_(l)
358#define CPL_SYSTEM_TRACE_GET_INFO_LEVEL() Cpl::System::Trace::getInfoLevel_()
361#define CPL_SYSTEM_TRACE_ENABLE_SECTION(sect) Cpl::System::Trace::enableSection_(sect)
364#define CPL_SYSTEM_TRACE_DISABLE_SECTION(sect) Cpl::System::Trace::disableSection_(sect)
367#define CPL_SYSTEM_TRACE_GET_SECTIONS(dst) Cpl::System::Trace::getSections_(dst)
370#define CPL_SYSTEM_TRACE_SET_THREAD_FILTER(t1) Cpl::System::Trace::setThreadFilter_(t1)
373#define CPL_SYSTEM_TRACE_SET_THREAD_2FILTERS(t1,t2) Cpl::System::Trace::setThreadFilter_(t1,t2)
376#define CPL_SYSTEM_TRACE_SET_THREAD_3FILTERS(t1,t2,t3) Cpl::System::Trace::setThreadFilter_(t1,t2,t3)
379#define CPL_SYSTEM_TRACE_SET_THREAD_4FILTERS(t1,t2,t3,t4) Cpl::System::Trace::setThreadFilter_(t1,t2,t3,t4)
382#define CPL_SYSTEM_TRACE_GET_THREAD_FILTERS(dst) Cpl::System::Trace::getThreadFilters_(dst)
385#define CPL_SYSTEM_TRACE_CLEAR_THREAD_FILTER() Cpl::System::Trace::clearThreadFilter_()
388#define CPL_SYSTEM_TRACE_DISABLE_SECTION(sect) Cpl::System::Trace::disableSection_(sect)
391#define CPL_SYSTEM_TRACE_REDIRECT(newdst) Cpl::System::Trace::redirect_(newdst)
394#define CPL_SYSTEM_TRACE_REVERT() Cpl::System::Trace::revert_()
397#define CPL_SYSTEM_TRACE_IS_COMPILED() true
400#define CPL_SYSTEM_TRACE_ALLOCATE(type,varname,initval) type varname = initval
405#define CPL_SYSTEM_TRACE_FUNC(sect)
408#define CPL_SYSTEM_TRACE_SCOPE(sect,label)
411#define CPL_SYSTEM_TRACE_MSG(sect, var_args)
414#define CPL_SYSTEM_TRACE_ENABLE()
417#define CPL_SYSTEM_TRACE_DISABLE()
420#define CPL_SYSTEM_TRACE_IS_ENABLED() false
423#define CPL_SYSTEM_TRACE_IS_SECTION_ENABLED(sect) false
426#define CPL_SYSTEM_TRACE_SET_INFO_LEVEL(l)
429#define CPL_SYSTEM_TRACE_GET_INFO_LEVEL() ((Cpl::System::Trace::InfoLevel_T)0)
432#define CPL_SYSTEM_TRACE_ENABLE_SECTION(sect)
435#define CPL_SYSTEM_TRACE_DISABLE_SECTION(sect)
438#define CPL_SYSTEM_TRACE_SET_THREAD_FILTER(t1)
441#define CPL_SYSTEM_TRACE_SET_THREAD_2FILTERS(t1,t2)
444#define CPL_SYSTEM_TRACE_SET_THREAD_3FILTERS(t1,t2,t3)
447#define CPL_SYSTEM_TRACE_SET_THREAD_4FILTERS(t1,t2,t3,t4)
450#define CPL_SYSTEM_TRACE_GET_THREAD_FILTERS(dst) 0
453#define CPL_SYSTEM_TRACE_CLEAR_THREAD_FILTER()
456#define CPL_SYSTEM_TRACE_GET_SECTIONS(dst) 0
459#define CPL_SYSTEM_TRACE_REDIRECT(newdst)
462#define CPL_SYSTEM_TRACE_REVERT()
465#define CPL_SYSTEM_TRACE_IS_COMPILED() false
468#define CPL_SYSTEM_TRACE_ALLOCATE(type,varname,initval)
476#ifndef OPTION_CPL_SYSTEM_TRACE_MAX_SECTIONS
477#define OPTION_CPL_SYSTEM_TRACE_MAX_SECTIONS 8
483#ifndef OPTION_CPL_SYSTEM_TRACE_MAX_SECTION_NAME_LEN
484#define OPTION_CPL_SYSTEM_TRACE_MAX_SECTION_NAME_LEN 63
490#ifndef OPTION_CPL_SYSTEM_TRACE_MAX_BUFFER
491#define OPTION_CPL_SYSTEM_TRACE_MAX_BUFFER 511
497#ifndef OPTION_CPL_SYSTEM_TRACE_PREFIX_STRING
498#define OPTION_CPL_SYSTEM_TRACE_PREFIX_STRING ">> "
504#ifndef OPTION_CPL_SYSTEM_TRACE_SUFFIX_STRING
505#define OPTION_CPL_SYSTEM_TRACE_SUFFIX_STRING "\n"
510#ifndef OPTION_CPL_SYSTEM_TRACE_DEFAULT_INFO_LEVEL
511#define OPTION_CPL_SYSTEM_TRACE_DEFAULT_INFO_LEVEL Cpl::System::Trace::eBRIEF
517#ifndef OPTION_CPL_SYSTEM_TRACE_DEFAULT_ENABLE_STATE
518#define OPTION_CPL_SYSTEM_TRACE_DEFAULT_ENABLE_STATE true
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
This concrete class provide a 'printf' tracing mechanism.
Definition Trace.h:105
static InfoLevel_T getInfoLevel_(void) noexcept
This method returns the current information level setting.
static void enable_(void)
This method enables the output/logging of trace message at run-time.
static unsigned getSections_(Cpl::Text::String &dst)
This method returns the number of enabled 'sections' and returns the actual section name(s) via the S...
static InfoLevel_T setInfoLevel_(InfoLevel_T newLevel)
This method sets the information level for the trace messages.
const char * m_section
Caches trace info for exit message.
Definition Trace.h:304
static unsigned getThreadFilters_(Cpl::Text::String &dst)
This method returns the number of enabled 'thread filters' and returns the actual thread name(s) via ...
const char * m_filename
Caches trace info for exit message.
Definition Trace.h:295
const char * m_funcname
Caches trace info for exit message.
Definition Trace.h:301
int m_linenum
Caches trace info for exit message.
Definition Trace.h:298
static bool isSectionEnabled_(const char *section)
Returns true if tracing is enabled AND the specified 'section' has been enabled.
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 void revert_(void)
This method is used to revert the trace output to its default output destination/stream/media.
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 bool enableSection_(const char *sectionToEnable)
This method enables the output/logging of trace message at run-time for the specified 'section'.
Trace(const char *filename, int linenum, const char *funcname, const char *section, const char *scope_name)
Constructor.
static void disableSection_(const char *sectionToDisable)
This method disables the output/logging of trace message at run-time for the specified 'section'.
InfoLevel_T
This enum is used to globally control the amount of 'Prologue' information that is prepended to the T...
Definition Trace.h:119
@ eNONE
Turns off ALL prologue info.
Definition Trace.h:120
@ eINFO
Additional prologue info.
Definition Trace.h:122
@ eMAX
Maximum prologue info.
Definition Trace.h:124
@ eVERBOSE
more prologue info
Definition Trace.h:123
@ eBRIEF
Default setting.
Definition Trace.h:121
static void redirect_(Cpl::Io::Output &newMedia)
This method is used to redirect the trace output to the provided Output stream.
const char * m_scope
Caches trace info for exit message.
Definition Trace.h:307
static bool isEnabled_(void)
Returns true if tracing is enabled, i.e.
static void disable_(void)
This method disables the output/logging of trace message at run-time.
static void traceUserMsg_(const char *format,...)
This function is used to generate general purpose trace messages.
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...
static Cpl::Io::Output * getDefaultOutputStream_(void) noexcept
This COMPONENT Scoped method provides the Output stream to the Trace Engine.
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20