qxLib
file_logger_stream.inl
Go to the documentation of this file.
1 /**
2 
3  @file file_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 
13 inline file_logger_stream::file_logger_stream(bool bAlwaysFlush, log_file_policy eLogFilePolicy, string_view svFileName)
14  : base_logger_stream(bAlwaysFlush)
15 {
16  string sLogFile = svFileName;
17  std::ios_base::openmode openingMode = std::ios_base::app;
18  switch (eLogFilePolicy)
19  {
20  case log_file_policy::clear_then_uppend:
21  {
22  openingMode = std::ios_base::trunc;
23  }
24  break;
25 
26  case log_file_policy::time_name:
27  {
28  string& sTime = get_log_buffer().sMessage;
29  sTime.clear();
30  append_time_string(sTime, L'-', L'-');
31  sLogFile += L'_';
32  sLogFile += sTime;
33  }
34  break;
35  }
36 
37  sLogFile += L".log";
38 
39  const wstring sWideLogFile = to_wstring(sLogFile);
40  const std::filesystem::path path(sWideLogFile.c_str());
41  if (path.has_parent_path() && !std::filesystem::exists(path.parent_path()))
42  {
43  if (!std::filesystem::create_directory(path.parent_path()))
44  {
45  std::wcerr << L"Can't create output folder " << sWideLogFile;
46  return;
47  }
48  }
49 
50  m_File = std::basic_ofstream<wchar_t>(path, openingMode);
51  if (!m_File)
52  {
53  std::wcerr << L"Can't open log file " << sWideLogFile;
54  return;
55  }
56 
57  QX_DISABLE_MSVC_WARNINGS(4996);
58  m_File.imbue(std::locale(std::locale(), new std::codecvt_utf8<wchar_t>));
59  QX_RESTORE_MSVC_WARNINGS(4996);
60 }
61 
62 inline file_logger_stream::~file_logger_stream()
63 {
64  if (m_File)
65  m_File << L"\n\n\n" << std::flush;
66 }
67 
69 {
70  QX_PERF_SCOPE(CatLogger, "Flush to the file");
71  m_File << std::flush;
72 }
73 
75  string_view svMessage,
76  const log_unit& logUnit,
77  const std::vector<logger_color_range>& colors,
78  verbosity eVerbosity)
79 {
80  QX_PERF_SCOPE(CatLogger, "Log to the file");
81  m_File << qx::to_wstring(svMessage);
82 }
83 
84 } // namespace qx
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.
logger_buffer & get_log_buffer() noexcept
Get string buffers.
String class.
Definition: string.h:64
const_pointer c_str() const noexcept
Get pointer to string zero terminated.
Definition: string.inl:248
virtual void do_log(string_view svMessage, const log_unit &logUnit, const std::vector< logger_color_range > &colors, verbosity eVerbosity) override
Proceed stream logging.
virtual void flush() override
Flush stream.
file_logger_stream(bool bAlwaysFlush=false, log_file_policy eLogFilePolicy=log_file_policy::append, string_view svFileName=L"application")
file_logger_stream object constructor
wstring to_wstring(cstring_view stringView, const std::locale &locale=std::locale())
convert cstring to wstring