blob: 4278b81de7bb4cc67cd3b742909cae7dd0a3ce3b (
plain)
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
|
/*
* Copyright (C) 2018 Codership Oy <info@codership.com>
*
* This file is part of wsrep-lib.
*
* Wsrep-lib 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 2 of the License, or
* (at your option) any later version.
*
* Wsrep-lib 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 wsrep-lib. If not, see <https://www.gnu.org/licenses/>.
*/
#include "db_storage_engine.hpp"
#include "db_client.hpp"
#include <cassert>
void db::storage_engine::transaction::start(db::client* cc)
{
wsrep::unique_lock<wsrep::mutex> lock(se_.mutex_);
if (se_.transactions_.insert(cc).second == false)
{
::abort();
}
cc_ = cc;
}
void db::storage_engine::transaction::apply(
const wsrep::transaction& transaction)
{
assert(cc_);
se_.bf_abort_some(transaction);
}
void db::storage_engine::transaction::commit(const wsrep::gtid& gtid)
{
if (cc_)
{
wsrep::unique_lock<wsrep::mutex> lock(se_.mutex_);
se_.transactions_.erase(cc_);
se_.store_position(gtid);
}
cc_ = nullptr;
}
void db::storage_engine::transaction::rollback()
{
if (cc_)
{
wsrep::unique_lock<wsrep::mutex> lock(se_.mutex_);
se_.transactions_.erase(cc_);
}
cc_ = nullptr;
}
void db::storage_engine::bf_abort_some(const wsrep::transaction& txc)
{
std::uniform_int_distribution<size_t> uniform_dist(0, alg_freq_);
wsrep::unique_lock<wsrep::mutex> lock(mutex_);
if (alg_freq_ && uniform_dist(random_engine_) == 0)
{
if (transactions_.empty() == false)
{
for (auto victim : transactions_)
{
wsrep::client_state& cc(victim->client_state());
if (cc.mode() == wsrep::client_state::m_local)
{
if (victim->bf_abort(txc.seqno()))
{
++bf_aborts_;
}
break;
}
}
}
}
}
void db::storage_engine::store_position(const wsrep::gtid& gtid)
{
validate_position(gtid);
position_ = gtid;
}
wsrep::gtid db::storage_engine::get_position() const
{
return position_;
}
void db::storage_engine::store_view(const wsrep::view& view)
{
view_ = view;
}
wsrep::view db::storage_engine::get_view() const
{
return view_;
}
void db::storage_engine::validate_position(const wsrep::gtid& gtid) const
{
if (position_.id() == gtid.id() && gtid.seqno() <= position_.seqno())
{
std::ostringstream os;
os << "Invalid position submitted, position seqno "
<< position_.seqno()
<< " is greater than submitted seqno "
<< gtid.seqno();
throw wsrep::runtime_error(os.str());
}
}
|