qxLib
base_logger_stream.h
Go to the documentation of this file.
1 /**
2 
3  @file base_logger_stream.h
4  @author Khrapov
5  @date 28.07.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/category.h>
13 #include <qx/internal/perf_scope.h>
15 #include <qx/verbosity.h>
16 
17 #include <ctime>
18 #include <functional>
19 #include <mutex>
20 #include <unordered_map>
21 
22 QX_DEFINE_CATEGORY(CatLogger, qx::color::dark_turquoise());
23 
24 namespace qx
25 {
26 
28 {
29  std::pair<size_t, size_t> range { 0, 0 };
30  color rangeColor = color::white();
31 };
32 
34 {
35  string sMessage; // result message (output)
36 
37  // ranges must not intersect and must increase
38  std::vector<logger_color_range> colors;
39 
40  void clear()
41  {
42  sMessage.clear();
43  colors.clear();
44  }
45 };
46 
48 {
49  using format_func = std::function<void(
50  logger_buffer& buffers,
51  verbosity eVerbosity,
52  const category& category,
53  string_view svFile,
54  string_view svFunction,
55  int nLine,
56  string_view swLogMessage)>;
57 
58  verbosity eMinVerbosity = verbosity::log;
59  format_func formatFunc;
60 };
61 
62 struct log_unit
63 {
64  const log_unit_info* pUnitInfo = nullptr;
65  string_view svUnitName;
66 };
67 
68 /**
69 
70  @class base_logger_stream
71  @brief Base class for logger streams
72  @details ~
73  @author Khrapov
74  @date 28.07.2021
75 
76 **/
78 {
79 public:
80  static constexpr const char_type* k_svDefaultUnit = QX_TEXT("default");
81 
82 public:
83  /**
84  @brief base_logger_stream object constructor
85  @param bAlwaysFlush - true if need to flush after every output, decreases performance
86  **/
87  base_logger_stream(bool bAlwaysFlush);
88 
89  virtual ~base_logger_stream() = default;
90 
91  /**
92  @brief Flush stream
93  **/
94  virtual void flush() = 0;
95 
96  /**
97  @brief Output to stream
98  @tparam char_t - char type, typically char or wchar_t
99  @param eVerbosity message verbosity
100  @param category - code category
101  @param svFile - file name string
102  @param svFunction - function name string
103  @param nLine - code line number
104  @param swLogMessage - formatted log line
105  **/
106  void log(
107  verbosity eVerbosity,
108  const category& category,
109  string_view svFile,
110  string_view svFunction,
111  int nLine,
112  string_view swLogMessage);
113 
114  /**
115  @brief Register logger unit
116  @param svUnitName - unit name (category name, file or function)
117  @param unit - unit info
118  **/
119  void register_unit(string_view svUnitName, const log_unit_info& unit) noexcept;
120 
121  /**
122  @brief Deregister logger unit
123  @param svUnitName - unit name (category name, file or function)
124  **/
125  void deregister_unit(string_view svUnitName) noexcept;
126 
127  /**
128  @brief Try to find log unit info based on trace location info
129  @param category - code category
130  @param eVerbosity - message verbosity
131  @param svFile - file string
132  @param svFunction - function string
133  @retval - log unit info if found
134  **/
135  std::optional<log_unit> get_unit_info(
136  const category& category,
137  verbosity eVerbosity,
138  string_view svFile,
139  string_view svFunction) const noexcept;
140 
141  /**
142  @brief Format time string to the buffer
143  @param sTime - output time buffer
144  @param chDateDelimiter - char to use as delimiter in date part
145  @param chTimeDelimiter - char to use as delimiter in time part
146  **/
147  static void append_time_string(string& sTime, char_type chDateDelimiter, char_type chTimeDelimiter) noexcept;
148 
149 protected:
150  /**
151  @brief Get string buffers
152  @retval - string buffers
153  **/
154  logger_buffer& get_log_buffer() noexcept;
155 
156  /**
157  @brief Format logger line
158  @param buffers - string buffers to reduce num of allocations
159  @param eVerbosity - message verbosity
160  @param category - code category
161  @param svFile - file name string
162  @param svFunction - function name string
163  @param nLine - code line number
164  @param swLogMessage - formatted log line
165  **/
166  virtual void format_line(
167  logger_buffer& buffers,
168  verbosity eVerbosity,
169  const category& category,
170  string_view svFile,
171  string_view svFunction,
172  int nLine,
173  string_view swLogMessage) noexcept;
174 
175 private:
176  /**
177  @brief Proceed stream logging
178  @param svMessage - message string
179  @param logUnit - log unit info
180  @param colors - color ranges to colorize output
181  @param eVerbosity - this message verbosity
182  **/
183  virtual void do_log(
184  string_view svMessage,
185  const log_unit& logUnit,
186  const std::vector<logger_color_range>& colors,
187  verbosity eVerbosity) = 0;
188 
189 private:
190  std::unordered_map<string_hash, log_unit_info> m_Units;
191  logger_buffer m_Buffer;
192  QX_PERF_MUTEX(m_LoggerStreamMutex);
193  bool m_bAlwaysFlush = false;
194 };
195 
196 } // namespace qx
197 
198 #include <qx/logger/base_logger_stream.inl>
#define QX_DEFINE_CATEGORY(name,...)
Define a category.
Definition: category.h:21
Base class for logger streams.
static void append_time_string(string &sTime, char_type chDateDelimiter, char_type chTimeDelimiter) noexcept
Format time string to the buffer.
void log(verbosity eVerbosity, const category &category, string_view svFile, string_view svFunction, int nLine, string_view swLogMessage)
Output to stream.
std::optional< log_unit > get_unit_info(const category &category, verbosity eVerbosity, string_view svFile, string_view svFunction) const noexcept
Try to find log unit info based on trace location info.
logger_buffer & get_log_buffer() noexcept
Get string buffers.
virtual void flush()=0
Flush stream.
void deregister_unit(string_view svUnitName) noexcept
Deregister logger unit.
base_logger_stream(bool bAlwaysFlush)
base_logger_stream object constructor
void register_unit(string_view svUnitName, const log_unit_info &unit) noexcept
Register logger unit.
virtual void format_line(logger_buffer &buffers, verbosity eVerbosity, const category &category, string_view svFile, string_view svFunction, int nLine, string_view swLogMessage) noexcept
Format logger line.
String hash object.
Definition: string_hash.h:38
A category is a class that identifies a particular piece of code. This code can be located in differe...
Definition: category.h:56
RGBA color.
Definition: color.h:38
Contains perf scope macros for profiler (for internal usage only, but user may override them)