1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
//===- ObjectStore.cpp ------------------------------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#include "llvm/CAS/ObjectStore.h"
#include "BuiltinCAS.h"
#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/FunctionExtras.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/CAS/UnifiedOnDiskCache.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Errc.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/SmallVectorMemoryBuffer.h"
using namespace llvm;
using namespace llvm::cas;
void CASContext::anchor() {}
void ObjectStore::anchor() {}
void Cancellable::anchor() {}
LLVM_DUMP_METHOD void CASID::dump() const { print(dbgs()); }
LLVM_DUMP_METHOD void ObjectStore::dump() const { print(dbgs()); }
LLVM_DUMP_METHOD void ObjectRef::dump() const { print(dbgs()); }
LLVM_DUMP_METHOD void ObjectHandle::dump() const { print(dbgs()); }
std::string CASID::toString() const {
std::string S;
raw_string_ostream(S) << *this;
return S;
}
static void printReferenceBase(raw_ostream &OS, StringRef Kind,
uint64_t InternalRef, std::optional<CASID> ID) {
OS << Kind << "=" << InternalRef;
if (ID)
OS << "[" << *ID << "]";
}
void ReferenceBase::print(raw_ostream &OS, const ObjectHandle &This) const {
assert(this == &This);
printReferenceBase(OS, "object-handle", InternalRef, std::nullopt);
}
void ReferenceBase::print(raw_ostream &OS, const ObjectRef &This) const {
assert(this == &This);
std::optional<CASID> ID;
#if LLVM_ENABLE_ABI_BREAKING_CHECKS
if (CAS)
ID = CAS->getID(This);
#endif
printReferenceBase(OS, "object-ref", InternalRef, ID);
}
void ObjectStore::loadIfExistsAsync(
ObjectRef Ref,
unique_function<void(Expected<std::optional<ObjectHandle>>)> Callback,
std::unique_ptr<Cancellable> *CancelObj) {
// The default implementation is synchronous.
Callback(loadIfExists(Ref));
}
Expected<ObjectHandle> ObjectStore::load(ObjectRef Ref) {
std::optional<ObjectHandle> Handle;
if (Error E = loadIfExists(Ref).moveInto(Handle))
return std::move(E);
if (!Handle)
return createStringError(errc::invalid_argument,
"missing object '" + getID(Ref).toString() + "'");
return *Handle;
}
std::unique_ptr<MemoryBuffer>
ObjectStore::getMemoryBuffer(ObjectHandle Node, StringRef Name,
bool RequiresNullTerminator) {
return MemoryBuffer::getMemBuffer(
toStringRef(getData(Node, RequiresNullTerminator)), Name,
RequiresNullTerminator);
}
void ObjectStore::readRefs(ObjectHandle Node,
SmallVectorImpl<ObjectRef> &Refs) const {
consumeError(forEachRef(Node, [&Refs](ObjectRef Ref) -> Error {
Refs.push_back(Ref);
return Error::success();
}));
}
Expected<ObjectProxy> ObjectStore::getProxy(const CASID &ID) {
std::optional<ObjectRef> Ref = getReference(ID);
if (!Ref)
return createUnknownObjectError(ID);
return getProxy(*Ref);
}
Expected<ObjectProxy> ObjectStore::getProxy(ObjectRef Ref) {
std::optional<ObjectHandle> H;
if (Error E = load(Ref).moveInto(H))
return std::move(E);
return ObjectProxy::load(*this, Ref, *H);
}
Expected<std::optional<ObjectProxy>>
ObjectStore::getProxyIfExists(ObjectRef Ref) {
std::optional<ObjectHandle> H;
if (Error E = loadIfExists(Ref).moveInto(H))
return std::move(E);
if (!H)
return std::nullopt;
return ObjectProxy::load(*this, Ref, *H);
}
std::future<AsyncProxyValue> ObjectStore::getProxyFuture(ObjectRef Ref) {
std::promise<AsyncProxyValue> Promise;
auto Future = Promise.get_future();
getProxyAsync(Ref, [Promise = std::move(Promise)](
Expected<std::optional<ObjectProxy>> Obj) mutable {
Promise.set_value(std::move(Obj));
});
return Future;
}
void ObjectStore::getProxyAsync(
const CASID &ID,
unique_function<void(Expected<std::optional<ObjectProxy>>)> Callback,
std::unique_ptr<Cancellable> *CancelObj) {
std::optional<ObjectRef> Ref = getReference(ID);
if (!Ref)
return Callback(createUnknownObjectError(ID));
return getProxyAsync(*Ref, std::move(Callback), CancelObj);
}
void ObjectStore::getProxyAsync(
ObjectRef Ref,
unique_function<void(Expected<std::optional<ObjectProxy>>)> Callback,
std::unique_ptr<Cancellable> *CancelObj) {
// FIXME: there is potential for use-after-free for the 'this' pointer.
// Either we should always allocate shared pointers for \c ObjectStore objects
// and pass \c shared_from_this() or expect that the caller will not release
// the \c ObjectStore before the callback returns.
return loadIfExistsAsync(
Ref,
[this, Ref, Callback = std::move(Callback)](
Expected<std::optional<ObjectHandle>> H) mutable {
if (!H)
Callback(H.takeError());
else if (!*H)
Callback(std::nullopt);
else
Callback(ObjectProxy::load(*this, Ref, **H));
},
CancelObj);
}
Error ObjectStore::createUnknownObjectError(const CASID &ID) {
return createStringError(std::make_error_code(std::errc::invalid_argument),
"unknown object '" + ID.toString() + "'");
}
Expected<ObjectProxy> ObjectStore::createProxy(ArrayRef<ObjectRef> Refs,
StringRef Data) {
Expected<ObjectRef> Ref = store(Refs, arrayRefFromStringRef<char>(Data));
if (!Ref)
return Ref.takeError();
return getProxy(*Ref);
}
Expected<ObjectRef>
ObjectStore::storeFromOpenFileImpl(sys::fs::file_t FD,
std::optional<sys::fs::file_status> Status) {
// Copy the file into an immutable memory buffer and call \c store on that.
// Using \c mmap would be unsafe because there's a race window between when we
// get the digest hash for the \c mmap contents and when we store the data; if
// the file changes in-between we will create an invalid object.
// FIXME: For the on-disk CAS implementation use cloning to store it as a
// standalone file if the file-system supports it and the file is large.
constexpr size_t ChunkSize = 4 * 4096;
SmallString<0> Data;
Data.reserve(ChunkSize * 2);
if (Error E = sys::fs::readNativeFileToEOF(FD, Data, ChunkSize))
return std::move(E);
return store(std::nullopt, ArrayRef(Data.data(), Data.size()));
}
Error ObjectStore::validateTree(ObjectRef Root) {
SmallDenseSet<ObjectRef> ValidatedRefs;
SmallVector<ObjectRef, 16> RefsToValidate;
RefsToValidate.push_back(Root);
while (!RefsToValidate.empty()) {
ObjectRef Ref = RefsToValidate.pop_back_val();
auto [I, Inserted] = ValidatedRefs.insert(Ref);
if (!Inserted)
continue; // already validated.
if (Error E = validate(getID(Ref)))
return E;
Expected<ObjectHandle> Obj = load(Ref);
if (!Obj)
return Obj.takeError();
if (Error E = forEachRef(*Obj, [&RefsToValidate](ObjectRef R) -> Error {
RefsToValidate.push_back(R);
return Error::success();
}))
return E;
}
return Error::success();
}
std::unique_ptr<MemoryBuffer>
ObjectProxy::getMemoryBuffer(StringRef Name,
bool RequiresNullTerminator) const {
return CAS->getMemoryBuffer(H, Name, RequiresNullTerminator);
}
static Expected<std::shared_ptr<ObjectStore>>
createOnDiskCASImpl(const Twine &Path) {
return createOnDiskCAS(Path);
}
static Expected<std::shared_ptr<ObjectStore>>
createInMemoryCASImpl(const Twine &) {
return createInMemoryCAS();
}
static Expected<std::shared_ptr<ObjectStore>>
createPluginCASImpl(const Twine &URL) {
// Format used is
// plugin://${PATH_TO_PLUGIN}?${OPT1}=${VAL1}&${OPT2}=${VAL2}..
// "ondisk-path" as option is treated specially, the rest of options are
// passed to the plugin verbatim.
SmallString<256> PathBuf;
auto [PluginPath, Options] = URL.toStringRef(PathBuf).split('?');
std::string OnDiskPath;
SmallVector<std::pair<std::string, std::string>> PluginArgs;
while (!Options.empty()) {
StringRef Opt;
std::tie(Opt, Options) = Options.split('&');
auto [Name, Value] = Opt.split('=');
if (Name == "ondisk-path") {
OnDiskPath = Value;
} else {
PluginArgs.push_back({std::string(Name), std::string(Value)});
}
}
if (OnDiskPath.empty())
OnDiskPath = getDefaultOnDiskCASPath();
std::pair<std::shared_ptr<ObjectStore>, std::shared_ptr<ActionCache>> CASDBs;
if (Error E = createPluginCASDatabases(PluginPath, OnDiskPath, PluginArgs)
.moveInto(CASDBs))
return std::move(E);
return std::move(CASDBs.first);
}
static ManagedStatic<StringMap<ObjectStoreCreateFuncTy *>> RegisteredScheme;
static StringMap<ObjectStoreCreateFuncTy *> &getRegisteredScheme() {
if (!RegisteredScheme.isConstructed()) {
RegisteredScheme->insert({"mem://", &createInMemoryCASImpl});
RegisteredScheme->insert({"file://", &createOnDiskCASImpl});
RegisteredScheme->insert({"plugin://", &createPluginCASImpl});
}
return *RegisteredScheme;
}
Expected<std::shared_ptr<ObjectStore>>
cas::createCASFromIdentifier(StringRef Path) {
for (auto &Scheme : getRegisteredScheme()) {
if (Path.consume_front(Scheme.getKey()))
return Scheme.getValue()(Path);
}
if (Path.empty())
return createStringError(std::make_error_code(std::errc::invalid_argument),
"No CAS identifier is provided");
// FIXME: some current default behavior.
SmallString<256> PathBuf;
if (Path == "auto") {
getDefaultOnDiskCASPath(PathBuf);
Path = PathBuf;
}
// Fallback is to create UnifiedOnDiskCache.
auto UniDB = builtin::createBuiltinUnifiedOnDiskCache(Path);
if (!UniDB)
return UniDB.takeError();
return builtin::createObjectStoreFromUnifiedOnDiskCache(std::move(*UniDB));
}
void cas::registerCASURLScheme(StringRef Prefix,
ObjectStoreCreateFuncTy *Func) {
getRegisteredScheme().insert({Prefix, Func});
}
|