2017-05-16 17:38:59 +08:00
|
|
|
//===--- ClangdLSPServer.h - LSP server --------------------------*- C++-*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
2018-08-15 00:03:32 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2017-05-16 17:38:59 +08:00
|
|
|
|
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_CLANGDLSPSERVER_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_CLANGDLSPSERVER_H
|
|
|
|
|
|
|
|
#include "ClangdServer.h"
|
2018-03-16 22:30:42 +08:00
|
|
|
#include "DraftStore.h"
|
[clangd] Implementation of workspace/symbol request
Summary:
This is a basic implementation of the "workspace/symbol" request which is
used to find symbols by a string query. Since this is similar to code completion
in terms of result, this implementation reuses the "fuzzyFind" in order to get
matches. For now, the scoring algorithm is the same as code completion and
improvements could be done in the future.
The index model doesn't contain quite enough symbols for this to cover
common symbols like methods, enum class enumerators, functions in unamed
namespaces, etc. The index model will be augmented separately to achieve this.
Reviewers: sammccall, ilya-biryukov
Reviewed By: sammccall
Subscribers: jkorous, hokein, simark, sammccall, klimek, mgorny, ilya-biryukov, mgrang, jkorous-apple, ioeric, MaskRay, cfe-commits
Differential Revision: https://reviews.llvm.org/D44882
llvm-svn: 330637
2018-04-24 04:00:52 +08:00
|
|
|
#include "FindSymbols.h"
|
2017-06-13 23:59:43 +08:00
|
|
|
#include "GlobalCompilationDatabase.h"
|
2017-05-16 17:38:59 +08:00
|
|
|
#include "Path.h"
|
|
|
|
#include "Protocol.h"
|
[clangd] Lay JSONRPCDispatcher to rest.
Summary:
Most of its functionality is moved into ClangdLSPServer.
The decoupling between JSONRPCDispatcher, ProtocolCallbacks, ClangdLSPServer
was never real, and only served to obfuscate.
Some previous implicit/magic stuff is now explicit:
- the return type of LSP method calls are now in the signature
- no more reply() that gets the ID using global context magic
- arg tracing no longer relies on RequestArgs::stash context magic either
This is mostly refactoring, but some deliberate fixes while here:
- LSP method params are now by const reference
- notifications and calls are now distinct namespaces.
(some tests had protocol errors and needed updating)
- we now reply to calls we failed to decode
- outgoing calls use distinct IDs
A few error codes and message IDs changed in unimportant ways (see tests).
Reviewers: ioeric
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53387
llvm-svn: 344737
2018-10-18 20:32:04 +08:00
|
|
|
#include "Transport.h"
|
2017-05-16 17:38:59 +08:00
|
|
|
#include "clang/Tooling/Core/Replacement.h"
|
2017-07-19 23:43:35 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
2018-09-26 13:48:29 +08:00
|
|
|
#include <memory>
|
2017-05-16 17:38:59 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
|
|
|
|
2018-01-10 22:44:34 +08:00
|
|
|
class SymbolIndex;
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2018-09-13 20:58:36 +08:00
|
|
|
/// This class exposes ClangdServer's capabilities via Language Server Protocol.
|
|
|
|
///
|
[clangd] Lay JSONRPCDispatcher to rest.
Summary:
Most of its functionality is moved into ClangdLSPServer.
The decoupling between JSONRPCDispatcher, ProtocolCallbacks, ClangdLSPServer
was never real, and only served to obfuscate.
Some previous implicit/magic stuff is now explicit:
- the return type of LSP method calls are now in the signature
- no more reply() that gets the ID using global context magic
- arg tracing no longer relies on RequestArgs::stash context magic either
This is mostly refactoring, but some deliberate fixes while here:
- LSP method params are now by const reference
- notifications and calls are now distinct namespaces.
(some tests had protocol errors and needed updating)
- we now reply to calls we failed to decode
- outgoing calls use distinct IDs
A few error codes and message IDs changed in unimportant ways (see tests).
Reviewers: ioeric
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53387
llvm-svn: 344737
2018-10-18 20:32:04 +08:00
|
|
|
/// MessageHandler binds the implemented LSP methods (e.g. onInitialize) to
|
|
|
|
/// corresponding JSON-RPC methods ("initialize").
|
|
|
|
/// The server also supports $/cancelRequest (MessageHandler provides this).
|
|
|
|
class ClangdLSPServer : private DiagnosticsConsumer {
|
2017-05-16 17:38:59 +08:00
|
|
|
public:
|
2017-10-02 23:13:20 +08:00
|
|
|
/// If \p CompileCommandsDir has a value, compile_commands.json will be
|
|
|
|
/// loaded only from \p CompileCommandsDir. Otherwise, clangd will look
|
|
|
|
/// for compile_commands.json in all parent directories of each file.
|
[clangd] Refactor JSON-over-stdin/stdout code into Transport abstraction. (re-land r344620)
Summary:
This paves the way for alternative transports (mac XPC, maybe messagepack?),
and also generally improves layering: testing ClangdLSPServer becomes less of
a pipe dream, we split up the JSONOutput monolith, etc.
This isn't a final state, much of what remains in JSONRPCDispatcher can go away,
handlers can call reply() on the transport directly, JSONOutput can be renamed
to StreamLogger and removed, etc. But this patch is sprawling already.
The main observable change (see tests) is that hitting EOF on input is now an
error: the client should send the 'exit' notification.
This is defensible: the protocol doesn't spell this case out. Reproducing the
current behavior for all combinations of shutdown/exit/EOF clutters interfaces.
We can iterate on this if desired.
Reviewers: jkorous, ioeric, hokein
Subscribers: mgorny, ilya-biryukov, MaskRay, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53286
llvm-svn: 344672
2018-10-17 15:32:05 +08:00
|
|
|
ClangdLSPServer(Transport &Transp, const clangd::CodeCompleteOptions &CCOpts,
|
2017-12-20 02:00:37 +08:00
|
|
|
llvm::Optional<Path> CompileCommandsDir,
|
2018-08-02 01:39:29 +08:00
|
|
|
bool ShouldUseInMemoryCDB, const ClangdServer::Options &Opts);
|
[clangd] Lay JSONRPCDispatcher to rest.
Summary:
Most of its functionality is moved into ClangdLSPServer.
The decoupling between JSONRPCDispatcher, ProtocolCallbacks, ClangdLSPServer
was never real, and only served to obfuscate.
Some previous implicit/magic stuff is now explicit:
- the return type of LSP method calls are now in the signature
- no more reply() that gets the ID using global context magic
- arg tracing no longer relies on RequestArgs::stash context magic either
This is mostly refactoring, but some deliberate fixes while here:
- LSP method params are now by const reference
- notifications and calls are now distinct namespaces.
(some tests had protocol errors and needed updating)
- we now reply to calls we failed to decode
- outgoing calls use distinct IDs
A few error codes and message IDs changed in unimportant ways (see tests).
Reviewers: ioeric
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53387
llvm-svn: 344737
2018-10-18 20:32:04 +08:00
|
|
|
~ClangdLSPServer();
|
2017-05-16 17:38:59 +08:00
|
|
|
|
[clangd] Refactor JSON-over-stdin/stdout code into Transport abstraction. (re-land r344620)
Summary:
This paves the way for alternative transports (mac XPC, maybe messagepack?),
and also generally improves layering: testing ClangdLSPServer becomes less of
a pipe dream, we split up the JSONOutput monolith, etc.
This isn't a final state, much of what remains in JSONRPCDispatcher can go away,
handlers can call reply() on the transport directly, JSONOutput can be renamed
to StreamLogger and removed, etc. But this patch is sprawling already.
The main observable change (see tests) is that hitting EOF on input is now an
error: the client should send the 'exit' notification.
This is defensible: the protocol doesn't spell this case out. Reproducing the
current behavior for all combinations of shutdown/exit/EOF clutters interfaces.
We can iterate on this if desired.
Reviewers: jkorous, ioeric, hokein
Subscribers: mgorny, ilya-biryukov, MaskRay, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53286
llvm-svn: 344672
2018-10-17 15:32:05 +08:00
|
|
|
/// Run LSP server loop, communicating with the Transport provided in the
|
|
|
|
/// constructor. This method must not be executed more than once.
|
2017-10-25 16:45:41 +08:00
|
|
|
///
|
[clangd] Refactor JSON-over-stdin/stdout code into Transport abstraction. (re-land r344620)
Summary:
This paves the way for alternative transports (mac XPC, maybe messagepack?),
and also generally improves layering: testing ClangdLSPServer becomes less of
a pipe dream, we split up the JSONOutput monolith, etc.
This isn't a final state, much of what remains in JSONRPCDispatcher can go away,
handlers can call reply() on the transport directly, JSONOutput can be renamed
to StreamLogger and removed, etc. But this patch is sprawling already.
The main observable change (see tests) is that hitting EOF on input is now an
error: the client should send the 'exit' notification.
This is defensible: the protocol doesn't spell this case out. Reproducing the
current behavior for all combinations of shutdown/exit/EOF clutters interfaces.
We can iterate on this if desired.
Reviewers: jkorous, ioeric, hokein
Subscribers: mgorny, ilya-biryukov, MaskRay, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53286
llvm-svn: 344672
2018-10-17 15:32:05 +08:00
|
|
|
/// \return Whether we shut down cleanly with a 'shutdown' -> 'exit' sequence.
|
|
|
|
bool run();
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2017-05-16 22:40:30 +08:00
|
|
|
private:
|
2017-09-30 18:08:52 +08:00
|
|
|
// Implement DiagnosticsConsumer.
|
2018-03-13 07:22:35 +08:00
|
|
|
void onDiagnosticsReady(PathRef File, std::vector<Diag> Diagnostics) override;
|
2017-09-30 18:08:52 +08:00
|
|
|
|
[clangd] Lay JSONRPCDispatcher to rest.
Summary:
Most of its functionality is moved into ClangdLSPServer.
The decoupling between JSONRPCDispatcher, ProtocolCallbacks, ClangdLSPServer
was never real, and only served to obfuscate.
Some previous implicit/magic stuff is now explicit:
- the return type of LSP method calls are now in the signature
- no more reply() that gets the ID using global context magic
- arg tracing no longer relies on RequestArgs::stash context magic either
This is mostly refactoring, but some deliberate fixes while here:
- LSP method params are now by const reference
- notifications and calls are now distinct namespaces.
(some tests had protocol errors and needed updating)
- we now reply to calls we failed to decode
- outgoing calls use distinct IDs
A few error codes and message IDs changed in unimportant ways (see tests).
Reviewers: ioeric
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53387
llvm-svn: 344737
2018-10-18 20:32:04 +08:00
|
|
|
// LSP methods. Notifications have signature void(const Params&).
|
|
|
|
// Calls have signature void(const Params&, Callback<Response>).
|
|
|
|
void onInitialize(const InitializeParams &, Callback<llvm::json::Value>);
|
|
|
|
void onShutdown(const ShutdownParams &, Callback<std::nullptr_t>);
|
|
|
|
void onDocumentDidOpen(const DidOpenTextDocumentParams &);
|
|
|
|
void onDocumentDidChange(const DidChangeTextDocumentParams &);
|
|
|
|
void onDocumentDidClose(const DidCloseTextDocumentParams &);
|
|
|
|
void onDocumentOnTypeFormatting(const DocumentOnTypeFormattingParams &,
|
|
|
|
Callback<std::vector<TextEdit>>);
|
|
|
|
void onDocumentRangeFormatting(const DocumentRangeFormattingParams &,
|
|
|
|
Callback<std::vector<TextEdit>>);
|
|
|
|
void onDocumentFormatting(const DocumentFormattingParams &,
|
|
|
|
Callback<std::vector<TextEdit>>);
|
|
|
|
void onDocumentSymbol(const DocumentSymbolParams &,
|
|
|
|
Callback<std::vector<SymbolInformation>>);
|
|
|
|
void onCodeAction(const CodeActionParams &, Callback<llvm::json::Value>);
|
|
|
|
void onCompletion(const TextDocumentPositionParams &,
|
|
|
|
Callback<CompletionList>);
|
|
|
|
void onSignatureHelp(const TextDocumentPositionParams &,
|
|
|
|
Callback<SignatureHelp>);
|
|
|
|
void onGoToDefinition(const TextDocumentPositionParams &,
|
|
|
|
Callback<std::vector<Location>>);
|
|
|
|
void onReference(const ReferenceParams &, Callback<std::vector<Location>>);
|
|
|
|
void onSwitchSourceHeader(const TextDocumentIdentifier &,
|
|
|
|
Callback<std::string>);
|
|
|
|
void onDocumentHighlight(const TextDocumentPositionParams &,
|
|
|
|
Callback<std::vector<DocumentHighlight>>);
|
|
|
|
void onFileEvent(const DidChangeWatchedFilesParams &);
|
|
|
|
void onCommand(const ExecuteCommandParams &, Callback<llvm::json::Value>);
|
|
|
|
void onWorkspaceSymbol(const WorkspaceSymbolParams &,
|
|
|
|
Callback<std::vector<SymbolInformation>>);
|
|
|
|
void onRename(const RenameParams &, Callback<WorkspaceEdit>);
|
|
|
|
void onHover(const TextDocumentPositionParams &,
|
|
|
|
Callback<llvm::Optional<Hover>>);
|
|
|
|
void onChangeConfiguration(const DidChangeConfigurationParams &);
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2018-03-12 23:28:22 +08:00
|
|
|
std::vector<Fix> getFixes(StringRef File, const clangd::Diagnostic &D);
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2018-03-16 22:30:42 +08:00
|
|
|
/// Forces a reparse of all currently opened files. As a result, this method
|
|
|
|
/// may be very expensive. This method is normally called when the
|
|
|
|
/// compilation database is changed.
|
|
|
|
void reparseOpenedFiles();
|
2018-08-01 19:28:49 +08:00
|
|
|
void applyConfiguration(const ClangdConfigurationParamsChange &Settings);
|
2018-03-16 22:30:42 +08:00
|
|
|
|
2017-05-16 22:40:30 +08:00
|
|
|
/// Used to indicate that the 'shutdown' request was received from the
|
|
|
|
/// Language Server client.
|
2017-10-25 16:45:41 +08:00
|
|
|
bool ShutdownRequestReceived = false;
|
|
|
|
|
2017-05-16 17:38:59 +08:00
|
|
|
std::mutex FixItsMutex;
|
2018-03-12 23:28:22 +08:00
|
|
|
typedef std::map<clangd::Diagnostic, std::vector<Fix>, LSPDiagnosticCompare>
|
2017-05-16 17:38:59 +08:00
|
|
|
DiagnosticToReplacementMap;
|
|
|
|
/// Caches FixIts per file and diagnostics
|
|
|
|
llvm::StringMap<DiagnosticToReplacementMap> FixItsMap;
|
2017-06-13 23:59:43 +08:00
|
|
|
|
2018-08-02 01:39:29 +08:00
|
|
|
/// Encapsulates the directory-based or the in-memory compilation database
|
|
|
|
/// that's used by the LSP server.
|
|
|
|
class CompilationDB {
|
|
|
|
public:
|
|
|
|
static CompilationDB makeInMemory();
|
|
|
|
static CompilationDB
|
|
|
|
makeDirectoryBased(llvm::Optional<Path> CompileCommandsDir);
|
|
|
|
|
|
|
|
void invalidate(PathRef File);
|
|
|
|
|
|
|
|
/// Sets the compilation command for a particular file.
|
|
|
|
/// Only valid for in-memory CDB, no-op and error log on DirectoryBasedCDB.
|
|
|
|
///
|
|
|
|
/// \returns True if the File had no compilation command before.
|
|
|
|
bool
|
|
|
|
setCompilationCommandForFile(PathRef File,
|
|
|
|
tooling::CompileCommand CompilationCommand);
|
|
|
|
|
|
|
|
/// Adds extra compilation flags to the compilation command for a particular
|
|
|
|
/// file. Only valid for directory-based CDB, no-op and error log on
|
|
|
|
/// InMemoryCDB;
|
|
|
|
void setExtraFlagsForFile(PathRef File,
|
|
|
|
std::vector<std::string> ExtraFlags);
|
|
|
|
|
|
|
|
/// Set the compile commands directory to \p P.
|
|
|
|
/// Only valid for directory-based CDB, no-op and error log on InMemoryCDB;
|
|
|
|
void setCompileCommandsDir(Path P);
|
|
|
|
|
|
|
|
/// Returns a CDB that should be used to get compile commands for the
|
|
|
|
/// current instance of ClangdLSPServer.
|
|
|
|
GlobalCompilationDatabase &getCDB();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CompilationDB(std::unique_ptr<GlobalCompilationDatabase> CDB,
|
|
|
|
std::unique_ptr<CachingCompilationDb> CachingCDB,
|
|
|
|
bool IsDirectoryBased)
|
|
|
|
: CDB(std::move(CDB)), CachingCDB(std::move(CachingCDB)),
|
|
|
|
IsDirectoryBased(IsDirectoryBased) {}
|
|
|
|
|
|
|
|
// if IsDirectoryBased is true, an instance of InMemoryCDB.
|
|
|
|
// If IsDirectoryBased is false, an instance of DirectoryBasedCDB.
|
|
|
|
// unique_ptr<GlobalCompilationDatabase> CDB;
|
|
|
|
std::unique_ptr<GlobalCompilationDatabase> CDB;
|
|
|
|
// Non-null only for directory-based CDB
|
|
|
|
std::unique_ptr<CachingCompilationDb> CachingCDB;
|
|
|
|
bool IsDirectoryBased;
|
|
|
|
};
|
|
|
|
|
[clangd] Lay JSONRPCDispatcher to rest.
Summary:
Most of its functionality is moved into ClangdLSPServer.
The decoupling between JSONRPCDispatcher, ProtocolCallbacks, ClangdLSPServer
was never real, and only served to obfuscate.
Some previous implicit/magic stuff is now explicit:
- the return type of LSP method calls are now in the signature
- no more reply() that gets the ID using global context magic
- arg tracing no longer relies on RequestArgs::stash context magic either
This is mostly refactoring, but some deliberate fixes while here:
- LSP method params are now by const reference
- notifications and calls are now distinct namespaces.
(some tests had protocol errors and needed updating)
- we now reply to calls we failed to decode
- outgoing calls use distinct IDs
A few error codes and message IDs changed in unimportant ways (see tests).
Reviewers: ioeric
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53387
llvm-svn: 344737
2018-10-18 20:32:04 +08:00
|
|
|
// Most code should not deal with Transport directly.
|
|
|
|
// MessageHandler deals with incoming messages, use call() etc for outgoing.
|
[clangd] Refactor JSON-over-stdin/stdout code into Transport abstraction. (re-land r344620)
Summary:
This paves the way for alternative transports (mac XPC, maybe messagepack?),
and also generally improves layering: testing ClangdLSPServer becomes less of
a pipe dream, we split up the JSONOutput monolith, etc.
This isn't a final state, much of what remains in JSONRPCDispatcher can go away,
handlers can call reply() on the transport directly, JSONOutput can be renamed
to StreamLogger and removed, etc. But this patch is sprawling already.
The main observable change (see tests) is that hitting EOF on input is now an
error: the client should send the 'exit' notification.
This is defensible: the protocol doesn't spell this case out. Reproducing the
current behavior for all combinations of shutdown/exit/EOF clutters interfaces.
We can iterate on this if desired.
Reviewers: jkorous, ioeric, hokein
Subscribers: mgorny, ilya-biryukov, MaskRay, arphaman, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53286
llvm-svn: 344672
2018-10-17 15:32:05 +08:00
|
|
|
clangd::Transport &Transp;
|
[clangd] Lay JSONRPCDispatcher to rest.
Summary:
Most of its functionality is moved into ClangdLSPServer.
The decoupling between JSONRPCDispatcher, ProtocolCallbacks, ClangdLSPServer
was never real, and only served to obfuscate.
Some previous implicit/magic stuff is now explicit:
- the return type of LSP method calls are now in the signature
- no more reply() that gets the ID using global context magic
- arg tracing no longer relies on RequestArgs::stash context magic either
This is mostly refactoring, but some deliberate fixes while here:
- LSP method params are now by const reference
- notifications and calls are now distinct namespaces.
(some tests had protocol errors and needed updating)
- we now reply to calls we failed to decode
- outgoing calls use distinct IDs
A few error codes and message IDs changed in unimportant ways (see tests).
Reviewers: ioeric
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, cfe-commits
Differential Revision: https://reviews.llvm.org/D53387
llvm-svn: 344737
2018-10-18 20:32:04 +08:00
|
|
|
class MessageHandler;
|
|
|
|
std::unique_ptr<MessageHandler> MsgHandler;
|
|
|
|
std::atomic<int> NextCallID = {0};
|
|
|
|
std::mutex TranspWriter;
|
|
|
|
void call(StringRef Method, llvm::json::Value Params);
|
|
|
|
void notify(StringRef Method, llvm::json::Value Params);
|
|
|
|
void reply(llvm::json::Value ID, llvm::Expected<llvm::json::Value> Result);
|
|
|
|
|
2017-06-13 23:59:43 +08:00
|
|
|
// Various ClangdServer parameters go here. It's important they're created
|
|
|
|
// before ClangdServer.
|
2018-08-02 01:39:29 +08:00
|
|
|
CompilationDB CDB;
|
2018-06-13 17:20:41 +08:00
|
|
|
|
2017-06-13 23:59:43 +08:00
|
|
|
RealFileSystemProvider FSProvider;
|
2017-12-05 18:42:57 +08:00
|
|
|
/// Options used for code completion
|
|
|
|
clangd::CodeCompleteOptions CCOpts;
|
2018-08-11 01:25:07 +08:00
|
|
|
/// Options used for diagnostics.
|
|
|
|
ClangdDiagnosticOptions DiagOpts;
|
[clangd] Implementation of workspace/symbol request
Summary:
This is a basic implementation of the "workspace/symbol" request which is
used to find symbols by a string query. Since this is similar to code completion
in terms of result, this implementation reuses the "fuzzyFind" in order to get
matches. For now, the scoring algorithm is the same as code completion and
improvements could be done in the future.
The index model doesn't contain quite enough symbols for this to cover
common symbols like methods, enum class enumerators, functions in unamed
namespaces, etc. The index model will be augmented separately to achieve this.
Reviewers: sammccall, ilya-biryukov
Reviewed By: sammccall
Subscribers: jkorous, hokein, simark, sammccall, klimek, mgorny, ilya-biryukov, mgrang, jkorous-apple, ioeric, MaskRay, cfe-commits
Differential Revision: https://reviews.llvm.org/D44882
llvm-svn: 330637
2018-04-24 04:00:52 +08:00
|
|
|
/// The supported kinds of the client.
|
|
|
|
SymbolKindBitset SupportedSymbolKinds;
|
2018-09-28 01:13:07 +08:00
|
|
|
/// The supported completion item kinds of the client.
|
|
|
|
CompletionItemKindBitset SupportedCompletionItemKinds;
|
2018-10-17 00:29:41 +08:00
|
|
|
// Whether the client supports CodeAction response objects.
|
|
|
|
bool SupportsCodeAction = false;
|
2018-03-16 22:30:42 +08:00
|
|
|
|
|
|
|
// Store of the current versions of the open documents.
|
|
|
|
DraftStore DraftMgr;
|
|
|
|
|
2017-05-16 17:38:59 +08:00
|
|
|
// Server must be the last member of the class to allow its destructor to exit
|
|
|
|
// the worker thread that may otherwise run an async callback on partially
|
|
|
|
// destructed instance of ClangdLSPServer.
|
2018-09-26 13:48:29 +08:00
|
|
|
// Set in construtor and destroyed when run() finishes. To ensure all worker
|
|
|
|
// threads exit before run() returns.
|
|
|
|
std::unique_ptr<ClangdServer> Server;
|
2018-08-24 21:09:41 +08:00
|
|
|
};
|
2017-05-16 17:38:59 +08:00
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|
|
|
|
|
2018-08-15 00:03:32 +08:00
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_CLANGDLSPSERVER_H
|