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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
use crate::{
network::{MonitorReceiver, MonitorSender},
resp::{cmd, BulkString, Command, FromValue, ResultValueExt, SingleArgOrCollection, Value},
BitmapCommands, BlockingCommands, ClusterCommands, ConnectionCommands, Future, GenericCommands,
GeoCommands, HashCommands, HyperLogLogCommands, InnerClient, InternalPubSubCommands,
IntoConfig, ListCommands, Message, MonitorStream, Pipeline, PreparedCommand, PubSubCommands,
PubSubStream, Result, ScriptingCommands, SentinelCommands, ServerCommands, SetCommands,
SortedSetCommands, StreamCommands, StringCommands, Transaction, TransactionCommands,
ValueReceiver, ValueSender,
};
use futures::channel::{mpsc, oneshot};
use std::future::IntoFuture;
pub struct Client {
inner_client: InnerClient,
}
impl Client {
pub async fn connect(config: impl IntoConfig) -> Result<Self> {
let inner_client = InnerClient::connect(config).await?;
Ok(Self { inner_client })
}
pub(crate) fn clone(&self) -> Client {
Client {
inner_client: self.inner_client.clone(),
}
}
pub async fn send(&mut self, command: Command) -> Result<Value> {
self.inner_client.send(command).await
}
pub fn send_and_forget(&mut self, command: Command) -> Result<()> {
self.inner_client.send_and_forget(command)
}
pub async fn send_batch(&mut self, commands: Vec<Command>) -> Result<Value> {
self.inner_client.send_batch(commands).await
}
pub fn create_transaction(&mut self) -> Transaction {
Transaction::new(self.inner_client.clone())
}
pub fn create_pipeline(&mut self) -> Pipeline {
Pipeline::new(self.inner_client.clone())
}
}
pub trait ClientPreparedCommand<'a, R>
where
R: FromValue,
{
fn forget(self) -> Result<()>;
}
impl<'a, R> ClientPreparedCommand<'a, R> for PreparedCommand<'a, Client, R>
where
R: FromValue + Send + 'a,
{
fn forget(self) -> Result<()> {
self.executor.send_and_forget(self.command)
}
}
impl<'a, R> IntoFuture for PreparedCommand<'a, Client, R>
where
R: FromValue + Send + 'a,
{
type Output = Result<R>;
type IntoFuture = Future<'a, R>;
fn into_future(self) -> Self::IntoFuture {
Box::pin(async move { self.executor.send(self.command).await?.into() })
}
}
impl BitmapCommands for Client {}
impl ClusterCommands for Client {}
impl ConnectionCommands for Client {}
impl GenericCommands for Client {}
impl GeoCommands for Client {}
impl HashCommands for Client {}
impl HyperLogLogCommands for Client {}
impl InternalPubSubCommands for Client {}
impl ListCommands for Client {}
impl ScriptingCommands for Client {}
impl SentinelCommands for Client {}
impl ServerCommands for Client {}
impl SetCommands for Client {}
impl SortedSetCommands for Client {}
impl StreamCommands for Client {}
impl StringCommands for Client {}
impl TransactionCommands for Client {}
impl PubSubCommands for Client {
fn subscribe<'a, C, CC>(&'a mut self, channels: CC) -> Future<'a, PubSubStream>
where
C: Into<BulkString> + Send + 'a,
CC: SingleArgOrCollection<C>,
{
self.inner_client.subscribe(channels)
}
fn psubscribe<'a, P, PP>(&'a mut self, patterns: PP) -> Future<'a, PubSubStream>
where
P: Into<BulkString> + Send + 'a,
PP: SingleArgOrCollection<P>,
{
self.inner_client.psubscribe(patterns)
}
}
impl BlockingCommands for Client {
fn monitor(&mut self) -> Future<crate::MonitorStream> {
Box::pin(async move {
let (value_sender, value_receiver): (ValueSender, ValueReceiver) = oneshot::channel();
let (monitor_sender, monitor_receiver): (MonitorSender, MonitorReceiver) =
mpsc::unbounded();
let message = Message::monitor(cmd("MONITOR"), value_sender, monitor_sender);
self.inner_client.send_message(message)?;
let value = value_receiver.await?;
value.map_into_result(|_| MonitorStream::new(monitor_receiver, self.clone()))
})
}
}