Version: SMASH-3.2
einhard::Logger< MAX > Class Template Reference

#include <einhard.hpp>

template<LogLevel MAX = ALL>
class einhard::Logger< MAX >

A Logger object can be used to output messages to stdout.

The Logger object is created with a certain verbosity. All messages of a more verbose LogLevel will be filtered out. The way the class is build this can happen at compile time up to the level restriction given by the template parameter.

The class can automatically detect non-tty output and will not colorize output in that case.

Definition at line 351 of file einhard.hpp.

Public Member Functions

 Logger (const LogLevel verbosity_in=WARN)
 Create a new Logger object. More...
 
 Logger (const LogLevel verbosity_in, const bool colorize)
 Create a new Logger object explicitly selecting whether to colorize the output or not. More...
 
void setAreaName (const char *name)
 Set an area name. More...
 
EINHARD_ALWAYS_INLINE_ void setAreaName (const std::string &name)
 
OutputFormatter trace () const
 Access to the trace message stream. More...
 
template<typename... Ts>
void trace (Ts &&... args) const noexcept
 
OutputFormatter debug () const
 Access to the debug message stream. More...
 
template<typename... Ts>
void debug (Ts &&... args) const noexcept
 
OutputFormatter info () const
 Access to the info message stream. More...
 
template<typename... Ts>
void info (Ts &&... args) const noexcept
 
OutputFormatter warn () const
 Access to the warning message stream. More...
 
template<typename... Ts>
void warn (Ts &&... args) const noexcept
 
OutputFormatter error () const
 Access to the error message stream. More...
 
template<typename... Ts>
void error (Ts &&... args) const noexcept
 
OutputFormatter fatal () const
 Access to the fatal message stream. More...
 
template<typename... Ts>
void fatal (Ts &&... args) const noexcept
 Will print stacktrace. More...
 
template<LogLevel LEVEL>
bool isEnabled () const noexcept
 
void setVerbosity (LogLevel verbosity_in) noexcept
 Modify the verbosity of the Logger. More...
 
LogLevel getVerbosity () const noexcept
 Retrieve the current log level. More...
 
char const * getVerbosityString () const
 Retrieve a human readable representation of the current log level. More...
 
void setColorize (bool colorize) noexcept
 Select whether the output stream should be colorized. More...
 
bool getColorize () const noexcept
 Check whether the output stream is colorized. More...
 

Private Attributes

char areaName [32 - sizeof(LogLevel) - sizeof(bool)] = {'\0'}
 
LogLevel verbosity
 
bool colorize_stdout
 
bool colorize_stderr
 

Constructor & Destructor Documentation

◆ Logger() [1/2]

template<LogLevel MAX = ALL>
einhard::Logger< MAX >::Logger ( const LogLevel  verbosity_in = WARN)
inline

Create a new Logger object.

The object will automatically colorize output on ttys and not colorize output on non ttys.

Definition at line 366 of file einhard.hpp.

366  : verbosity( verbosity_in )
367  {
368  // use some, sadly not c++-ways to figure out whether we are writing ot a terminal
369  // only colorize when we are writing ot a terminal
370  colorize_stdout = isatty( fileno( stdout ) );
371  colorize_stderr = isatty( fileno( stderr ) );
372  };
bool colorize_stderr
Definition: einhard.hpp:357
LogLevel verbosity
Definition: einhard.hpp:355
bool colorize_stdout
Definition: einhard.hpp:356

◆ Logger() [2/2]

template<LogLevel MAX = ALL>
einhard::Logger< MAX >::Logger ( const LogLevel  verbosity_in,
const bool  colorize 
)
inline

Create a new Logger object explicitly selecting whether to colorize the output or not.

Be aware that if output colorization is selected output will even be colorized if output is to a non tty.

Definition at line 379 of file einhard.hpp.

380  : verbosity( verbosity_in ), colorize_stdout( colorize ), colorize_stderr( colorize ) {};

Member Function Documentation

◆ setAreaName() [1/2]

template<LogLevel MAX = ALL>
void einhard::Logger< MAX >::setAreaName ( const char *  name)
inline

Set an area name.

This will be printed after the LogLevel to identify the place in the code where the output is coming from. This can be used to identify the different Logger objects in the log output.

Parameters
nameA string. Only the first 30, or so, characters will be used. The rest will not be displayed. You can reset the name with an empty string.
Warning
Passing a nullptr is not allowed!

Definition at line 391 of file einhard.hpp.

392  {
393  assert( name );
394  std::strncpy( &areaName[0], name, sizeof( areaName ) - 1 );
395  areaName[sizeof( areaName ) - 1] = '\0';
396  }
char areaName[32 - sizeof(LogLevel) - sizeof(bool)]
Definition: einhard.hpp:354

