-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Expand file tree
/
Copy pathrpl_context.cc
More file actions
259 lines (212 loc) · 8.23 KB
/
rpl_context.cc
File metadata and controls
259 lines (212 loc) · 8.23 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/* Copyright (c) 2014, 2021, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is also distributed with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have included with MySQL.
This program 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, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "sql/rpl_context.h"
#include <stddef.h>
#include "libbinlogevents/include/compression/factory.h"
#include "my_compiler.h"
#include "my_dbug.h"
#include "my_sqlcommand.h"
#include "sql/binlog_ostream.h"
#include "sql/rpl_gtid.h" // Gtid_set
#include "sql/sql_class.h" // THD
#include "sql/sql_lex.h"
#include "sql/system_variables.h"
Session_consistency_gtids_ctx::Session_consistency_gtids_ctx()
: m_sid_map(nullptr),
m_gtid_set(nullptr),
m_listener(nullptr),
m_curr_session_track_gtids(SESSION_TRACK_GTIDS_OFF) {}
Session_consistency_gtids_ctx::~Session_consistency_gtids_ctx() {
if (m_gtid_set) {
delete m_gtid_set;
m_gtid_set = nullptr;
}
if (m_sid_map) {
delete m_sid_map;
m_sid_map = nullptr;
}
}
inline bool Session_consistency_gtids_ctx::shall_collect(const THD *thd) {
return /* Do not track OWN_GTID if session does not own a
(non-anonymous) GTID. */
(thd->owned_gtid.sidno > 0 ||
m_curr_session_track_gtids == SESSION_TRACK_GTIDS_ALL_GTIDS) &&
/* if there is no listener/tracker, then there is no reason to collect */
m_listener != nullptr &&
/* ROLLBACK statements may end up calling trans_commit_stmt */
thd->lex->sql_command != SQLCOM_ROLLBACK &&
thd->lex->sql_command != SQLCOM_ROLLBACK_TO_SAVEPOINT;
}
bool Session_consistency_gtids_ctx::notify_after_transaction_commit(
const THD *thd) {
DBUG_TRACE;
assert(thd);
bool res = false;
if (!shall_collect(thd)) return res;
if (m_curr_session_track_gtids == SESSION_TRACK_GTIDS_ALL_GTIDS) {
/*
If one is configured to read all writes, we always collect
the GTID_EXECUTED.
NOTE: in the future optimize to collect deltas instead maybe.
*/
global_sid_lock->wrlock();
res = m_gtid_set->add_gtid_set(gtid_state->get_executed_gtids()) !=
RETURN_STATUS_OK;
global_sid_lock->unlock();
if (!res) notify_ctx_change_listener();
}
return res;
}
bool Session_consistency_gtids_ctx::notify_after_gtid_executed_update(
const THD *thd) {
DBUG_TRACE;
assert(thd);
bool res = false;
if (!shall_collect(thd)) return res;
if (m_curr_session_track_gtids == SESSION_TRACK_GTIDS_OWN_GTID) {
assert(global_gtid_mode.get() != Gtid_mode::OFF);
assert(thd->owned_gtid.sidno > 0);
const Gtid >id = thd->owned_gtid;
if (gtid.sidno == -1) // we need to add thd->owned_gtid_set
{
/* Caller must only call this function if the set was not empty. */
#ifdef HAVE_GTID_NEXT_LIST
assert(!thd->owned_gtid_set.is_empty());
res = m_gtid_set->add_gtid_set(&thd->owned_gtid_set) != RETURN_STATUS_OK;
#else
assert(0);
#endif
} else if (gtid.sidno > 0) // only one gtid
{
/*
Note that the interface is such that m_sid_map must contain
sidno before we add the gtid to m_gtid_set.
Thus, to avoid relying on global_sid_map and thus contributing
to increased contention, we arrange for sidnos on the local
sid map.
*/
rpl_sidno local_set_sidno = m_sid_map->add_sid(thd->owned_sid);
assert(!m_gtid_set->contains_gtid(local_set_sidno, gtid.gno));
res = m_gtid_set->ensure_sidno(local_set_sidno) != RETURN_STATUS_OK;
if (!res) m_gtid_set->_add_gtid(local_set_sidno, gtid.gno);
}
if (!res) notify_ctx_change_listener();
}
return res;
}
void Session_consistency_gtids_ctx::
update_tracking_activeness_from_session_variable(const THD *thd) {
m_curr_session_track_gtids = thd->variables.session_track_gtids;
}
bool Session_consistency_gtids_ctx::notify_after_response_packet(
const THD *thd) {
int res = false;
DBUG_TRACE;
if (m_gtid_set && !m_gtid_set->is_empty()) m_gtid_set->clear();
/*
Every time we get a notification that a packet was sent, we update
this value. It may have changed (the previous command may have been
a SET SESSION session_track_gtids=...;).
*/
update_tracking_activeness_from_session_variable(thd);
return res;
}
void Session_consistency_gtids_ctx::register_ctx_change_listener(
Session_consistency_gtids_ctx::Ctx_change_listener *listener, THD *thd) {
assert(m_listener == nullptr || m_listener == listener);
if (m_listener == nullptr) {
assert(m_sid_map == nullptr && m_gtid_set == nullptr);
m_listener = listener;
m_sid_map = new Sid_map(nullptr);
m_gtid_set = new Gtid_set(m_sid_map);
/*
Caches the value at startup if needed. This is called during THD::init,
if the session_track_gtids value is set at startup time to anything
different than OFF.
*/
update_tracking_activeness_from_session_variable(thd);
}
}
void Session_consistency_gtids_ctx::unregister_ctx_change_listener(
Session_consistency_gtids_ctx::Ctx_change_listener *listener
[[maybe_unused]]) {
assert(m_listener == listener || m_listener == nullptr);
if (m_gtid_set) delete m_gtid_set;
if (m_sid_map) delete m_sid_map;
m_listener = nullptr;
m_gtid_set = nullptr;
m_sid_map = nullptr;
}
Last_used_gtid_tracker_ctx::Last_used_gtid_tracker_ctx() {
m_last_used_gtid = std::unique_ptr<Gtid>(new Gtid{0, 0});
}
Last_used_gtid_tracker_ctx::~Last_used_gtid_tracker_ctx() = default;
void Last_used_gtid_tracker_ctx::set_last_used_gtid(const Gtid >id) {
(*m_last_used_gtid).set(gtid.sidno, gtid.gno);
}
void Last_used_gtid_tracker_ctx::get_last_used_gtid(Gtid >id) {
gtid.sidno = (*m_last_used_gtid).sidno;
gtid.gno = (*m_last_used_gtid).gno;
}
const size_t Transaction_compression_ctx::DEFAULT_COMPRESSION_BUFFER_SIZE =
1024;
Transaction_compression_ctx::Transaction_compression_ctx()
: m_compressor(nullptr) {}
Transaction_compression_ctx::~Transaction_compression_ctx() {
if (m_compressor) {
unsigned char *buffer = nullptr;
std::tie(buffer, std::ignore, std::ignore) = m_compressor->get_buffer();
delete m_compressor;
if (buffer) free(buffer);
}
}
binary_log::transaction::compression::Compressor *
Transaction_compression_ctx::get_compressor(THD *thd) {
auto ctype = (binary_log::transaction::compression::type)
thd->variables.binlog_trx_compression_type;
if (m_compressor == nullptr ||
(m_compressor->compression_type_code() != ctype)) {
unsigned char *buffer = nullptr;
std::size_t capacity = 0;
// delete the existing one, reuse the buffer
if (m_compressor) {
std::tie(buffer, std::ignore, capacity) = m_compressor->get_buffer();
delete m_compressor;
m_compressor = nullptr;
}
// TODO: consider moving m_decompressor to a shared_ptr
auto comp =
binary_log::transaction::compression::Factory::build_compressor(ctype);
if (comp != nullptr) {
m_compressor = comp.release();
// inject an output buffer if possible, if not, then delete the compressor
if (buffer == nullptr)
buffer = (unsigned char *)malloc(DEFAULT_COMPRESSION_BUFFER_SIZE);
if (buffer != nullptr)
m_compressor->set_buffer(buffer, DEFAULT_COMPRESSION_BUFFER_SIZE);
else {
/* purecov: begin inspected */
// OOM
delete m_compressor;
m_compressor = nullptr;
/* purecov: end */
}
}
}
return m_compressor;
}