Logger.h
Go to the documentation of this file.
1 //
3 // © Copyright 2022 SCHUNK Mobile Greifsysteme GmbH, Lauffen/Neckar Germany
4 // © Copyright 2022 FZI Forschungszentrum Informatik, Karlsruhe, Germany
5 //
6 // This file is part of the Schunk SVH Library.
7 //
8 // The Schunk SVH Library is free software: you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or (at your
11 // option) any later version.
12 //
13 // The Schunk SVH Library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 // Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // the Schunk SVH Library. If not, see <https://www.gnu.org/licenses/>.
20 //
22 
23 //----------------------------------------------------------------------
30 //----------------------------------------------------------------------
31 #pragma once
32 
33 #include <memory>
34 #include <sstream>
35 
38 
39 #define SVH_LOG_DEBUG_STREAM(NAME, M) \
40  do \
41  { \
42  std::stringstream ss; \
43  ss << M; \
44  Logger::log(__FILE__, __LINE__, NAME, driver_svh::LogLevel::DEBUG, ss.str()); \
45  } while (false)
46 #define SVH_LOG_INFO_STREAM(NAME, M) \
47  do \
48  { \
49  std::stringstream ss; \
50  ss << M; \
51  Logger::log(__FILE__, __LINE__, NAME, driver_svh::LogLevel::INFO, ss.str()); \
52  } while (false)
53 #define SVH_LOG_WARN_STREAM(NAME, M) \
54  do \
55  { \
56  std::stringstream ss; \
57  ss << M; \
58  Logger::log(__FILE__, __LINE__, NAME, driver_svh::LogLevel::WARN, ss.str()); \
59  } while (false)
60 #define SVH_LOG_ERROR_STREAM(NAME, M) \
61  do \
62  { \
63  std::stringstream ss; \
64  ss << M; \
65  Logger::log(__FILE__, __LINE__, NAME, driver_svh::LogLevel::ERROR, ss.str()); \
66  } while (false)
67 #define SVH_LOG_FATAL_STREAM(NAME, M) \
68  do \
69  { \
70  std::stringstream ss; \
71  ss << M; \
72  Logger::log(__FILE__, __LINE__, NAME, driver_svh::LogLevel::FATAL, ss.str()); \
73  } while (false)
74 
75 namespace driver_svh {
76 
80 class Logger
81 {
82 public:
83  static Logger& getInstance()
84  {
85  static Logger instance;
86  return instance;
87  }
88  Logger(const Logger&) = delete;
89  void operator=(Logger const&) = delete;
90  virtual ~Logger() = default;
91 
92  static void setLogHandler(std::unique_ptr<LogHandler> log_handler)
93  {
94  Logger& logger = getInstance();
95  logger.m_log_handler = std::move(log_handler);
96  }
97 
98  static void setLogLevel(const LogLevel& log_level)
99  {
100  Logger& logger = getInstance();
101  logger.m_log_level = log_level;
102  }
103 
104  static void log(const std::string& file,
105  const int line,
106  const std::string& name,
107  const LogLevel level,
108  const std::string& msg...)
109  {
110  Logger& logger = getInstance();
111  if (level >= logger.m_log_level)
112  {
113  logger.m_log_handler->log(file, line, name, level, msg);
114  }
115  }
116 
117 
118 private:
120  : m_log_handler(new ShellLogHandler()){};
121 
123  std::unique_ptr<LogHandler> m_log_handler;
124 };
125 
126 } // namespace driver_svh
static void log(const std::string &file, const int line, const std::string &name, const LogLevel level, const std::string &msg...)
Definition: Logger.h:104
static void setLogLevel(const LogLevel &log_level)
Definition: Logger.h:98
Small singleton-based logging class with an exchangeable log handler.
Definition: Logger.h:80
static void setLogHandler(std::unique_ptr< LogHandler > log_handler)
Definition: Logger.h:92
static Logger & getInstance()
Definition: Logger.h:83
virtual ~Logger()=default
void operator=(Logger const &)=delete
std::unique_ptr< LogHandler > m_log_handler
Definition: Logger.h:123
LogLevel m_log_level
Definition: Logger.h:122


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23