◆ setAreaName() [2/2]

template<LogLevel MAX = ALL>
EINHARD_ALWAYS_INLINE_ void einhard::Logger< MAX >::setAreaName ( const std::string &  name)
inline

Definition at line 398 of file einhard.hpp.

399  {
400  setAreaName(name.c_str());
401  }
void setAreaName(const char *name)
Set an area name.
Definition: einhard.hpp:391

◆ trace() [1/2]

template<LogLevel MAX = ALL>
OutputFormatter einhard::Logger< MAX >::trace ( ) const
inline

Access to the trace message stream.

Definition at line 414 of file einhard.hpp.

415  {
416  return {isEnabled<TRACE>(), colorize_stdout, areaName,
417  std::integral_constant<LogLevel, TRACE>()};
418  }

◆ trace() [2/2]

template<LogLevel MAX = ALL>
template<typename... Ts>
void einhard::Logger< MAX >::trace ( Ts &&...  args) const
inlinenoexcept

Definition at line 420 of file einhard.hpp.

421  {
422  if( isEnabled<TRACE>() )
423  {
424  UnconditionalOutput o{colorize_stdout, areaName,
425  std::integral_constant<LogLevel, TRACE>()};
426  ((o << args), ...);
427  o.doCleanup();
428  }
429  }

◆ debug() [1/2]

template<LogLevel MAX = ALL>
OutputFormatter einhard::Logger< MAX >::debug ( ) const
inline

Access to the debug message stream.

Definition at line 441 of file einhard.hpp.

442  {
443  return {isEnabled<DEBUG>(), colorize_stdout, areaName,
444  std::integral_constant<LogLevel, DEBUG>()};
445  }

◆ debug() [2/2]

template<LogLevel MAX = ALL>
template<typename... Ts>
void einhard::Logger< MAX >::debug ( Ts &&...  args) const
inlinenoexcept

Definition at line 446 of file einhard.hpp.

447  {
448  if( isEnabled<DEBUG>() )
449  {
450  UnconditionalOutput o{colorize_stdout, areaName,
451  std::integral_constant<LogLevel, DEBUG>()};
452  ((o << args), ...);
453  o.doCleanup();
454  }
455  }

◆ info() [1/2]

template<LogLevel MAX = ALL>
OutputFormatter einhard::Logger< MAX >::info ( ) const
inline

Access to the info message stream.

Definition at line 458 of file einhard.hpp.

459  {
460  return {isEnabled<INFO>(), colorize_stdout, areaName,
461  std::integral_constant<LogLevel, INFO>()};
462  }

◆ info() [2/2]

template<LogLevel MAX = ALL>
template<typename... Ts>
void einhard::Logger< MAX >::info ( Ts &&...  args) const
inlinenoexcept

Definition at line 463 of file einhard.hpp.

464  {
465  if( isEnabled<INFO>() )
466  {
467  UnconditionalOutput o{colorize_stdout, areaName,
468  std::integral_constant<LogLevel, INFO>()};
469  ((o << args), ...);
470  o.doCleanup();
471  }
472  }

◆ warn() [1/2]

template<LogLevel MAX = ALL>
OutputFormatter einhard::Logger< MAX >::warn ( ) const
inline

Access to the warning message stream.

Definition at line 474 of file einhard.hpp.

475  {
476  return {isEnabled<WARN>(), colorize_stderr, areaName,
477  std::integral_constant<LogLevel, WARN>(), stderr};
478  }

◆ warn() [2/2]

template<LogLevel MAX = ALL>
template<typename... Ts>
void einhard::Logger< MAX >::warn ( Ts &&...  args) const
inlinenoexcept

Definition at line 479 of file einhard.hpp.

480  {
481  if( isEnabled<WARN>() )
482  {
483  UnconditionalOutput o{colorize_stderr, areaName,
484  std::integral_constant<LogLevel, WARN>()};
485  ((o << args), ...);
486  o.doCleanup(stderr);
487  }
488  }

◆ error() [1/2]

template<LogLevel MAX = ALL>
OutputFormatter einhard::Logger< MAX >::error ( ) const
inline

Access to the error message stream.

Definition at line 490 of file einhard.hpp.

491  {
492  return {isEnabled<ERROR>(), colorize_stderr, areaName,
493  std::integral_constant<LogLevel, ERROR>(), stderr};
494  }

◆ error() [2/2]

template<LogLevel MAX = ALL>
template<typename... Ts>
void einhard::Logger< MAX >::error ( Ts &&...  args) const
inlinenoexcept

