qxLib
cout_logger_stream.inl
Go to the documentation of this file.
1 /**
2 
3  @file cout_logger_stream.inl
4  @author Khrapov
5  @date 30.07.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
14  bool bAlwaysFlush,
15  bool bUseColors,
16  bool bDisableStdioSync,
17  bool bUntieCin)
18  : base_logger_stream(bAlwaysFlush)
19  , m_bUsingColors(bUseColors)
20 {
21  if (bDisableStdioSync)
22  {
23  // Optimization
24  // Don't synchronize to the standard C streams after each input/output operation
25  std::ios_base::sync_with_stdio(false);
26  }
27 
28  if (bUntieCin)
29  {
30  // This unties cin from cout.
31  // Tied streams ensure that one stream is flushed automatically
32  // before each I/O operation on the other stream
33  std::wcin.tie(nullptr);
34  std::wcout.tie(nullptr);
35  }
36 }
37 
39 {
40  QX_PERF_SCOPE(CatLogger, "Flush to cout");
41 
42  std::wcout << std::flush;
43 }
44 
46  string_view svMessage,
47  const log_unit& logUnit,
48  const std::vector<logger_color_range>& colors,
49  verbosity eVerbosity)
50 {
51  QX_PERF_SCOPE(CatLogger, "Log to cout");
52 
53  thread_local wstring sWideMessage;
54  sWideMessage = to_wstring(svMessage);
55 
56  if (m_bUsingColors)
57  {
58  color commonColor = color::white();
59  switch (eVerbosity)
60  {
61  case verbosity::very_verbose:
62  case verbosity::verbose:
63  commonColor = color::gray();
64  break;
65 
66  case verbosity::log:
67  commonColor = color::white();
68  break;
69 
70  case verbosity::important:
71  commonColor = color::khaki();
72  break;
73 
74  case verbosity::warning:
75  commonColor = color::orange();
76  break;
77 
78  case verbosity::error:
79  commonColor = color::crimson();
80  break;
81 
82  case verbosity::critical:
83  commonColor = color::dark_red();
84  break;
85  }
86 
87  auto cout_colorized = [](size_t nStart, size_t nEnd, const color& rangeColor)
88  {
89  std::wcout << terminal_color::font(rangeColor)
90  << qx::wstring_view { sWideMessage.data() + nStart, nEnd - nStart } << terminal_color::reset();
91  };
92 
93  cout_colorized(0, colors.empty() ? sWideMessage.size() : colors.front().range.first, commonColor);
94 
95  for (size_t i = 0; i < colors.size(); ++i)
96  {
97  cout_colorized(colors[i].range.first, colors[i].range.second, colors[i].rangeColor);
98  cout_colorized(
99  colors[i].range.second,
100  i + 1 < colors.size() ? colors[i + 1].range.first : sWideMessage.size(),
101  commonColor);
102  }
103  }
104  else
105  {
106  std::wcout << sWideMessage;
107  }
108 }
109 
110 inline void cout_logger_stream::set_using_colors(bool bUsingColors) noexcept
111 {
112  m_bUsingColors = bUsingColors;
113 }
114 
115 } // namespace qx
Base class for logger streams.
String class.
Definition: string.h:64
RGBA color.
Definition: color.h:38
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.
static constexpr terminal_color reset() noexcept
Reset all colors.
static constexpr terminal_color font(const color &fontColor) noexcept
Set font color.
wstring to_wstring(cstring_view stringView, const std::locale &locale=std::locale())
convert cstring to wstring