Diag-Client-Lib
Public Member Functions | Private Member Functions | Private Attributes | List of all members
utility::logger::Logger Class Referencefinal

Logger class that is used to log Dlt messages from the component. More...

#include <logger.h>

Public Member Functions

template<typename Func >
auto LogFatal (const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
 Log fatal message. More...
 
template<typename Func >
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. More...
 
template<typename Func >
auto LogError (const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
 Log error message. More...
 
template<typename Func >
auto LogWarn (const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
 Log warning message. More...
 
template<typename Func >
auto LogInfo (const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
 Log info message. More...
 
template<typename Func >
auto LogDebug (const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
 Log debug message. More...
 
template<typename Func >
auto LogVerbose (const std::string_view file_name, int line_no, const std::string_view func_name, Func &&func) noexcept -> void
 Log verbose message. More...
 
 Logger (std::string_view context_id)
 Construct an instance of Logger. More...
 
 Logger (std::string_view app_id, std::string_view context_id)
 Construct an instance of Logger. More...
 
 ~Logger ()
 Destruct an instance of Logger. More...
 

Private Member Functions

template<typename Func >
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. More...
 
template<typename Func >
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. More...
 

Private Attributes

std::string contxt_
 
std::string app_id_
 
std::string context_id_
 
bool registration_with_app_id_
 

Detailed Description

Logger class that is used to log Dlt messages from the component.

This class uses COVESA DLT infrastructure to send message to DLT. Also the class does not log dlt message if "ENABLE_DLT_LOGGER" cmake flag is set to OFF

Definition at line 33 of file logger.h.

Constructor & Destructor Documentation

◆ Logger() [1/2]

utility::logger::Logger::Logger ( std::string_view  context_id)
explicit

Construct an instance of Logger.

Parameters
[in]context_idThe context id of the user

Definition at line 14 of file logger.cpp.

15  : contxt_{},
16  app_id_{},
17  context_id_{context_id},
19 #ifdef ENABLE_DLT_LOGGER
20  DLT_REGISTER_CONTEXT(contxt_, context_id_.c_str(), "Application Context");
21 #else
23 #endif
24 }
std::string app_id_
Definition: logger.h:295
bool registration_with_app_id_
Definition: logger.h:301
std::string context_id_
Definition: logger.h:298
std::string contxt_
Definition: logger.h:292
#define UNUSED_PARAM(expr)
Definition: logger.h:23

References context_id_, contxt_, registration_with_app_id_, and UNUSED_PARAM.

◆ Logger() [2/2]

utility::logger::Logger::Logger ( std::string_view  app_id,
std::string_view  context_id 
)

Construct an instance of Logger.

Parameters
[in]app_idThe application id of the user
[in]context_idThe context id of the user

Definition at line 26 of file logger.cpp.

27  : contxt_{},
28  app_id_{app_id},
29  context_id_{context_id},
31 #ifdef ENABLE_DLT_LOGGER
32  DLT_REGISTER_APP(app_id_.c_str(), "Application Id");
33  DLT_REGISTER_CONTEXT(contxt_, context_id_.c_str(), "Application Context");
34 #else
36 #endif
37 }

References app_id_, context_id_, contxt_, registration_with_app_id_, and UNUSED_PARAM.

◆ ~Logger()

utility::logger::Logger::~Logger ( )

Destruct an instance of Logger.

Definition at line 39 of file logger.cpp.

39  {
40 #ifdef ENABLE_DLT_LOGGER
41  DLT_UNREGISTER_CONTEXT(contxt_);
42  if (registration_with_app_id_) { DLT_UNREGISTER_APP(); }
43 #endif
44 }

References contxt_, and registration_with_app_id_.

Member Function Documentation

◆ CreateLoggingMessage()

template<typename Func >
auto utility::logger::Logger::CreateLoggingMessage ( const std::string_view  file_name,
const std::string_view  ,
int  line_no,
Func &&  func 
) -> std::stringstream
inlineprivatenoexcept

Function to create the final logging message.

Template Parameters
FuncThe functor type
Parameters
[in]file_nameThe file name
[in]func_nameThe function name
[in]line_noThe line number
[in]funcThe functor which gets invoked

Definition at line 234 of file logger.h.

236  {
237  std::stringstream msg{};
238  func(msg);
239  msg << " [" << file_name << ":" << line_no << "]";
240  return msg;
241  }

◆ LogDebug()

template<typename Func >
auto utility::logger::Logger::LogDebug ( const std::string_view  file_name,
int  line_no,
const std::string_view  func_name,
Func &&  func 
) -> void
inlinenoexcept

Log debug message.

Template Parameters
FuncThe functor type invoked on log level set to debug
Parameters
[in]file_nameThe file name
[in]line_noThe line number
[in]func_nameThe function name
[in]funcThe functor which gets invoked on log level set to debug

Definition at line 165 of file logger.h.

166  {
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  }
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

References LogMessageToStdOutput().

Here is the call graph for this function:

◆ LogError()

template<typename Func >
auto utility::logger::Logger::LogError ( const std::string_view  file_name,
int  line_no,
const std::string_view  func_name,
Func &&  func 
) -> void
inlinenoexcept

Log error message.

Template Parameters
FuncThe functor type invoked on log level set to error
Parameters
[in]file_nameThe file name
[in]line_noThe line number
[in]func_nameThe function name
[in]funcThe functor which gets invoked on log level set to error

Definition at line 96 of file logger.h.

97  {
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  }

References LogMessageToStdOutput().

Here is the call graph for this function:

◆ LogFatal()

template<typename Func >
auto utility::logger::Logger::LogFatal ( const std::string_view  file_name,
int  line_no,
const std::string_view  func_name,
Func &&  func 
) -> void
inlinenoexcept

Log fatal message.

Template Parameters
FuncThe functor type invoked on log level set to fatal
Parameters
[in]file_nameThe file name
[in]line_noThe line number
[in]func_nameThe function name
[in]funcThe functor which gets invoked on log level set to fatal

Definition at line 49 of file logger.h.

50  {
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  }

References LogMessageToStdOutput().

Here is the call graph for this function:

◆ LogFatalAndTerminate()

template<typename Func >
auto utility::logger::Logger::LogFatalAndTerminate ( const std::string_view  file_name,
int  line_no,
const std::string_view  func_name,
Func &&  func 
) -> void
inlinenoexcept

Log fatal message and abort.

Template Parameters
FuncThe functor type invoked on log level set to fatal
Parameters
[in]file_nameThe file name
[in]line_noThe line number
[in]func_nameThe function name
[in]funcThe functor which gets invoked on log level set to fatal

Definition at line 72 of file logger.h.

73  {
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  }

References LogMessageToStdOutput().

Here is the call graph for this function:

◆ LogInfo()

template<typename Func >
auto utility::logger::Logger::LogInfo ( const std::string_view  file_name,
int  line_no,
const std::string_view  func_name,
Func &&  func 
) -> void
inlinenoexcept

Log info message.

Template Parameters
FuncThe functor type invoked on log level set to info
Parameters
[in]file_nameThe file name
[in]line_noThe line number
[in]func_nameThe function name
[in]funcThe functor which gets invoked on log level set to info

Definition at line 142 of file logger.h.

143  {
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  }

References LogMessageToStdOutput().

Here is the call graph for this function:

◆ LogMessageToStdOutput()

template<typename Func >
void utility::logger::Logger::LogMessageToStdOutput ( const std::string_view  file_name,
const std::string_view  func_name,
int  line_no,
Func &&  func 
)
inlineprivate

Function to send the messages to dlt infrastructure.

Template Parameters
log_levelThe log level
Parameters
[in]file_nameThe file name
[in]func_nameThe function name
[in]line_noThe line number
[in]funcThe functor which gets invoked

Function to send the messages to standard output

Template Parameters
FuncThe logging functor to be executed
Parameters
[in]file_nameThe file name
[in]func_nameThe function name
[in]line_noThe line number
[in]funcThe functor which gets invoked

Definition at line 282 of file logger.h.

283  {
284  std::cout << CreateLoggingMessage(file_name, func_name, line_no, std::forward<Func>(func)).str()
285  << std::endl;
286  }

Referenced by LogDebug(), LogError(), LogFatal(), LogFatalAndTerminate(), LogInfo(), LogVerbose(), and LogWarn().

Here is the caller graph for this function:

◆ LogVerbose()

template<typename Func >
auto utility::logger::Logger::LogVerbose ( const std::string_view  file_name,
int  line_no,
const std::string_view  func_name,
Func &&  func 
) -> void
inlinenoexcept

Log verbose message.

Template Parameters
FuncThe functor type invoked on log level set to verbose
Parameters
[in]file_nameThe file name
[in]line_noThe line number
[in]func_nameThe function name
[in]funcThe functor which gets invoked on log level set to verbose

Definition at line 188 of file logger.h.

189  {
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  }

References LogMessageToStdOutput().

Here is the call graph for this function:

◆ LogWarn()

template<typename Func >
auto utility::logger::Logger::LogWarn ( const std::string_view  file_name,
int  line_no,
const std::string_view  func_name,
Func &&  func 
) -> void
inlinenoexcept

Log warning message.

Template Parameters
FuncThe functor type invoked on log level set to warning
Parameters
[in]file_nameThe file name
[in]line_noThe line number
[in]func_nameThe function name
[in]funcThe functor which gets invoked on log level set to warning

Definition at line 119 of file logger.h.

120  {
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  }

References LogMessageToStdOutput().

Here is the call graph for this function:

Member Data Documentation

◆ app_id_

std::string utility::logger::Logger::app_id_
private

Definition at line 295 of file logger.h.

Referenced by Logger().

◆ context_id_

std::string utility::logger::Logger::context_id_
private

Definition at line 298 of file logger.h.

Referenced by Logger().

◆ contxt_

std::string utility::logger::Logger::contxt_
private

Definition at line 292 of file logger.h.

Referenced by Logger(), and ~Logger().

◆ registration_with_app_id_

bool utility::logger::Logger::registration_with_app_id_
private

Definition at line 301 of file logger.h.

Referenced by Logger(), and ~Logger().


The documentation for this class was generated from the following files: