2017-05-16 17:38:59 +08:00
|
|
|
//===--- DraftStore.cpp - File contents container ---------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-05-16 17:38:59 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "DraftStore.h"
|
[clangd] Support incremental document syncing
Summary:
This patch adds support for incremental document syncing, as described
in the LSP spec. The protocol specifies ranges in terms of Position (a
line and a character), and our drafts are stored as plain strings. So I
see two things that may not be super efficient for very large files:
- Converting a Position to an offset (the positionToOffset function)
requires searching for end of lines until we reach the desired line.
- When we update a range, we construct a new string, which implies
copying the whole document.
However, for the typical size of a C++ document and the frequency of
update (at which a user types), it may not be an issue. This patch aims
at getting the basic feature in, and we can always improve it later if
we find it's too slow.
Signed-off-by: Simon Marchi <simon.marchi@ericsson.com>
Reviewers: malaperle, ilya-biryukov
Reviewed By: ilya-biryukov
Subscribers: MaskRay, klimek, mgorny, ilya-biryukov, jkorous-apple, ioeric, cfe-commits
Differential Revision: https://reviews.llvm.org/D44272
llvm-svn: 328500
2018-03-26 22:41:40 +08:00
|
|
|
#include "SourceCode.h"
|
[clangd] Move non-clang base pieces into separate support/ lib. NFCI
Summary:
This enforces layering, reduces a sprawling clangd/ directory, and makes life
easier for embedders.
Reviewers: kbobyrev
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, usaxena95, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D79014
2020-04-28 23:49:17 +08:00
|
|
|
#include "support/Logger.h"
|
2021-03-02 07:16:33 +08:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
[clangd] Support incremental document syncing
Summary:
This patch adds support for incremental document syncing, as described
in the LSP spec. The protocol specifies ranges in terms of Position (a
line and a character), and our drafts are stored as plain strings. So I
see two things that may not be super efficient for very large files:
- Converting a Position to an offset (the positionToOffset function)
requires searching for end of lines until we reach the desired line.
- When we update a range, we construct a new string, which implies
copying the whole document.
However, for the typical size of a C++ document and the frequency of
update (at which a user types), it may not be an issue. This patch aims
at getting the basic feature in, and we can always improve it later if
we find it's too slow.
Signed-off-by: Simon Marchi <simon.marchi@ericsson.com>
Reviewers: malaperle, ilya-biryukov
Reviewed By: ilya-biryukov
Subscribers: MaskRay, klimek, mgorny, ilya-biryukov, jkorous-apple, ioeric, cfe-commits
Differential Revision: https://reviews.llvm.org/D44272
llvm-svn: 328500
2018-03-26 22:41:40 +08:00
|
|
|
#include "llvm/Support/Errc.h"
|
2021-03-09 22:35:20 +08:00
|
|
|
#include "llvm/Support/VirtualFileSystem.h"
|
|
|
|
#include <memory>
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2018-10-20 23:30:37 +08:00
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
2017-05-16 17:38:59 +08:00
|
|
|
|
2020-03-03 22:57:39 +08:00
|
|
|
llvm::Optional<DraftStore::Draft> DraftStore::getDraft(PathRef File) const {
|
2017-05-16 17:38:59 +08:00
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
|
|
|
|
auto It = Drafts.find(File);
|
|
|
|
if (It == Drafts.end())
|
2018-10-20 23:30:37 +08:00
|
|
|
return None;
|
2018-03-16 22:30:42 +08:00
|
|
|
|
2021-03-09 22:55:55 +08:00
|
|
|
return It->second.D;
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
|
|
|
|
[clangd] DidChangeConfiguration Notification
Summary:
Implementation of DidChangeConfiguration notification handling in
clangd. This currently only supports changing one setting: the path of
the compilation database to be used for the current project. In other
words, it is no longer necessary to restart clangd with a different
command line argument in order to change the compilation database.
Reviewers: malaperle, krasimir, bkramer, ilya-biryukov
Subscribers: jkorous-apple, ioeric, simark, klimek, ilya-biryukov, arphaman, rwols, cfe-commits
Differential Revision: https://reviews.llvm.org/D39571
Signed-off-by: Simon Marchi <simon.marchi@ericsson.com>
Signed-off-by: William Enright <william.enright@polymtl.ca>
llvm-svn: 325784
2018-02-22 22:00:39 +08:00
|
|
|
std::vector<Path> DraftStore::getActiveFiles() const {
|
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
std::vector<Path> ResultVector;
|
|
|
|
|
|
|
|
for (auto DraftIt = Drafts.begin(); DraftIt != Drafts.end(); DraftIt++)
|
2020-01-29 03:23:46 +08:00
|
|
|
ResultVector.push_back(std::string(DraftIt->getKey()));
|
[clangd] DidChangeConfiguration Notification
Summary:
Implementation of DidChangeConfiguration notification handling in
clangd. This currently only supports changing one setting: the path of
the compilation database to be used for the current project. In other
words, it is no longer necessary to restart clangd with a different
command line argument in order to change the compilation database.
Reviewers: malaperle, krasimir, bkramer, ilya-biryukov
Subscribers: jkorous-apple, ioeric, simark, klimek, ilya-biryukov, arphaman, rwols, cfe-commits
Differential Revision: https://reviews.llvm.org/D39571
Signed-off-by: Simon Marchi <simon.marchi@ericsson.com>
Signed-off-by: William Enright <william.enright@polymtl.ca>
llvm-svn: 325784
2018-02-22 22:00:39 +08:00
|
|
|
|
|
|
|
return ResultVector;
|
|
|
|
}
|
|
|
|
|
2021-03-02 07:16:33 +08:00
|
|
|
static void increment(std::string &S) {
|
|
|
|
// Ensure there is a numeric suffix.
|
|
|
|
if (S.empty() || !llvm::isDigit(S.back())) {
|
|
|
|
S.push_back('0');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Increment the numeric suffix.
|
|
|
|
auto I = S.rbegin(), E = S.rend();
|
|
|
|
for (;;) {
|
|
|
|
if (I == E || !llvm::isDigit(*I)) {
|
|
|
|
// Reached start of numeric section, it was all 9s.
|
|
|
|
S.insert(I.base(), '1');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*I != '9') {
|
|
|
|
// Found a digit we can increment, we're done.
|
|
|
|
++*I;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*I = '0'; // and keep incrementing to the left.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-03 22:57:39 +08:00
|
|
|
static void updateVersion(DraftStore::Draft &D,
|
2021-03-02 07:16:33 +08:00
|
|
|
llvm::StringRef SpecifiedVersion) {
|
|
|
|
if (!SpecifiedVersion.empty()) {
|
2020-03-03 22:57:39 +08:00
|
|
|
// We treat versions as opaque, but the protocol says they increase.
|
2021-03-02 07:16:33 +08:00
|
|
|
if (SpecifiedVersion.compare_numeric(D.Version) <= 0)
|
|
|
|
log("File version went from {0} to {1}", D.Version, SpecifiedVersion);
|
|
|
|
D.Version = SpecifiedVersion.str();
|
2020-03-03 22:57:39 +08:00
|
|
|
} else {
|
2021-03-02 07:16:33 +08:00
|
|
|
// Note that if D was newly-created, this will bump D.Version from "" to 1.
|
|
|
|
increment(D.Version);
|
2020-03-03 22:57:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 07:16:33 +08:00
|
|
|
std::string DraftStore::addDraft(PathRef File, llvm::StringRef Version,
|
|
|
|
llvm::StringRef Contents) {
|
2017-05-16 17:38:59 +08:00
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
|
2021-03-09 22:35:20 +08:00
|
|
|
auto &D = Drafts[File];
|
2021-03-09 22:55:55 +08:00
|
|
|
updateVersion(D.D, Version);
|
2021-03-09 22:35:20 +08:00
|
|
|
std::time(&D.MTime);
|
2021-03-09 22:55:55 +08:00
|
|
|
D.D.Contents = std::make_shared<std::string>(Contents);
|
|
|
|
return D.D.Version;
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
|
|
|
|
2018-03-16 22:30:42 +08:00
|
|
|
void DraftStore::removeDraft(PathRef File) {
|
2017-05-16 17:38:59 +08:00
|
|
|
std::lock_guard<std::mutex> Lock(Mutex);
|
|
|
|
|
2018-03-16 22:30:42 +08:00
|
|
|
Drafts.erase(File);
|
2017-05-16 17:38:59 +08:00
|
|
|
}
|
2018-10-20 23:30:37 +08:00
|
|
|
|
2021-03-09 22:35:20 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
/// A read only MemoryBuffer shares ownership of a ref counted string. The
|
|
|
|
/// shared string object must not be modified while an owned by this buffer.
|
|
|
|
class SharedStringBuffer : public llvm::MemoryBuffer {
|
|
|
|
const std::shared_ptr<const std::string> BufferContents;
|
|
|
|
const std::string Name;
|
|
|
|
|
|
|
|
public:
|
|
|
|
BufferKind getBufferKind() const override {
|
|
|
|
return MemoryBuffer::MemoryBuffer_Malloc;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef getBufferIdentifier() const override { return Name; }
|
|
|
|
|
|
|
|
SharedStringBuffer(std::shared_ptr<const std::string> Data, StringRef Name)
|
|
|
|
: BufferContents(std::move(Data)), Name(Name) {
|
|
|
|
assert(BufferContents && "Can't create from empty shared_ptr");
|
|
|
|
MemoryBuffer::init(BufferContents->c_str(),
|
|
|
|
BufferContents->c_str() + BufferContents->size(),
|
|
|
|
/*RequiresNullTerminator=*/true);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> DraftStore::asVFS() const {
|
|
|
|
auto MemFS = llvm::makeIntrusiveRefCnt<llvm::vfs::InMemoryFileSystem>();
|
|
|
|
std::lock_guard<std::mutex> Guard(Mutex);
|
|
|
|
for (const auto &Draft : Drafts)
|
|
|
|
MemFS->addFile(Draft.getKey(), Draft.getValue().MTime,
|
|
|
|
std::make_unique<SharedStringBuffer>(
|
2021-03-09 22:55:55 +08:00
|
|
|
Draft.getValue().D.Contents, Draft.getKey()));
|
2021-03-09 22:35:20 +08:00
|
|
|
return MemFS;
|
|
|
|
}
|
2018-10-20 23:30:37 +08:00
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|