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
|
/* 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 */
/**
@addtogroup Backup
@{
@file
@brief Log resource definitions. This includes code for the server
resources that will take part on the results of the
performance_schema.log_status table.
*/
#ifndef LOG_RESOURCE_H
#define LOG_RESOURCE_H
#include "sql/binlog.h"
#include "sql/handler.h"
#include "sql/rpl_gtid.h"
#include "sql/rpl_mi.h"
class Json_dom;
/**
@class Log_resource
This is the base class that the logic of collecting a MySQL server instance
resources log will call.
It basically contains lock, unlock and collect functions that shall be
overridden by more specialized classes to handle the specific cases of
resources participating in the process.
*/
class Log_resource {
/* JSON object to be filled by the do_collect_info function */
Json_dom *json = nullptr;
public:
/**
There must be one function of this kind in order for the symbols in the
server's dynamic library to be visible to plugins.
*/
static int dummy_function_to_ensure_we_are_linked_into_the_server();
/**
Log_resource constructor.
@param[in] json_arg the pointer to the JSON object to be populated with the
resource log information.
*/
Log_resource(Json_dom *json_arg) : json(json_arg) {}
/**
Destructor.
This function will point the JSON object to nullptr.
*/
virtual ~Log_resource() { json = nullptr; }
/**
Return the pointer to the JSON object that should be used to fill the
resource log information.
@return the Json_object pointer to be filled with the log information.
*/
Json_dom *get_json() { return json; }
/*
Next three virtual functions need to be overridden by any more specialized
class inheriting from this to support a specific resource participating in
the collection process.
*/
/**
Lock the resource avoiding updates.
*/
virtual void lock() = 0;
/**
Unlock the resource allowing updates.
*/
virtual void unlock() = 0;
/**
Collect resource log information.
@return false on success.
true if there was an error collecting the information.
*/
virtual bool collect_info() = 0;
};
/**
@class Log_resource_mi_wrapper
This is the Log_resource to handle Master_info resources.
*/
class Log_resource_mi_wrapper : public Log_resource {
Master_info *mi = nullptr;
public:
/**
Log_resource_mi_wrapper constructor.
@param[in] mi_arg the pointer to the Master_info object resource.
@param[in] json_arg the pointer to the JSON object to be populated with the
resource log information.
*/
Log_resource_mi_wrapper(Master_info *mi_arg, Json_dom *json_arg)
: Log_resource(json_arg), mi(mi_arg) {}
void lock() override;
void unlock() override;
bool collect_info() override;
};
/**
@class Log_resource_binlog_wrapper
This is the Log_resource to handle MYSQL_BIN_LOG resources.
*/
class Log_resource_binlog_wrapper : public Log_resource {
MYSQL_BIN_LOG *binlog = nullptr;
public:
/**
Log_resource_binlog_wrapper constructor.
@param[in] binlog_arg the pointer to the MYSQL_BIN_LOG object resource.
@param[in] json_arg the pointer to the JSON object to be populated with the
resource log information.
*/
Log_resource_binlog_wrapper(MYSQL_BIN_LOG *binlog_arg, Json_dom *json_arg)
: Log_resource(json_arg), binlog(binlog_arg) {}
void lock() override;
void unlock() override;
bool collect_info() override;
};
/**
@class Log_resource_gtid_state_wrapper
This is the Log_resource to handle Gtid_state resources.
*/
class Log_resource_gtid_state_wrapper : public Log_resource {
Gtid_state *gtid_state = nullptr;
MYSQL_BIN_LOG *binlog = nullptr;
public:
/**
Log_resource_gtid_state_wrapper constructor.
@param[in] gtid_state_arg the pointer to the Gtid_state object resource.
@param[in] json_arg the pointer to the JSON object to be populated with the
resource log information.
@param[in] binlog_arg the pointer to the MYSQL_BIN_LOG object resource.
*/
Log_resource_gtid_state_wrapper(Gtid_state *gtid_state_arg,
Json_dom *json_arg, MYSQL_BIN_LOG *binlog_arg)
: Log_resource(json_arg),
gtid_state(gtid_state_arg),
binlog(binlog_arg) {}
void lock() override;
void unlock() override;
bool collect_info() override;
};
/**
@class Log_resource_hton_wrapper
This is the Log_resource to handle handlerton resources.
*/
class Log_resource_hton_wrapper : public Log_resource {
handlerton *hton = nullptr;
public:
/**
Log_resource_hton_wrapper constructor.
@param[in] hton_arg the pointer to the hton resource.
@param[in] json_arg the pointer to the JSON object to be populated with the
resource log information.
*/
Log_resource_hton_wrapper(handlerton *hton_arg, Json_dom *json_arg)
: Log_resource(json_arg), hton(hton_arg) {}
void lock() override;
void unlock() override;
bool collect_info() override;
};
/**
@class Log_resource_factory
This is the Log_resource factory to create wrappers for supported
resources.
*/
class Log_resource_factory {
public:
/**
Creates a Log_resource wrapper based on a Master_info object.
@param[in] mi the pointer to the Master_info object resource.
@param[in] json the pointer to the JSON object to be populated with the
resource log information.
@return the pointer to the new Log_resource.
*/
static Log_resource *get_wrapper(Master_info *mi, Json_dom *json);
/**
Creates a Log_resource wrapper based on a Master_info object.
@param[in] binlog the pointer to the MYSQL_BIN_LOG object resource.
@param[in] json the pointer to the JSON object to be populated with the
resource log information.
@return the pointer to the new Log_resource.
*/
static Log_resource *get_wrapper(MYSQL_BIN_LOG *binlog, Json_dom *json);
/**
Creates a Log_resource wrapper based on a Gtid_state object.
@param[in] gtid_state the pointer to the Gtid_state object resource.
@param[in] json the pointer to the JSON object to be populated with the
resource log information.
@param[in] binlog the pointer to the MYSQL_BIN_LOG object resource.
@return the pointer to the new Log_resource.
*/
static Log_resource *get_wrapper(Gtid_state *gtid_state, Json_dom *json,
MYSQL_BIN_LOG *binlog);
/**
Creates a Log_resource wrapper based on a handlerton.
@param[in] hton the pointer to the handlerton resource.
@param[in] json the pointer to the JSON object to be populated with the
resource log information.
@return the pointer to the new Log_resource.
*/
static Log_resource *get_wrapper(handlerton *hton, Json_dom *json);
};
/**
@} (End of group Backup)
*/
#endif /* LOG_RESOURCE_H */
|