qxLib
cout_logger_stream.h
Go to the documentation of this file.
1 /**
2 
3  @file cout_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 
13 
14 #include <iostream>
15 
16 namespace qx
17 {
18 
19 /**
20 
21  @class cout_logger_stream
22  @brief Logger stream for std::cout output
23  @details ~
24  @author Khrapov
25  @date 28.07.2021
26 
27 **/
29 {
30 public:
31  /**
32  @brief cout_logger_stream object constructor
33  @param bAlwaysFlush - true if need to flush after every output, decreases performance
34  @param bUseColors - use color when output is not info
35  @param bDisableStdioSync - don't synchronize to the standard C streams after each input/output operation
36  @param bUntieCin - untie cin from cout
37  **/
39  bool bAlwaysFlush = false,
40  bool bUseColors = true,
41  bool bDisableStdioSync = true,
42  bool bUntieCin = true);
43 
44  // base_logger_stream
45  //
46  virtual void flush() override;
47  virtual void do_log(
48  string_view svMessage,
49  const log_unit& logUnit,
50  const std::vector<logger_color_range>& colors,
51  verbosity eVerbosity) override;
52 
53  /**
54  @brief Set whether cout output should be colored
55  @param bUsingColors - true if cout output should be colored
56  **/
57  void set_using_colors(bool bUsingColors) noexcept;
58 
59 private:
60  bool m_bUsingColors = true;
61 };
62 
63 } // namespace qx
64 
Base class for logger streams.
Logger stream for std::cout output.
virtual void flush() override
Flush stream.
cout_logger_stream(bool bAlwaysFlush=false, bool bUseColors=true, bool bDisableStdioSync=true, bool bUntieCin=true)
cout_logger_stream object constructor
virtual void do_log(string_view svMessage, const log_unit &logUnit, const std::vector< logger_color_range > &colors, verbosity eVerbosity) override
Proceed stream logging.
void set_using_colors(bool bUsingColors) noexcept
Set whether cout output should be colored.