forked from RedisLabs/memtier_benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster_client.h
61 lines (49 loc) · 2.29 KB
/
cluster_client.h
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
/*
* Copyright (C) 2011-2017 Redis Labs Ltd.
*
* This file is part of memtier_benchmark.
*
* memtier_benchmark is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* memtier_benchmark 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 memtier_benchmark. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MEMTIER_BENCHMARK_CLUSTER_CLIENT_H
#define MEMTIER_BENCHMARK_CLUSTER_CLIENT_H
#include <set>
#include "client.h"
typedef std::queue<unsigned long long> key_index_pool;
// forward decleration
class shard_connection;
class cluster_client : public client {
protected:
std::vector<key_index_pool*> m_key_index_pools;
unsigned int m_slot_to_shard[16384];
virtual int connect(void);
virtual void disconnect(void);
shard_connection* create_shard_connection(abstract_protocol* abs_protocol);
bool connect_shard_connection(shard_connection* sc, char* address, char* port);
void handle_moved(unsigned int conn_id, struct timeval timestamp,
request *request, protocol_response *response);
void handle_ask(unsigned int conn_id, struct timeval timestamp,
request *request, protocol_response *response);
public:
cluster_client(client_group* group);
virtual ~cluster_client();
virtual get_key_response get_key_for_conn(unsigned int command_index, unsigned int conn_id, unsigned long long* key_index);
virtual bool create_arbitrary_request(unsigned int command_index, struct timeval& timestamp, unsigned int conn_id);
// client manager api's
virtual void handle_cluster_slots(protocol_response *r);
virtual void create_request(struct timeval timestamp, unsigned int conn_id);
virtual bool hold_pipeline(unsigned int conn_id);
virtual void handle_response(unsigned int conn_id, struct timeval timestamp,
request *request, protocol_response *response);
};
#endif //MEMTIER_BENCHMARK_CLUSTER_CLIENT_H