sapling/eden/fs/store/ObjectStore.h
Adam Simpkins aa5e6c7295 update license headers in C++ files
Summary:
Update the copyright & license headers in C++ files to reflect the
relicensing to GPLv2

Reviewed By: wez

Differential Revision: D15487078

fbshipit-source-id: 19f24c933a64ecad0d3a692d0f8d2a38b4194b1d
2019-06-19 17:02:45 -07:00

151 lines
4.9 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <folly/Synchronized.h>
#include <folly/container/EvictingCacheMap.h>
#include <memory>
#include "eden/fs/model/Hash.h"
#include "eden/fs/store/BlobMetadata.h"
#include "eden/fs/store/IObjectStore.h"
namespace facebook {
namespace eden {
class BackingStore;
class Blob;
class LocalStore;
class Tree;
/**
* ObjectStore is a content-addressed store for eden object data.
*
* The ObjectStore class itself is primarily a wrapper around two other
* underlying storage types:
* - LocalStore, which caches object data locally in a RocksDB instance
* - BackingStore, which represents the authoritative source for the object
* data. The BackingStore is generally more expensive to query for object
* data, and may not be available during offline operation.
*/
class ObjectStore : public IObjectStore,
public std::enable_shared_from_this<ObjectStore> {
public:
static std::shared_ptr<ObjectStore> create(
std::shared_ptr<LocalStore> localStore,
std::shared_ptr<BackingStore> backingStore);
~ObjectStore() override;
/**
* Get a Tree by ID.
*
* This returns a Future object that will produce the Tree when it is ready.
* It may result in a std::domain_error if the specified tree ID does not
* exist, or possibly other exceptions on error.
*/
folly::Future<std::shared_ptr<const Tree>> getTree(
const Hash& id) const override;
/**
* Get a Blob by ID.
*
* This returns a Future object that will produce the Blob when it is ready.
* It may result in a std::domain_error if the specified blob ID does not
* exist, or possibly other exceptions on error.
*/
folly::Future<std::shared_ptr<const Blob>> getBlob(
const Hash& id) const override;
folly::Future<folly::Unit> prefetchBlobs(
const std::vector<Hash>& ids) const override;
/**
* Get a commit's root Tree.
*
* This returns a Future object that will produce the root Tree when it is
* ready. It may result in a std::domain_error if the specified commit ID
* does not exist, or possibly other exceptions on error.
*/
folly::Future<std::shared_ptr<const Tree>> getTreeForCommit(
const Hash& commitID) const override;
/**
* Get metadata about a Blob.
*
* This returns a Future object that will produce the BlobMetadata when it is
* ready. It may result in a std::domain_error if the specified blob does
* not exist, or possibly other exceptions on error.
*/
folly::Future<BlobMetadata> getBlobMetadata(const Hash& id) const override;
/**
* Returns the size of the contents of the blob with the given ID.
*/
folly::Future<size_t> getBlobSize(const Hash& id) const;
/**
* Returns the SHA-1 hash of the contents of the blob with the given ID.
*/
folly::Future<Hash> getBlobSha1(const Hash& id) const;
/**
* Get the LocalStore used by this ObjectStore
*/
const std::shared_ptr<LocalStore>& getLocalStore() const {
return localStore_;
}
/**
* Get the BackingStore used by this ObjectStore
*/
const std::shared_ptr<BackingStore>& getBackingStore() const {
return backingStore_;
}
private:
// Forbidden constructor. Use create().
ObjectStore(
std::shared_ptr<LocalStore> localStore,
std::shared_ptr<BackingStore> backingStore);
// Forbidden copy constructor and assignment operator
ObjectStore(ObjectStore const&) = delete;
ObjectStore& operator=(ObjectStore const&) = delete;
static constexpr size_t kMetadataCacheSize = 1000000;
/**
* During status and checkout, it's common to look up the SHA-1 for a given
* blob ID. To avoid needing to hit RocksDB, keep a bounded in-memory cache of
* the sizes and SHA-1s of blobs we've seen. Each node is somewhere around 50
* bytes (20+28 + LRU overhead) and we store kMetadataCacheSize entries, which
* EvictingCacheMap divides in two for some reason. At the time of this
* comment, EvictingCacheMap does not store its nodes densely, so there may
* also be some jemalloc tracking overhead and some internal fragmentation
* depending on whether the node fits cleanly into one of jemalloc's size
* classes.
*
* TODO: It never makes sense to rlock an LRU cache, since cache hits mutate
* the data structure. Thus, should we use a more appropriate type of lock?
*/
mutable folly::Synchronized<folly::EvictingCacheMap<Hash, BlobMetadata>>
metadataCache_;
/*
* The LocalStore.
*
* Multiple ObjectStores (for different mount points) may share the same
* LocalStore.
*/
std::shared_ptr<LocalStore> localStore_;
/*
* The BackingStore.
*
* Multiple ObjectStores may share the same BackingStore.
*/
std::shared_ptr<BackingStore> backingStore_;
};
} // namespace eden
} // namespace facebook