-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathrpl_async_conn_failover_table_operations.cc
621 lines (514 loc) · 22.1 KB
/
rpl_async_conn_failover_table_operations.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
/* Copyright (c) 2020, 2024, 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 designed to work 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 either included with
the program or referenced in the documentation.
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 "mysql/components/services/log_builtins.h"
#include "sql-common/json_dom.h"
#include "sql/current_thd.h"
#include "sql/handler.h"
#include "sql/mysqld.h"
#include "sql/protobuf/generated/protobuf_lite/replication_asynchronous_connection_failover.pb.h"
#include "sql/rpl_async_conn_failover_configuration_propagation.h"
#include "sql/rpl_async_conn_failover_table_operations.h"
#include "sql/rpl_sys_key_access.h"
#include "sql/rpl_sys_table_access.h"
#include "sql/sql_base.h" // MYSQL_OPEN_IGNORE_GLOBAL_READ_LOCK
#include "sql/udf_service_util.h"
/*
Only used on this file.
*/
/* <channel, host, port, network_namespace, managed_name> */
using RPL_FAILOVER_SOURCE_DEL_TUPLE =
std::tuple<std::string, std::string, uint, std::string, std::string>;
/* <channel, managed_name> */
using RPL_FAILOVER_MANAGED_DEL_TUPLE = std::tuple<std::string, std::string>;
template void Rpl_async_conn_failover_table_operations::get_data(
Rpl_sys_table_access &table_op, RPL_FAILOVER_SOURCE_TUPLE &rows);
template void Rpl_async_conn_failover_table_operations::get_data(
Rpl_sys_table_access &table_op, RPL_FAILOVER_MANAGED_JSON_TUPLE &rows);
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::add_source(
const std::string &channel, const std::string &host, uint port,
const std::string &network_namespace, uint weight,
const std::string &managed_name) {
DBUG_TRACE;
assert(network_namespace.empty());
std::vector<uint> field_index{0, 1, 2, 3, 4, 5};
std::vector<std::string> field_name{
"channel", "host", "port", "network_namespace", "weight", "managed_name"};
RPL_FAILOVER_SOURCE_TUPLE field_value{
channel, host, port, network_namespace, weight, managed_name};
std::string serialized_configuration;
return execute_handler_func_send<RPL_FAILOVER_SOURCE_TUPLE>(
m_db, m_table_failover, m_table_failover_num_field, m_lock_type,
field_index, field_name, field_value,
Rpl_sys_table_access::handler_write_row_func, 0, HA_WHOLE_KEY);
}
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::add_source_skip_send(
const std::string &channel, const std::string &host, uint port,
const std::string &network_namespace, uint weight,
const std::string &managed_name, Rpl_sys_table_access &table_op) {
DBUG_TRACE;
assert(network_namespace.empty());
std::vector<uint> field_index{0, 1, 2, 3, 4, 5};
std::vector<std::string> field_name{
"channel", "host", "port", "network_namespace", "weight", "managed_name"};
RPL_FAILOVER_SOURCE_TUPLE field_value{
channel, host, port, network_namespace, weight, managed_name};
std::string serialized_configuration;
return execute_handler_func_skip_send<RPL_FAILOVER_SOURCE_TUPLE>(
field_index, field_name, field_value,
Rpl_sys_table_access::handler_write_row_func, 0, HA_WHOLE_KEY, table_op);
}
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::add_managed(
const std::string &channel, const std::string &host, uint port,
const std::string &network_namespace, const std::string &managed_type,
const std::string &managed_name, uint primary_weight,
uint secondary_weight) {
DBUG_TRACE;
assert(network_namespace.empty());
std::stringstream json_str;
json_str << "{\"Primary_weight\": " << primary_weight
<< ", \"Secondary_weight\": " << secondary_weight << "}";
auto res_dom = Json_dom::parse(
json_str.str().c_str(), json_str.str().length(),
[](const char *, size_t) {}, [] {});
if (res_dom == nullptr || res_dom->json_type() != enum_json_type::J_OBJECT) {
return std::make_tuple(true, "Error parsing Json value.");
}
Json_object_ptr res_obj_ptr(down_cast<Json_object *>(res_dom.release()));
Json_dom_ptr json_dom = create_dom_ptr<Json_object>();
Json_object *json_ob = down_cast<Json_object *>(json_dom.get());
json_ob->merge_patch(std::move(res_obj_ptr));
Json_wrapper wrapper(json_ob->clone());
// add managed
std::vector<uint> managed_field_index{0, 1, 2, 3};
std::vector<std::string> managed_field_name{"channel", "managed_name",
"managed_type", "configuration"};
RPL_FAILOVER_MANAGED_JSON_TUPLE managed_field_value{channel, managed_name,
managed_type, wrapper};
std::tuple<bool, std::string> ret_val{};
std::string serialized_configuration;
ret_val = execute_handler_func_send<RPL_FAILOVER_MANAGED_JSON_TUPLE>(
m_db, m_table_managed, m_table_managed_num_field, m_lock_type,
managed_field_index, managed_field_name, managed_field_value,
Rpl_sys_table_access::handler_write_row_func, 0, HA_WHOLE_KEY);
if (std::get<0>(ret_val)) {
return ret_val;
}
LogErr(SYSTEM_LEVEL, ER_RPL_ASYNC_MANAGED_NAME_ADDED, managed_name.c_str(),
channel.c_str());
// add source
std::vector<uint> field_index{0, 1, 2, 3, 4, 5};
std::vector<std::string> field_name{
"channel", "host", "port", "network_namespace", "weight", "managed_name"};
RPL_FAILOVER_SOURCE_TUPLE field_value{
channel, host, port, network_namespace, secondary_weight, managed_name};
ret_val = execute_handler_func_send<RPL_FAILOVER_SOURCE_TUPLE>(
m_db, m_table_failover, m_table_failover_num_field, m_lock_type,
field_index, field_name, field_value,
Rpl_sys_table_access::handler_write_row_func, 0, HA_WHOLE_KEY);
if (!std::get<0>(ret_val)) {
LogErr(SYSTEM_LEVEL, ER_RPL_ASYNC_SENDER_ADDED, host.c_str(), port,
network_namespace.c_str(), channel.c_str(), managed_name.c_str());
}
return ret_val;
}
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::add_managed_skip_send(
const std::string &channel, const std::string &managed_type,
const std::string &managed_name, const Json_wrapper &wrapper,
Rpl_sys_table_access &table_op) {
DBUG_TRACE;
// add managed
std::vector<uint> managed_field_index{0, 1, 2, 3};
std::vector<std::string> managed_field_name{"channel", "managed_name",
"managed_type", "configuration"};
RPL_FAILOVER_MANAGED_JSON_TUPLE managed_field_value{channel, managed_name,
managed_type, wrapper};
std::tuple<bool, std::string> ret_val{};
std::string serialized_configuration;
ret_val = execute_handler_func_skip_send<RPL_FAILOVER_MANAGED_JSON_TUPLE>(
managed_field_index, managed_field_name, managed_field_value,
Rpl_sys_table_access::handler_write_row_func, 0, HA_WHOLE_KEY, table_op);
if (std::get<0>(ret_val)) {
return ret_val;
}
return ret_val;
}
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::delete_source(
const std::string &channel, const std::string &host, uint port,
const std::string &network_namespace) {
DBUG_TRACE;
assert(network_namespace.empty());
std::vector<uint> field_index{0, 1, 2, 3, 5};
std::vector<std::string> field_name{"channel", "host", "port",
"network_namespace", "managed_name"};
RPL_FAILOVER_SOURCE_DEL_TUPLE field_value{channel, host, port,
network_namespace, ""};
return execute_handler_func_send<RPL_FAILOVER_SOURCE_DEL_TUPLE>(
m_db, m_table_failover, m_table_failover_num_field, m_lock_type,
field_index, field_name, field_value,
Rpl_sys_table_access::handler_delete_row_func, 0, HA_WHOLE_KEY);
}
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::delete_managed(
const std::string &channel, const std::string &managed_name) {
DBUG_TRACE;
// delete managed
std::vector<uint> managed_field_index{0, 1};
std::vector<std::string> field_name{"channel", "managed_name"};
RPL_FAILOVER_MANAGED_DEL_TUPLE field_value{channel, managed_name};
std::tuple<bool, std::string> ret_val =
execute_handler_func_send<RPL_FAILOVER_MANAGED_DEL_TUPLE>(
m_db, m_table_managed, m_table_managed_num_field, m_lock_type,
managed_field_index, field_name, field_value,
Rpl_sys_table_access::handler_delete_row_func, 0, HA_WHOLE_KEY);
if (std::get<0>(ret_val)) {
return ret_val;
}
LogErr(SYSTEM_LEVEL, ER_RPL_ASYNC_MANAGED_NAME_REMOVED, managed_name.c_str(),
channel.c_str());
// delete source
std::vector<uint> field_index{0, 5};
ret_val = execute_handler_func_send<RPL_FAILOVER_MANAGED_DEL_TUPLE>(
m_db, m_table_failover, m_table_failover_num_field, m_lock_type,
field_index, field_name, field_value,
Rpl_sys_table_access::handler_delete_row_func, 1, (1L << 0) | (1L << 1));
return ret_val;
}
bool Rpl_async_conn_failover_table_operations::reset() {
DBUG_TRACE;
bool error = false;
Rpl_sys_table_access table_op_managed(m_db, m_table_managed,
m_table_managed_num_field);
Rpl_sys_table_access table_op_failover(m_db, m_table_failover,
m_table_failover_num_field);
if (table_op_managed.open(m_lock_type)) {
return true;
}
error |= table_op_managed.delete_all_rows();
error |= table_op_managed.delete_version();
error |= table_op_managed.close(error);
if (!error) {
if (table_op_failover.open(m_lock_type)) {
return true;
}
error |= table_op_failover.delete_all_rows();
error |= table_op_failover.delete_version();
error |= table_op_failover.close(error);
}
return error;
}
bool Rpl_async_conn_failover_table_operations::read_managed_rows_for_channel(
std::string channel_name, std::vector<RPL_FAILOVER_MANAGED_TUPLE> &rows) {
DBUG_TRACE;
Rpl_sys_table_access table_op(m_db, m_table_managed,
m_table_managed_num_field);
if (table_op.open(m_lock_type)) {
return true;
}
TABLE *table = table_op.get_table();
/* Store channel */
if (table_op.store_field(table->field[0], channel_name)) {
return true;
}
Rpl_sys_key_access key_access;
if (!key_access.init(table)) {
do {
/* get source detail */
RPL_FAILOVER_MANAGED_JSON_TUPLE source_tuple{};
get_data<RPL_FAILOVER_MANAGED_JSON_TUPLE>(table_op, source_tuple);
auto primary_weight{0}, secondary_weight{0};
Json_wrapper json_val =
std::get<3>(source_tuple).lookup(Primary_weight_key);
if ((!json_val.empty() || json_val.type() != enum_json_type::J_ERROR) &&
json_val.type() == enum_json_type::J_INT) {
primary_weight = json_val.get_int();
}
json_val = std::get<3>(source_tuple).lookup(Secondary_weight_key);
if ((!json_val.empty() || json_val.type() != enum_json_type::J_ERROR) &&
json_val.type() == enum_json_type::J_INT) {
secondary_weight = json_val.get_int();
}
rows.push_back(std::make_tuple(
std::get<0>(source_tuple), std::get<1>(source_tuple),
std::get<2>(source_tuple), primary_weight, secondary_weight));
} while (!key_access.next());
}
return (key_access.deinit() || table_op.close(false));
}
std::tuple<bool, std::vector<RPL_FAILOVER_SOURCE_TUPLE>>
Rpl_async_conn_failover_table_operations::read_source_rows_for_channel(
std::string channel_name) {
DBUG_TRACE;
std::vector<RPL_FAILOVER_SOURCE_TUPLE> source_list{};
Rpl_sys_table_access table_op(m_db, m_table_failover,
m_table_failover_num_field);
if (table_op.open(m_lock_type)) {
return std::make_tuple(true, source_list);
}
TABLE *table = table_op.get_table();
/* Store channel */
if (table_op.store_field(table->field[0], channel_name)) {
return std::make_tuple(true, source_list);
}
Rpl_sys_key_access key_access;
if (!key_access.init(table)) {
do {
/* get source detail */
RPL_FAILOVER_SOURCE_TUPLE source_tuple{};
get_data<RPL_FAILOVER_SOURCE_TUPLE>(table_op, source_tuple);
source_list.push_back(source_tuple);
} while (!key_access.next());
}
auto error = key_access.deinit() || table_op.close(false);
return std::make_tuple(error, source_list);
}
std::tuple<bool, std::vector<RPL_FAILOVER_SOURCE_TUPLE>>
Rpl_async_conn_failover_table_operations::
read_source_rows_for_channel_and_managed_name(std::string channel_name,
std::string managed_name) {
DBUG_TRACE;
std::vector<RPL_FAILOVER_SOURCE_TUPLE> source_list{};
Rpl_sys_table_access table_op(m_db, m_table_failover,
m_table_failover_num_field);
if (table_op.open(m_lock_type)) {
return std::make_tuple(true, source_list);
}
TABLE *table = table_op.get_table();
/* Store channel */
if (table_op.store_field(table->field[0], channel_name)) {
return std::make_tuple(true, source_list);
}
/* Store managed_name */
if (table_op.store_field(table->field[5], managed_name)) {
return std::make_tuple(true, source_list);
}
Rpl_sys_key_access key_access;
if (!key_access.init(table, 1, true, (key_part_map)((1L << 0) | (1L << 1)),
HA_READ_KEY_EXACT)) {
do {
/* get source detail */
RPL_FAILOVER_SOURCE_TUPLE source_tuple{};
get_data<RPL_FAILOVER_SOURCE_TUPLE>(table_op, source_tuple);
source_list.push_back(source_tuple);
} while (!key_access.next());
}
auto error = key_access.deinit() || table_op.close(false);
return std::make_tuple(error, source_list);
}
std::tuple<bool, std::vector<RPL_FAILOVER_SOURCE_TUPLE>>
Rpl_async_conn_failover_table_operations::read_source_all_rows_internal(
Rpl_sys_table_access &table_op) {
DBUG_TRACE;
std::vector<RPL_FAILOVER_SOURCE_TUPLE> source_list{};
TABLE *table = table_op.get_table();
Rpl_sys_key_access key_access;
if (!key_access.init(table, Rpl_sys_key_access::enum_key_type::INDEX_NEXT)) {
do {
/* get source detail */
RPL_FAILOVER_SOURCE_TUPLE source_tuple{};
get_data<RPL_FAILOVER_SOURCE_TUPLE>(table_op, source_tuple);
source_list.push_back(source_tuple);
} while (!key_access.next());
}
bool error = key_access.deinit();
return std::make_tuple(error, source_list);
}
std::tuple<bool, std::vector<RPL_FAILOVER_SOURCE_TUPLE>>
Rpl_async_conn_failover_table_operations::read_source_all_rows() {
bool error = false;
std::vector<RPL_FAILOVER_SOURCE_TUPLE> source_list{};
Rpl_sys_table_access table_op(m_db, m_table_failover,
m_table_failover_num_field);
if (table_op.open(m_lock_type)) {
return std::make_tuple(true, source_list);
}
std::tie(error, source_list) = read_source_all_rows_internal(table_op);
error |= table_op.close(error);
return std::make_tuple(error, source_list);
}
std::tuple<bool, std::vector<RPL_FAILOVER_SOURCE_TUPLE>>
Rpl_async_conn_failover_table_operations::read_source_random_rows() {
DBUG_TRACE;
std::vector<RPL_FAILOVER_SOURCE_TUPLE> source_list{};
Rpl_sys_table_access table_op(m_db, m_table_failover,
m_table_failover_num_field);
if (table_op.open(m_lock_type)) {
return std::make_tuple(true, source_list);
}
TABLE *table = table_op.get_table();
Rpl_sys_key_access key_access;
if (!key_access.init(table, Rpl_sys_key_access::enum_key_type::RND_NEXT)) {
do {
/* get source detail */
RPL_FAILOVER_SOURCE_TUPLE source_tuple{};
get_data<RPL_FAILOVER_SOURCE_TUPLE>(table_op, source_tuple);
source_list.push_back(source_tuple);
} while (!key_access.next());
}
auto error = key_access.deinit() || table_op.close(false);
return std::make_tuple(error, source_list);
}
bool Rpl_async_conn_failover_table_operations::
read_managed_random_rows_internal(
Rpl_sys_table_access &table_op,
std::vector<RPL_FAILOVER_MANAGED_TUPLE> &rows) {
DBUG_TRACE;
TABLE *table = table_op.get_table();
Rpl_sys_key_access key_access;
if (!key_access.init(table, Rpl_sys_key_access::enum_key_type::RND_NEXT)) {
do {
/* get source detail */
RPL_FAILOVER_MANAGED_JSON_TUPLE source_tuple{};
get_data<RPL_FAILOVER_MANAGED_JSON_TUPLE>(table_op, source_tuple);
auto primary_weight{0}, secondary_weight{0};
Json_wrapper json_val =
std::get<3>(source_tuple).lookup(Primary_weight_key);
if ((!json_val.empty() || json_val.type() != enum_json_type::J_ERROR) &&
json_val.type() == enum_json_type::J_INT) {
primary_weight = json_val.get_int();
}
json_val = std::get<3>(source_tuple).lookup(Secondary_weight_key);
if ((!json_val.empty() || json_val.type() != enum_json_type::J_ERROR) &&
json_val.type() == enum_json_type::J_INT) {
secondary_weight = json_val.get_int();
}
rows.push_back(std::make_tuple(
std::get<0>(source_tuple), std::get<1>(source_tuple),
std::get<2>(source_tuple), primary_weight, secondary_weight));
} while (!key_access.next());
}
bool error = key_access.deinit();
return error;
}
bool Rpl_async_conn_failover_table_operations::
read_managed_random_rows_internal(
Rpl_sys_table_access &table_op,
std::vector<RPL_FAILOVER_MANAGED_JSON_TUPLE> &rows) {
DBUG_TRACE;
TABLE *table = table_op.get_table();
Rpl_sys_key_access key_access;
if (!key_access.init(table, Rpl_sys_key_access::enum_key_type::RND_NEXT)) {
do {
/* get source detail */
RPL_FAILOVER_MANAGED_JSON_TUPLE source_tuple{};
get_data<RPL_FAILOVER_MANAGED_JSON_TUPLE>(table_op, source_tuple);
rows.push_back(source_tuple);
} while (!key_access.next());
}
bool error = key_access.deinit();
return error;
}
bool Rpl_async_conn_failover_table_operations::read_managed_random_rows(
std::vector<RPL_FAILOVER_MANAGED_TUPLE> &rows) {
DBUG_TRACE;
bool error = false;
Rpl_sys_table_access table_op(m_db, m_table_managed,
m_table_managed_num_field);
if (table_op.open(m_lock_type)) {
return true;
}
error = read_managed_random_rows_internal(table_op, rows);
error |= table_op.close(error);
return error;
}
template <class TUP>
void Rpl_async_conn_failover_table_operations::get_data(
Rpl_sys_table_access &table_op, TUP &rows) {
DBUG_TRACE;
TABLE *table = table_op.get_table();
Field **fields{table->field};
Rpl_sys_table_access::for_each_in_tuple(
rows, [&](const auto &n, auto &x) { table_op.get_field(fields[n], x); });
}
template <class T>
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::execute_handler_func_skip_send(
const std::vector<uint> &field_index,
const std::vector<std::string> &field_name, const T &field_value,
std::function<void(Rpl_sys_table_access &, bool &, std::string &, uint &,
key_part_map &)>
func,
uint table_index, key_part_map keypart_map,
Rpl_sys_table_access &table_op) {
std::ostringstream str_stream;
bool err_val{false};
std::string err_msg{};
std::string serialized_configuration;
TABLE *table = table_op.get_table();
Rpl_sys_table_access::for_each_in_tuple(
field_value, [&](const auto &n, const auto &x) {
if (table_op.store_field(table->field[field_index[n]], x)) {
err_msg.assign(table_op.get_field_error_msg(field_name[n]));
err_val = true;
}
});
if (err_val) {
table_op.set_error();
return std::make_tuple(err_val, err_msg);
}
/* Call handler function to write/delete... into the table. */
func(table_op, err_val, err_msg, table_index, keypart_map);
if (err_val) {
table_op.set_error();
return std::make_tuple(err_val, err_msg);
}
return std::make_tuple(err_val, err_msg);
}
template <class T>
std::tuple<bool, std::string>
Rpl_async_conn_failover_table_operations::execute_handler_func_send(
const std::string &db_name, const std::string &table_name, uint num_field,
enum thr_lock_type lock_type, const std::vector<uint> &field_index,
const std::vector<std::string> &field_name, const T &field_value,
std::function<void(Rpl_sys_table_access &, bool &, std::string &, uint &,
key_part_map &)>
func,
uint table_index, key_part_map keypart_map) {
std::ostringstream str_stream;
bool err_val{false};
std::string err_msg{};
std::string serialized_configuration;
Rpl_sys_table_access table_op(db_name, table_name, num_field);
if (table_op.open(lock_type)) {
table_op.set_error();
str_stream << "Error opening " << db_name << "." << table_name << " table.";
return std::make_tuple(true, str_stream.str());
}
std::tie(err_val, err_msg) = execute_handler_func_skip_send<T>(
field_index, field_name, field_value, func, table_index, keypart_map,
table_op);
if (!err_val) {
if (table_op.increment_version()) {
str_stream << "Error incrementing member action configuration version"
<< " for " << table_op.get_db_name() << "."
<< table_op.get_table_name() << " table.";
return std::make_tuple(true, str_stream.str());
}
if (rpl_acf_configuration_handler->send_table_data(table_op)) {
str_stream << "Error sending " << db_name << "." << table_name
<< " table data to group replication members.";
return std::make_tuple(true, str_stream.str());
}
}
return std::make_tuple(err_val, err_msg);
}