Definition at line 495 of file einhard.hpp.

496  {
497  if( isEnabled<ERROR>() )
498  {
499  UnconditionalOutput o{colorize_stderr, areaName,
500  std::integral_constant<LogLevel, ERROR>()};
501  ((o << args), ...);
502  o.doCleanup(stderr);
503  }
504  }

◆ fatal() [1/2]

template<LogLevel MAX = ALL>
OutputFormatter einhard::Logger< MAX >::fatal ( ) const
inline

Access to the fatal message stream.

Definition at line 506 of file einhard.hpp.

507  {
508  return {isEnabled<FATAL>(), colorize_stderr, areaName,
509  std::integral_constant<LogLevel, FATAL>(), stderr};
510  }

◆ fatal() [2/2]

template<LogLevel MAX = ALL>
template<typename... Ts>
void einhard::Logger< MAX >::fatal ( Ts &&...  args) const
inlinenoexcept

Will print stacktrace.

Definition at line 512 of file einhard.hpp.

513  {
514  if( isEnabled<FATAL>() )
515  {
516  UnconditionalOutput o{colorize_stderr, areaName,
517  std::integral_constant<LogLevel, FATAL>()};
518  ((o << args), ...);
519  o.doCleanup(stderr);
520  print_stacktrace(stderr, 63, 2);
521  }
522  }

◆ isEnabled()

template<LogLevel MAX = ALL>
template<LogLevel LEVEL>
bool einhard::Logger< MAX >::isEnabled ( ) const
inlinenoexcept

Definition at line 524 of file einhard.hpp.

525  {
526 #ifdef NDEBUG
527  if( LEVEL == DEBUG || LEVEL == TRACE ) {
528  return false;
529  }
530 #endif
531  return ( MAX <= LEVEL && verbosity <= LEVEL );
532  }
@ TRACE
The lowes severity for messages describing the program flow.
Definition: einhard.hpp:111
@ DEBUG
Debug messages.
Definition: einhard.hpp:112

◆ setVerbosity()

template<LogLevel MAX = ALL>
void einhard::Logger< MAX >::setVerbosity ( LogLevel  verbosity_in)
inlinenoexcept

Modify the verbosity of the Logger.

Be aware that the verbosity can not be increased over the level given by the template parameter

Definition at line 539 of file einhard.hpp.

540  {
541  this->verbosity = verbosity_in;
542  }

◆ getVerbosity()

template<LogLevel MAX = ALL>
LogLevel einhard::Logger< MAX >::getVerbosity ( ) const
inlinenoexcept

Retrieve the current log level.

If you want to check whether messages of a certain LogLevel will be output the method isEnabled() should be preffered.

Definition at line 549 of file einhard.hpp.

550  {
551  return this->verbosity;
552  }

◆ getVerbosityString()

template<LogLevel MAX = ALL>
char const* einhard::Logger< MAX >::getVerbosityString ( ) const
inline

Retrieve a human readable representation of the current log level.

Definition at line 556 of file einhard.hpp.

557  {
559  }
const char * getLogLevelString() noexcept
Retrieve a human readable representation of the given log level value.

◆ setColorize()

template<LogLevel MAX = ALL>
void einhard::Logger< MAX >::setColorize ( bool  colorize)
inlinenoexcept

Select whether the output stream should be colorized.

Definition at line 563 of file einhard.hpp.

564  {
565  this->colorize_stdout = colorize;
566  this->colorize_stderr = colorize;
567  }

◆ getColorize()

template<LogLevel MAX = ALL>
bool einhard::Logger< MAX >::getColorize ( ) const
inlinenoexcept

Check whether the output stream is colorized.

Definition at line 571 of file einhard.hpp.

572  {
573  return this->colorize_stdout || this->colorize_stderr;
574  }

Member Data Documentation

◆ areaName

template<LogLevel MAX = ALL>
char einhard::Logger< MAX >::areaName[32 - sizeof(LogLevel) - sizeof(bool)] = {'\0'}
private

Definition at line 354 of file einhard.hpp.

◆ verbosity

template<LogLevel MAX = ALL>
LogLevel einhard::Logger< MAX >::verbosity
private

Definition at line 355 of file einhard.hpp.

◆ colorize_stdout

template<LogLevel MAX = ALL>
bool einhard::Logger< MAX >::colorize_stdout
private

Definition at line 356 of file einhard.hpp.

◆ colorize_stderr

template<LogLevel MAX = ALL>
bool einhard::Logger< MAX >::colorize_stderr
private

Definition at line 357 of file einhard.hpp.


The documentation for this class was generated from the following file: