2009-09-23 23:32:31 +02:00
|
|
|
#ifndef REPL_FAILSAFE_INCLUDED
|
|
|
|
#define REPL_FAILSAFE_INCLUDED
|
|
|
|
|
2011-06-30 17:46:53 +02:00
|
|
|
/* Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
|
2004-09-08 18:26:19 -07:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2004-09-08 18:26:19 -07:00
|
|
|
|
|
|
|
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 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
|
2011-06-30 17:46:53 +02:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
2004-09-08 18:26:19 -07:00
|
|
|
|
2003-01-15 12:11:44 +04:00
|
|
|
#ifdef HAVE_REPLICATION
|
2001-10-09 20:56:24 -06:00
|
|
|
|
2001-10-23 13:28:03 -06:00
|
|
|
#include "mysql.h"
|
2001-11-10 22:24:12 -07:00
|
|
|
#include "my_sys.h"
|
|
|
|
#include "slave.h"
|
2001-10-23 13:28:03 -06:00
|
|
|
|
2009-12-22 10:35:56 +01:00
|
|
|
typedef enum {RPL_AUTH_MASTER=0,RPL_IDLE_SLAVE,RPL_ACTIVE_SLAVE,
|
2001-10-09 20:56:24 -06:00
|
|
|
RPL_LOST_SOLDIER,RPL_TROOP_SOLDIER,
|
2001-10-11 13:54:06 -06:00
|
|
|
RPL_RECOVERY_CAPTAIN,RPL_NULL /* inactive */,
|
|
|
|
RPL_ANY /* wild card used by change_rpl_status */ } RPL_STATUS;
|
2010-10-11 15:50:14 +01:00
|
|
|
extern ulong rpl_status;
|
2001-10-09 20:56:24 -06:00
|
|
|
|
2010-01-06 22:42:07 -07:00
|
|
|
extern mysql_mutex_t LOCK_rpl_status;
|
|
|
|
extern mysql_cond_t COND_rpl_status;
|
2010-07-23 17:13:36 -03:00
|
|
|
extern TYPELIB rpl_role_typelib;
|
2001-10-10 15:36:35 -06:00
|
|
|
extern const char* rpl_role_type[], *rpl_status_type[];
|
2001-10-11 13:54:06 -06:00
|
|
|
|
2010-10-11 15:50:14 +01:00
|
|
|
void change_rpl_status(ulong from_status, ulong to_status);
|
2001-10-23 13:28:03 -06:00
|
|
|
int find_recovery_captain(THD* thd, MYSQL* mysql);
|
2001-11-10 22:24:12 -07:00
|
|
|
|
|
|
|
extern HASH slave_list;
|
|
|
|
|
2004-10-20 04:04:37 +03:00
|
|
|
bool show_slave_hosts(THD* thd);
|
2001-11-10 22:24:12 -07:00
|
|
|
void init_slave_list();
|
|
|
|
void end_slave_list();
|
|
|
|
int register_slave(THD* thd, uchar* packet, uint packet_length);
|
|
|
|
void unregister_slave(THD* thd, bool only_mine, bool need_mutex);
|
|
|
|
|
2003-01-15 12:11:44 +04:00
|
|
|
#endif /* HAVE_REPLICATION */
|
2009-09-23 23:32:31 +02:00
|
|
|
#endif /* REPL_FAILSAFE_INCLUDED */
|