73 #include "stacktrace.h"
81 #define EINHARD_ALWAYS_INLINE_ __attribute__((always_inline))
83 #define EINHARD_ALWAYS_INLINE_
90 #define EINHARD_NO_THREAD_LOCAL 1
146 template <typename Parent> class
Color
161 return Parent::ANSI();
174 #define _COLOR( name, code ) \
177 static char const *ANSI() noexcept \
179 return "\33[" code "m"; \
182 typedef Color<name##_t_> name
214 std::ostream &( * )( std::ostream & ) ) noexcept
225 #ifdef EINHARD_NO_THREAD_LOCAL
227 std::ostringstream realOut;
237 template <LogLevel VERBOSITY>
239 std::integral_constant<LogLevel, VERBOSITY> )
242 doInit<VERBOSITY>( areaName );
274 template <LogLevel VERBOSITY>
void doInit(
const char *areaName );
292 template <LogLevel VERBOSITY>
294 const char *areaName,
295 std::integral_constant<LogLevel, VERBOSITY>,
296 std::FILE *outfile_ = stdout )
301 doInit<VERBOSITY>( areaName );
351 template<LogLevel MAX = ALL>
class Logger
410 template <
typename... Ts>
void trace( Ts &&... ) const noexcept
417 std::integral_constant<LogLevel, TRACE>()};
420 template <
typename... Ts>
void trace( Ts &&... args )
const noexcept
422 if( isEnabled<TRACE>() )
425 std::integral_constant<LogLevel, TRACE>()};
437 template <
typename... Ts>
void debug( Ts &&... ) const noexcept
444 std::integral_constant<LogLevel, DEBUG>()};
446 template <
typename... Ts>
void debug( Ts &&... args )
const noexcept
448 if( isEnabled<DEBUG>() )
451 std::integral_constant<LogLevel, DEBUG>()};
461 std::integral_constant<LogLevel, INFO>()};
463 template <
typename... Ts>
void info( Ts &&... args )
const noexcept
465 if( isEnabled<INFO>() )
468 std::integral_constant<LogLevel, INFO>()};
477 std::integral_constant<LogLevel, WARN>(), stderr};
479 template <
typename... Ts>
void warn( Ts &&... args )
const noexcept
481 if( isEnabled<WARN>() )
484 std::integral_constant<LogLevel, WARN>()};
493 std::integral_constant<LogLevel, ERROR>(), stderr};
495 template <
typename... Ts>
void error( Ts &&... args )
const noexcept
497 if( isEnabled<ERROR>() )
500 std::integral_constant<LogLevel, ERROR>()};
509 std::integral_constant<LogLevel, FATAL>(), stderr};
512 template <
typename... Ts>
void fatal( Ts &&... args )
const noexcept
514 if( isEnabled<FATAL>() )
517 std::integral_constant<LogLevel, FATAL>()};
520 print_stacktrace(stderr, 63, 2);
524 template <LogLevel LEVEL>
bool isEnabled() const noexcept
531 return ( MAX <= LEVEL &&
verbosity <= LEVEL );
541 this->verbosity = verbosity_in;
565 this->colorize_stdout = colorize;
566 this->colorize_stderr = colorize;
A stream modifier that allows to colorize the log output.
EINHARD_ALWAYS_INLINE_ Color(bool r) noexcept
EINHARD_ALWAYS_INLINE_ bool resetColor() const noexcept
EINHARD_ALWAYS_INLINE_ Color() noexcept
The default color modifier only affects the next object in the stream.
EINHARD_ALWAYS_INLINE_ char const * ansiCode() const noexcept
EINHARD_ALWAYS_INLINE_ Color< Parent > operator~() const noexcept
With the ~ operator the color modifier affects the rest of the stream (or until another color object ...
A Logger object can be used to output messages to stdout.
EINHARD_ALWAYS_INLINE_ void setAreaName(const std::string &name)
void info(Ts &&... args) const noexcept
OutputFormatter error() const
Access to the error message stream.
void setVerbosity(LogLevel verbosity_in) noexcept
Modify the verbosity of the Logger.
void fatal(Ts &&... args) const noexcept
Will print stacktrace.
void debug(Ts &&... args) const noexcept
OutputFormatter fatal() const
Access to the fatal message stream.
char const * getVerbosityString() const
Retrieve a human readable representation of the current log level.
OutputFormatter info() const
Access to the info message stream.
void error(Ts &&... args) const noexcept
bool isEnabled() const noexcept
void warn(Ts &&... args) const noexcept
LogLevel getVerbosity() const noexcept
Retrieve the current log level.
OutputFormatter debug() const
Access to the debug message stream.
OutputFormatter trace() const
Access to the trace message stream.
void setAreaName(const char *name)
Set an area name.
char areaName[32 - sizeof(LogLevel) - sizeof(bool)]
Logger(const LogLevel verbosity_in, const bool colorize)
Create a new Logger object explicitly selecting whether to colorize the output or not.
void setColorize(bool colorize) noexcept
Select whether the output stream should be colorized.
OutputFormatter warn() const
Access to the warning message stream.
void trace(Ts &&... args) const noexcept
Logger(const LogLevel verbosity_in=WARN)
Create a new Logger object.
bool getColorize() const noexcept
Check whether the output stream is colorized.
EINHARD_ALWAYS_INLINE_ UnconditionalOutput(bool colorize_, const char *areaName, std::integral_constant< LogLevel, VERBOSITY >)
EINHARD_ALWAYS_INLINE_ UnconditionalOutput(bool colorize_)
void doInit(const char *areaName)
EINHARD_ALWAYS_INLINE_ UnconditionalOutput & operator<<(const T &msg)
EINHARD_ALWAYS_INLINE_ UnconditionalOutput & operator<<(std::ostream &(*manip)(std::ostream &))
void doCleanup(std::FILE *outfile=stdout) noexcept
UnconditionalOutput & operator<<(const Color< T > &col)
#define EINHARD_ALWAYS_INLINE_
#define _COLOR(name, code)
This namespace contains all objects required for logging using Einhard.
LogLevel getLogLevel(const std::string &level)
Compares the string level against the strings for LogLevel and returns the one it matches.
const char * colorForLogLevel() noexcept
char const VERSION[]
Version string of the Einhard library.
LogLevel
Specification of the message severity.
@ TRACE
The lowes severity for messages describing the program flow.
@ OFF
If selected no messages will be output.
@ FATAL
Messages that indicate terminal application failure.
@ INFO
Messages of informational nature, expected processing time e.g.
const char * getLogLevelString() noexcept
Retrieve a human readable representation of the given log level value.