libcryfs/src/blockstore/implementations/inmemory/InMemoryBlockStore.cpp

40 lines
1018 B
C++
Raw Normal View History

2014-12-09 17:19:59 +01:00
#include <blockstore/implementations/inmemory/InMemoryBlock.h>
#include <blockstore/implementations/inmemory/InMemoryBlockStore.h>
using std::unique_ptr;
using std::make_unique;
using std::string;
using std::mutex;
using std::lock_guard;
2015-01-24 22:08:41 +01:00
using std::piecewise_construct;
using std::make_tuple;
2014-12-09 17:19:59 +01:00
namespace blockstore {
namespace inmemory {
InMemoryBlockStore::InMemoryBlockStore()
: _blocks() {}
unique_ptr<Block> InMemoryBlockStore::create(const Key &key, size_t size) {
2015-01-24 22:08:41 +01:00
auto insert_result = _blocks.emplace(piecewise_construct, make_tuple(key.ToString()), make_tuple(key, size));
2014-12-09 17:19:59 +01:00
if (!insert_result.second) {
return nullptr;
}
//Return a pointer to the stored InMemoryBlock
return make_unique<InMemoryBlock>(insert_result.first->second);
2014-12-09 17:19:59 +01:00
}
unique_ptr<Block> InMemoryBlockStore::load(const Key &key) {
//Return a pointer to the stored InMemoryBlock
2014-12-09 17:19:59 +01:00
try {
return make_unique<InMemoryBlock>(_blocks.at(key.ToString()));
2014-12-09 17:19:59 +01:00
} catch (const std::out_of_range &e) {
return nullptr;
}
}
}
}