libcamera  v0.5.0+37-12007759
Supporting cameras in Linux since 2019
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
log.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /*
3  * Copyright (C) 2018, Google Inc.
4  *
5  * Logging infrastructure
6  */
7 
8 #pragma once
9 
10 #include <atomic>
11 #include <sstream>
12 #include <string_view>
13 
14 #include <libcamera/base/private.h>
15 
16 #include <libcamera/base/class.h>
17 #include <libcamera/base/utils.h>
18 
19 namespace libcamera {
20 
22  LogInvalid = -1,
23  LogDebug = 0,
28 };
29 
31 {
32 public:
33  static LogCategory *create(std::string_view name);
34 
35  const std::string &name() const { return name_; }
36  LogSeverity severity() const { return severity_.load(std::memory_order_relaxed); }
37  void setSeverity(LogSeverity severity) { severity_.store(severity, std::memory_order_relaxed); }
38 
39  static const LogCategory &defaultCategory();
40 
41 private:
42  friend class Logger;
43  explicit LogCategory(std::string_view name);
44 
45  const std::string name_;
46 
47  std::atomic<LogSeverity> severity_;
48  static_assert(decltype(severity_)::is_always_lock_free);
49 };
50 
51 #define LOG_DECLARE_CATEGORY(name) \
52 extern const LogCategory &_LOG_CATEGORY(name)();
53 
54 #define LOG_DEFINE_CATEGORY(name) \
55 LOG_DECLARE_CATEGORY(name) \
56 const LogCategory &_LOG_CATEGORY(name)() \
57 { \
58  /* The instance will be deleted by the Logger destructor. */ \
59  static LogCategory *category = LogCategory::create(#name); \
60  return *category; \
61 }
62 
64 {
65 public:
66  LogMessage(const char *fileName, unsigned int line,
67  const LogCategory &category, LogSeverity severity,
68  std::string prefix = {});
69  ~LogMessage();
70 
71  std::ostream &stream() { return msgStream_; }
72 
73  const utils::time_point &timestamp() const { return timestamp_; }
74  LogSeverity severity() const { return severity_; }
75  const LogCategory &category() const { return category_; }
76  const std::string &fileInfo() const { return fileInfo_; }
77  const std::string &prefix() const { return prefix_; }
78  const std::string msg() const { return msgStream_.str(); }
79 
80 private:
82 
83  std::ostringstream msgStream_;
84  const LogCategory &category_;
85  LogSeverity severity_;
86  utils::time_point timestamp_;
87  std::string fileInfo_;
88  std::string prefix_;
89 };
90 
91 class Loggable
92 {
93 public:
94  virtual ~Loggable();
95 
96 protected:
97  virtual std::string logPrefix() const = 0;
98 
100  const char *fileName = __builtin_FILE(),
101  unsigned int line = __builtin_LINE()) const;
102 };
103 
105  const char *fileName = __builtin_FILE(),
106  unsigned int line = __builtin_LINE());
107 
108 #ifndef __DOXYGEN__
109 #define _LOG_CATEGORY(name) logCategory##name
110 
111 #define _LOG1(severity) \
112  _log(nullptr, Log##severity).stream()
113 #define _LOG2(category, severity) \
114  _log(&_LOG_CATEGORY(category)(), Log##severity).stream()
115 
116 /*
117  * Expand the LOG() macro to _LOG1() or _LOG2() based on the number of
118  * arguments.
119  */
120 #define _LOG_MACRO(_1, _2, NAME, ...) NAME
121 #define LOG(...) _LOG_MACRO(__VA_ARGS__, _LOG2, _LOG1)(__VA_ARGS__)
122 #else /* __DOXYGEN___ */
123 #define LOG(category, severity)
124 #endif /* __DOXYGEN__ */
125 
126 #ifndef NDEBUG
127 #define ASSERT(condition) static_cast<void>(({ \
128  if (!(condition)) \
129  LOG(Fatal) << "assertion \"" #condition "\" failed in " \
130  << __func__ << "()"; \
131 }))
132 #else
133 #define ASSERT(condition) static_cast<void>(false && (condition))
134 #endif
135 
136 } /* namespace libcamera */
const std::string & prefix() const
Retrieve the prefix of the log message.
Definition: log.h:77
Utilities to help constructing class interfaces.
Definition: log.h:24
const std::string & name() const
Retrieve the log category name.
Definition: log.h:35
static LogCategory * create(std::string_view name)
Create a new LogCategory or return an existing one.
Definition: log.cpp:766
Base class to support log message extensions.
Definition: log.h:91
LogSeverity
Definition: log.h:21
Definition: log.h:27
Top-level libcamera namespace.
Definition: backtrace.h:17
Definition: log.h:25
Internal log message representation.
Definition: log.h:63
std::chrono::steady_clock::time_point time_point
The libcamera time point related to libcamera::utils::clock.
Definition: utils.h:74
Miscellaneous utility functions.
Definition: log.h:23
LogSeverity severity() const
Retrieve the severity of the log category.
Definition: log.h:36
LogMessage _log(const LogCategory *category, LogSeverity severity, const char *fileName=__builtin_FILE(), unsigned int line=__builtin_LINE())
Create a temporary LogMessage object to log a message.
Definition: log.cpp:974
LogSeverity severity() const
Retrieve the severity of the log message.
Definition: log.h:74
const std::string & fileInfo() const
Retrieve the file info of the log message.
Definition: log.h:76
const LogCategory & category() const
Retrieve the category of the log message.
Definition: log.h:75
#define LIBCAMERA_DISABLE_COPY_AND_MOVE(klass)
Disable copy and move construction and assignment of the klass.
const std::string msg() const
Retrieve the message text of the log message.
Definition: log.h:78
static const LogCategory & defaultCategory()
Retrieve the default log category.
Definition: log.cpp:809
Message logger.
Definition: log.cpp:297
void setSeverity(LogSeverity severity)
Set the severity of the log category.
Definition: log.h:37
Definition: log.h:26
A category of log message.
Definition: log.h:30
const utils::time_point & timestamp() const
Retrieve the timestamp of the log message.
Definition: log.h:73
std::ostream & stream()
Definition: log.h:71