1 //===--- Logger.h - Logger interface for clangd ------------------*- C++-*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_LOGGER_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_LOGGER_H
11
12 #include "llvm/ADT/Twine.h"
13 #include "llvm/Support/Debug.h"
14 #include "llvm/Support/Error.h"
15 #include "llvm/Support/FormatAdapters.h"
16 #include "llvm/Support/FormatVariadic.h"
17 #include <mutex>
18
19 namespace clang {
20 namespace clangd {
21
22 /// Interface to allow custom logging in clangd.
23 class Logger {
24 public:
25 virtual ~Logger() = default;
26
27 /// The significance or severity of this message.
28 /// Typically used to filter the output to an interesting level.
29 enum Level : unsigned char { Debug, Verbose, Info, Error };
indicator(Level L)30 static char indicator(Level L) { return "DVIE"[L]; }
31
32 /// Implementations of this method must be thread-safe.
33 virtual void log(Level, const char *Fmt,
34 const llvm::formatv_object_base &Message) = 0;
35 };
36
37 namespace detail {
38 const char *debugType(const char *Filename);
39 void logImpl(Logger::Level, const char *Fmt, const llvm::formatv_object_base &);
40
41 // We often want to consume llvm::Errors by value when passing them to log().
42 // We automatically wrap them in llvm::fmt_consume() as formatv requires.
wrap(T && V)43 template <typename T> T &&wrap(T &&V) { return std::forward<T>(V); }
wrap(llvm::Error && V)44 inline decltype(fmt_consume(llvm::Error::success())) wrap(llvm::Error &&V) {
45 return fmt_consume(std::move(V));
46 }
47 template <typename... Ts>
log(Logger::Level L,const char * Fmt,Ts &&...Vals)48 void log(Logger::Level L, const char *Fmt, Ts &&... Vals) {
49 detail::logImpl(L, Fmt,
50 llvm::formatv(Fmt, detail::wrap(std::forward<Ts>(Vals))...));
51 }
52
53 llvm::Error error(std::error_code, std::string &&);
54 } // namespace detail
55
56 // Clangd logging functions write to a global logger set by LoggingSession.
57 // If no logger is registered, writes to llvm::errs().
58 // All accept llvm::formatv()-style arguments, e.g. log("Text={0}", Text).
59
60 // elog() is used for "loud" errors and warnings.
61 // This level is often visible to users.
elog(const char * Fmt,Ts &&...Vals)62 template <typename... Ts> void elog(const char *Fmt, Ts &&... Vals) {
63 detail::log(Logger::Error, Fmt, std::forward<Ts>(Vals)...);
64 }
65 // log() is used for information important to understand a clangd session.
66 // e.g. the names of LSP messages sent are logged at this level.
67 // This level could be enabled in production builds to allow later inspection.
log(const char * Fmt,Ts &&...Vals)68 template <typename... Ts> void log(const char *Fmt, Ts &&... Vals) {
69 detail::log(Logger::Info, Fmt, std::forward<Ts>(Vals)...);
70 }
71 // vlog() is used for details often needed for debugging clangd sessions.
72 // This level would typically be enabled for clangd developers.
vlog(const char * Fmt,Ts &&...Vals)73 template <typename... Ts> void vlog(const char *Fmt, Ts &&... Vals) {
74 detail::log(Logger::Verbose, Fmt, std::forward<Ts>(Vals)...);
75 }
76 // error() constructs an llvm::Error object, using formatv()-style arguments.
77 // It is not automatically logged! (This function is a little out of place).
78 // The error simply embeds the message string.
79 template <typename... Ts>
error(std::error_code EC,const char * Fmt,Ts &&...Vals)80 llvm::Error error(std::error_code EC, const char *Fmt, Ts &&... Vals) {
81 // We must render the formatv_object eagerly, while references are valid.
82 return detail::error(
83 EC, llvm::formatv(Fmt, detail::wrap(std::forward<Ts>(Vals))...).str());
84 }
85 // Overload with no error_code conversion, the error will be inconvertible.
error(const char * Fmt,Ts &&...Vals)86 template <typename... Ts> llvm::Error error(const char *Fmt, Ts &&... Vals) {
87 return detail::error(
88 llvm::inconvertibleErrorCode(),
89 llvm::formatv(Fmt, detail::wrap(std::forward<Ts>(Vals))...).str());
90 }
91 // Overload to avoid formatv complexity for simple strings.
error(std::error_code EC,std::string Msg)92 inline llvm::Error error(std::error_code EC, std::string Msg) {
93 return detail::error(EC, std::move(Msg));
94 }
95 // Overload for simple strings with no error_code conversion.
error(std::string Msg)96 inline llvm::Error error(std::string Msg) {
97 return detail::error(llvm::inconvertibleErrorCode(), std::move(Msg));
98 }
99
100 // dlog only logs if --debug was passed, or --debug_only=Basename.
101 // This level would be enabled in a targeted way when debugging.
102 #define dlog(...) \
103 DEBUG_WITH_TYPE(::clang::clangd::detail::debugType(__FILE__), \
104 ::clang::clangd::detail::log(Logger::Debug, __VA_ARGS__))
105
106 /// Only one LoggingSession can be active at a time.
107 class LoggingSession {
108 public:
109 LoggingSession(clangd::Logger &Instance);
110 ~LoggingSession();
111
112 LoggingSession(LoggingSession &&) = delete;
113 LoggingSession &operator=(LoggingSession &&) = delete;
114
115 LoggingSession(LoggingSession const &) = delete;
116 LoggingSession &operator=(LoggingSession const &) = delete;
117 };
118
119 // Logs to an output stream, such as stderr.
120 class StreamLogger : public Logger {
121 public:
StreamLogger(llvm::raw_ostream & Logs,Logger::Level MinLevel)122 StreamLogger(llvm::raw_ostream &Logs, Logger::Level MinLevel)
123 : MinLevel(MinLevel), Logs(Logs) {}
124
125 /// Write a line to the logging stream.
126 void log(Level, const char *Fmt,
127 const llvm::formatv_object_base &Message) override;
128
129 private:
130 Logger::Level MinLevel;
131 llvm::raw_ostream &Logs;
132
133 std::mutex StreamMutex;
134 };
135
136 } // namespace clangd
137 } // namespace clang
138
139 #endif
140