-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspace_map_transactional.cc
131 lines (104 loc) · 3.3 KB
/
space_map_transactional.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Copyright (C) 2011 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/>.
#include "space_map_transactional.h"
//----------------------------------------------------------------
namespace {
class sm_transactional : public checked_space_map {
public:
typedef shared_ptr<sm_transactional> ptr;
sm_transactional(checked_space_map::ptr sm)
: sm_(sm),
committed_(sm_->clone()),
allocated_(0),
search_start_(0) {
}
virtual block_address get_nr_blocks() const {
return committed_->get_nr_blocks();
}
virtual block_address get_nr_free() const {
return committed_->get_nr_free() - allocated_;
}
virtual ref_t get_count(block_address b) const {
return sm_->get_count(b);
}
virtual void set_count(block_address b, ref_t c) {
sm_->set_count(b, c);
}
virtual void commit() {
sm_->commit();
committed_ = sm_->clone();
allocated_ = 0;
search_start_ = 0;
}
virtual void inc(block_address b) {
// FIXME: this may do an implicit allocation, so
// search_start_ and allocated_ will be wrong.
sm_->inc(b);
}
virtual void dec(block_address b) {
sm_->dec(b);
}
virtual maybe_block new_block() {
return new_block(0, sm_->get_nr_blocks());
}
virtual maybe_block new_block(block_address begin, block_address end) {
if (end <= search_start_)
return maybe_block();
maybe_block mb = committed_->new_block(max(search_start_, begin), end);
if (mb) {
allocated_++;
search_start_ = *mb + 1;
} else
search_start_ = end;
return mb;
}
virtual bool count_possibly_greater_than_one(block_address b) const {
return sm_->count_possibly_greater_than_one(b);
}
virtual void extend(block_address extra_blocks) {
return sm_->extend(extra_blocks);
}
virtual void iterate(iterator &it) const {
sm_->iterate(it);
}
virtual size_t root_size() const {
return sm_->root_size();
}
virtual void copy_root(void *dest, size_t len) const {
return sm_->copy_root(dest, len);
}
virtual void check(block_counter &counter) const {
return sm_->check(counter);
}
virtual checked_space_map::ptr clone() const {
return checked_space_map::ptr(new sm_transactional(sm_));
}
private:
checked_space_map::ptr sm_;
checked_space_map::ptr committed_;
block_address allocated_;
block_address search_start_;
};
}
//----------------------------------------------------------------
checked_space_map::ptr
persistent_data::create_transactional_sm(checked_space_map::ptr sm)
{
return checked_space_map::ptr(new sm_transactional(sm));
}
//----------------------------------------------------------------