glogging
glogger.h
Go to the documentation of this file.
1 #ifndef GLOGGER_H
2 #define GLOGGER_H
3 
4 // Color conventions and logging macros
5 #include "gutsConventions.h"
6 #include "goptions.h"
7 
8 // Geant4
9 #include "G4UIsession.hh"
10 #include <atomic>
11 #include <string>
12 #include <cstdlib>
13 #include <sstream>
14 #include <utility>
15 
23 
32 class GLogger {
33 public:
39  explicit GLogger(GOptions* gopts, std::string vname)
40  : name(std::move(vname)), log_counter(0) {
41  verbosity_level = gopts->getVerbosityFor(name);
42  debug_level = gopts->getDebugFor(name);
43  debug(CONSTRUCTOR,name, " logger");
44  }
45 
46  // default constructor
47  GLogger() = default;
48 
50  debug(DESTRUCTOR, name, " logger");
51  }
52 
67  template <typename... Args>
68  void debug(debug_type type, Args&&... args) const {
69  if (debug_level == 0) return;
70 
71  std::ostringstream oss;
72  (oss << ... << std::forward<Args>(args));
73 
74  switch (type) {
75  case NORMAL:
76  G4cout << KYEL << header_string() << oss.str() << RST << G4endl;
77  break;
78  case CONSTRUCTOR:
79  G4cout << KCYN << header_string() << CONSTRUCTORLOG << " constructor " << CONSTRUCTORLOG << " " << RST << oss.str() << G4endl;
80  break;
81  case DESTRUCTOR:
82  G4cout << KCYN << header_string() << DESTRUCTORLOG << " destructor " << DESTRUCTORLOG << " " << RST << oss.str() << G4endl;
83  break;
84  }
85  }
86 
96  template <typename... Args>
97  void info(int level, Args&&... args) const {
98 
99  // error if level is not 0, 1 or 2
100  if (level != 0 && level != 1 && level != 2 ) {
101  G4cerr << FATALERRORL << header_string() << GWARNING << " Invalid verbosity level requested: " << level << RST << G4endl;
102  exit(EC_WRONG_VERBOSITY_LEVEL);
103  }
104 
105  if (level == 0 || (level == 1 && verbosity_level > 0) || (level == 2 && verbosity_level > 1)) {
106  std::ostringstream oss;
107  (oss << ... << std::forward<Args>(args));
108  G4cout << header_string() << oss.str() << G4endl;
109  }
110  }
111 
118  template <typename... Args>
119  void info(Args&&... args) const {
120  info(0, std::forward<Args>(args)...);
121  }
122 
131  template <typename... Args>
132  void warning(Args&&... args) const {
133  std::ostringstream oss;
134  (oss << ... << std::forward<Args>(args));
135  G4cout << KYEL << header_string() << GWARNING << oss.str() << RST << G4endl;
136  }
137 
147  template <typename... Args>
148  [[noreturn]] void error(int exit_code, Args&&... args) const {
149  std::ostringstream oss;
150  (oss << ... << std::forward<Args>(args));
151  G4cerr << FATALERRORL << header_string() << KRED << oss.str() << RST << G4endl;
152  std::exit(exit_code);
153  }
154 
161  template <typename... Args>
162  void critical(Args&&... args) const {
163  std::ostringstream oss;
164  (oss << ... << std::forward<Args>(args));
165  G4cout << KBOLD << header_string() << RST << oss.str() << G4endl;
166  }
167 
168 private:
169  std::string name;
170  int verbosity_level;
171  int debug_level;
172 
173  mutable std::atomic<int> log_counter;
174 
182  [[nodiscard]] std::string header_string() const {
183  log_counter++;
184  return name + " [" + std::to_string(log_counter.load()) + "] ";
185  }
186 };
187 
188 #endif // GLOGGER_H
Handles structured logging with verbosity and debug levels.
Definition: glogger.h:32
void warning(Args &&... args) const
Logs a warning message.
Definition: glogger.h:132
void debug(debug_type type, Args &&... args) const
Logs a debug message if the debug level is nonzero.
Definition: glogger.h:68
GLogger(GOptions *gopts, std::string vname)
Constructs a GLogger instance.
Definition: glogger.h:39
GLogger()=default
void info(Args &&... args) const
Overloaded version of info() with default level = 0.
Definition: glogger.h:119
~GLogger()
Definition: glogger.h:49
void critical(Args &&... args) const
Logs a critical message. Always printed.
Definition: glogger.h:162
void info(int level, Args &&... args) const
Logs an info message, conditionally based on verbosity level.
Definition: glogger.h:97
void error(int exit_code, Args &&... args) const
Logs an error message and exits the application.
Definition: glogger.h:148
debug_type
Enumerates debug message types.
Definition: glogger.h:22
@ CONSTRUCTOR
Definition: glogger.h:22
@ NORMAL
Definition: glogger.h:22
@ DESTRUCTOR
Definition: glogger.h:22