blob: 893d85ab61a2c6e8afa17e879857d18ffd9056fd [file] [log] [blame]
Ilya Biryukov38d79772017-05-16 09:38:59 +00001//===--- ClangdLSPServer.cpp - LSP server ------------------------*- C++-*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Ilya Biryukov38d79772017-05-16 09:38:59 +00006//
Kirill Bobyrev8e35f1e2018-08-14 16:03:32 +00007//===----------------------------------------------------------------------===//
Ilya Biryukov38d79772017-05-16 09:38:59 +00008
9#include "ClangdLSPServer.h"
Ilya Biryukov71028b82018-03-12 15:28:22 +000010#include "Diagnostics.h"
Ilya Biryukovcce67a32019-01-29 14:17:36 +000011#include "Protocol.h"
Sam McCallb536a2a2017-12-19 12:23:48 +000012#include "SourceCode.h"
Sam McCall2c30fbc2018-10-18 12:32:04 +000013#include "Trace.h"
Eric Liu78ed91a72018-01-29 15:37:46 +000014#include "URI.h"
Ilya Biryukovcce67a32019-01-29 14:17:36 +000015#include "clang/Tooling/Core/Replacement.h"
Kadir Cetinkaya689bf932018-08-24 13:09:41 +000016#include "llvm/ADT/ScopeExit.h"
Simon Marchi9569fd52018-03-16 14:30:42 +000017#include "llvm/Support/Errc.h"
Ilya Biryukovcce67a32019-01-29 14:17:36 +000018#include "llvm/Support/Error.h"
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +000019#include "llvm/Support/FormatVariadic.h"
Eric Liu5740ff52018-01-31 16:26:27 +000020#include "llvm/Support/Path.h"
Sam McCall2c30fbc2018-10-18 12:32:04 +000021#include "llvm/Support/ScopedPrinter.h"
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +000022
Sam McCallc008af62018-10-20 15:30:37 +000023namespace clang {
24namespace clangd {
Ilya Biryukovafb55542017-05-16 14:40:30 +000025namespace {
Ilya Biryukovb0826bd2019-01-03 13:37:12 +000026class IgnoreCompletionError : public llvm::ErrorInfo<CancelledError> {
27public:
28 void log(llvm::raw_ostream &OS) const override {
29 OS << "ignored auto-triggered completion, preceding char did not match";
30 }
31 std::error_code convertToErrorCode() const override {
32 return std::make_error_code(std::errc::operation_canceled);
33 }
34};
Ilya Biryukovafb55542017-05-16 14:40:30 +000035
Ilya Biryukovcce67a32019-01-29 14:17:36 +000036/// Transforms a tweak into a code action that would apply it if executed.
37/// EXPECTS: T.prepare() was called and returned true.
38CodeAction toCodeAction(const ClangdServer::TweakRef &T, const URIForFile &File,
39 Range Selection) {
40 CodeAction CA;
41 CA.title = T.Title;
42 CA.kind = CodeAction::REFACTOR_KIND;
43 // This tweak may have an expensive second stage, we only run it if the user
44 // actually chooses it in the UI. We reply with a command that would run the
45 // corresponding tweak.
46 // FIXME: for some tweaks, computing the edits is cheap and we could send them
47 // directly.
48 CA.command.emplace();
49 CA.command->title = T.Title;
50 CA.command->command = Command::CLANGD_APPLY_TWEAK;
51 CA.command->tweakArgs.emplace();
52 CA.command->tweakArgs->file = File;
53 CA.command->tweakArgs->tweakID = T.ID;
54 CA.command->tweakArgs->selection = Selection;
55 return CA;
56};
57
Ilya Biryukov19d75602018-11-23 15:21:19 +000058void adjustSymbolKinds(llvm::MutableArrayRef<DocumentSymbol> Syms,
59 SymbolKindBitset Kinds) {
60 for (auto &S : Syms) {
61 S.kind = adjustKindToCapability(S.kind, Kinds);
62 adjustSymbolKinds(S.children, Kinds);
63 }
64}
65
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +000066SymbolKindBitset defaultSymbolKinds() {
67 SymbolKindBitset Defaults;
68 for (size_t I = SymbolKindMin; I <= static_cast<size_t>(SymbolKind::Array);
69 ++I)
70 Defaults.set(I);
71 return Defaults;
72}
73
Kadir Cetinkaya133d46f2018-09-27 17:13:07 +000074CompletionItemKindBitset defaultCompletionItemKinds() {
75 CompletionItemKindBitset Defaults;
76 for (size_t I = CompletionItemKindMin;
77 I <= static_cast<size_t>(CompletionItemKind::Reference); ++I)
78 Defaults.set(I);
79 return Defaults;
80}
81
Ilya Biryukovafb55542017-05-16 14:40:30 +000082} // namespace
83
Sam McCall2c30fbc2018-10-18 12:32:04 +000084// MessageHandler dispatches incoming LSP messages.
85// It handles cross-cutting concerns:
86// - serializes/deserializes protocol objects to JSON
87// - logging of inbound messages
88// - cancellation handling
89// - basic call tracing
Sam McCall3d0adbe2018-10-18 14:41:50 +000090// MessageHandler ensures that initialize() is called before any other handler.
Sam McCall2c30fbc2018-10-18 12:32:04 +000091class ClangdLSPServer::MessageHandler : public Transport::MessageHandler {
92public:
93 MessageHandler(ClangdLSPServer &Server) : Server(Server) {}
94
Ilya Biryukovf2001aa2019-01-07 15:45:19 +000095 bool onNotify(llvm::StringRef Method, llvm::json::Value Params) override {
Sam McCall2c30fbc2018-10-18 12:32:04 +000096 log("<-- {0}", Method);
97 if (Method == "exit")
98 return false;
Sam McCall3d0adbe2018-10-18 14:41:50 +000099 if (!Server.Server)
100 elog("Notification {0} before initialization", Method);
101 else if (Method == "$/cancelRequest")
Sam McCall2c30fbc2018-10-18 12:32:04 +0000102 onCancel(std::move(Params));
103 else if (auto Handler = Notifications.lookup(Method))
104 Handler(std::move(Params));
105 else
106 log("unhandled notification {0}", Method);
107 return true;
108 }
109
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000110 bool onCall(llvm::StringRef Method, llvm::json::Value Params,
111 llvm::json::Value ID) override {
Sam McCalle2f3a732018-10-24 14:26:26 +0000112 // Calls can be canceled by the client. Add cancellation context.
113 WithContext WithCancel(cancelableRequestContext(ID));
114 trace::Span Tracer(Method);
115 SPAN_ATTACH(Tracer, "Params", Params);
116 ReplyOnce Reply(ID, Method, &Server, Tracer.Args);
Sam McCall2c30fbc2018-10-18 12:32:04 +0000117 log("<-- {0}({1})", Method, ID);
Sam McCall3d0adbe2018-10-18 14:41:50 +0000118 if (!Server.Server && Method != "initialize") {
119 elog("Call {0} before initialization.", Method);
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000120 Reply(llvm::make_error<LSPError>("server not initialized",
121 ErrorCode::ServerNotInitialized));
Sam McCall3d0adbe2018-10-18 14:41:50 +0000122 } else if (auto Handler = Calls.lookup(Method))
Sam McCalle2f3a732018-10-24 14:26:26 +0000123 Handler(std::move(Params), std::move(Reply));
Sam McCall2c30fbc2018-10-18 12:32:04 +0000124 else
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000125 Reply(llvm::make_error<LSPError>("method not found",
126 ErrorCode::MethodNotFound));
Sam McCall2c30fbc2018-10-18 12:32:04 +0000127 return true;
128 }
129
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000130 bool onReply(llvm::json::Value ID,
131 llvm::Expected<llvm::json::Value> Result) override {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000132 // We ignore replies, just log them.
133 if (Result)
134 log("<-- reply({0})", ID);
135 else
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000136 log("<-- reply({0}) error: {1}", ID, llvm::toString(Result.takeError()));
Sam McCall2c30fbc2018-10-18 12:32:04 +0000137 return true;
138 }
139
140 // Bind an LSP method name to a call.
Sam McCalle2f3a732018-10-24 14:26:26 +0000141 template <typename Param, typename Result>
Sam McCall2c30fbc2018-10-18 12:32:04 +0000142 void bind(const char *Method,
Sam McCalle2f3a732018-10-24 14:26:26 +0000143 void (ClangdLSPServer::*Handler)(const Param &, Callback<Result>)) {
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000144 Calls[Method] = [Method, Handler, this](llvm::json::Value RawParams,
Sam McCalle2f3a732018-10-24 14:26:26 +0000145 ReplyOnce Reply) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000146 Param P;
Sam McCalle2f3a732018-10-24 14:26:26 +0000147 if (fromJSON(RawParams, P)) {
148 (Server.*Handler)(P, std::move(Reply));
149 } else {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000150 elog("Failed to decode {0} request.", Method);
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000151 Reply(llvm::make_error<LSPError>("failed to decode request",
152 ErrorCode::InvalidRequest));
Sam McCall2c30fbc2018-10-18 12:32:04 +0000153 }
Sam McCall2c30fbc2018-10-18 12:32:04 +0000154 };
155 }
156
157 // Bind an LSP method name to a notification.
158 template <typename Param>
159 void bind(const char *Method,
160 void (ClangdLSPServer::*Handler)(const Param &)) {
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000161 Notifications[Method] = [Method, Handler,
162 this](llvm::json::Value RawParams) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000163 Param P;
164 if (!fromJSON(RawParams, P)) {
165 elog("Failed to decode {0} request.", Method);
166 return;
167 }
168 trace::Span Tracer(Method);
169 SPAN_ATTACH(Tracer, "Params", RawParams);
170 (Server.*Handler)(P);
171 };
172 }
173
174private:
Sam McCalle2f3a732018-10-24 14:26:26 +0000175 // Function object to reply to an LSP call.
176 // Each instance must be called exactly once, otherwise:
177 // - the bug is logged, and (in debug mode) an assert will fire
178 // - if there was no reply, an error reply is sent
179 // - if there were multiple replies, only the first is sent
180 class ReplyOnce {
181 std::atomic<bool> Replied = {false};
Sam McCalld7babe42018-10-24 15:18:40 +0000182 std::chrono::steady_clock::time_point Start;
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000183 llvm::json::Value ID;
Sam McCalle2f3a732018-10-24 14:26:26 +0000184 std::string Method;
185 ClangdLSPServer *Server; // Null when moved-from.
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000186 llvm::json::Object *TraceArgs;
Sam McCalle2f3a732018-10-24 14:26:26 +0000187
188 public:
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000189 ReplyOnce(const llvm::json::Value &ID, llvm::StringRef Method,
190 ClangdLSPServer *Server, llvm::json::Object *TraceArgs)
Sam McCalld7babe42018-10-24 15:18:40 +0000191 : Start(std::chrono::steady_clock::now()), ID(ID), Method(Method),
192 Server(Server), TraceArgs(TraceArgs) {
Sam McCalle2f3a732018-10-24 14:26:26 +0000193 assert(Server);
194 }
195 ReplyOnce(ReplyOnce &&Other)
Sam McCalld7babe42018-10-24 15:18:40 +0000196 : Replied(Other.Replied.load()), Start(Other.Start),
197 ID(std::move(Other.ID)), Method(std::move(Other.Method)),
198 Server(Other.Server), TraceArgs(Other.TraceArgs) {
Sam McCalle2f3a732018-10-24 14:26:26 +0000199 Other.Server = nullptr;
200 }
Ilya Biryukov22fa4652019-01-03 13:28:05 +0000201 ReplyOnce &operator=(ReplyOnce &&) = delete;
Sam McCalle2f3a732018-10-24 14:26:26 +0000202 ReplyOnce(const ReplyOnce &) = delete;
Ilya Biryukov22fa4652019-01-03 13:28:05 +0000203 ReplyOnce &operator=(const ReplyOnce &) = delete;
Sam McCalle2f3a732018-10-24 14:26:26 +0000204
205 ~ReplyOnce() {
206 if (Server && !Replied) {
207 elog("No reply to message {0}({1})", Method, ID);
208 assert(false && "must reply to all calls!");
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000209 (*this)(llvm::make_error<LSPError>("server failed to reply",
210 ErrorCode::InternalError));
Sam McCalle2f3a732018-10-24 14:26:26 +0000211 }
212 }
213
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000214 void operator()(llvm::Expected<llvm::json::Value> Reply) {
Sam McCalle2f3a732018-10-24 14:26:26 +0000215 assert(Server && "moved-from!");
216 if (Replied.exchange(true)) {
217 elog("Replied twice to message {0}({1})", Method, ID);
218 assert(false && "must reply to each call only once!");
219 return;
220 }
Sam McCalld7babe42018-10-24 15:18:40 +0000221 auto Duration = std::chrono::steady_clock::now() - Start;
222 if (Reply) {
223 log("--> reply:{0}({1}) {2:ms}", Method, ID, Duration);
224 if (TraceArgs)
Sam McCalle2f3a732018-10-24 14:26:26 +0000225 (*TraceArgs)["Reply"] = *Reply;
Sam McCalld7babe42018-10-24 15:18:40 +0000226 std::lock_guard<std::mutex> Lock(Server->TranspWriter);
227 Server->Transp.reply(std::move(ID), std::move(Reply));
228 } else {
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000229 llvm::Error Err = Reply.takeError();
Sam McCalld7babe42018-10-24 15:18:40 +0000230 log("--> reply:{0}({1}) {2:ms}, error: {3}", Method, ID, Duration, Err);
231 if (TraceArgs)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000232 (*TraceArgs)["Error"] = llvm::to_string(Err);
Sam McCalld7babe42018-10-24 15:18:40 +0000233 std::lock_guard<std::mutex> Lock(Server->TranspWriter);
234 Server->Transp.reply(std::move(ID), std::move(Err));
Sam McCalle2f3a732018-10-24 14:26:26 +0000235 }
Sam McCalle2f3a732018-10-24 14:26:26 +0000236 }
237 };
238
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000239 llvm::StringMap<std::function<void(llvm::json::Value)>> Notifications;
240 llvm::StringMap<std::function<void(llvm::json::Value, ReplyOnce)>> Calls;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000241
242 // Method calls may be cancelled by ID, so keep track of their state.
243 // This needs a mutex: handlers may finish on a different thread, and that's
244 // when we clean up entries in the map.
245 mutable std::mutex RequestCancelersMutex;
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000246 llvm::StringMap<std::pair<Canceler, /*Cookie*/ unsigned>> RequestCancelers;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000247 unsigned NextRequestCookie = 0; // To disambiguate reused IDs, see below.
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000248 void onCancel(const llvm::json::Value &Params) {
249 const llvm::json::Value *ID = nullptr;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000250 if (auto *O = Params.getAsObject())
251 ID = O->get("id");
252 if (!ID) {
253 elog("Bad cancellation request: {0}", Params);
254 return;
255 }
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000256 auto StrID = llvm::to_string(*ID);
Sam McCall2c30fbc2018-10-18 12:32:04 +0000257 std::lock_guard<std::mutex> Lock(RequestCancelersMutex);
258 auto It = RequestCancelers.find(StrID);
259 if (It != RequestCancelers.end())
260 It->second.first(); // Invoke the canceler.
261 }
262 // We run cancelable requests in a context that does two things:
263 // - allows cancellation using RequestCancelers[ID]
264 // - cleans up the entry in RequestCancelers when it's no longer needed
265 // If a client reuses an ID, the last wins and the first cannot be canceled.
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000266 Context cancelableRequestContext(const llvm::json::Value &ID) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000267 auto Task = cancelableTask();
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000268 auto StrID = llvm::to_string(ID); // JSON-serialize ID for map key.
Sam McCall2c30fbc2018-10-18 12:32:04 +0000269 auto Cookie = NextRequestCookie++; // No lock, only called on main thread.
270 {
271 std::lock_guard<std::mutex> Lock(RequestCancelersMutex);
272 RequestCancelers[StrID] = {std::move(Task.second), Cookie};
273 }
274 // When the request ends, we can clean up the entry we just added.
275 // The cookie lets us check that it hasn't been overwritten due to ID
276 // reuse.
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000277 return Task.first.derive(llvm::make_scope_exit([this, StrID, Cookie] {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000278 std::lock_guard<std::mutex> Lock(RequestCancelersMutex);
279 auto It = RequestCancelers.find(StrID);
280 if (It != RequestCancelers.end() && It->second.second == Cookie)
281 RequestCancelers.erase(It);
282 }));
283 }
284
285 ClangdLSPServer &Server;
286};
287
288// call(), notify(), and reply() wrap the Transport, adding logging and locking.
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000289void ClangdLSPServer::call(llvm::StringRef Method, llvm::json::Value Params) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000290 auto ID = NextCallID++;
291 log("--> {0}({1})", Method, ID);
292 // We currently don't handle responses, so no need to store ID anywhere.
293 std::lock_guard<std::mutex> Lock(TranspWriter);
294 Transp.call(Method, std::move(Params), ID);
295}
296
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000297void ClangdLSPServer::notify(llvm::StringRef Method, llvm::json::Value Params) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000298 log("--> {0}", Method);
299 std::lock_guard<std::mutex> Lock(TranspWriter);
300 Transp.notify(Method, std::move(Params));
301}
302
Sam McCall2c30fbc2018-10-18 12:32:04 +0000303void ClangdLSPServer::onInitialize(const InitializeParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000304 Callback<llvm::json::Value> Reply) {
Sam McCall0d9b40f2018-10-19 15:42:23 +0000305 if (Params.rootUri && *Params.rootUri)
306 ClangdServerOpts.WorkspaceRoot = Params.rootUri->file();
307 else if (Params.rootPath && !Params.rootPath->empty())
308 ClangdServerOpts.WorkspaceRoot = *Params.rootPath;
Sam McCall3d0adbe2018-10-18 14:41:50 +0000309 if (Server)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000310 return Reply(llvm::make_error<LSPError>("server already initialized",
311 ErrorCode::InvalidRequest));
Sam McCallbc904612018-10-25 04:22:52 +0000312 if (const auto &Dir = Params.initializationOptions.compilationDatabasePath)
313 CompileCommandsDir = Dir;
Sam McCallc55d09a2018-11-02 13:09:36 +0000314 if (UseDirBasedCDB)
315 BaseCDB = llvm::make_unique<DirectoryBasedGlobalCompilationDatabase>(
316 CompileCommandsDir);
Kadir Cetinkayabe6b35d2019-01-22 09:10:20 +0000317 CDB.emplace(BaseCDB.get(), Params.initializationOptions.fallbackFlags,
318 ClangdServerOpts.ResourceDir);
Sam McCallc55d09a2018-11-02 13:09:36 +0000319 Server.emplace(*CDB, FSProvider, static_cast<DiagnosticsConsumer &>(*this),
320 ClangdServerOpts);
Sam McCallbc904612018-10-25 04:22:52 +0000321 applyConfiguration(Params.initializationOptions.ConfigSettings);
Simon Marchi88016782018-08-01 11:28:49 +0000322
Sam McCallbf6a2fc2018-10-17 07:33:42 +0000323 CCOpts.EnableSnippets = Params.capabilities.CompletionSnippets;
324 DiagOpts.EmbedFixesInDiagnostics = Params.capabilities.DiagnosticFixes;
325 DiagOpts.SendDiagnosticCategory = Params.capabilities.DiagnosticCategory;
326 if (Params.capabilities.WorkspaceSymbolKinds)
327 SupportedSymbolKinds |= *Params.capabilities.WorkspaceSymbolKinds;
328 if (Params.capabilities.CompletionItemKinds)
329 SupportedCompletionItemKinds |= *Params.capabilities.CompletionItemKinds;
330 SupportsCodeAction = Params.capabilities.CodeActionStructure;
Ilya Biryukov19d75602018-11-23 15:21:19 +0000331 SupportsHierarchicalDocumentSymbol =
332 Params.capabilities.HierarchicalDocumentSymbol;
Haojian Wub6188492018-12-20 15:39:12 +0000333 SupportFileStatus = Params.initializationOptions.FileStatus;
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000334 Reply(llvm::json::Object{
Sam McCall0930ab02017-11-07 15:49:35 +0000335 {{"capabilities",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000336 llvm::json::Object{
Simon Marchi98082622018-03-26 14:41:40 +0000337 {"textDocumentSync", (int)TextDocumentSyncKind::Incremental},
Sam McCall0930ab02017-11-07 15:49:35 +0000338 {"documentFormattingProvider", true},
339 {"documentRangeFormattingProvider", true},
340 {"documentOnTypeFormattingProvider",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000341 llvm::json::Object{
Sam McCall0930ab02017-11-07 15:49:35 +0000342 {"firstTriggerCharacter", "}"},
343 {"moreTriggerCharacter", {}},
344 }},
345 {"codeActionProvider", true},
346 {"completionProvider",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000347 llvm::json::Object{
Sam McCall0930ab02017-11-07 15:49:35 +0000348 {"resolveProvider", false},
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000349 // We do extra checks for '>' and ':' in completion to only
350 // trigger on '->' and '::'.
Sam McCall0930ab02017-11-07 15:49:35 +0000351 {"triggerCharacters", {".", ">", ":"}},
352 }},
353 {"signatureHelpProvider",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000354 llvm::json::Object{
Sam McCall0930ab02017-11-07 15:49:35 +0000355 {"triggerCharacters", {"(", ","}},
356 }},
Sam McCall866ba2c2019-02-01 11:26:13 +0000357 {"declarationProvider", true},
Sam McCall0930ab02017-11-07 15:49:35 +0000358 {"definitionProvider", true},
Ilya Biryukov0e6a51f2017-12-12 12:27:47 +0000359 {"documentHighlightProvider", true},
Marc-Andre Laperle3e618ed2018-02-16 21:38:15 +0000360 {"hoverProvider", true},
Haojian Wu345099c2017-11-09 11:30:04 +0000361 {"renameProvider", true},
Marc-Andre Laperle1be69702018-07-05 19:35:01 +0000362 {"documentSymbolProvider", true},
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000363 {"workspaceSymbolProvider", true},
Sam McCall1ad142f2018-09-05 11:53:07 +0000364 {"referencesProvider", true},
Sam McCall0930ab02017-11-07 15:49:35 +0000365 {"executeCommandProvider",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000366 llvm::json::Object{
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000367 {"commands",
368 {ExecuteCommandParams::CLANGD_APPLY_FIX_COMMAND,
369 ExecuteCommandParams::CLANGD_APPLY_TWEAK}},
Sam McCall0930ab02017-11-07 15:49:35 +0000370 }},
371 }}}});
Ilya Biryukovafb55542017-05-16 14:40:30 +0000372}
373
Sam McCall2c30fbc2018-10-18 12:32:04 +0000374void ClangdLSPServer::onShutdown(const ShutdownParams &Params,
375 Callback<std::nullptr_t> Reply) {
Ilya Biryukov0d9b8a32017-10-25 08:45:41 +0000376 // Do essentially nothing, just say we're ready to exit.
377 ShutdownRequestReceived = true;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000378 Reply(nullptr);
Sam McCall8a5dded2017-10-12 13:29:58 +0000379}
Ilya Biryukovafb55542017-05-16 14:40:30 +0000380
Sam McCall422c8282018-11-26 16:00:11 +0000381// sync is a clangd extension: it blocks until all background work completes.
382// It blocks the calling thread, so no messages are processed until it returns!
383void ClangdLSPServer::onSync(const NoParams &Params,
384 Callback<std::nullptr_t> Reply) {
385 if (Server->blockUntilIdleForTest(/*TimeoutSeconds=*/60))
386 Reply(nullptr);
387 else
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000388 Reply(llvm::createStringError(llvm::inconvertibleErrorCode(),
389 "Not idle after a minute"));
Sam McCall422c8282018-11-26 16:00:11 +0000390}
391
Sam McCall2c30fbc2018-10-18 12:32:04 +0000392void ClangdLSPServer::onDocumentDidOpen(
393 const DidOpenTextDocumentParams &Params) {
Simon Marchi9569fd52018-03-16 14:30:42 +0000394 PathRef File = Params.textDocument.uri.file();
Ilya Biryukovb10ef472018-06-13 09:20:41 +0000395
Sam McCall2c30fbc2018-10-18 12:32:04 +0000396 const std::string &Contents = Params.textDocument.text;
Simon Marchi9569fd52018-03-16 14:30:42 +0000397
Simon Marchi98082622018-03-26 14:41:40 +0000398 DraftMgr.addDraft(File, Contents);
Ilya Biryukov652364b2018-09-26 05:48:29 +0000399 Server->addDocument(File, Contents, WantDiagnostics::Yes);
Ilya Biryukovafb55542017-05-16 14:40:30 +0000400}
401
Sam McCall2c30fbc2018-10-18 12:32:04 +0000402void ClangdLSPServer::onDocumentDidChange(
403 const DidChangeTextDocumentParams &Params) {
Eric Liu51fed182018-02-22 18:40:39 +0000404 auto WantDiags = WantDiagnostics::Auto;
405 if (Params.wantDiagnostics.hasValue())
406 WantDiags = Params.wantDiagnostics.getValue() ? WantDiagnostics::Yes
407 : WantDiagnostics::No;
Simon Marchi9569fd52018-03-16 14:30:42 +0000408
409 PathRef File = Params.textDocument.uri.file();
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000410 llvm::Expected<std::string> Contents =
Simon Marchi98082622018-03-26 14:41:40 +0000411 DraftMgr.updateDraft(File, Params.contentChanges);
412 if (!Contents) {
413 // If this fails, we are most likely going to be not in sync anymore with
414 // the client. It is better to remove the draft and let further operations
415 // fail rather than giving wrong results.
416 DraftMgr.removeDraft(File);
Ilya Biryukov652364b2018-09-26 05:48:29 +0000417 Server->removeDocument(File);
Sam McCallbed58852018-07-11 10:35:11 +0000418 elog("Failed to update {0}: {1}", File, Contents.takeError());
Simon Marchi98082622018-03-26 14:41:40 +0000419 return;
420 }
Simon Marchi9569fd52018-03-16 14:30:42 +0000421
Ilya Biryukov652364b2018-09-26 05:48:29 +0000422 Server->addDocument(File, *Contents, WantDiags);
Ilya Biryukovafb55542017-05-16 14:40:30 +0000423}
424
Sam McCall2c30fbc2018-10-18 12:32:04 +0000425void ClangdLSPServer::onFileEvent(const DidChangeWatchedFilesParams &Params) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000426 Server->onFileEvent(Params);
Marc-Andre Laperlebf114242017-10-02 18:00:37 +0000427}
428
Sam McCall2c30fbc2018-10-18 12:32:04 +0000429void ClangdLSPServer::onCommand(const ExecuteCommandParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000430 Callback<llvm::json::Value> Reply) {
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000431 auto ApplyEdit = [this](WorkspaceEdit WE) {
Eric Liuc5105f92018-02-16 14:15:55 +0000432 ApplyWorkspaceEditParams Edit;
433 Edit.edit = std::move(WE);
Eric Liuc5105f92018-02-16 14:15:55 +0000434 // Ideally, we would wait for the response and if there is no error, we
435 // would reply success/failure to the original RPC.
436 call("workspace/applyEdit", Edit);
437 };
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +0000438 if (Params.command == ExecuteCommandParams::CLANGD_APPLY_FIX_COMMAND &&
439 Params.workspaceEdit) {
440 // The flow for "apply-fix" :
441 // 1. We publish a diagnostic, including fixits
442 // 2. The user clicks on the diagnostic, the editor asks us for code actions
443 // 3. We send code actions, with the fixit embedded as context
444 // 4. The user selects the fixit, the editor asks us to apply it
445 // 5. We unwrap the changes and send them back to the editor
446 // 6. The editor applies the changes (applyEdit), and sends us a reply (but
447 // we ignore it)
448
Sam McCall2c30fbc2018-10-18 12:32:04 +0000449 Reply("Fix applied.");
Eric Liuc5105f92018-02-16 14:15:55 +0000450 ApplyEdit(*Params.workspaceEdit);
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000451 } else if (Params.command == ExecuteCommandParams::CLANGD_APPLY_TWEAK &&
452 Params.tweakArgs) {
453 auto Code = DraftMgr.getDraft(Params.tweakArgs->file.file());
454 if (!Code)
455 return Reply(llvm::createStringError(
456 llvm::inconvertibleErrorCode(),
457 "trying to apply a code action for a non-added file"));
458
459 auto Action = [ApplyEdit](decltype(Reply) Reply, URIForFile File,
460 std::string Code,
461 llvm::Expected<tooling::Replacements> R) {
462 if (!R)
463 return Reply(R.takeError());
464
465 WorkspaceEdit WE;
466 WE.changes.emplace();
467 (*WE.changes)[File.uri()] = replacementsToEdits(Code, *R);
468
469 Reply("Fix applied.");
470 ApplyEdit(std::move(WE));
471 };
472 Server->applyTweak(Params.tweakArgs->file.file(),
473 Params.tweakArgs->selection, Params.tweakArgs->tweakID,
474 Bind(Action, std::move(Reply), Params.tweakArgs->file,
475 std::move(*Code)));
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +0000476 } else {
477 // We should not get here because ExecuteCommandParams would not have
478 // parsed in the first place and this handler should not be called. But if
479 // more commands are added, this will be here has a safe guard.
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000480 Reply(llvm::make_error<LSPError>(
481 llvm::formatv("Unsupported command \"{0}\".", Params.command).str(),
Sam McCall2c30fbc2018-10-18 12:32:04 +0000482 ErrorCode::InvalidParams));
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +0000483 }
484}
485
Sam McCall2c30fbc2018-10-18 12:32:04 +0000486void ClangdLSPServer::onWorkspaceSymbol(
487 const WorkspaceSymbolParams &Params,
488 Callback<std::vector<SymbolInformation>> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000489 Server->workspaceSymbols(
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000490 Params.query, CCOpts.Limit,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000491 Bind(
492 [this](decltype(Reply) Reply,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000493 llvm::Expected<std::vector<SymbolInformation>> Items) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000494 if (!Items)
495 return Reply(Items.takeError());
496 for (auto &Sym : *Items)
497 Sym.kind = adjustKindToCapability(Sym.kind, SupportedSymbolKinds);
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000498
Sam McCall2c30fbc2018-10-18 12:32:04 +0000499 Reply(std::move(*Items));
500 },
501 std::move(Reply)));
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000502}
503
Sam McCall2c30fbc2018-10-18 12:32:04 +0000504void ClangdLSPServer::onRename(const RenameParams &Params,
505 Callback<WorkspaceEdit> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000506 Path File = Params.textDocument.uri.file();
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000507 llvm::Optional<std::string> Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000508 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000509 return Reply(llvm::make_error<LSPError>(
510 "onRename called for non-added file", ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000511
Ilya Biryukov652364b2018-09-26 05:48:29 +0000512 Server->rename(
Ilya Biryukov2c5e8e82018-02-15 13:15:47 +0000513 File, Params.position, Params.newName,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000514 Bind(
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000515 [File, Code, Params](
516 decltype(Reply) Reply,
517 llvm::Expected<std::vector<tooling::Replacement>> Replacements) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000518 if (!Replacements)
519 return Reply(Replacements.takeError());
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000520
Sam McCall2c30fbc2018-10-18 12:32:04 +0000521 // Turn the replacements into the format specified by the Language
522 // Server Protocol. Fuse them into one big JSON array.
523 std::vector<TextEdit> Edits;
524 for (const auto &R : *Replacements)
525 Edits.push_back(replacementToEdit(*Code, R));
526 WorkspaceEdit WE;
527 WE.changes = {{Params.textDocument.uri.uri(), Edits}};
528 Reply(WE);
529 },
530 std::move(Reply)));
Haojian Wu345099c2017-11-09 11:30:04 +0000531}
532
Sam McCall2c30fbc2018-10-18 12:32:04 +0000533void ClangdLSPServer::onDocumentDidClose(
534 const DidCloseTextDocumentParams &Params) {
Simon Marchi9569fd52018-03-16 14:30:42 +0000535 PathRef File = Params.textDocument.uri.file();
536 DraftMgr.removeDraft(File);
Ilya Biryukov652364b2018-09-26 05:48:29 +0000537 Server->removeDocument(File);
Ilya Biryukovafb55542017-05-16 14:40:30 +0000538}
539
Sam McCall4db732a2017-09-30 10:08:52 +0000540void ClangdLSPServer::onDocumentOnTypeFormatting(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000541 const DocumentOnTypeFormattingParams &Params,
542 Callback<std::vector<TextEdit>> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000543 auto File = Params.textDocument.uri.file();
Simon Marchi9569fd52018-03-16 14:30:42 +0000544 auto Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000545 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000546 return Reply(llvm::make_error<LSPError>(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000547 "onDocumentOnTypeFormatting called for non-added file",
548 ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000549
Ilya Biryukov652364b2018-09-26 05:48:29 +0000550 auto ReplacementsOrError = Server->formatOnType(*Code, File, Params.position);
Raoul Wols212bcf82017-12-12 20:25:06 +0000551 if (ReplacementsOrError)
Sam McCall2c30fbc2018-10-18 12:32:04 +0000552 Reply(replacementsToEdits(*Code, ReplacementsOrError.get()));
Raoul Wols212bcf82017-12-12 20:25:06 +0000553 else
Sam McCall2c30fbc2018-10-18 12:32:04 +0000554 Reply(ReplacementsOrError.takeError());
Ilya Biryukovafb55542017-05-16 14:40:30 +0000555}
556
Sam McCall4db732a2017-09-30 10:08:52 +0000557void ClangdLSPServer::onDocumentRangeFormatting(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000558 const DocumentRangeFormattingParams &Params,
559 Callback<std::vector<TextEdit>> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000560 auto File = Params.textDocument.uri.file();
Simon Marchi9569fd52018-03-16 14:30:42 +0000561 auto Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000562 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000563 return Reply(llvm::make_error<LSPError>(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000564 "onDocumentRangeFormatting called for non-added file",
565 ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000566
Ilya Biryukov652364b2018-09-26 05:48:29 +0000567 auto ReplacementsOrError = Server->formatRange(*Code, File, Params.range);
Raoul Wols212bcf82017-12-12 20:25:06 +0000568 if (ReplacementsOrError)
Sam McCall2c30fbc2018-10-18 12:32:04 +0000569 Reply(replacementsToEdits(*Code, ReplacementsOrError.get()));
Raoul Wols212bcf82017-12-12 20:25:06 +0000570 else
Sam McCall2c30fbc2018-10-18 12:32:04 +0000571 Reply(ReplacementsOrError.takeError());
Ilya Biryukovafb55542017-05-16 14:40:30 +0000572}
573
Sam McCall2c30fbc2018-10-18 12:32:04 +0000574void ClangdLSPServer::onDocumentFormatting(
575 const DocumentFormattingParams &Params,
576 Callback<std::vector<TextEdit>> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000577 auto File = Params.textDocument.uri.file();
Simon Marchi9569fd52018-03-16 14:30:42 +0000578 auto Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000579 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000580 return Reply(llvm::make_error<LSPError>(
581 "onDocumentFormatting called for non-added file",
582 ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000583
Ilya Biryukov652364b2018-09-26 05:48:29 +0000584 auto ReplacementsOrError = Server->formatFile(*Code, File);
Raoul Wols212bcf82017-12-12 20:25:06 +0000585 if (ReplacementsOrError)
Sam McCall2c30fbc2018-10-18 12:32:04 +0000586 Reply(replacementsToEdits(*Code, ReplacementsOrError.get()));
Raoul Wols212bcf82017-12-12 20:25:06 +0000587 else
Sam McCall2c30fbc2018-10-18 12:32:04 +0000588 Reply(ReplacementsOrError.takeError());
Sam McCall4db732a2017-09-30 10:08:52 +0000589}
590
Ilya Biryukov19d75602018-11-23 15:21:19 +0000591/// The functions constructs a flattened view of the DocumentSymbol hierarchy.
592/// Used by the clients that do not support the hierarchical view.
593static std::vector<SymbolInformation>
594flattenSymbolHierarchy(llvm::ArrayRef<DocumentSymbol> Symbols,
595 const URIForFile &FileURI) {
596
597 std::vector<SymbolInformation> Results;
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000598 std::function<void(const DocumentSymbol &, llvm::StringRef)> Process =
599 [&](const DocumentSymbol &S, llvm::Optional<llvm::StringRef> ParentName) {
Ilya Biryukov19d75602018-11-23 15:21:19 +0000600 SymbolInformation SI;
601 SI.containerName = ParentName ? "" : *ParentName;
602 SI.name = S.name;
603 SI.kind = S.kind;
604 SI.location.range = S.range;
605 SI.location.uri = FileURI;
606
607 Results.push_back(std::move(SI));
608 std::string FullName =
609 !ParentName ? S.name : (ParentName->str() + "::" + S.name);
610 for (auto &C : S.children)
611 Process(C, /*ParentName=*/FullName);
612 };
613 for (auto &S : Symbols)
614 Process(S, /*ParentName=*/"");
615 return Results;
616}
617
618void ClangdLSPServer::onDocumentSymbol(const DocumentSymbolParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000619 Callback<llvm::json::Value> Reply) {
Ilya Biryukov19d75602018-11-23 15:21:19 +0000620 URIForFile FileURI = Params.textDocument.uri;
Ilya Biryukov652364b2018-09-26 05:48:29 +0000621 Server->documentSymbols(
Marc-Andre Laperle1be69702018-07-05 19:35:01 +0000622 Params.textDocument.uri.file(),
Sam McCall2c30fbc2018-10-18 12:32:04 +0000623 Bind(
Ilya Biryukov19d75602018-11-23 15:21:19 +0000624 [this, FileURI](decltype(Reply) Reply,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000625 llvm::Expected<std::vector<DocumentSymbol>> Items) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000626 if (!Items)
627 return Reply(Items.takeError());
Ilya Biryukov19d75602018-11-23 15:21:19 +0000628 adjustSymbolKinds(*Items, SupportedSymbolKinds);
629 if (SupportsHierarchicalDocumentSymbol)
630 return Reply(std::move(*Items));
631 else
632 return Reply(flattenSymbolHierarchy(*Items, FileURI));
Sam McCall2c30fbc2018-10-18 12:32:04 +0000633 },
634 std::move(Reply)));
Marc-Andre Laperle1be69702018-07-05 19:35:01 +0000635}
636
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000637static llvm::Optional<Command> asCommand(const CodeAction &Action) {
Sam McCall20841d42018-10-16 16:29:41 +0000638 Command Cmd;
639 if (Action.command && Action.edit)
Sam McCallc008af62018-10-20 15:30:37 +0000640 return None; // Not representable. (We never emit these anyway).
Sam McCall20841d42018-10-16 16:29:41 +0000641 if (Action.command) {
642 Cmd = *Action.command;
643 } else if (Action.edit) {
644 Cmd.command = Command::CLANGD_APPLY_FIX_COMMAND;
645 Cmd.workspaceEdit = *Action.edit;
646 } else {
Sam McCallc008af62018-10-20 15:30:37 +0000647 return None;
Sam McCall20841d42018-10-16 16:29:41 +0000648 }
649 Cmd.title = Action.title;
650 if (Action.kind && *Action.kind == CodeAction::QUICKFIX_KIND)
651 Cmd.title = "Apply fix: " + Cmd.title;
652 return Cmd;
653}
654
Sam McCall2c30fbc2018-10-18 12:32:04 +0000655void ClangdLSPServer::onCodeAction(const CodeActionParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000656 Callback<llvm::json::Value> Reply) {
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000657 URIForFile File = Params.textDocument.uri;
658 auto Code = DraftMgr.getDraft(File.file());
Sam McCall2c30fbc2018-10-18 12:32:04 +0000659 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000660 return Reply(llvm::make_error<LSPError>(
661 "onCodeAction called for non-added file", ErrorCode::InvalidParams));
Sam McCall20841d42018-10-16 16:29:41 +0000662 // We provide a code action for Fixes on the specified diagnostics.
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000663 std::vector<CodeAction> FixIts;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000664 for (const Diagnostic &D : Params.context.diagnostics) {
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000665 for (auto &F : getFixes(File.file(), D)) {
666 FixIts.push_back(toCodeAction(F, Params.textDocument.uri));
667 FixIts.back().diagnostics = {D};
Sam McCalldd0566b2017-11-06 15:40:30 +0000668 }
Ilya Biryukovafb55542017-05-16 14:40:30 +0000669 }
Sam McCall20841d42018-10-16 16:29:41 +0000670
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000671 // Now enumerate the semantic code actions.
672 auto ConsumeActions =
673 [this](decltype(Reply) Reply, URIForFile File, std::string Code,
674 Range Selection, std::vector<CodeAction> FixIts,
675 llvm::Expected<std::vector<ClangdServer::TweakRef>> Tweaks) {
Ilya Biryukovc6ed7782019-01-30 14:24:17 +0000676 if (!Tweaks)
677 return Reply(Tweaks.takeError());
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000678
679 std::vector<CodeAction> Actions = std::move(FixIts);
680 Actions.reserve(Actions.size() + Tweaks->size());
681 for (const auto &T : *Tweaks)
682 Actions.push_back(toCodeAction(T, File, Selection));
683
684 if (SupportsCodeAction)
685 return Reply(llvm::json::Array(Actions));
686 std::vector<Command> Commands;
687 for (const auto &Action : Actions) {
688 if (auto Command = asCommand(Action))
689 Commands.push_back(std::move(*Command));
690 }
691 return Reply(llvm::json::Array(Commands));
692 };
693
694 Server->enumerateTweaks(File.file(), Params.range,
Ilya Biryukovc9409c62019-01-30 09:39:01 +0000695 Bind(ConsumeActions, std::move(Reply), File,
696 std::move(*Code), Params.range,
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000697 std::move(FixIts)));
Ilya Biryukovafb55542017-05-16 14:40:30 +0000698}
699
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000700void ClangdLSPServer::onCompletion(const CompletionParams &Params,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000701 Callback<CompletionList> Reply) {
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000702 if (!shouldRunCompletion(Params))
703 return Reply(llvm::make_error<IgnoreCompletionError>());
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000704 Server->codeComplete(Params.textDocument.uri.file(), Params.position, CCOpts,
705 Bind(
706 [this](decltype(Reply) Reply,
707 llvm::Expected<CodeCompleteResult> List) {
708 if (!List)
709 return Reply(List.takeError());
710 CompletionList LSPList;
711 LSPList.isIncomplete = List->HasMore;
712 for (const auto &R : List->Completions) {
713 CompletionItem C = R.render(CCOpts);
714 C.kind = adjustKindToCapability(
715 C.kind, SupportedCompletionItemKinds);
716 LSPList.items.push_back(std::move(C));
717 }
718 return Reply(std::move(LSPList));
719 },
720 std::move(Reply)));
Ilya Biryukovd9bdfe02017-10-06 11:54:17 +0000721}
722
Sam McCall2c30fbc2018-10-18 12:32:04 +0000723void ClangdLSPServer::onSignatureHelp(const TextDocumentPositionParams &Params,
724 Callback<SignatureHelp> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000725 Server->signatureHelp(Params.textDocument.uri.file(), Params.position,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000726 std::move(Reply));
Ilya Biryukov652364b2018-09-26 05:48:29 +0000727}
728
Sam McCall0dbab7f2019-02-02 05:56:00 +0000729// Go to definition has a toggle function: if def and decl are distinct, then
730// the first press gives you the def, the second gives you the matching def.
731// getToggle() returns the counterpart location that under the cursor.
732//
733// We return the toggled location alone (ignoring other symbols) to encourage
734// editors to "bounce" quickly between locations, without showing a menu.
735static Location *getToggle(const TextDocumentPositionParams &Point,
736 LocatedSymbol &Sym) {
737 // Toggle only makes sense with two distinct locations.
738 if (!Sym.Definition || *Sym.Definition == Sym.PreferredDeclaration)
739 return nullptr;
740 if (Sym.Definition->uri.file() == Point.textDocument.uri.file() &&
741 Sym.Definition->range.contains(Point.position))
742 return &Sym.PreferredDeclaration;
743 if (Sym.PreferredDeclaration.uri.file() == Point.textDocument.uri.file() &&
744 Sym.PreferredDeclaration.range.contains(Point.position))
745 return &*Sym.Definition;
746 return nullptr;
747}
748
Sam McCall2c30fbc2018-10-18 12:32:04 +0000749void ClangdLSPServer::onGoToDefinition(const TextDocumentPositionParams &Params,
750 Callback<std::vector<Location>> Reply) {
Sam McCall866ba2c2019-02-01 11:26:13 +0000751 Server->locateSymbolAt(
752 Params.textDocument.uri.file(), Params.position,
753 Bind(
Sam McCall0dbab7f2019-02-02 05:56:00 +0000754 [&, Params](decltype(Reply) Reply,
755 llvm::Expected<std::vector<LocatedSymbol>> Symbols) {
Sam McCall866ba2c2019-02-01 11:26:13 +0000756 if (!Symbols)
757 return Reply(Symbols.takeError());
758 std::vector<Location> Defs;
Sam McCall0dbab7f2019-02-02 05:56:00 +0000759 for (auto &S : *Symbols) {
760 if (Location *Toggle = getToggle(Params, S))
761 return Reply(std::vector<Location>{std::move(*Toggle)});
Sam McCall866ba2c2019-02-01 11:26:13 +0000762 Defs.push_back(S.Definition.getValueOr(S.PreferredDeclaration));
Sam McCall0dbab7f2019-02-02 05:56:00 +0000763 }
Sam McCall866ba2c2019-02-01 11:26:13 +0000764 Reply(std::move(Defs));
765 },
766 std::move(Reply)));
767}
768
769void ClangdLSPServer::onGoToDeclaration(
770 const TextDocumentPositionParams &Params,
771 Callback<std::vector<Location>> Reply) {
772 Server->locateSymbolAt(
773 Params.textDocument.uri.file(), Params.position,
774 Bind(
Sam McCall0dbab7f2019-02-02 05:56:00 +0000775 [&, Params](decltype(Reply) Reply,
776 llvm::Expected<std::vector<LocatedSymbol>> Symbols) {
Sam McCall866ba2c2019-02-01 11:26:13 +0000777 if (!Symbols)
778 return Reply(Symbols.takeError());
779 std::vector<Location> Decls;
Sam McCall0dbab7f2019-02-02 05:56:00 +0000780 for (auto &S : *Symbols) {
781 if (Location *Toggle = getToggle(Params, S))
782 return Reply(std::vector<Location>{std::move(*Toggle)});
783 Decls.push_back(std::move(S.PreferredDeclaration));
784 }
Sam McCall866ba2c2019-02-01 11:26:13 +0000785 Reply(std::move(Decls));
786 },
787 std::move(Reply)));
Marc-Andre Laperle2cbf0372017-06-28 16:12:10 +0000788}
789
Sam McCall2c30fbc2018-10-18 12:32:04 +0000790void ClangdLSPServer::onSwitchSourceHeader(const TextDocumentIdentifier &Params,
791 Callback<std::string> Reply) {
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000792 llvm::Optional<Path> Result = Server->switchSourceHeader(Params.uri.file());
Sam McCall2c30fbc2018-10-18 12:32:04 +0000793 Reply(Result ? URI::createFile(*Result).toString() : "");
Marc-Andre Laperle6571b3e2017-09-28 03:14:40 +0000794}
795
Sam McCall2c30fbc2018-10-18 12:32:04 +0000796void ClangdLSPServer::onDocumentHighlight(
797 const TextDocumentPositionParams &Params,
798 Callback<std::vector<DocumentHighlight>> Reply) {
799 Server->findDocumentHighlights(Params.textDocument.uri.file(),
800 Params.position, std::move(Reply));
Ilya Biryukov0e6a51f2017-12-12 12:27:47 +0000801}
802
Sam McCall2c30fbc2018-10-18 12:32:04 +0000803void ClangdLSPServer::onHover(const TextDocumentPositionParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000804 Callback<llvm::Optional<Hover>> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000805 Server->findHover(Params.textDocument.uri.file(), Params.position,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000806 std::move(Reply));
Marc-Andre Laperle3e618ed2018-02-16 21:38:15 +0000807}
808
Simon Marchi88016782018-08-01 11:28:49 +0000809void ClangdLSPServer::applyConfiguration(
Sam McCallbc904612018-10-25 04:22:52 +0000810 const ConfigurationSettings &Settings) {
Simon Marchiabeed662018-10-16 15:55:03 +0000811 // Per-file update to the compilation database.
Sam McCallbc904612018-10-25 04:22:52 +0000812 bool ShouldReparseOpenFiles = false;
813 for (auto &Entry : Settings.compilationDatabaseChanges) {
814 /// The opened files need to be reparsed only when some existing
815 /// entries are changed.
816 PathRef File = Entry.first;
Sam McCallc55d09a2018-11-02 13:09:36 +0000817 auto Old = CDB->getCompileCommand(File);
818 auto New =
819 tooling::CompileCommand(std::move(Entry.second.workingDirectory), File,
820 std::move(Entry.second.compilationCommand),
821 /*Output=*/"");
Sam McCall6980edb2018-11-02 14:07:51 +0000822 if (Old != New) {
Sam McCallc55d09a2018-11-02 13:09:36 +0000823 CDB->setCompileCommand(File, std::move(New));
Sam McCall6980edb2018-11-02 14:07:51 +0000824 ShouldReparseOpenFiles = true;
825 }
Alex Lorenzf8087862018-08-01 17:39:29 +0000826 }
Sam McCallbc904612018-10-25 04:22:52 +0000827 if (ShouldReparseOpenFiles)
828 reparseOpenedFiles();
Simon Marchi5178f922018-02-22 14:00:39 +0000829}
830
Simon Marchi88016782018-08-01 11:28:49 +0000831// FIXME: This function needs to be properly tested.
832void ClangdLSPServer::onChangeConfiguration(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000833 const DidChangeConfigurationParams &Params) {
Simon Marchi88016782018-08-01 11:28:49 +0000834 applyConfiguration(Params.settings);
835}
836
Sam McCall2c30fbc2018-10-18 12:32:04 +0000837void ClangdLSPServer::onReference(const ReferenceParams &Params,
838 Callback<std::vector<Location>> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000839 Server->findReferences(Params.textDocument.uri.file(), Params.position,
Haojian Wuc34f0222019-01-14 18:11:09 +0000840 CCOpts.Limit, std::move(Reply));
Sam McCall1ad142f2018-09-05 11:53:07 +0000841}
842
Jan Korousb4067012018-11-27 16:40:46 +0000843void ClangdLSPServer::onSymbolInfo(const TextDocumentPositionParams &Params,
844 Callback<std::vector<SymbolDetails>> Reply) {
845 Server->symbolInfo(Params.textDocument.uri.file(), Params.position,
846 std::move(Reply));
847}
848
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000849ClangdLSPServer::ClangdLSPServer(class Transport &Transp,
Haojian Wu1ca0c582019-01-22 09:39:05 +0000850 const FileSystemProvider &FSProvider,
Sam McCalladccab62017-11-23 16:58:22 +0000851 const clangd::CodeCompleteOptions &CCOpts,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000852 llvm::Optional<Path> CompileCommandsDir,
Sam McCallc55d09a2018-11-02 13:09:36 +0000853 bool UseDirBasedCDB,
Sam McCall7363a2f2018-03-05 17:28:54 +0000854 const ClangdServer::Options &Opts)
Haojian Wu1ca0c582019-01-22 09:39:05 +0000855 : Transp(Transp), MsgHandler(new MessageHandler(*this)),
856 FSProvider(FSProvider), CCOpts(CCOpts),
Sam McCalld1c9d112018-10-23 14:19:54 +0000857 SupportedSymbolKinds(defaultSymbolKinds()),
Kadir Cetinkaya133d46f2018-09-27 17:13:07 +0000858 SupportedCompletionItemKinds(defaultCompletionItemKinds()),
Sam McCallc55d09a2018-11-02 13:09:36 +0000859 UseDirBasedCDB(UseDirBasedCDB),
Sam McCall4b86bb02018-10-25 02:22:53 +0000860 CompileCommandsDir(std::move(CompileCommandsDir)),
861 ClangdServerOpts(Opts) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000862 // clang-format off
863 MsgHandler->bind("initialize", &ClangdLSPServer::onInitialize);
864 MsgHandler->bind("shutdown", &ClangdLSPServer::onShutdown);
Sam McCall422c8282018-11-26 16:00:11 +0000865 MsgHandler->bind("sync", &ClangdLSPServer::onSync);
Sam McCall2c30fbc2018-10-18 12:32:04 +0000866 MsgHandler->bind("textDocument/rangeFormatting", &ClangdLSPServer::onDocumentRangeFormatting);
867 MsgHandler->bind("textDocument/onTypeFormatting", &ClangdLSPServer::onDocumentOnTypeFormatting);
868 MsgHandler->bind("textDocument/formatting", &ClangdLSPServer::onDocumentFormatting);
869 MsgHandler->bind("textDocument/codeAction", &ClangdLSPServer::onCodeAction);
870 MsgHandler->bind("textDocument/completion", &ClangdLSPServer::onCompletion);
871 MsgHandler->bind("textDocument/signatureHelp", &ClangdLSPServer::onSignatureHelp);
872 MsgHandler->bind("textDocument/definition", &ClangdLSPServer::onGoToDefinition);
Sam McCall866ba2c2019-02-01 11:26:13 +0000873 MsgHandler->bind("textDocument/declaration", &ClangdLSPServer::onGoToDeclaration);
Sam McCall2c30fbc2018-10-18 12:32:04 +0000874 MsgHandler->bind("textDocument/references", &ClangdLSPServer::onReference);
875 MsgHandler->bind("textDocument/switchSourceHeader", &ClangdLSPServer::onSwitchSourceHeader);
876 MsgHandler->bind("textDocument/rename", &ClangdLSPServer::onRename);
877 MsgHandler->bind("textDocument/hover", &ClangdLSPServer::onHover);
878 MsgHandler->bind("textDocument/documentSymbol", &ClangdLSPServer::onDocumentSymbol);
879 MsgHandler->bind("workspace/executeCommand", &ClangdLSPServer::onCommand);
880 MsgHandler->bind("textDocument/documentHighlight", &ClangdLSPServer::onDocumentHighlight);
881 MsgHandler->bind("workspace/symbol", &ClangdLSPServer::onWorkspaceSymbol);
882 MsgHandler->bind("textDocument/didOpen", &ClangdLSPServer::onDocumentDidOpen);
883 MsgHandler->bind("textDocument/didClose", &ClangdLSPServer::onDocumentDidClose);
884 MsgHandler->bind("textDocument/didChange", &ClangdLSPServer::onDocumentDidChange);
885 MsgHandler->bind("workspace/didChangeWatchedFiles", &ClangdLSPServer::onFileEvent);
886 MsgHandler->bind("workspace/didChangeConfiguration", &ClangdLSPServer::onChangeConfiguration);
Jan Korousb4067012018-11-27 16:40:46 +0000887 MsgHandler->bind("textDocument/symbolInfo", &ClangdLSPServer::onSymbolInfo);
Sam McCall2c30fbc2018-10-18 12:32:04 +0000888 // clang-format on
889}
890
891ClangdLSPServer::~ClangdLSPServer() = default;
Ilya Biryukov38d79772017-05-16 09:38:59 +0000892
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000893bool ClangdLSPServer::run() {
Ilya Biryukovafb55542017-05-16 14:40:30 +0000894 // Run the Language Server loop.
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000895 bool CleanExit = true;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000896 if (auto Err = Transp.loop(*MsgHandler)) {
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000897 elog("Transport error: {0}", std::move(Err));
898 CleanExit = false;
899 }
Ilya Biryukovafb55542017-05-16 14:40:30 +0000900
Ilya Biryukov652364b2018-09-26 05:48:29 +0000901 // Destroy ClangdServer to ensure all worker threads finish.
902 Server.reset();
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000903 return CleanExit && ShutdownRequestReceived;
Ilya Biryukov38d79772017-05-16 09:38:59 +0000904}
905
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000906std::vector<Fix> ClangdLSPServer::getFixes(llvm::StringRef File,
Ilya Biryukov71028b82018-03-12 15:28:22 +0000907 const clangd::Diagnostic &D) {
Ilya Biryukov38d79772017-05-16 09:38:59 +0000908 std::lock_guard<std::mutex> Lock(FixItsMutex);
909 auto DiagToFixItsIter = FixItsMap.find(File);
910 if (DiagToFixItsIter == FixItsMap.end())
911 return {};
912
913 const auto &DiagToFixItsMap = DiagToFixItsIter->second;
914 auto FixItsIter = DiagToFixItsMap.find(D);
915 if (FixItsIter == DiagToFixItsMap.end())
916 return {};
917
918 return FixItsIter->second;
919}
920
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000921bool ClangdLSPServer::shouldRunCompletion(
922 const CompletionParams &Params) const {
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000923 llvm::StringRef Trigger = Params.context.triggerCharacter;
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000924 if (Params.context.triggerKind != CompletionTriggerKind::TriggerCharacter ||
925 (Trigger != ">" && Trigger != ":"))
926 return true;
927
928 auto Code = DraftMgr.getDraft(Params.textDocument.uri.file());
929 if (!Code)
930 return true; // completion code will log the error for untracked doc.
931
932 // A completion request is sent when the user types '>' or ':', but we only
933 // want to trigger on '->' and '::'. We check the preceeding character to make
934 // sure it matches what we expected.
935 // Running the lexer here would be more robust (e.g. we can detect comments
936 // and avoid triggering completion there), but we choose to err on the side
937 // of simplicity here.
938 auto Offset = positionToOffset(*Code, Params.position,
939 /*AllowColumnsBeyondLineLength=*/false);
940 if (!Offset) {
941 vlog("could not convert position '{0}' to offset for file '{1}'",
942 Params.position, Params.textDocument.uri.file());
943 return true;
944 }
945 if (*Offset < 2)
946 return false;
947
948 if (Trigger == ">")
949 return (*Code)[*Offset - 2] == '-'; // trigger only on '->'.
950 if (Trigger == ":")
951 return (*Code)[*Offset - 2] == ':'; // trigger only on '::'.
952 assert(false && "unhandled trigger character");
953 return true;
954}
955
Sam McCalla7bb0cc2018-03-12 23:22:35 +0000956void ClangdLSPServer::onDiagnosticsReady(PathRef File,
957 std::vector<Diag> Diagnostics) {
Eric Liu4d814a92018-11-28 10:30:42 +0000958 auto URI = URIForFile::canonicalize(File, /*TUPath=*/File);
Sam McCall16e70702018-10-24 07:59:38 +0000959 std::vector<Diagnostic> LSPDiagnostics;
Ilya Biryukov38d79772017-05-16 09:38:59 +0000960 DiagnosticToReplacementMap LocalFixIts; // Temporary storage
Sam McCalla7bb0cc2018-03-12 23:22:35 +0000961 for (auto &Diag : Diagnostics) {
Sam McCall16e70702018-10-24 07:59:38 +0000962 toLSPDiags(Diag, URI, DiagOpts,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000963 [&](clangd::Diagnostic Diag, llvm::ArrayRef<Fix> Fixes) {
Sam McCall16e70702018-10-24 07:59:38 +0000964 auto &FixItsForDiagnostic = LocalFixIts[Diag];
965 llvm::copy(Fixes, std::back_inserter(FixItsForDiagnostic));
966 LSPDiagnostics.push_back(std::move(Diag));
967 });
Ilya Biryukov38d79772017-05-16 09:38:59 +0000968 }
969
970 // Cache FixIts
971 {
972 // FIXME(ibiryukov): should be deleted when documents are removed
973 std::lock_guard<std::mutex> Lock(FixItsMutex);
974 FixItsMap[File] = LocalFixIts;
975 }
976
977 // Publish diagnostics.
Sam McCall2c30fbc2018-10-18 12:32:04 +0000978 notify("textDocument/publishDiagnostics",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000979 llvm::json::Object{
Sam McCall16e70702018-10-24 07:59:38 +0000980 {"uri", URI},
981 {"diagnostics", std::move(LSPDiagnostics)},
Sam McCall2c30fbc2018-10-18 12:32:04 +0000982 });
Ilya Biryukov38d79772017-05-16 09:38:59 +0000983}
Simon Marchi9569fd52018-03-16 14:30:42 +0000984
Haojian Wub6188492018-12-20 15:39:12 +0000985void ClangdLSPServer::onFileUpdated(PathRef File, const TUStatus &Status) {
986 if (!SupportFileStatus)
987 return;
988 // FIXME: we don't emit "BuildingFile" and `RunningAction`, as these
989 // two statuses are running faster in practice, which leads the UI constantly
990 // changing, and doesn't provide much value. We may want to emit status at a
991 // reasonable time interval (e.g. 0.5s).
992 if (Status.Action.S == TUAction::BuildingFile ||
993 Status.Action.S == TUAction::RunningAction)
994 return;
995 notify("textDocument/clangd.fileStatus", Status.render(File));
996}
997
Simon Marchi9569fd52018-03-16 14:30:42 +0000998void ClangdLSPServer::reparseOpenedFiles() {
999 for (const Path &FilePath : DraftMgr.getActiveFiles())
Ilya Biryukov652364b2018-09-26 05:48:29 +00001000 Server->addDocument(FilePath, *DraftMgr.getDraft(FilePath),
1001 WantDiagnostics::Auto);
Simon Marchi9569fd52018-03-16 14:30:42 +00001002}
Alex Lorenzf8087862018-08-01 17:39:29 +00001003
Sam McCallc008af62018-10-20 15:30:37 +00001004} // namespace clangd
1005} // namespace clang