blob: 0671ee36fea38621f7bb7dc2654a34871d0f22c0 [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 }},
357 {"definitionProvider", true},
Ilya Biryukov0e6a51f2017-12-12 12:27:47 +0000358 {"documentHighlightProvider", true},
Marc-Andre Laperle3e618ed2018-02-16 21:38:15 +0000359 {"hoverProvider", true},
Haojian Wu345099c2017-11-09 11:30:04 +0000360 {"renameProvider", true},
Marc-Andre Laperle1be69702018-07-05 19:35:01 +0000361 {"documentSymbolProvider", true},
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000362 {"workspaceSymbolProvider", true},
Sam McCall1ad142f2018-09-05 11:53:07 +0000363 {"referencesProvider", true},
Sam McCall0930ab02017-11-07 15:49:35 +0000364 {"executeCommandProvider",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000365 llvm::json::Object{
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000366 {"commands",
367 {ExecuteCommandParams::CLANGD_APPLY_FIX_COMMAND,
368 ExecuteCommandParams::CLANGD_APPLY_TWEAK}},
Sam McCall0930ab02017-11-07 15:49:35 +0000369 }},
370 }}}});
Ilya Biryukovafb55542017-05-16 14:40:30 +0000371}
372
Sam McCall2c30fbc2018-10-18 12:32:04 +0000373void ClangdLSPServer::onShutdown(const ShutdownParams &Params,
374 Callback<std::nullptr_t> Reply) {
Ilya Biryukov0d9b8a32017-10-25 08:45:41 +0000375 // Do essentially nothing, just say we're ready to exit.
376 ShutdownRequestReceived = true;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000377 Reply(nullptr);
Sam McCall8a5dded2017-10-12 13:29:58 +0000378}
Ilya Biryukovafb55542017-05-16 14:40:30 +0000379
Sam McCall422c8282018-11-26 16:00:11 +0000380// sync is a clangd extension: it blocks until all background work completes.
381// It blocks the calling thread, so no messages are processed until it returns!
382void ClangdLSPServer::onSync(const NoParams &Params,
383 Callback<std::nullptr_t> Reply) {
384 if (Server->blockUntilIdleForTest(/*TimeoutSeconds=*/60))
385 Reply(nullptr);
386 else
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000387 Reply(llvm::createStringError(llvm::inconvertibleErrorCode(),
388 "Not idle after a minute"));
Sam McCall422c8282018-11-26 16:00:11 +0000389}
390
Sam McCall2c30fbc2018-10-18 12:32:04 +0000391void ClangdLSPServer::onDocumentDidOpen(
392 const DidOpenTextDocumentParams &Params) {
Simon Marchi9569fd52018-03-16 14:30:42 +0000393 PathRef File = Params.textDocument.uri.file();
Ilya Biryukovb10ef472018-06-13 09:20:41 +0000394
Sam McCall2c30fbc2018-10-18 12:32:04 +0000395 const std::string &Contents = Params.textDocument.text;
Simon Marchi9569fd52018-03-16 14:30:42 +0000396
Simon Marchi98082622018-03-26 14:41:40 +0000397 DraftMgr.addDraft(File, Contents);
Ilya Biryukov652364b2018-09-26 05:48:29 +0000398 Server->addDocument(File, Contents, WantDiagnostics::Yes);
Ilya Biryukovafb55542017-05-16 14:40:30 +0000399}
400
Sam McCall2c30fbc2018-10-18 12:32:04 +0000401void ClangdLSPServer::onDocumentDidChange(
402 const DidChangeTextDocumentParams &Params) {
Eric Liu51fed182018-02-22 18:40:39 +0000403 auto WantDiags = WantDiagnostics::Auto;
404 if (Params.wantDiagnostics.hasValue())
405 WantDiags = Params.wantDiagnostics.getValue() ? WantDiagnostics::Yes
406 : WantDiagnostics::No;
Simon Marchi9569fd52018-03-16 14:30:42 +0000407
408 PathRef File = Params.textDocument.uri.file();
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000409 llvm::Expected<std::string> Contents =
Simon Marchi98082622018-03-26 14:41:40 +0000410 DraftMgr.updateDraft(File, Params.contentChanges);
411 if (!Contents) {
412 // If this fails, we are most likely going to be not in sync anymore with
413 // the client. It is better to remove the draft and let further operations
414 // fail rather than giving wrong results.
415 DraftMgr.removeDraft(File);
Ilya Biryukov652364b2018-09-26 05:48:29 +0000416 Server->removeDocument(File);
Sam McCallbed58852018-07-11 10:35:11 +0000417 elog("Failed to update {0}: {1}", File, Contents.takeError());
Simon Marchi98082622018-03-26 14:41:40 +0000418 return;
419 }
Simon Marchi9569fd52018-03-16 14:30:42 +0000420
Ilya Biryukov652364b2018-09-26 05:48:29 +0000421 Server->addDocument(File, *Contents, WantDiags);
Ilya Biryukovafb55542017-05-16 14:40:30 +0000422}
423
Sam McCall2c30fbc2018-10-18 12:32:04 +0000424void ClangdLSPServer::onFileEvent(const DidChangeWatchedFilesParams &Params) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000425 Server->onFileEvent(Params);
Marc-Andre Laperlebf114242017-10-02 18:00:37 +0000426}
427
Sam McCall2c30fbc2018-10-18 12:32:04 +0000428void ClangdLSPServer::onCommand(const ExecuteCommandParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000429 Callback<llvm::json::Value> Reply) {
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000430 auto ApplyEdit = [this](WorkspaceEdit WE) {
Eric Liuc5105f92018-02-16 14:15:55 +0000431 ApplyWorkspaceEditParams Edit;
432 Edit.edit = std::move(WE);
Eric Liuc5105f92018-02-16 14:15:55 +0000433 // Ideally, we would wait for the response and if there is no error, we
434 // would reply success/failure to the original RPC.
435 call("workspace/applyEdit", Edit);
436 };
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +0000437 if (Params.command == ExecuteCommandParams::CLANGD_APPLY_FIX_COMMAND &&
438 Params.workspaceEdit) {
439 // The flow for "apply-fix" :
440 // 1. We publish a diagnostic, including fixits
441 // 2. The user clicks on the diagnostic, the editor asks us for code actions
442 // 3. We send code actions, with the fixit embedded as context
443 // 4. The user selects the fixit, the editor asks us to apply it
444 // 5. We unwrap the changes and send them back to the editor
445 // 6. The editor applies the changes (applyEdit), and sends us a reply (but
446 // we ignore it)
447
Sam McCall2c30fbc2018-10-18 12:32:04 +0000448 Reply("Fix applied.");
Eric Liuc5105f92018-02-16 14:15:55 +0000449 ApplyEdit(*Params.workspaceEdit);
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000450 } else if (Params.command == ExecuteCommandParams::CLANGD_APPLY_TWEAK &&
451 Params.tweakArgs) {
452 auto Code = DraftMgr.getDraft(Params.tweakArgs->file.file());
453 if (!Code)
454 return Reply(llvm::createStringError(
455 llvm::inconvertibleErrorCode(),
456 "trying to apply a code action for a non-added file"));
457
458 auto Action = [ApplyEdit](decltype(Reply) Reply, URIForFile File,
459 std::string Code,
460 llvm::Expected<tooling::Replacements> R) {
461 if (!R)
462 return Reply(R.takeError());
463
464 WorkspaceEdit WE;
465 WE.changes.emplace();
466 (*WE.changes)[File.uri()] = replacementsToEdits(Code, *R);
467
468 Reply("Fix applied.");
469 ApplyEdit(std::move(WE));
470 };
471 Server->applyTweak(Params.tweakArgs->file.file(),
472 Params.tweakArgs->selection, Params.tweakArgs->tweakID,
473 Bind(Action, std::move(Reply), Params.tweakArgs->file,
474 std::move(*Code)));
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +0000475 } else {
476 // We should not get here because ExecuteCommandParams would not have
477 // parsed in the first place and this handler should not be called. But if
478 // more commands are added, this will be here has a safe guard.
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000479 Reply(llvm::make_error<LSPError>(
480 llvm::formatv("Unsupported command \"{0}\".", Params.command).str(),
Sam McCall2c30fbc2018-10-18 12:32:04 +0000481 ErrorCode::InvalidParams));
Marc-Andre Laperlee7ec16a2017-11-03 13:39:15 +0000482 }
483}
484
Sam McCall2c30fbc2018-10-18 12:32:04 +0000485void ClangdLSPServer::onWorkspaceSymbol(
486 const WorkspaceSymbolParams &Params,
487 Callback<std::vector<SymbolInformation>> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000488 Server->workspaceSymbols(
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000489 Params.query, CCOpts.Limit,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000490 Bind(
491 [this](decltype(Reply) Reply,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000492 llvm::Expected<std::vector<SymbolInformation>> Items) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000493 if (!Items)
494 return Reply(Items.takeError());
495 for (auto &Sym : *Items)
496 Sym.kind = adjustKindToCapability(Sym.kind, SupportedSymbolKinds);
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000497
Sam McCall2c30fbc2018-10-18 12:32:04 +0000498 Reply(std::move(*Items));
499 },
500 std::move(Reply)));
Marc-Andre Laperleb387b6e2018-04-23 20:00:52 +0000501}
502
Sam McCall2c30fbc2018-10-18 12:32:04 +0000503void ClangdLSPServer::onRename(const RenameParams &Params,
504 Callback<WorkspaceEdit> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000505 Path File = Params.textDocument.uri.file();
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000506 llvm::Optional<std::string> Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000507 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000508 return Reply(llvm::make_error<LSPError>(
509 "onRename called for non-added file", ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000510
Ilya Biryukov652364b2018-09-26 05:48:29 +0000511 Server->rename(
Ilya Biryukov2c5e8e82018-02-15 13:15:47 +0000512 File, Params.position, Params.newName,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000513 Bind(
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000514 [File, Code, Params](
515 decltype(Reply) Reply,
516 llvm::Expected<std::vector<tooling::Replacement>> Replacements) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000517 if (!Replacements)
518 return Reply(Replacements.takeError());
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000519
Sam McCall2c30fbc2018-10-18 12:32:04 +0000520 // Turn the replacements into the format specified by the Language
521 // Server Protocol. Fuse them into one big JSON array.
522 std::vector<TextEdit> Edits;
523 for (const auto &R : *Replacements)
524 Edits.push_back(replacementToEdit(*Code, R));
525 WorkspaceEdit WE;
526 WE.changes = {{Params.textDocument.uri.uri(), Edits}};
527 Reply(WE);
528 },
529 std::move(Reply)));
Haojian Wu345099c2017-11-09 11:30:04 +0000530}
531
Sam McCall2c30fbc2018-10-18 12:32:04 +0000532void ClangdLSPServer::onDocumentDidClose(
533 const DidCloseTextDocumentParams &Params) {
Simon Marchi9569fd52018-03-16 14:30:42 +0000534 PathRef File = Params.textDocument.uri.file();
535 DraftMgr.removeDraft(File);
Ilya Biryukov652364b2018-09-26 05:48:29 +0000536 Server->removeDocument(File);
Ilya Biryukovafb55542017-05-16 14:40:30 +0000537}
538
Sam McCall4db732a2017-09-30 10:08:52 +0000539void ClangdLSPServer::onDocumentOnTypeFormatting(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000540 const DocumentOnTypeFormattingParams &Params,
541 Callback<std::vector<TextEdit>> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000542 auto File = Params.textDocument.uri.file();
Simon Marchi9569fd52018-03-16 14:30:42 +0000543 auto Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000544 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000545 return Reply(llvm::make_error<LSPError>(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000546 "onDocumentOnTypeFormatting called for non-added file",
547 ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000548
Ilya Biryukov652364b2018-09-26 05:48:29 +0000549 auto ReplacementsOrError = Server->formatOnType(*Code, File, Params.position);
Raoul Wols212bcf82017-12-12 20:25:06 +0000550 if (ReplacementsOrError)
Sam McCall2c30fbc2018-10-18 12:32:04 +0000551 Reply(replacementsToEdits(*Code, ReplacementsOrError.get()));
Raoul Wols212bcf82017-12-12 20:25:06 +0000552 else
Sam McCall2c30fbc2018-10-18 12:32:04 +0000553 Reply(ReplacementsOrError.takeError());
Ilya Biryukovafb55542017-05-16 14:40:30 +0000554}
555
Sam McCall4db732a2017-09-30 10:08:52 +0000556void ClangdLSPServer::onDocumentRangeFormatting(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000557 const DocumentRangeFormattingParams &Params,
558 Callback<std::vector<TextEdit>> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000559 auto File = Params.textDocument.uri.file();
Simon Marchi9569fd52018-03-16 14:30:42 +0000560 auto Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000561 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000562 return Reply(llvm::make_error<LSPError>(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000563 "onDocumentRangeFormatting called for non-added file",
564 ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000565
Ilya Biryukov652364b2018-09-26 05:48:29 +0000566 auto ReplacementsOrError = Server->formatRange(*Code, File, Params.range);
Raoul Wols212bcf82017-12-12 20:25:06 +0000567 if (ReplacementsOrError)
Sam McCall2c30fbc2018-10-18 12:32:04 +0000568 Reply(replacementsToEdits(*Code, ReplacementsOrError.get()));
Raoul Wols212bcf82017-12-12 20:25:06 +0000569 else
Sam McCall2c30fbc2018-10-18 12:32:04 +0000570 Reply(ReplacementsOrError.takeError());
Ilya Biryukovafb55542017-05-16 14:40:30 +0000571}
572
Sam McCall2c30fbc2018-10-18 12:32:04 +0000573void ClangdLSPServer::onDocumentFormatting(
574 const DocumentFormattingParams &Params,
575 Callback<std::vector<TextEdit>> Reply) {
Ilya Biryukov7d60d202018-02-16 12:20:47 +0000576 auto File = Params.textDocument.uri.file();
Simon Marchi9569fd52018-03-16 14:30:42 +0000577 auto Code = DraftMgr.getDraft(File);
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000578 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000579 return Reply(llvm::make_error<LSPError>(
580 "onDocumentFormatting called for non-added file",
581 ErrorCode::InvalidParams));
Ilya Biryukov261c72e2018-01-17 12:30:24 +0000582
Ilya Biryukov652364b2018-09-26 05:48:29 +0000583 auto ReplacementsOrError = Server->formatFile(*Code, File);
Raoul Wols212bcf82017-12-12 20:25:06 +0000584 if (ReplacementsOrError)
Sam McCall2c30fbc2018-10-18 12:32:04 +0000585 Reply(replacementsToEdits(*Code, ReplacementsOrError.get()));
Raoul Wols212bcf82017-12-12 20:25:06 +0000586 else
Sam McCall2c30fbc2018-10-18 12:32:04 +0000587 Reply(ReplacementsOrError.takeError());
Sam McCall4db732a2017-09-30 10:08:52 +0000588}
589
Ilya Biryukov19d75602018-11-23 15:21:19 +0000590/// The functions constructs a flattened view of the DocumentSymbol hierarchy.
591/// Used by the clients that do not support the hierarchical view.
592static std::vector<SymbolInformation>
593flattenSymbolHierarchy(llvm::ArrayRef<DocumentSymbol> Symbols,
594 const URIForFile &FileURI) {
595
596 std::vector<SymbolInformation> Results;
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000597 std::function<void(const DocumentSymbol &, llvm::StringRef)> Process =
598 [&](const DocumentSymbol &S, llvm::Optional<llvm::StringRef> ParentName) {
Ilya Biryukov19d75602018-11-23 15:21:19 +0000599 SymbolInformation SI;
600 SI.containerName = ParentName ? "" : *ParentName;
601 SI.name = S.name;
602 SI.kind = S.kind;
603 SI.location.range = S.range;
604 SI.location.uri = FileURI;
605
606 Results.push_back(std::move(SI));
607 std::string FullName =
608 !ParentName ? S.name : (ParentName->str() + "::" + S.name);
609 for (auto &C : S.children)
610 Process(C, /*ParentName=*/FullName);
611 };
612 for (auto &S : Symbols)
613 Process(S, /*ParentName=*/"");
614 return Results;
615}
616
617void ClangdLSPServer::onDocumentSymbol(const DocumentSymbolParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000618 Callback<llvm::json::Value> Reply) {
Ilya Biryukov19d75602018-11-23 15:21:19 +0000619 URIForFile FileURI = Params.textDocument.uri;
Ilya Biryukov652364b2018-09-26 05:48:29 +0000620 Server->documentSymbols(
Marc-Andre Laperle1be69702018-07-05 19:35:01 +0000621 Params.textDocument.uri.file(),
Sam McCall2c30fbc2018-10-18 12:32:04 +0000622 Bind(
Ilya Biryukov19d75602018-11-23 15:21:19 +0000623 [this, FileURI](decltype(Reply) Reply,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000624 llvm::Expected<std::vector<DocumentSymbol>> Items) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000625 if (!Items)
626 return Reply(Items.takeError());
Ilya Biryukov19d75602018-11-23 15:21:19 +0000627 adjustSymbolKinds(*Items, SupportedSymbolKinds);
628 if (SupportsHierarchicalDocumentSymbol)
629 return Reply(std::move(*Items));
630 else
631 return Reply(flattenSymbolHierarchy(*Items, FileURI));
Sam McCall2c30fbc2018-10-18 12:32:04 +0000632 },
633 std::move(Reply)));
Marc-Andre Laperle1be69702018-07-05 19:35:01 +0000634}
635
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000636static llvm::Optional<Command> asCommand(const CodeAction &Action) {
Sam McCall20841d42018-10-16 16:29:41 +0000637 Command Cmd;
638 if (Action.command && Action.edit)
Sam McCallc008af62018-10-20 15:30:37 +0000639 return None; // Not representable. (We never emit these anyway).
Sam McCall20841d42018-10-16 16:29:41 +0000640 if (Action.command) {
641 Cmd = *Action.command;
642 } else if (Action.edit) {
643 Cmd.command = Command::CLANGD_APPLY_FIX_COMMAND;
644 Cmd.workspaceEdit = *Action.edit;
645 } else {
Sam McCallc008af62018-10-20 15:30:37 +0000646 return None;
Sam McCall20841d42018-10-16 16:29:41 +0000647 }
648 Cmd.title = Action.title;
649 if (Action.kind && *Action.kind == CodeAction::QUICKFIX_KIND)
650 Cmd.title = "Apply fix: " + Cmd.title;
651 return Cmd;
652}
653
Sam McCall2c30fbc2018-10-18 12:32:04 +0000654void ClangdLSPServer::onCodeAction(const CodeActionParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000655 Callback<llvm::json::Value> Reply) {
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000656 URIForFile File = Params.textDocument.uri;
657 auto Code = DraftMgr.getDraft(File.file());
Sam McCall2c30fbc2018-10-18 12:32:04 +0000658 if (!Code)
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000659 return Reply(llvm::make_error<LSPError>(
660 "onCodeAction called for non-added file", ErrorCode::InvalidParams));
Sam McCall20841d42018-10-16 16:29:41 +0000661 // We provide a code action for Fixes on the specified diagnostics.
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000662 std::vector<CodeAction> FixIts;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000663 for (const Diagnostic &D : Params.context.diagnostics) {
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000664 for (auto &F : getFixes(File.file(), D)) {
665 FixIts.push_back(toCodeAction(F, Params.textDocument.uri));
666 FixIts.back().diagnostics = {D};
Sam McCalldd0566b2017-11-06 15:40:30 +0000667 }
Ilya Biryukovafb55542017-05-16 14:40:30 +0000668 }
Sam McCall20841d42018-10-16 16:29:41 +0000669
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000670 // Now enumerate the semantic code actions.
671 auto ConsumeActions =
672 [this](decltype(Reply) Reply, URIForFile File, std::string Code,
673 Range Selection, std::vector<CodeAction> FixIts,
674 llvm::Expected<std::vector<ClangdServer::TweakRef>> Tweaks) {
Ilya Biryukovc6ed7782019-01-30 14:24:17 +0000675 if (!Tweaks)
676 return Reply(Tweaks.takeError());
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000677
678 std::vector<CodeAction> Actions = std::move(FixIts);
679 Actions.reserve(Actions.size() + Tweaks->size());
680 for (const auto &T : *Tweaks)
681 Actions.push_back(toCodeAction(T, File, Selection));
682
683 if (SupportsCodeAction)
684 return Reply(llvm::json::Array(Actions));
685 std::vector<Command> Commands;
686 for (const auto &Action : Actions) {
687 if (auto Command = asCommand(Action))
688 Commands.push_back(std::move(*Command));
689 }
690 return Reply(llvm::json::Array(Commands));
691 };
692
693 Server->enumerateTweaks(File.file(), Params.range,
Ilya Biryukovc9409c62019-01-30 09:39:01 +0000694 Bind(ConsumeActions, std::move(Reply), File,
695 std::move(*Code), Params.range,
Ilya Biryukovcce67a32019-01-29 14:17:36 +0000696 std::move(FixIts)));
Ilya Biryukovafb55542017-05-16 14:40:30 +0000697}
698
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000699void ClangdLSPServer::onCompletion(const CompletionParams &Params,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000700 Callback<CompletionList> Reply) {
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000701 if (!shouldRunCompletion(Params))
702 return Reply(llvm::make_error<IgnoreCompletionError>());
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000703 Server->codeComplete(Params.textDocument.uri.file(), Params.position, CCOpts,
704 Bind(
705 [this](decltype(Reply) Reply,
706 llvm::Expected<CodeCompleteResult> List) {
707 if (!List)
708 return Reply(List.takeError());
709 CompletionList LSPList;
710 LSPList.isIncomplete = List->HasMore;
711 for (const auto &R : List->Completions) {
712 CompletionItem C = R.render(CCOpts);
713 C.kind = adjustKindToCapability(
714 C.kind, SupportedCompletionItemKinds);
715 LSPList.items.push_back(std::move(C));
716 }
717 return Reply(std::move(LSPList));
718 },
719 std::move(Reply)));
Ilya Biryukovd9bdfe02017-10-06 11:54:17 +0000720}
721
Sam McCall2c30fbc2018-10-18 12:32:04 +0000722void ClangdLSPServer::onSignatureHelp(const TextDocumentPositionParams &Params,
723 Callback<SignatureHelp> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000724 Server->signatureHelp(Params.textDocument.uri.file(), Params.position,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000725 std::move(Reply));
Ilya Biryukov652364b2018-09-26 05:48:29 +0000726}
727
Sam McCall2c30fbc2018-10-18 12:32:04 +0000728void ClangdLSPServer::onGoToDefinition(const TextDocumentPositionParams &Params,
729 Callback<std::vector<Location>> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000730 Server->findDefinitions(Params.textDocument.uri.file(), Params.position,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000731 std::move(Reply));
Marc-Andre Laperle2cbf0372017-06-28 16:12:10 +0000732}
733
Sam McCall2c30fbc2018-10-18 12:32:04 +0000734void ClangdLSPServer::onSwitchSourceHeader(const TextDocumentIdentifier &Params,
735 Callback<std::string> Reply) {
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000736 llvm::Optional<Path> Result = Server->switchSourceHeader(Params.uri.file());
Sam McCall2c30fbc2018-10-18 12:32:04 +0000737 Reply(Result ? URI::createFile(*Result).toString() : "");
Marc-Andre Laperle6571b3e2017-09-28 03:14:40 +0000738}
739
Sam McCall2c30fbc2018-10-18 12:32:04 +0000740void ClangdLSPServer::onDocumentHighlight(
741 const TextDocumentPositionParams &Params,
742 Callback<std::vector<DocumentHighlight>> Reply) {
743 Server->findDocumentHighlights(Params.textDocument.uri.file(),
744 Params.position, std::move(Reply));
Ilya Biryukov0e6a51f2017-12-12 12:27:47 +0000745}
746
Sam McCall2c30fbc2018-10-18 12:32:04 +0000747void ClangdLSPServer::onHover(const TextDocumentPositionParams &Params,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000748 Callback<llvm::Optional<Hover>> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000749 Server->findHover(Params.textDocument.uri.file(), Params.position,
Sam McCall2c30fbc2018-10-18 12:32:04 +0000750 std::move(Reply));
Marc-Andre Laperle3e618ed2018-02-16 21:38:15 +0000751}
752
Simon Marchi88016782018-08-01 11:28:49 +0000753void ClangdLSPServer::applyConfiguration(
Sam McCallbc904612018-10-25 04:22:52 +0000754 const ConfigurationSettings &Settings) {
Simon Marchiabeed662018-10-16 15:55:03 +0000755 // Per-file update to the compilation database.
Sam McCallbc904612018-10-25 04:22:52 +0000756 bool ShouldReparseOpenFiles = false;
757 for (auto &Entry : Settings.compilationDatabaseChanges) {
758 /// The opened files need to be reparsed only when some existing
759 /// entries are changed.
760 PathRef File = Entry.first;
Sam McCallc55d09a2018-11-02 13:09:36 +0000761 auto Old = CDB->getCompileCommand(File);
762 auto New =
763 tooling::CompileCommand(std::move(Entry.second.workingDirectory), File,
764 std::move(Entry.second.compilationCommand),
765 /*Output=*/"");
Sam McCall6980edb2018-11-02 14:07:51 +0000766 if (Old != New) {
Sam McCallc55d09a2018-11-02 13:09:36 +0000767 CDB->setCompileCommand(File, std::move(New));
Sam McCall6980edb2018-11-02 14:07:51 +0000768 ShouldReparseOpenFiles = true;
769 }
Alex Lorenzf8087862018-08-01 17:39:29 +0000770 }
Sam McCallbc904612018-10-25 04:22:52 +0000771 if (ShouldReparseOpenFiles)
772 reparseOpenedFiles();
Simon Marchi5178f922018-02-22 14:00:39 +0000773}
774
Simon Marchi88016782018-08-01 11:28:49 +0000775// FIXME: This function needs to be properly tested.
776void ClangdLSPServer::onChangeConfiguration(
Sam McCall2c30fbc2018-10-18 12:32:04 +0000777 const DidChangeConfigurationParams &Params) {
Simon Marchi88016782018-08-01 11:28:49 +0000778 applyConfiguration(Params.settings);
779}
780
Sam McCall2c30fbc2018-10-18 12:32:04 +0000781void ClangdLSPServer::onReference(const ReferenceParams &Params,
782 Callback<std::vector<Location>> Reply) {
Ilya Biryukov652364b2018-09-26 05:48:29 +0000783 Server->findReferences(Params.textDocument.uri.file(), Params.position,
Haojian Wuc34f0222019-01-14 18:11:09 +0000784 CCOpts.Limit, std::move(Reply));
Sam McCall1ad142f2018-09-05 11:53:07 +0000785}
786
Jan Korousb4067012018-11-27 16:40:46 +0000787void ClangdLSPServer::onSymbolInfo(const TextDocumentPositionParams &Params,
788 Callback<std::vector<SymbolDetails>> Reply) {
789 Server->symbolInfo(Params.textDocument.uri.file(), Params.position,
790 std::move(Reply));
791}
792
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000793ClangdLSPServer::ClangdLSPServer(class Transport &Transp,
Haojian Wu1ca0c582019-01-22 09:39:05 +0000794 const FileSystemProvider &FSProvider,
Sam McCalladccab62017-11-23 16:58:22 +0000795 const clangd::CodeCompleteOptions &CCOpts,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000796 llvm::Optional<Path> CompileCommandsDir,
Sam McCallc55d09a2018-11-02 13:09:36 +0000797 bool UseDirBasedCDB,
Sam McCall7363a2f2018-03-05 17:28:54 +0000798 const ClangdServer::Options &Opts)
Haojian Wu1ca0c582019-01-22 09:39:05 +0000799 : Transp(Transp), MsgHandler(new MessageHandler(*this)),
800 FSProvider(FSProvider), CCOpts(CCOpts),
Sam McCalld1c9d112018-10-23 14:19:54 +0000801 SupportedSymbolKinds(defaultSymbolKinds()),
Kadir Cetinkaya133d46f2018-09-27 17:13:07 +0000802 SupportedCompletionItemKinds(defaultCompletionItemKinds()),
Sam McCallc55d09a2018-11-02 13:09:36 +0000803 UseDirBasedCDB(UseDirBasedCDB),
Sam McCall4b86bb02018-10-25 02:22:53 +0000804 CompileCommandsDir(std::move(CompileCommandsDir)),
805 ClangdServerOpts(Opts) {
Sam McCall2c30fbc2018-10-18 12:32:04 +0000806 // clang-format off
807 MsgHandler->bind("initialize", &ClangdLSPServer::onInitialize);
808 MsgHandler->bind("shutdown", &ClangdLSPServer::onShutdown);
Sam McCall422c8282018-11-26 16:00:11 +0000809 MsgHandler->bind("sync", &ClangdLSPServer::onSync);
Sam McCall2c30fbc2018-10-18 12:32:04 +0000810 MsgHandler->bind("textDocument/rangeFormatting", &ClangdLSPServer::onDocumentRangeFormatting);
811 MsgHandler->bind("textDocument/onTypeFormatting", &ClangdLSPServer::onDocumentOnTypeFormatting);
812 MsgHandler->bind("textDocument/formatting", &ClangdLSPServer::onDocumentFormatting);
813 MsgHandler->bind("textDocument/codeAction", &ClangdLSPServer::onCodeAction);
814 MsgHandler->bind("textDocument/completion", &ClangdLSPServer::onCompletion);
815 MsgHandler->bind("textDocument/signatureHelp", &ClangdLSPServer::onSignatureHelp);
816 MsgHandler->bind("textDocument/definition", &ClangdLSPServer::onGoToDefinition);
817 MsgHandler->bind("textDocument/references", &ClangdLSPServer::onReference);
818 MsgHandler->bind("textDocument/switchSourceHeader", &ClangdLSPServer::onSwitchSourceHeader);
819 MsgHandler->bind("textDocument/rename", &ClangdLSPServer::onRename);
820 MsgHandler->bind("textDocument/hover", &ClangdLSPServer::onHover);
821 MsgHandler->bind("textDocument/documentSymbol", &ClangdLSPServer::onDocumentSymbol);
822 MsgHandler->bind("workspace/executeCommand", &ClangdLSPServer::onCommand);
823 MsgHandler->bind("textDocument/documentHighlight", &ClangdLSPServer::onDocumentHighlight);
824 MsgHandler->bind("workspace/symbol", &ClangdLSPServer::onWorkspaceSymbol);
825 MsgHandler->bind("textDocument/didOpen", &ClangdLSPServer::onDocumentDidOpen);
826 MsgHandler->bind("textDocument/didClose", &ClangdLSPServer::onDocumentDidClose);
827 MsgHandler->bind("textDocument/didChange", &ClangdLSPServer::onDocumentDidChange);
828 MsgHandler->bind("workspace/didChangeWatchedFiles", &ClangdLSPServer::onFileEvent);
829 MsgHandler->bind("workspace/didChangeConfiguration", &ClangdLSPServer::onChangeConfiguration);
Jan Korousb4067012018-11-27 16:40:46 +0000830 MsgHandler->bind("textDocument/symbolInfo", &ClangdLSPServer::onSymbolInfo);
Sam McCall2c30fbc2018-10-18 12:32:04 +0000831 // clang-format on
832}
833
834ClangdLSPServer::~ClangdLSPServer() = default;
Ilya Biryukov38d79772017-05-16 09:38:59 +0000835
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000836bool ClangdLSPServer::run() {
Ilya Biryukovafb55542017-05-16 14:40:30 +0000837 // Run the Language Server loop.
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000838 bool CleanExit = true;
Sam McCall2c30fbc2018-10-18 12:32:04 +0000839 if (auto Err = Transp.loop(*MsgHandler)) {
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000840 elog("Transport error: {0}", std::move(Err));
841 CleanExit = false;
842 }
Ilya Biryukovafb55542017-05-16 14:40:30 +0000843
Ilya Biryukov652364b2018-09-26 05:48:29 +0000844 // Destroy ClangdServer to ensure all worker threads finish.
845 Server.reset();
Sam McCalldc8f3cf2018-10-17 07:32:05 +0000846 return CleanExit && ShutdownRequestReceived;
Ilya Biryukov38d79772017-05-16 09:38:59 +0000847}
848
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000849std::vector<Fix> ClangdLSPServer::getFixes(llvm::StringRef File,
Ilya Biryukov71028b82018-03-12 15:28:22 +0000850 const clangd::Diagnostic &D) {
Ilya Biryukov38d79772017-05-16 09:38:59 +0000851 std::lock_guard<std::mutex> Lock(FixItsMutex);
852 auto DiagToFixItsIter = FixItsMap.find(File);
853 if (DiagToFixItsIter == FixItsMap.end())
854 return {};
855
856 const auto &DiagToFixItsMap = DiagToFixItsIter->second;
857 auto FixItsIter = DiagToFixItsMap.find(D);
858 if (FixItsIter == DiagToFixItsMap.end())
859 return {};
860
861 return FixItsIter->second;
862}
863
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000864bool ClangdLSPServer::shouldRunCompletion(
865 const CompletionParams &Params) const {
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000866 llvm::StringRef Trigger = Params.context.triggerCharacter;
Ilya Biryukovb0826bd2019-01-03 13:37:12 +0000867 if (Params.context.triggerKind != CompletionTriggerKind::TriggerCharacter ||
868 (Trigger != ">" && Trigger != ":"))
869 return true;
870
871 auto Code = DraftMgr.getDraft(Params.textDocument.uri.file());
872 if (!Code)
873 return true; // completion code will log the error for untracked doc.
874
875 // A completion request is sent when the user types '>' or ':', but we only
876 // want to trigger on '->' and '::'. We check the preceeding character to make
877 // sure it matches what we expected.
878 // Running the lexer here would be more robust (e.g. we can detect comments
879 // and avoid triggering completion there), but we choose to err on the side
880 // of simplicity here.
881 auto Offset = positionToOffset(*Code, Params.position,
882 /*AllowColumnsBeyondLineLength=*/false);
883 if (!Offset) {
884 vlog("could not convert position '{0}' to offset for file '{1}'",
885 Params.position, Params.textDocument.uri.file());
886 return true;
887 }
888 if (*Offset < 2)
889 return false;
890
891 if (Trigger == ">")
892 return (*Code)[*Offset - 2] == '-'; // trigger only on '->'.
893 if (Trigger == ":")
894 return (*Code)[*Offset - 2] == ':'; // trigger only on '::'.
895 assert(false && "unhandled trigger character");
896 return true;
897}
898
Sam McCalla7bb0cc2018-03-12 23:22:35 +0000899void ClangdLSPServer::onDiagnosticsReady(PathRef File,
900 std::vector<Diag> Diagnostics) {
Eric Liu4d814a92018-11-28 10:30:42 +0000901 auto URI = URIForFile::canonicalize(File, /*TUPath=*/File);
Sam McCall16e70702018-10-24 07:59:38 +0000902 std::vector<Diagnostic> LSPDiagnostics;
Ilya Biryukov38d79772017-05-16 09:38:59 +0000903 DiagnosticToReplacementMap LocalFixIts; // Temporary storage
Sam McCalla7bb0cc2018-03-12 23:22:35 +0000904 for (auto &Diag : Diagnostics) {
Sam McCall16e70702018-10-24 07:59:38 +0000905 toLSPDiags(Diag, URI, DiagOpts,
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000906 [&](clangd::Diagnostic Diag, llvm::ArrayRef<Fix> Fixes) {
Sam McCall16e70702018-10-24 07:59:38 +0000907 auto &FixItsForDiagnostic = LocalFixIts[Diag];
908 llvm::copy(Fixes, std::back_inserter(FixItsForDiagnostic));
909 LSPDiagnostics.push_back(std::move(Diag));
910 });
Ilya Biryukov38d79772017-05-16 09:38:59 +0000911 }
912
913 // Cache FixIts
914 {
915 // FIXME(ibiryukov): should be deleted when documents are removed
916 std::lock_guard<std::mutex> Lock(FixItsMutex);
917 FixItsMap[File] = LocalFixIts;
918 }
919
920 // Publish diagnostics.
Sam McCall2c30fbc2018-10-18 12:32:04 +0000921 notify("textDocument/publishDiagnostics",
Ilya Biryukovf2001aa2019-01-07 15:45:19 +0000922 llvm::json::Object{
Sam McCall16e70702018-10-24 07:59:38 +0000923 {"uri", URI},
924 {"diagnostics", std::move(LSPDiagnostics)},
Sam McCall2c30fbc2018-10-18 12:32:04 +0000925 });
Ilya Biryukov38d79772017-05-16 09:38:59 +0000926}
Simon Marchi9569fd52018-03-16 14:30:42 +0000927
Haojian Wub6188492018-12-20 15:39:12 +0000928void ClangdLSPServer::onFileUpdated(PathRef File, const TUStatus &Status) {
929 if (!SupportFileStatus)
930 return;
931 // FIXME: we don't emit "BuildingFile" and `RunningAction`, as these
932 // two statuses are running faster in practice, which leads the UI constantly
933 // changing, and doesn't provide much value. We may want to emit status at a
934 // reasonable time interval (e.g. 0.5s).
935 if (Status.Action.S == TUAction::BuildingFile ||
936 Status.Action.S == TUAction::RunningAction)
937 return;
938 notify("textDocument/clangd.fileStatus", Status.render(File));
939}
940
Simon Marchi9569fd52018-03-16 14:30:42 +0000941void ClangdLSPServer::reparseOpenedFiles() {
942 for (const Path &FilePath : DraftMgr.getActiveFiles())
Ilya Biryukov652364b2018-09-26 05:48:29 +0000943 Server->addDocument(FilePath, *DraftMgr.getDraft(FilePath),
944 WantDiagnostics::Auto);
Simon Marchi9569fd52018-03-16 14:30:42 +0000945}
Alex Lorenzf8087862018-08-01 17:39:29 +0000946
Sam McCallc008af62018-10-20 15:30:37 +0000947} // namespace clangd
948} // namespace clang