2019-07-28 10:31:56 +08:00
|
|
|
#pragma once
|
2015-04-19 22:15:30 +08:00
|
|
|
|
|
|
|
class redis_status
|
|
|
|
{
|
|
|
|
public:
|
2016-03-13 20:01:41 +08:00
|
|
|
redis_status(const char* addr, int conn_timeout, int rw_timeout,
|
|
|
|
const char* passwd);
|
2015-04-19 22:15:30 +08:00
|
|
|
~redis_status(void);
|
|
|
|
|
2016-03-13 20:01:41 +08:00
|
|
|
void show_nodes(void);
|
2015-04-19 22:15:30 +08:00
|
|
|
static void show_nodes(acl::redis& redis);
|
2016-03-13 20:01:41 +08:00
|
|
|
|
|
|
|
static void show_nodes_tree(
|
|
|
|
const std::map<acl::string, acl::redis_node*>&);
|
|
|
|
static void show_nodes_tree(const std::vector<acl::redis_node*>& nodes);
|
|
|
|
static void show_slave_tree(const std::vector<acl::redis_node*>& slaves);
|
|
|
|
|
2015-04-19 22:15:30 +08:00
|
|
|
static bool show_nodes(const std::map<acl::string,
|
|
|
|
acl::redis_node*>* masters);
|
2016-03-13 20:01:41 +08:00
|
|
|
|
2015-04-19 22:15:30 +08:00
|
|
|
static void show_master_slots(const acl::redis_node* master);
|
|
|
|
static void show_slave_nodes(const std::vector<acl::redis_node*>& slaves);
|
|
|
|
|
2019-07-08 11:49:19 +08:00
|
|
|
void show_slots(void);
|
2015-04-19 22:15:30 +08:00
|
|
|
static bool show_slots(acl::redis& redis);
|
|
|
|
static void show_slaves_slots(const acl::redis_slot* slot);
|
|
|
|
|
|
|
|
private:
|
|
|
|
acl::string addr_;
|
|
|
|
int conn_timeout_;
|
|
|
|
int rw_timeout_;
|
2016-03-13 20:01:41 +08:00
|
|
|
acl::string passwd_;
|
2015-04-19 22:15:30 +08:00
|
|
|
};
|