qxLib
logger.inl
Go to the documentation of this file.
1 /**
2 
3  @file logger.inl
4  @author Khrapov
5  @date 17.06.2019
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 inline void logger::log(
14  verbosity eVerbosity,
15  string_view svFormat,
16  const category& category,
17  string_view svFile,
18  string_view svFunction,
19  int nLine)
20 {
21  for (const auto& stream : m_Streams)
22  stream->log(eVerbosity, category, svFile, svFunction, nLine, svFormat);
23 }
24 
25 template<class... args_t>
26  requires(log_acceptable_args<args_t...>)
27 inline void logger::log(
28  verbosity eVerbosity,
30  const category& category,
31  string_view svFile,
32  string_view svFunction,
33  int nLine,
34  const args_t&... args)
35 {
36  const auto sLogMessage = qx::string::static_format(sFormat, args...);
37  for (const auto& stream : m_Streams)
38  stream->log(eVerbosity, category, svFile, svFunction, nLine, sLogMessage);
39 }
40 
41 inline void logger::flush()
42 {
43  for (const auto& stream : m_Streams)
44  stream->flush();
45 }
46 
47 inline void logger::add_stream(std::unique_ptr<base_logger_stream> pStream) noexcept
48 {
49  m_Streams.push_back(std::move(pStream));
50 }
51 
52 inline void logger::reset() noexcept
53 {
54  m_Streams.clear();
55 }
56 
58  const category& category,
59  verbosity eVerbosity,
60  string_view svFile,
61  string_view svFunction) const noexcept
62 {
63  for (const auto& stream : m_Streams)
64  if (stream->get_unit_info(category, eVerbosity, svFile, svFunction))
65  return true;
66 
67  return false;
68 }
69 
70 } // namespace qx
requires static format_acceptable_args< char_type, args_t... > basic_string static_format(format_string_type< args_t... > sFormat, const args_t &... args)
Create a string by formatting it with the format string and the args.
A category is a class that identifies a particular piece of code. This code can be located in differe...
Definition: category.h:56
void log(verbosity eVerbosity, string_view svFormat, const category &category, string_view svFile, string_view svFunction, int nLine)
Log to all streams.
Definition: logger.inl:13
bool will_any_stream_accept(const category &category, verbosity eVerbosity, string_view svFile, string_view svFunction) const noexcept
Returns true if any of streams will accept this message.
Definition: logger.inl:57
void add_stream(std::unique_ptr< base_logger_stream > pStream) noexcept
Add output stream to the logger.
Definition: logger.inl:47
void reset() noexcept
Reset logger and clear all streams.
Definition: logger.inl:52
void flush()
Flush all streams.
Definition: logger.inl:41
std::basic_format_string wrapper that performs additional compile time checks
Definition: format_string.h:29