2017-05-16 17:38:59 +08:00
|
|
|
//===--- ClangdServer.cpp - Main clangd server code --------------*- C++-*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===-------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ClangdServer.h"
|
2017-05-16 22:40:30 +08:00
|
|
|
#include "clang/Format/Format.h"
|
2017-05-16 17:38:59 +08:00
|
|
|
#include "clang/Frontend/ASTUnit.h"
|
|
|
|
#include "clang/Frontend/CompilerInstance.h"
|
|
|
|
#include "clang/Frontend/CompilerInvocation.h"
|
|
|
|
#include "clang/Tooling/CompilationDatabase.h"
|
2017-05-16 22:40:30 +08:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2017-05-16 17:38:59 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2017-05-23 21:42:59 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include <future>
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2017-05-16 18:06:20 +08:00
|
|
|
using namespace clang;
|
2017-05-16 17:38:59 +08:00
|
|
|
using namespace clang::clangd;
|
|
|
|
|
2017-05-16 22:40:30 +08:00
|
|
|
namespace {
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
class FulfillPromiseGuard {
|
|
|
|
public:
|
|
|
|
FulfillPromiseGuard(std::promise<void> &Promise) : Promise(Promise) {}
|
|
|
|
|
|
|
|
~FulfillPromiseGuard() { Promise.set_value(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::promise<void> &Promise;
|
|
|
|
};
|
|
|
|
|
2017-05-16 22:40:30 +08:00
|
|
|
std::vector<tooling::Replacement> formatCode(StringRef Code, StringRef Filename,
|
|
|
|
ArrayRef<tooling::Range> Ranges) {
|
|
|
|
// Call clang-format.
|
|
|
|
// FIXME: Don't ignore style.
|
|
|
|
format::FormatStyle Style = format::getLLVMStyle();
|
|
|
|
auto Result = format::reformat(Style, Code, Ranges, Filename);
|
|
|
|
|
|
|
|
return std::vector<tooling::Replacement>(Result.begin(), Result.end());
|
|
|
|
}
|
|
|
|
|
2017-06-28 18:34:50 +08:00
|
|
|
std::string getStandardResourceDir() {
|
|
|
|
static int Dummy; // Just an address in this process.
|
|
|
|
return CompilerInvocation::GetResourcesPath("clangd", (void *)&Dummy);
|
|
|
|
}
|
|
|
|
|
2017-05-16 22:40:30 +08:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
size_t clangd::positionToOffset(StringRef Code, Position P) {
|
|
|
|
size_t Offset = 0;
|
|
|
|
for (int I = 0; I != P.line; ++I) {
|
|
|
|
// FIXME: \r\n
|
|
|
|
// FIXME: UTF-8
|
|
|
|
size_t F = Code.find('\n', Offset);
|
|
|
|
if (F == StringRef::npos)
|
|
|
|
return 0; // FIXME: Is this reasonable?
|
|
|
|
Offset = F + 1;
|
|
|
|
}
|
|
|
|
return (Offset == 0 ? 0 : (Offset - 1)) + P.character;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Turn an offset in Code into a [line, column] pair.
|
|
|
|
Position clangd::offsetToPosition(StringRef Code, size_t Offset) {
|
|
|
|
StringRef JustBefore = Code.substr(0, Offset);
|
|
|
|
// FIXME: \r\n
|
|
|
|
// FIXME: UTF-8
|
|
|
|
int Lines = JustBefore.count('\n');
|
|
|
|
int Cols = JustBefore.size() - JustBefore.rfind('\n') - 1;
|
|
|
|
return {Lines, Cols};
|
|
|
|
}
|
|
|
|
|
2017-05-30 23:11:02 +08:00
|
|
|
Tagged<IntrusiveRefCntPtr<vfs::FileSystem>>
|
2017-06-14 17:46:44 +08:00
|
|
|
RealFileSystemProvider::getTaggedFileSystem(PathRef File) {
|
2017-05-30 23:11:02 +08:00
|
|
|
return make_tagged(vfs::getRealFileSystem(), VFSTag());
|
2017-05-26 20:26:51 +08:00
|
|
|
}
|
|
|
|
|
2017-05-23 21:42:59 +08:00
|
|
|
ClangdScheduler::ClangdScheduler(bool RunSynchronously)
|
2017-05-16 17:38:59 +08:00
|
|
|
: RunSynchronously(RunSynchronously) {
|
|
|
|
if (RunSynchronously) {
|
|
|
|
// Don't start the worker thread if we're running synchronously
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize Worker in ctor body, rather than init list to avoid potentially
|
|
|
|
// using not-yet-initialized members
|
2017-05-23 21:42:59 +08:00
|
|
|
Worker = std::thread([this]() {
|
2017-05-16 17:38:59 +08:00
|
|
|
while (true) {
|
2017-08-01 23:51:38 +08:00
|
|
|
std::future<void> Request;
|
2017-05-16 17:38:59 +08:00
|
|
|
|
|
|
|
// Pick request from the queue
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> Lock(Mutex);
|
|
|
|
// Wait for more requests.
|
|
|
|
RequestCV.wait(Lock, [this] { return !RequestQueue.empty() || Done; });
|
|
|
|
if (Done)
|
|
|
|
return;
|
|
|
|
|
|
|
|
assert(!RequestQueue.empty() && "RequestQueue was empty");
|
|
|
|
|
2017-05-23 21:42:59 +08:00
|
|
|
// We process requests starting from the front of the queue. Users of
|
|
|
|
// ClangdScheduler have a way to prioritise their requests by putting
|
|
|
|
// them to the either side of the queue (using either addToEnd or
|
|
|
|
// addToFront).
|
|
|
|
Request = std::move(RequestQueue.front());
|
|
|
|
RequestQueue.pop_front();
|
2017-05-16 17:38:59 +08:00
|
|
|
} // unlock Mutex
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
Request.get();
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ClangdScheduler::~ClangdScheduler() {
|
|
|
|
if (RunSynchronously)
|
|
|
|
return; // no worker thread is running in that case
|
|
|
|
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
// Wake up the worker thread
|
|
|
|
Done = true;
|
|
|
|
} // unlock Mutex
|
2017-05-23 21:42:59 +08:00
|
|
|
RequestCV.notify_one();
|
2017-05-16 17:38:59 +08:00
|
|
|
Worker.join();
|
|
|
|
}
|
|
|
|
|
2017-06-13 23:59:43 +08:00
|
|
|
ClangdServer::ClangdServer(GlobalCompilationDatabase &CDB,
|
|
|
|
DiagnosticsConsumer &DiagConsumer,
|
|
|
|
FileSystemProvider &FSProvider,
|
2017-06-28 18:34:50 +08:00
|
|
|
bool RunSynchronously,
|
|
|
|
llvm::Optional<StringRef> ResourceDir)
|
2017-06-13 23:59:43 +08:00
|
|
|
: CDB(CDB), DiagConsumer(DiagConsumer), FSProvider(FSProvider),
|
2017-06-28 18:34:50 +08:00
|
|
|
ResourceDir(ResourceDir ? ResourceDir->str() : getStandardResourceDir()),
|
2017-05-16 17:38:59 +08:00
|
|
|
PCHs(std::make_shared<PCHContainerOperations>()),
|
2017-05-23 21:42:59 +08:00
|
|
|
WorkScheduler(RunSynchronously) {}
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
std::future<void> ClangdServer::addDocument(PathRef File, StringRef Contents) {
|
2017-05-23 21:42:59 +08:00
|
|
|
DocVersion Version = DraftMgr.updateDraft(File, Contents);
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
auto TaggedFS = FSProvider.getTaggedFileSystem(File);
|
|
|
|
std::shared_ptr<CppFile> Resources =
|
|
|
|
Units.getOrCreateFile(File, ResourceDir, CDB, PCHs, TaggedFS.Value);
|
2017-08-14 16:17:24 +08:00
|
|
|
return scheduleReparseAndDiags(File, VersionedDraft{Version, Contents.str()},
|
|
|
|
std::move(Resources), std::move(TaggedFS));
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
std::future<void> ClangdServer::removeDocument(PathRef File) {
|
2017-08-14 16:17:24 +08:00
|
|
|
DraftMgr.removeDraft(File);
|
|
|
|
std::shared_ptr<CppFile> Resources = Units.removeIfPresent(File);
|
|
|
|
return scheduleCancelRebuild(std::move(Resources));
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
std::future<void> ClangdServer::forceReparse(PathRef File) {
|
2017-08-14 16:37:32 +08:00
|
|
|
auto FileContents = DraftMgr.getDraft(File);
|
|
|
|
assert(FileContents.Draft &&
|
|
|
|
"forceReparse() was called for non-added document");
|
|
|
|
|
|
|
|
auto TaggedFS = FSProvider.getTaggedFileSystem(File);
|
|
|
|
auto Recreated = Units.recreateFileIfCompileCommandChanged(
|
|
|
|
File, ResourceDir, CDB, PCHs, TaggedFS.Value);
|
|
|
|
|
|
|
|
// Note that std::future from this cleanup action is ignored.
|
|
|
|
scheduleCancelRebuild(std::move(Recreated.RemovedFile));
|
|
|
|
// Schedule a reparse.
|
|
|
|
return scheduleReparseAndDiags(File, std::move(FileContents),
|
|
|
|
std::move(Recreated.FileInCollection),
|
|
|
|
std::move(TaggedFS));
|
2017-05-26 20:26:51 +08:00
|
|
|
}
|
|
|
|
|
2017-06-13 22:15:56 +08:00
|
|
|
Tagged<std::vector<CompletionItem>>
|
|
|
|
ClangdServer::codeComplete(PathRef File, Position Pos,
|
2017-08-01 01:09:29 +08:00
|
|
|
llvm::Optional<StringRef> OverridenContents,
|
|
|
|
IntrusiveRefCntPtr<vfs::FileSystem> *UsedFS) {
|
2017-06-13 22:15:56 +08:00
|
|
|
std::string DraftStorage;
|
|
|
|
if (!OverridenContents) {
|
|
|
|
auto FileContents = DraftMgr.getDraft(File);
|
|
|
|
assert(FileContents.Draft &&
|
|
|
|
"codeComplete is called for non-added document");
|
|
|
|
|
|
|
|
DraftStorage = std::move(*FileContents.Draft);
|
|
|
|
OverridenContents = DraftStorage;
|
|
|
|
}
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2017-06-14 17:46:44 +08:00
|
|
|
auto TaggedFS = FSProvider.getTaggedFileSystem(File);
|
2017-08-01 01:09:29 +08:00
|
|
|
if (UsedFS)
|
|
|
|
*UsedFS = TaggedFS.Value;
|
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
std::shared_ptr<CppFile> Resources = Units.getFile(File);
|
|
|
|
assert(Resources && "Calling completion on non-added file");
|
|
|
|
|
|
|
|
auto Preamble = Resources->getPossiblyStalePreamble();
|
|
|
|
std::vector<CompletionItem> Result =
|
|
|
|
clangd::codeComplete(File, Resources->getCompileCommand(),
|
|
|
|
Preamble ? &Preamble->Preamble : nullptr,
|
|
|
|
*OverridenContents, Pos, TaggedFS.Value, PCHs);
|
2017-05-30 23:11:02 +08:00
|
|
|
return make_tagged(std::move(Result), TaggedFS.Tag);
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
2017-05-23 21:42:59 +08:00
|
|
|
|
2017-05-16 22:40:30 +08:00
|
|
|
std::vector<tooling::Replacement> ClangdServer::formatRange(PathRef File,
|
|
|
|
Range Rng) {
|
|
|
|
std::string Code = getDocument(File);
|
|
|
|
|
|
|
|
size_t Begin = positionToOffset(Code, Rng.start);
|
|
|
|
size_t Len = positionToOffset(Code, Rng.end) - Begin;
|
|
|
|
return formatCode(Code, File, {tooling::Range(Begin, Len)});
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<tooling::Replacement> ClangdServer::formatFile(PathRef File) {
|
|
|
|
// Format everything.
|
|
|
|
std::string Code = getDocument(File);
|
|
|
|
return formatCode(Code, File, {tooling::Range(0, Code.size())});
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<tooling::Replacement> ClangdServer::formatOnType(PathRef File,
|
|
|
|
Position Pos) {
|
|
|
|
// Look for the previous opening brace from the character position and
|
|
|
|
// format starting from there.
|
|
|
|
std::string Code = getDocument(File);
|
|
|
|
size_t CursorPos = positionToOffset(Code, Pos);
|
|
|
|
size_t PreviousLBracePos = StringRef(Code).find_last_of('{', CursorPos);
|
|
|
|
if (PreviousLBracePos == StringRef::npos)
|
|
|
|
PreviousLBracePos = CursorPos;
|
|
|
|
size_t Len = 1 + CursorPos - PreviousLBracePos;
|
|
|
|
|
|
|
|
return formatCode(Code, File, {tooling::Range(PreviousLBracePos, Len)});
|
|
|
|
}
|
2017-05-16 17:38:59 +08:00
|
|
|
|
|
|
|
std::string ClangdServer::getDocument(PathRef File) {
|
|
|
|
auto draft = DraftMgr.getDraft(File);
|
|
|
|
assert(draft.Draft && "File is not tracked, cannot get contents");
|
|
|
|
return *draft.Draft;
|
|
|
|
}
|
|
|
|
|
2017-05-23 21:42:59 +08:00
|
|
|
std::string ClangdServer::dumpAST(PathRef File) {
|
2017-08-01 23:51:38 +08:00
|
|
|
std::shared_ptr<CppFile> Resources = Units.getFile(File);
|
|
|
|
assert(Resources && "dumpAST is called for non-added document");
|
|
|
|
|
|
|
|
std::string Result;
|
2017-08-02 02:27:58 +08:00
|
|
|
Resources->getAST().get()->runUnderLock([&Result](ParsedAST *AST) {
|
2017-08-01 23:51:38 +08:00
|
|
|
llvm::raw_string_ostream ResultOS(Result);
|
|
|
|
if (AST) {
|
|
|
|
clangd::dumpAST(*AST, ResultOS);
|
|
|
|
} else {
|
|
|
|
ResultOS << "<no-ast>";
|
|
|
|
}
|
|
|
|
ResultOS.flush();
|
2017-05-23 21:42:59 +08:00
|
|
|
});
|
2017-08-01 23:51:38 +08:00
|
|
|
return Result;
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
2017-06-29 00:12:10 +08:00
|
|
|
|
2017-08-01 23:51:38 +08:00
|
|
|
Tagged<std::vector<Location>> ClangdServer::findDefinitions(PathRef File,
|
|
|
|
Position Pos) {
|
2017-06-29 00:12:10 +08:00
|
|
|
auto FileContents = DraftMgr.getDraft(File);
|
2017-08-01 23:51:38 +08:00
|
|
|
assert(FileContents.Draft &&
|
|
|
|
"findDefinitions is called for non-added document");
|
2017-06-29 00:12:10 +08:00
|
|
|
|
|
|
|
auto TaggedFS = FSProvider.getTaggedFileSystem(File);
|
2017-08-01 23:51:38 +08:00
|
|
|
|
|
|
|
std::shared_ptr<CppFile> Resources = Units.getFile(File);
|
|
|
|
assert(Resources && "Calling findDefinitions on non-added file");
|
|
|
|
|
|
|
|
std::vector<Location> Result;
|
2017-08-02 02:27:58 +08:00
|
|
|
Resources->getAST().get()->runUnderLock([Pos, &Result](ParsedAST *AST) {
|
2017-08-01 23:51:38 +08:00
|
|
|
if (!AST)
|
|
|
|
return;
|
|
|
|
Result = clangd::findDefinitions(*AST, Pos);
|
|
|
|
});
|
2017-06-29 00:12:10 +08:00
|
|
|
return make_tagged(std::move(Result), TaggedFS.Tag);
|
|
|
|
}
|
2017-08-14 16:17:24 +08:00
|
|
|
|
|
|
|
std::future<void> ClangdServer::scheduleReparseAndDiags(
|
|
|
|
PathRef File, VersionedDraft Contents, std::shared_ptr<CppFile> Resources,
|
|
|
|
Tagged<IntrusiveRefCntPtr<vfs::FileSystem>> TaggedFS) {
|
|
|
|
|
|
|
|
assert(Contents.Draft && "Draft must have contents");
|
|
|
|
std::future<llvm::Optional<std::vector<DiagWithFixIts>>> DeferredRebuild =
|
|
|
|
Resources->deferRebuild(*Contents.Draft, TaggedFS.Value);
|
|
|
|
std::promise<void> DonePromise;
|
|
|
|
std::future<void> DoneFuture = DonePromise.get_future();
|
|
|
|
|
|
|
|
DocVersion Version = Contents.Version;
|
|
|
|
Path FileStr = File;
|
|
|
|
VFSTag Tag = TaggedFS.Tag;
|
|
|
|
auto ReparseAndPublishDiags =
|
|
|
|
[this, FileStr, Version,
|
|
|
|
Tag](std::future<llvm::Optional<std::vector<DiagWithFixIts>>>
|
|
|
|
DeferredRebuild,
|
|
|
|
std::promise<void> DonePromise) -> void {
|
|
|
|
FulfillPromiseGuard Guard(DonePromise);
|
|
|
|
|
|
|
|
auto CurrentVersion = DraftMgr.getVersion(FileStr);
|
|
|
|
if (CurrentVersion != Version)
|
|
|
|
return; // This request is outdated
|
|
|
|
|
|
|
|
auto Diags = DeferredRebuild.get();
|
|
|
|
if (!Diags)
|
|
|
|
return; // A new reparse was requested before this one completed.
|
|
|
|
DiagConsumer.onDiagnosticsReady(FileStr,
|
|
|
|
make_tagged(std::move(*Diags), Tag));
|
|
|
|
};
|
|
|
|
|
|
|
|
WorkScheduler.addToFront(std::move(ReparseAndPublishDiags),
|
|
|
|
std::move(DeferredRebuild), std::move(DonePromise));
|
|
|
|
return DoneFuture;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::future<void>
|
|
|
|
ClangdServer::scheduleCancelRebuild(std::shared_ptr<CppFile> Resources) {
|
|
|
|
std::promise<void> DonePromise;
|
|
|
|
std::future<void> DoneFuture = DonePromise.get_future();
|
|
|
|
if (!Resources) {
|
|
|
|
// No need to schedule any cleanup.
|
|
|
|
DonePromise.set_value();
|
|
|
|
return DoneFuture;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::future<void> DeferredCancel = Resources->deferCancelRebuild();
|
|
|
|
auto CancelReparses = [Resources](std::promise<void> DonePromise,
|
|
|
|
std::future<void> DeferredCancel) {
|
|
|
|
FulfillPromiseGuard Guard(DonePromise);
|
|
|
|
DeferredCancel.get();
|
|
|
|
};
|
|
|
|
WorkScheduler.addToFront(std::move(CancelReparses), std::move(DonePromise),
|
|
|
|
std::move(DeferredCancel));
|
|
|
|
return DoneFuture;
|
|
|
|
}
|