Version: SMASH-3.2
logging.cc
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2014-2015,2017-2019,2022,2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #include "smash/logging.h"
11 
12 #include <array>
13 
14 #include "smash/configuration.h"
15 #include "smash/input_keys.h"
16 #include "smash/stringfunctions.h"
17 
18 namespace smash {
19 
22 
24 
27 }
28 
40 std::array<einhard::Logger<>, std::tuple_size<LogArea::AreaTuple>::value> logg;
41 
52 template <int index, int stop = 0>
53 constexpr typename std::enable_if<(index == stop), int>::type
55  using LogAreaTag = typename std::remove_reference<decltype(std::get<index>(
56  std::declval<LogArea::AreaTuple &>()))>::type;
57  return LogAreaTag::textual_length();
58 }
59 
71 template <int index, int stop = 0, int mid = (index + stop) / 2>
72 constexpr typename std::enable_if<(index > stop), int>::type
74  return find_longest_logger_name<index, mid + 1>() >
75  find_longest_logger_name<mid, stop>()
76  ? find_longest_logger_name<index, mid + 1>()
77  : find_longest_logger_name<mid, stop>();
78 }
79 
85 template <std::size_t index, int>
86 inline typename std::enable_if<(index == 0)>::type create_all_loggers_impl(
87  Configuration &) {}
88 
101 template <std::size_t index,
102  int longest_name = find_longest_logger_name<index - 1>()>
103 inline typename std::enable_if<(index != 0)>::type create_all_loggers_impl(
104  Configuration &config) {
105  using LogAreaTag =
106  typename std::remove_reference<decltype(std::get<index - 1>(
107  std::declval<LogArea::AreaTuple &>()))>::type;
108  static_assert(LogAreaTag::id == index - 1,
109  "The order of types in LogArea::AreaTuple does not match the "
110  "id values in the LogArea types. Please fix! (see top of "
111  "'include/logging.h')");
112  auto &logger = logg[LogAreaTag::id];
113  const auto tmp = utf8::fill_both(LogAreaTag::textual(), longest_name);
114  logger.setAreaName(tmp);
115  auto logging_key = InputKeys::get_logging_key(LogAreaTag::textual());
116  logger.setVerbosity(config.take(logging_key, global_default_loglevel));
117  create_all_loggers_impl<index - 1, longest_name>(config);
118 }
119 
121  create_all_loggers_impl<std::tuple_size<LogArea::AreaTuple>::value>(config);
122 }
123 
124 } // namespace smash
Interface to the SMASH configuration files.
T take(const Key< T > &key)
The default interface for SMASH to read configuration values.
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
void set_default_loglevel(einhard::LogLevel level)
Set the default log level (what will be returned from subsequent default_loglevel calls).
Definition: logging.cc:25
einhard::LogLevel default_loglevel()
Definition: logging.cc:23
void create_all_loggers(Configuration config)
Called from main() right after the Configuration object is fully set up to create all logger objects ...
Definition: logging.cc:120
LogLevel
Specification of the message severity.
Definition: einhard.hpp:109
@ ALL
Log all message.
Definition: einhard.hpp:110
std::string fill_both(const std::string &s, size_t width, char fill=' ')
Fill string with characters at both sides until the given width is reached.
Definition: action.h:24
static einhard::LogLevel global_default_loglevel
The default logging level is ALL.
Definition: logging.cc:21
constexpr std::enable_if<(index==stop), int >::type find_longest_logger_name()
Definition: logging.cc:54
std::enable_if<(index==0)>::type create_all_loggers_impl(Configuration &)
Definition: logging.cc:86
static const Key< einhard::LogLevel > & get_logging_key(std::string_view area)
Get the logging Key given a logging area.
Definition: input_keys.h:6004