thin-provisioning-tools/thin-provisioning/thin_pool.cc

319 lines
6.5 KiB
C++
Raw Normal View History

2011-12-16 00:04:31 +05:30
// Copyright (C) 2011 Red Hat, Inc. All rights reserved.
2011-12-06 19:23:05 +05:30
//
2011-12-06 19:13:56 +05:30
// This file is part of the thin-provisioning-tools source.
//
// thin-provisioning-tools is free software: you can redistribute it
// and/or modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
//
// thin-provisioning-tools is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with thin-provisioning-tools. If not, see
// <http://www.gnu.org/licenses/>.
#include "thin-provisioning/thin_pool.h"
#include <stdexcept>
2011-08-23 16:25:37 +05:30
#include <sstream>
#include <iostream>
#include <set>
#include <map>
using namespace base;
2011-08-23 16:25:37 +05:30
using namespace std;
using namespace persistent_data;
2011-07-22 20:39:56 +05:30
using namespace thin_provisioning;
//----------------------------------------------------------------
thin::thin(thin_dev_t dev, thin_pool &pool)
2011-07-22 20:39:56 +05:30
: dev_(dev),
pool_(pool),
details_(pool.get_transaction_id(), pool.get_time()),
open_count_(1),
changed_(true)
{
}
thin::thin(thin_dev_t dev, thin_pool &pool,
device_tree_detail::device_details const &details)
: dev_(dev),
pool_(pool),
details_(details),
open_count_(1),
changed_(false)
2011-07-22 20:39:56 +05:30
{
}
2011-07-22 20:39:56 +05:30
thin_dev_t
thin::get_dev_t() const
{
return dev_;
}
2011-07-22 20:39:56 +05:30
thin::maybe_address
thin::lookup(block_address thin_block)
{
uint64_t key[2] = {dev_, thin_block};
return pool_.md_->mappings_->lookup(key);
}
bool
2011-07-22 20:39:56 +05:30
thin::insert(block_address thin_block, block_address data_block)
{
uint64_t key[2] = {dev_, thin_block};
++details_.mapped_blocks_;
changed_ = true;
2013-05-20 22:07:46 +05:30
mapping_tree_detail::block_time bt;
bt.block_ = data_block;
bt.time_ = 0; // FIXME: use current time.
return pool_.md_->mappings_->insert(key, bt);
}
void
2011-07-22 20:39:56 +05:30
thin::remove(block_address thin_block)
{
uint64_t key[2] = {dev_, thin_block};
pool_.md_->mappings_->remove(key);
--details_.mapped_blocks_;
changed_ = true;
}
2011-07-22 20:39:56 +05:30
void
thin::set_snapshot_time(uint32_t time)
{
details_.snapshotted_time_ = time;
changed_ = true;
2011-07-22 20:39:56 +05:30
}
block_address
thin::get_mapped_blocks() const
{
return details_.mapped_blocks_;
2011-07-22 20:39:56 +05:30
}
void
thin::set_mapped_blocks(block_address count)
{
details_.mapped_blocks_ = count;
changed_ = true;
2011-07-22 20:39:56 +05:30
}
//--------------------------------
thin_pool::thin_pool(block_manager::ptr bm)
{
md_ = metadata::ptr(new metadata(bm, true));
}
thin_pool::thin_pool(block_manager::ptr bm,
sector_t data_block_size,
block_address nr_data_blocks)
{
md_ = metadata::ptr(new metadata(bm,
metadata::CREATE,
data_block_size,
nr_data_blocks));
md_->commit();
}
2011-10-28 16:51:58 +05:30
thin_pool::~thin_pool()
{
}
void
2011-10-28 16:51:58 +05:30
thin_pool::create_thin(thin_dev_t dev)
{
uint64_t key[1] = {dev};
if (device_exists(dev))
throw std::runtime_error("device already exists");
single_mapping_tree::ptr new_tree(new single_mapping_tree(*md_->tm_,
2013-05-20 22:07:46 +05:30
mapping_tree_detail::block_time_ref_counter(md_->data_sm_)));
md_->mappings_top_level_->insert(key, new_tree->get_root());
md_->mappings_->set_root(md_->mappings_top_level_->get_root()); // FIXME: ugly
thin::ptr r = create_device(dev);
close_device(r);
}
void
2011-10-28 16:51:58 +05:30
thin_pool::create_snap(thin_dev_t dev, thin_dev_t origin)
{
uint64_t snap_key[1] = {dev};
uint64_t origin_key[1] = {origin};
2013-06-25 18:18:02 +05:30
boost::optional<uint64_t> mtree_root = md_->mappings_top_level_->lookup(origin_key);
2011-06-27 15:15:30 +05:30
if (!mtree_root)
throw std::runtime_error("unknown origin");
single_mapping_tree otree(*md_->tm_, *mtree_root,
2013-05-20 22:07:46 +05:30
mapping_tree_detail::block_time_ref_counter(md_->data_sm_));
2011-06-27 15:15:30 +05:30
single_mapping_tree::ptr clone(otree.clone());
md_->mappings_top_level_->insert(snap_key, clone->get_root());
md_->mappings_->set_root(md_->mappings_top_level_->get_root()); // FIXME: ugly
md_->sb_.time_++;
thin::ptr o = open_thin(origin);
thin::ptr s = open_thin(dev);
o->set_snapshot_time(md_->sb_.time_);
s->set_snapshot_time(md_->sb_.time_);
s->set_mapped_blocks(o->get_mapped_blocks());
}
void
2011-10-28 16:51:58 +05:30
thin_pool::del(thin_dev_t dev)
{
uint64_t key[1] = {dev};
md_->mappings_top_level_->remove(key);
}
void
thin_pool::commit()
{
write_changed_details();
md_->commit();
}
void
2011-10-28 16:51:58 +05:30
thin_pool::set_transaction_id(uint64_t id)
{
md_->sb_.trans_id_ = id;
}
uint64_t
2011-10-28 16:51:58 +05:30
thin_pool::get_transaction_id() const
{
return md_->sb_.trans_id_;
}
block_address
thin_pool::get_metadata_snap() const
{
return md_->sb_.metadata_snap_;
}
block_address
2011-10-28 16:51:58 +05:30
thin_pool::alloc_data_block()
{
2013-06-25 18:18:02 +05:30
boost::optional<block_address> mb = md_->data_sm_->new_block();
if (!mb)
throw runtime_error("couldn't allocate new block");
return *mb;
}
void
2011-10-28 16:51:58 +05:30
thin_pool::free_data_block(block_address b)
{
md_->data_sm_->dec(b);
}
block_address
2011-10-28 16:51:58 +05:30
thin_pool::get_nr_free_data_blocks() const
{
return md_->data_sm_->get_nr_free();
}
thin_provisioning::sector_t
2011-10-28 16:51:58 +05:30
thin_pool::get_data_block_size() const
{
return md_->sb_.data_block_size_;
}
block_address
2011-10-28 16:51:58 +05:30
thin_pool::get_data_dev_size() const
{
return md_->data_sm_->get_nr_blocks();
2011-07-22 20:39:56 +05:30
}
uint32_t
thin_pool::get_time() const
{
return md_->sb_.time_;
}
2011-07-22 20:39:56 +05:30
thin::ptr
2011-10-28 16:51:58 +05:30
thin_pool::open_thin(thin_dev_t dev)
2011-07-22 20:39:56 +05:30
{
return open_device(dev);
}
2011-07-22 20:39:56 +05:30
bool
2011-10-28 16:51:58 +05:30
thin_pool::device_exists(thin_dev_t dev) const
{
uint64_t key[1] = {dev};
return !!md_->details_->lookup(key);
}
thin::ptr
thin_pool::create_device(thin_dev_t dev)
{
device_map::iterator it = thin_devices_.find(dev);
if (it != thin_devices_.end())
throw std::runtime_error("device already exists");
thin::ptr td(new thin(dev, *this));
thin_devices_[dev] = td;
return td;
}
thin::ptr
thin_pool::open_device(thin_dev_t dev)
{
device_map::iterator it = thin_devices_.find(dev);
if (it != thin_devices_.end()) {
thin::ptr td = it->second;
td->open_count_++;
return td;
}
uint64_t key[1] = {dev};
device_tree::maybe_value details = md_->details_->lookup(key);
if (!details)
throw std::runtime_error("no such device");
thin::ptr td(new thin(dev, *this, *details));
thin_devices_[dev] = td;
return td;
}
void
thin_pool::close_device(thin::ptr td)
{
td->open_count_--;
}
void
thin_pool::write_changed_details()
{
for (auto it = thin_devices_.cbegin(); it != thin_devices_.cend(); ) {
uint64_t key[1] = {it->first};
thin::ptr td = it->second;
if (td->changed_) {
md_->details_->insert(key, td->details_);
td->changed_ = false;
}
if (!td->open_count_)
it = thin_devices_.erase(it);
else
++it;
}
}
//----------------------------------------------------------------