Diag-Client-Lib
logger.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 #ifndef DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_LOGGER_H
9 #define DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_LOGGER_H
10 
11 #ifdef ENABLE_DLT_LOGGER
12 #include <dlt/dlt.h>
13 #endif
14 #include <iostream>
15 #include <memory>
16 #include <sstream>
17 #include <string>
18 #include <string_view>
19 #include <utility>
20 
21 #include "utility/file_path.h"
22 
23 #define UNUSED_PARAM(expr) static_cast<void>(expr)
24 
25 namespace utility {
26 namespace logger {
27 
33 class Logger final {
34  public:
48  template<typename Func>
49  auto LogFatal(const std::string_view file_name, int line_no, const std::string_view func_name,
50  Func &&func) noexcept -> void {
51 #ifdef ENABLE_DLT_LOGGER
52  LogDltMessage(DLT_LOG_FATAL, file_name, func_name, line_no, std::forward<Func>(func));
53 #else
54  LogMessageToStdOutput(file_name, func_name, line_no, std::forward<Func>(func));
55 #endif
56  }
57 
71  template<typename Func>
72  auto LogFatalAndTerminate(const std::string_view file_name, int line_no,
73  const std::string_view func_name, Func &&func) noexcept -> void {
74 #ifdef ENABLE_DLT_LOGGER
75  LogDltMessage(DLT_LOG_FATAL, file_name, func_name, line_no, std::forward<Func>(func));
76 #else
77  LogMessageToStdOutput(file_name, func_name, line_no, std::forward<Func>(func));
78 #endif
79  std::abort(); // abort in case of fatal issue
80  }
81 
95  template<typename Func>
96  auto LogError(const std::string_view file_name, int line_no, const std::string_view func_name,
97  Func &&func) noexcept -> void {
98 #ifdef ENABLE_DLT_LOGGER
99  LogDltMessage(DLT_LOG_ERROR, file_name, func_name, line_no, std::forward<Func>(func));
100 #else
101  LogMessageToStdOutput(file_name, func_name, line_no, std::forward<Func>(func));
102 #endif
103  }
104 
118  template<typename Func>
119  auto LogWarn(const std::string_view file_name, int line_no, const std::string_view func_name,
120  Func &&func) noexcept -> void {
121 #ifdef ENABLE_DLT_LOGGER
122  LogDltMessage(DLT_LOG_WARN, file_name, func_name, line_no, std::forward<Func>(func));
123 #else
124  LogMessageToStdOutput(file_name, func_name, line_no, std::forward<Func>(func));
125 #endif
126  }
127 
141  template<typename Func>
142  auto LogInfo(const std::string_view file_name, int line_no, const std::string_view func_name,
143  Func &&func) noexcept -> void {
144 #ifdef ENABLE_DLT_LOGGER
145  LogDltMessage(DLT_LOG_INFO, file_name, func_name, line_no, std::forward<Func>(func));
146 #else
147  LogMessageToStdOutput(file_name, func_name, line_no, std::forward<Func>(func));
148 #endif
149  }
150 
164  template<typename Func>
165  auto LogDebug(const std::string_view file_name, int line_no, const std::string_view func_name,
166  Func &&func) noexcept -> void {
167 #ifdef ENABLE_DLT_LOGGER
168  LogDltMessage(DLT_LOG_DEBUG, file_name, func_name, line_no, std::forward<Func>(func));
169 #else
170  LogMessageToStdOutput(file_name, func_name, line_no, std::forward<Func>(func));
171 #endif
172  }
173 
187  template<typename Func>
188  auto LogVerbose(const std::string_view file_name, int line_no, const std::string_view func_name,
189  Func &&func) noexcept -> void {
190 #ifdef ENABLE_DLT_LOGGER
191  LogDltMessage(DLT_LOG_VERBOSE, file_name, func_name, line_no, std::forward<Func>(func));
192 #else
193  LogMessageToStdOutput(file_name, func_name, line_no, std::forward<Func>(func));
194 #endif
195  }
196 
197  public:
203  explicit Logger(std::string_view context_id);
204 
212  Logger(std::string_view app_id, std::string_view context_id);
213 
217  ~Logger();
218 
219  private:
233  template<typename Func>
234  auto CreateLoggingMessage(const std::string_view file_name,
235  const std::string_view /* func_name */, int line_no,
236  Func &&func) noexcept -> std::stringstream {
237  std::stringstream msg{};
238  func(msg);
239  msg << " [" << file_name << ":" << line_no << "]";
240  return msg;
241  }
242 
256 #ifdef ENABLE_DLT_LOGGER
257  template<typename Func>
258  void LogDltMessage(DltLogLevelType log_level, const std::string_view file_name,
259  const std::string_view func_name, int line_no, Func &&func) {
260  DLT_LOG(
261  contxt_, log_level,
262  DLT_CSTRING(CreateLoggingMessage(file_name, func_name, line_no, std::forward<Func>(func))
263  .str()
264  .c_str()));
265  }
266 #endif
267 
281  template<typename Func>
282  void LogMessageToStdOutput(const std::string_view file_name, const std::string_view func_name,
283  int line_no, Func &&func) {
284  std::cout << CreateLoggingMessage(file_name, func_name, line_no, std::forward<Func>(func)).str()
285  << std::endl;
286  }
287 
288 #ifdef ENABLE_DLT_LOGGER
289  // Declare the context
290  DLT_DECLARE_CONTEXT(contxt_)
291 #else
292  std::string contxt_;
293 #endif
294  // Stores application id
295  std::string app_id_;
296 
297  // Stores context id
298  std::string context_id_;
299 
300  // store the information about registration with app id
302 };
303 } // namespace logger
304 } // namespace utility
305 #endif // DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_LOGGER_H
Logger class that is used to log Dlt messages from the component.
Definition: logger.h:33
void LogMessageToStdOutput(const std::string_view file_name, const std::string_view func_name, int line_no, Func &&func)
Function to send the messages to dlt infrastructure.
Definition: logger.h:282
auto LogDebug(const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
Log debug message.
Definition: logger.h:165
~Logger()
Destruct an instance of Logger.
Definition: logger.cpp:39
std::string app_id_
Definition: logger.h:295
Logger(std::string_view context_id)
Construct an instance of Logger.
Definition: logger.cpp:14
bool registration_with_app_id_
Definition: logger.h:301
std::string context_id_
Definition: logger.h:298
std::string contxt_
Definition: logger.h:292
auto LogVerbose(const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
Log verbose message.
Definition: logger.h:188
auto LogError(const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
Log error message.
Definition: logger.h:96
auto LogFatalAndTerminate(const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
Log fatal message and abort.
Definition: logger.h:72
auto LogInfo(const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
Log info message.
Definition: logger.h:142
auto LogFatal(const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
Log fatal message.
Definition: logger.h:49
auto CreateLoggingMessage(const std::string_view file_name, const std::string_view, int line_no, Func &&func) noexcept -> std::stringstream
Function to create the final logging message.
Definition: logger.h:234
auto LogWarn(const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
Log warning message.
Definition: logger.h:119