2011-06-23 19:17:08 +05:30
|
|
|
#include "block.h"
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2011-06-27 15:15:30 +05:30
|
|
|
#include <boost/bind.hpp>
|
2011-06-23 19:17:08 +05:30
|
|
|
#include <iostream>
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
using namespace boost;
|
|
|
|
using namespace persistent_data;
|
2011-06-27 15:15:30 +05:30
|
|
|
using namespace std;
|
2011-06-23 19:17:08 +05:30
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
2011-07-13 19:39:33 +05:30
|
|
|
block_manager<BlockSize>::read_ref::read_ref(typename block_manager::block::ptr b)
|
2011-06-23 19:17:08 +05:30
|
|
|
: block_(b)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
block_address
|
|
|
|
block_manager<BlockSize>::read_ref::get_location() const
|
|
|
|
{
|
|
|
|
return block_->location_;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::const_buffer &
|
|
|
|
block_manager<BlockSize>::read_ref::data() const
|
|
|
|
{
|
|
|
|
return block_->data_;
|
|
|
|
}
|
|
|
|
|
2011-06-27 15:15:30 +05:30
|
|
|
template <uint32_t BlockSize>
|
2011-07-13 19:39:33 +05:30
|
|
|
block_manager<BlockSize>::write_ref::write_ref(typename block_manager::block::ptr b)
|
2011-06-27 15:15:30 +05:30
|
|
|
: read_ref(b)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-06-23 19:17:08 +05:30
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::buffer &
|
|
|
|
block_manager<BlockSize>::write_ref::data()
|
|
|
|
{
|
|
|
|
return read_ref::block_->data_;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
2011-07-13 19:39:33 +05:30
|
|
|
block_manager<BlockSize>::block_manager(std::string const &path, block_address nr_blocks)
|
2011-07-14 18:35:07 +05:30
|
|
|
: nr_blocks_(nr_blocks),
|
|
|
|
lock_count_(0),
|
|
|
|
superblock_count_(0),
|
|
|
|
ordinary_count_(0)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-13 19:39:33 +05:30
|
|
|
fd_ = ::open(path.c_str(), O_RDWR | O_CREAT, 0666);
|
2011-06-23 19:17:08 +05:30
|
|
|
if (fd_ < 0)
|
|
|
|
throw std::runtime_error("couldn't open file");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
block_manager<BlockSize>::~block_manager()
|
|
|
|
{
|
|
|
|
::close(fd_);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::read_ref
|
2011-07-13 19:39:33 +05:30
|
|
|
block_manager<BlockSize>::read_lock(block_address location) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-13 19:39:33 +05:30
|
|
|
check(location);
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
buffer buf;
|
|
|
|
read_buffer(location, buf);
|
|
|
|
|
|
|
|
return read_ref(
|
|
|
|
typename block::ptr(
|
|
|
|
new block(location, buf, lock_count_, ordinary_count_)));
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
optional<typename block_manager<BlockSize>::read_ref>
|
2011-07-13 19:39:33 +05:30
|
|
|
block_manager<BlockSize>::read_try_lock(block_address location) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
return read_lock(location);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::write_lock(block_address location)
|
|
|
|
{
|
2011-07-13 19:39:33 +05:30
|
|
|
check(location);
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
buffer buf;
|
|
|
|
read_buffer(location, buf);
|
|
|
|
return write_ref(
|
|
|
|
typename block::ptr(
|
|
|
|
new block(location, buf, lock_count_, ordinary_count_),
|
|
|
|
bind(&block_manager::write_release, this, _1)));
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::write_lock_zero(block_address location)
|
|
|
|
{
|
2011-07-13 19:39:33 +05:30
|
|
|
check(location);
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
buffer buf;
|
|
|
|
zero_buffer(buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, ordinary_count_),
|
|
|
|
bind(&block_manager<BlockSize>::write_release, this, _1));
|
2011-06-23 19:17:08 +05:30
|
|
|
return write_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::read_ref
|
|
|
|
block_manager<BlockSize>::read_lock(block_address location,
|
2011-07-14 18:35:07 +05:30
|
|
|
typename block_manager<BlockSize>::validator::ptr v) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-13 19:39:33 +05:30
|
|
|
check(location);
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
buffer buf;
|
|
|
|
read_buffer(location, buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, ordinary_count_, false, v));
|
2011-06-23 19:17:08 +05:30
|
|
|
return read_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
optional<typename block_manager<BlockSize>::read_ref>
|
|
|
|
block_manager<BlockSize>::read_try_lock(block_address location,
|
2011-07-14 18:35:07 +05:30
|
|
|
typename block_manager<BlockSize>::validator::ptr v) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
return read_lock(location, v);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::write_lock(block_address location,
|
2011-07-14 18:35:07 +05:30
|
|
|
typename block_manager<BlockSize>::validator::ptr v)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-13 19:39:33 +05:30
|
|
|
check(location);
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
buffer buf;
|
|
|
|
read_buffer(location, buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, ordinary_count_, false, v),
|
|
|
|
bind(&block_manager::write_release, this, _1));
|
2011-06-23 19:17:08 +05:30
|
|
|
return write_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::write_lock_zero(block_address location,
|
2011-07-14 18:35:07 +05:30
|
|
|
typename block_manager<BlockSize>::validator::ptr v)
|
|
|
|
{
|
|
|
|
check(location);
|
|
|
|
|
|
|
|
buffer buf;
|
|
|
|
zero_buffer(buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, ordinary_count_, false, v),
|
|
|
|
bind(&block_manager::write_release, this, _1));
|
|
|
|
return write_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::superblock(block_address location)
|
|
|
|
{
|
|
|
|
check(location);
|
|
|
|
|
|
|
|
if (superblock_count_ > 0)
|
|
|
|
throw runtime_error("already have superblock");
|
|
|
|
|
|
|
|
buffer buf;
|
|
|
|
read_buffer(location, buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, superblock_count_, true),
|
|
|
|
bind(&block_manager::write_release, this, _1));
|
|
|
|
return write_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::superblock_zero(block_address location)
|
|
|
|
{
|
|
|
|
check(location);
|
|
|
|
|
|
|
|
if (superblock_count_ > 0)
|
|
|
|
throw runtime_error("already have superblock");
|
|
|
|
|
|
|
|
buffer buf;
|
|
|
|
zero_buffer(buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, superblock_count_, true),
|
|
|
|
bind(&block_manager::write_release, this, _1));
|
|
|
|
return write_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::superblock(block_address location,
|
|
|
|
typename block_manager<BlockSize>::validator::ptr v)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-14 18:35:07 +05:30
|
|
|
if (superblock_count_ > 0)
|
|
|
|
throw runtime_error("already have superblock");
|
|
|
|
|
2011-07-13 19:39:33 +05:30
|
|
|
check(location);
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
buffer buf;
|
|
|
|
read_buffer(location, buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, superblock_count_, true, v),
|
|
|
|
bind(&block_manager::write_release, this, _1));
|
|
|
|
return write_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
typename block_manager<BlockSize>::write_ref
|
|
|
|
block_manager<BlockSize>::superblock_zero(block_address location,
|
|
|
|
typename block_manager<BlockSize>::validator::ptr v)
|
|
|
|
{
|
|
|
|
if (superblock_count_ > 0)
|
|
|
|
throw runtime_error("already have superblock");
|
|
|
|
|
|
|
|
check(location);
|
|
|
|
|
|
|
|
buffer buf;
|
|
|
|
zero_buffer(buf);
|
|
|
|
typename block::ptr b(new block(location, buf, lock_count_, superblock_count_, true, v),
|
|
|
|
bind(&block_manager::write_release, this, _1));
|
2011-06-23 19:17:08 +05:30
|
|
|
return write_ref(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
void
|
2011-07-14 18:35:07 +05:30
|
|
|
block_manager<BlockSize>::flush()
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-14 18:35:07 +05:30
|
|
|
if (lock_count_ > 0)
|
|
|
|
throw runtime_error("asked to flush while locks are still held");
|
2011-06-23 19:17:08 +05:30
|
|
|
::fsync(fd_);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
void
|
2011-07-14 18:35:07 +05:30
|
|
|
block_manager<BlockSize>::read_buffer(block_address b, block_manager<BlockSize>::buffer &buffer) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
off_t r;
|
2011-07-14 18:35:07 +05:30
|
|
|
r = ::lseek(fd_, BlockSize * b, SEEK_SET);
|
2011-06-23 19:17:08 +05:30
|
|
|
if (r == (off_t) -1)
|
|
|
|
throw std::runtime_error("lseek failed");
|
|
|
|
|
|
|
|
ssize_t n;
|
|
|
|
size_t remaining = BlockSize;
|
2011-07-14 18:35:07 +05:30
|
|
|
unsigned char *buf = buffer;
|
2011-06-23 19:17:08 +05:30
|
|
|
do {
|
|
|
|
n = ::read(fd_, buf, remaining);
|
|
|
|
if (n > 0) {
|
|
|
|
remaining -= n;
|
|
|
|
buf += n;
|
|
|
|
}
|
|
|
|
} while (remaining && ((n > 0) || (n == EINTR) || (n == EAGAIN)));
|
|
|
|
|
|
|
|
if (n < 0)
|
|
|
|
throw std::runtime_error("read failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
void
|
2011-07-14 18:35:07 +05:30
|
|
|
block_manager<BlockSize>::write_buffer(block_address b, block_manager<BlockSize>::const_buffer &buffer)
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
|
|
|
off_t r;
|
2011-07-14 18:35:07 +05:30
|
|
|
r = ::lseek(fd_, BlockSize * b, SEEK_SET);
|
2011-06-23 19:17:08 +05:30
|
|
|
if (r == (off_t) -1)
|
|
|
|
throw std::runtime_error("lseek failed");
|
|
|
|
|
|
|
|
ssize_t n;
|
|
|
|
size_t remaining = BlockSize;
|
2011-07-14 18:35:07 +05:30
|
|
|
unsigned char const *buf = buffer;
|
2011-06-23 19:17:08 +05:30
|
|
|
do {
|
2011-06-27 15:15:30 +05:30
|
|
|
n = ::write(fd_, buf, remaining);
|
2011-06-23 19:17:08 +05:30
|
|
|
if (n > 0) {
|
|
|
|
remaining -= n;
|
|
|
|
buf += n;
|
|
|
|
}
|
|
|
|
} while (remaining && ((n > 0) || (n == EINTR) || (n == EAGAIN)));
|
|
|
|
|
|
|
|
if (n < 0)
|
|
|
|
throw std::runtime_error("write failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <uint32_t BlockSize>
|
|
|
|
void
|
2011-07-14 18:35:07 +05:30
|
|
|
block_manager<BlockSize>::zero_buffer(block_manager<BlockSize>::buffer &buffer) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-14 18:35:07 +05:30
|
|
|
memset(buffer, 0, BlockSize);
|
2011-06-23 19:17:08 +05:30
|
|
|
}
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
// FIXME: we don't need this anymore
|
2011-06-23 19:17:08 +05:30
|
|
|
template <uint32_t BlockSize>
|
|
|
|
void
|
2011-07-14 18:35:07 +05:30
|
|
|
block_manager<BlockSize>::read_release(block *b) const
|
2011-06-23 19:17:08 +05:30
|
|
|
{
|
2011-07-14 18:35:07 +05:30
|
|
|
delete b;
|
|
|
|
}
|
2011-07-13 19:39:33 +05:30
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
template <uint32_t BlockSize>
|
|
|
|
void
|
|
|
|
block_manager<BlockSize>::write_release(block *b)
|
|
|
|
{
|
|
|
|
if (b->is_superblock_) {
|
|
|
|
if (lock_count_ != 1)
|
|
|
|
throw runtime_error("superblock isn't the last block");
|
2011-07-13 19:39:33 +05:30
|
|
|
}
|
|
|
|
|
2011-07-14 18:35:07 +05:30
|
|
|
if (b->validator_)
|
|
|
|
(*b->validator_)->prepare(*b);
|
|
|
|
|
|
|
|
write_buffer(b->location_, b->data_);
|
2011-06-23 19:17:08 +05:30
|
|
|
delete b;
|
|
|
|
}
|
|
|
|
|
2011-07-13 19:39:33 +05:30
|
|
|
template <uint32_t BlockSize>
|
|
|
|
void
|
|
|
|
block_manager<BlockSize>::check(block_address b) const
|
|
|
|
{
|
|
|
|
if (b >= nr_blocks_)
|
|
|
|
throw std::runtime_error("block address out of bounds");
|
|
|
|
}
|
|
|
|
|
2011-06-23 19:17:08 +05:30
|
|
|
//----------------------------------------------------------------
|