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
|
/* Copyright (c) 2017, 2025, 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 "sql/log_resource.h"
#include "sql-common/json_dom.h"
int MY_ATTRIBUTE((visibility("default")))
Log_resource::dummy_function_to_ensure_we_are_linked_into_the_server() {
return 1;
}
void Log_resource_mi_wrapper::lock() { mysql_mutex_lock(&mi->data_lock); }
void Log_resource_mi_wrapper::unlock() { mysql_mutex_unlock(&mi->data_lock); }
bool Log_resource_mi_wrapper::collect_info() {
bool error = false;
mysql_mutex_assert_owner(&mi->data_lock);
Json_array *json_replication = static_cast<Json_array *>(get_json());
Json_string json_channel_name(mi->get_channel());
LOG_INFO log_info;
mi->get_flushed_relay_log_info(&log_info);
size_t dir_len = dirname_length(log_info.log_file_name);
Json_string json_log_file(log_info.log_file_name + dir_len);
Json_int json_log_pos(log_info.pos);
Json_object json_channel;
error = json_channel.add_clone("channel_name",
(const Json_dom *)&json_channel_name);
if (!error) error = json_channel.add_clone("relay_log_file", &json_log_file);
if (!error)
error = json_channel.add_clone("relay_log_position", &json_log_pos);
if (!error) json_replication->append_clone(&json_channel);
return error;
}
void Log_resource_binlog_wrapper::lock() {
mysql_mutex_lock(binlog->get_log_lock());
}
void Log_resource_binlog_wrapper::unlock() {
mysql_mutex_unlock(binlog->get_log_lock());
}
bool Log_resource_binlog_wrapper::collect_info() {
bool error = false;
mysql_mutex_assert_owner(binlog->get_log_lock());
if (binlog->is_open()) {
Json_object *json_local = static_cast<Json_object *>(get_json());
LOG_INFO log_info;
binlog->get_current_log(&log_info, false);
size_t dir_len = dirname_length(log_info.log_file_name);
Json_string json_log_file(log_info.log_file_name + dir_len);
Json_int json_log_pos(log_info.pos);
error = json_local->add_clone("binary_log_file", &json_log_file);
if (!error) json_local->add_clone("binary_log_position", &json_log_pos);
}
return error;
}
void Log_resource_gtid_state_wrapper::lock() {
/*
Ensure that the number of prepared XIDs is zero to confirm the completion
of transactions in the BGC pipeline.
*/
binlog->wait_for_prep_xids();
global_sid_lock->wrlock();
}
void Log_resource_gtid_state_wrapper::unlock() { global_sid_lock->unlock(); }
bool Log_resource_gtid_state_wrapper::collect_info() {
bool error = false;
global_sid_lock->assert_some_wrlock();
char *gtid_executed_string;
Json_object *json_local = static_cast<Json_object *>(get_json());
int len = gtid_state->get_executed_gtids()->to_string(>id_executed_string);
if (!(error = (len < 0))) {
Json_string json_gtid_executed(gtid_executed_string);
error = json_local->add_clone("gtid_executed", &json_gtid_executed);
}
my_free(gtid_executed_string);
return error;
}
void Log_resource_hton_wrapper::lock() {
if (hton->lock_hton_log) hton->lock_hton_log(hton);
}
void Log_resource_hton_wrapper::unlock() {
if (hton->unlock_hton_log) hton->unlock_hton_log(hton);
}
bool Log_resource_hton_wrapper::collect_info() {
bool result = false;
if (hton->collect_hton_log_info) {
result = hton->collect_hton_log_info(hton, get_json());
}
return result;
}
Log_resource *Log_resource_factory::get_wrapper(Master_info *mi,
Json_dom *json) {
Log_resource_mi_wrapper *wrapper;
wrapper = new Log_resource_mi_wrapper(mi, json);
return wrapper;
}
Log_resource *Log_resource_factory::get_wrapper(MYSQL_BIN_LOG *binlog,
Json_dom *json) {
Log_resource_binlog_wrapper *wrapper;
wrapper = new Log_resource_binlog_wrapper(binlog, json);
return wrapper;
}
Log_resource *Log_resource_factory::get_wrapper(Gtid_state *gtid_state,
Json_dom *json,
MYSQL_BIN_LOG *binlog) {
Log_resource_gtid_state_wrapper *wrapper;
wrapper = new Log_resource_gtid_state_wrapper(gtid_state, json, binlog);
return wrapper;
}
Log_resource *Log_resource_factory::get_wrapper(handlerton *hton,
Json_dom *json) {
Log_resource_hton_wrapper *wrapper;
wrapper = new Log_resource_hton_wrapper(hton, json);
return wrapper;
}
|