repl_failsafe.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB & Sasha
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifdef HAVE_REPLICATION
  14. #include "mysql.h"
  15. #include "my_sys.h"
  16. #include "slave.h"
  17. typedef enum {RPL_AUTH_MASTER=0,RPL_ACTIVE_SLAVE,RPL_IDLE_SLAVE,
  18.       RPL_LOST_SOLDIER,RPL_TROOP_SOLDIER,
  19.       RPL_RECOVERY_CAPTAIN,RPL_NULL /* inactive */,
  20.       RPL_ANY /* wild card used by change_rpl_status */ } RPL_STATUS;
  21. extern RPL_STATUS rpl_status;
  22. extern pthread_mutex_t LOCK_rpl_status;
  23. extern pthread_cond_t COND_rpl_status;
  24. extern TYPELIB rpl_role_typelib, rpl_status_typelib;
  25. extern const char* rpl_role_type[], *rpl_status_type[];
  26. pthread_handler_decl(handle_failsafe_rpl,arg);
  27. void change_rpl_status(RPL_STATUS from_status, RPL_STATUS to_status);
  28. int find_recovery_captain(THD* thd, MYSQL* mysql);
  29. int update_slave_list(MYSQL* mysql, MASTER_INFO* mi);
  30. extern HASH slave_list;
  31. int load_master_data(THD* thd);
  32. int connect_to_master(THD *thd, MYSQL* mysql, MASTER_INFO* mi);
  33. int show_new_master(THD* thd);
  34. int show_slave_hosts(THD* thd);
  35. int translate_master(THD* thd, LEX_MASTER_INFO* mi, char* errmsg);
  36. void init_slave_list();
  37. void end_slave_list();
  38. int register_slave(THD* thd, uchar* packet, uint packet_length);
  39. void unregister_slave(THD* thd, bool only_mine, bool need_mutex);
  40. #endif /* HAVE_REPLICATION */