2013-03-14 18:43:18 +05:30
|
|
|
// Copyright (C) 2013 Red Hat, Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
|
2013-11-18 18:36:35 +05:30
|
|
|
#ifndef PERSISTENT_DATA_DATA_STRUCTURES_BITSET_H
|
|
|
|
#define PERSISTENT_DATA_DATA_STRUCTURES_BITSET_H
|
2013-03-14 18:43:18 +05:30
|
|
|
|
2020-07-27 08:18:54 +05:30
|
|
|
#include "base/run.h"
|
2013-10-10 17:25:10 +05:30
|
|
|
|
2013-03-14 18:43:18 +05:30
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace persistent_data {
|
|
|
|
namespace bitset_detail {
|
2013-10-10 16:47:34 +05:30
|
|
|
class bitset_impl;
|
2013-10-10 17:25:10 +05:30
|
|
|
|
|
|
|
class missing_bits {
|
|
|
|
public:
|
|
|
|
missing_bits(base::run<uint32_t> const &keys)
|
|
|
|
: keys_(keys) {
|
|
|
|
}
|
|
|
|
|
|
|
|
base::run<uint32_t> keys_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class bitset_visitor {
|
|
|
|
public:
|
2020-04-30 19:32:43 +05:30
|
|
|
typedef std::shared_ptr<bitset_visitor> ptr;
|
2013-10-10 17:25:10 +05:30
|
|
|
|
2013-10-11 14:52:02 +05:30
|
|
|
virtual ~bitset_visitor() {}
|
|
|
|
virtual void visit(uint32_t index, bool value) = 0;
|
|
|
|
virtual void visit(missing_bits const &d) = 0;
|
2013-10-10 17:25:10 +05:30
|
|
|
};
|
2013-03-14 18:43:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
class bitset {
|
|
|
|
public:
|
2020-04-30 19:32:43 +05:30
|
|
|
typedef std::shared_ptr<bitset> ptr;
|
2013-03-14 18:43:18 +05:30
|
|
|
|
2014-08-26 15:44:49 +05:30
|
|
|
bitset(transaction_manager &tm);
|
|
|
|
bitset(transaction_manager &tm,
|
|
|
|
block_address root, unsigned nr_bits);
|
2013-10-10 16:47:34 +05:30
|
|
|
block_address get_root() const;
|
2013-11-18 18:37:08 +05:30
|
|
|
unsigned get_nr_bits() const;
|
2013-10-10 16:47:34 +05:30
|
|
|
void grow(unsigned new_nr_bits, bool default_value);
|
2013-03-14 18:43:18 +05:30
|
|
|
void destroy();
|
|
|
|
|
|
|
|
// May trigger a flush, so cannot be const
|
2013-10-10 16:47:34 +05:30
|
|
|
bool get(unsigned n);
|
|
|
|
void set(unsigned n, bool value);
|
|
|
|
void flush();
|
2013-03-14 18:43:18 +05:30
|
|
|
|
2013-10-10 17:25:10 +05:30
|
|
|
void walk_bitset(bitset_detail::bitset_visitor &v) const;
|
|
|
|
|
2013-03-14 18:43:18 +05:30
|
|
|
private:
|
2020-04-30 19:32:43 +05:30
|
|
|
std::shared_ptr<bitset_detail::bitset_impl> impl_;
|
2013-03-14 18:43:18 +05:30
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|