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
use crate::{
resp::{BulkString, Command, FromValue, SingleArgOrCollection, Value},
BitmapCommands, ClusterCommands, ConnectionCommands, Future, GenericCommands, GeoCommands,
HashCommands, HyperLogLogCommands, InnerClient, InternalPubSubCommands, IntoConfig,
ListCommands, Pipeline, PreparedCommand, PubSubCommands, PubSubStream, Result,
ScriptingCommands, SentinelCommands, ServerCommands, SetCommands, SortedSetCommands,
StreamCommands, StringCommands, Transaction,
};
use std::future::IntoFuture;
#[derive(Clone)]
pub struct MultiplexedClient {
inner_client: InnerClient,
}
impl MultiplexedClient {
pub async fn connect(config: impl IntoConfig) -> Result<Self> {
let inner_client = InnerClient::connect(config).await?;
Ok(Self { inner_client })
}
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_pipeline(&mut self) -> Pipeline {
Pipeline::new(self.inner_client.clone())
}
pub fn create_transaction(&mut self) -> Transaction {
Transaction::new(self.inner_client.clone())
}
}
pub trait MultiplexedPreparedCommand<'a, R>
where
R: FromValue,
{
fn forget(self) -> Result<()>;
}
impl<'a, R> MultiplexedPreparedCommand<'a, R> for PreparedCommand<'a, MultiplexedClient, R>
where
R: FromValue + Send + 'a,
{
fn forget(self) -> Result<()> {
self.executor.send_and_forget(self.command)
}
}
impl<'a, R> IntoFuture for PreparedCommand<'a, MultiplexedClient, 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 MultiplexedClient {}
impl ClusterCommands for MultiplexedClient {}
impl ConnectionCommands for MultiplexedClient {}
impl GenericCommands for MultiplexedClient {}
impl GeoCommands for MultiplexedClient {}
impl HashCommands for MultiplexedClient {}
impl HyperLogLogCommands for MultiplexedClient {}
impl InternalPubSubCommands for MultiplexedClient {}
impl ListCommands for MultiplexedClient {}
impl ScriptingCommands for MultiplexedClient {}
impl SentinelCommands for MultiplexedClient {}
impl ServerCommands for MultiplexedClient {}
impl SetCommands for MultiplexedClient {}
impl SortedSetCommands for MultiplexedClient {}
impl StreamCommands for MultiplexedClient {}
impl StringCommands for MultiplexedClient {}
impl PubSubCommands for MultiplexedClient {
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)
}
}