54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2018 MariaDB Corporation Ab
|
|
*
|
|
* Use of this software is governed by the Business Source License included
|
|
* in the LICENSE.TXT file and at www.mariadb.com/bsl11.
|
|
*
|
|
* Change Date: 2022-01-01
|
|
*
|
|
* On the date above, in accordance with the Business Source License, use
|
|
* of this software will be governed by version 2 or later of the General
|
|
* Public License.
|
|
*/
|
|
|
|
#include "mariadbmon_common.hh"
|
|
|
|
/** Server id default value */
|
|
const int64_t SERVER_ID_UNKNOWN = -1;
|
|
/** Default gtid domain */
|
|
const int64_t GTID_DOMAIN_UNKNOWN = -1;
|
|
/** Default port */
|
|
const int PORT_UNKNOWN = 0;
|
|
|
|
using std::string;
|
|
|
|
DelimitedPrinter::DelimitedPrinter(const string& separator)
|
|
: m_separator(separator)
|
|
{
|
|
}
|
|
|
|
void DelimitedPrinter::cat(string& target, const string& addition)
|
|
{
|
|
target += m_current_separator + addition;
|
|
m_current_separator = m_separator;
|
|
}
|
|
|
|
ClusterOperation::ClusterOperation(OperationType type,
|
|
MariaDBServer* promotion_target, MariaDBServer* demotion_target,
|
|
bool demo_target_is_master, bool handle_events,
|
|
string& promotion_sql_file, string& demotion_sql_file,
|
|
string& replication_user, string& replication_password,
|
|
json_t** error, maxbase::Duration time_remaining)
|
|
: type(type)
|
|
, promotion_target(promotion_target)
|
|
, demotion_target(demotion_target)
|
|
, demotion_target_is_master(demo_target_is_master)
|
|
, handle_events(handle_events)
|
|
, promotion_sql_file(promotion_sql_file)
|
|
, demotion_sql_file(demotion_sql_file)
|
|
, replication_user(replication_user)
|
|
, replication_password(replication_password)
|
|
, error_out(error)
|
|
, time_remaining(time_remaining)
|
|
{}
|