#pragma once #ifndef BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_CACHINGDATATREESTORE_CACHINGDATATREESTORE_H_ #define BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_CACHINGDATATREESTORE_CACHINGDATATREESTORE_H_ #include #include #include namespace blockstore{ class Key; } namespace blobstore { namespace onblocks { namespace datatreestore { class DataTreeStore; class DataTree; } namespace cachingdatatreestore { class CachedDataTreeRef; class CachingDataTreeStore { public: CachingDataTreeStore(std::unique_ptr dataTreeStore); virtual ~CachingDataTreeStore(); std::unique_ptr load(const blockstore::Key &key); std::unique_ptr createNewTree(); void remove(std::unique_ptr tree); private: std::unique_ptr _dataTreeStore; cachingstore::CachingStore _cachingStore; DISALLOW_COPY_AND_ASSIGN(CachingDataTreeStore); }; } } } #endif