-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclient.h
89 lines (69 loc) · 2.41 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#pragma once
#include "concurrentqueue.h"
#include "blockingconcurrentqueue.h"
#include <thread>
#include <vector>
#include <functional>
#include <future>
#include <atomic>
#include "reply.h"
struct redisContext;
namespace async_redis
{
class client
{
public:
/**
* Create a new redis client
*
* @param piped_cache The number of command put to pipeline before commit
* 0: manully commit, 1: disable pipeline (commit when available)
*
* @param pipeline_timeout The maximum time to spend waiting for pipeline to be filled in ms
* 0: wait for piped_cache number of command to be filled.
* DONT recommend set time to 0, since the worker will wait forever
* until receive enough command (if you use future you will get a deadlock)
*
*/
client(size_t piped_cache = 0, uint32_t pipeline_timeout = 0);
~client();
bool Connect(const std::string &host, int port, uint32_t timeout_ms);
bool IsConnected() const;
void Disconnect();
// bool: if successfully sent and receive, reply: actual reply content
typedef std::function<void(void *)> reply_callback;
client &Append(const std::vector<std::string> &redis_cmd, const reply_callback &callback = nullptr);
template<typename T = void>
std::future<T *> Command(const std::vector<std::string> &redis_cmd, bool commit = true)
{
auto prms = std::make_shared<std::promise<T *>>();
Append(redis_cmd, [prms](void *r) {
prms->set_value((T *)r);
});
if (commit) {
Commit();
}
return prms->get_future();
}
// This function will do nothing when auto pipeline enabled
// If pipeline was enable, it will force worker to commit existing command
client &Commit();
int GetError() const;
const char *GetErrorString() const;
private:
struct command_request
{
std::string command;
reply_callback callback;
};
static std::string formatCommand(const std::vector<std::string> &redis_cmd);
moodycamel::BlockingConcurrentQueue<command_request> m_commands;
moodycamel::details::mpmc_sema::LightweightSemaphore pipeline_sem;
size_t cache_size;
uint32_t pipe_timeout;
std::atomic<bool> flush_pipeline;
std::atomic<bool> stopped;
std::thread worker;
redisContext *ctx;
};
}