1 //===--- DraftStore.h - File contents container -----------------*- C++ -*-===//
3 // 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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_DRAFTSTORE_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_DRAFTSTORE_H
12 #include "support/Path.h"
13 #include "clang/Basic/LLVM.h"
14 #include "llvm/ADT/StringMap.h"
15 #include "llvm/Support/VirtualFileSystem.h"
24 /// A thread-safe container for files opened in a workspace, addressed by
25 /// filenames. The contents are owned by the DraftStore.
26 /// Each time a draft is updated, it is assigned a version. This can be
27 /// specified by the caller or incremented from the previous version.
31 std::shared_ptr
<const std::string
> Contents
;
35 /// \return Contents of the stored document.
36 /// For untracked files, a std::nullopt is returned.
37 std::optional
<Draft
> getDraft(PathRef File
) const;
39 /// \return List of names of the drafts in this store.
40 std::vector
<Path
> getActiveFiles() const;
42 /// Replace contents of the draft for \p File with \p Contents.
43 /// If version is empty, one will be automatically assigned.
44 /// Returns the version.
45 std::string
addDraft(PathRef File
, llvm::StringRef Version
,
48 /// Remove the draft from the store.
49 void removeDraft(PathRef File
);
51 llvm::IntrusiveRefCntPtr
<llvm::vfs::FileSystem
> asVFS() const;
58 mutable std::mutex Mutex
;
59 llvm::StringMap
<DraftAndTime
> Drafts
;