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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
#![allow(dead_code)]
pub mod utils;
mod multiplexer;
use std::sync::Arc;
use types::*;
use protocol::types::*;
use super::RedisClient;
use self::multiplexer::Multiplexer;
use error::{
RedisError,
RedisErrorKind
};
use super::utils as client_utils;
use futures::future::{
loop_fn,
Loop,
lazy
};
use futures::Future;
use futures::sync::oneshot::{
Sender as OneshotSender,
};
use futures::sync::mpsc::{
UnboundedSender,
UnboundedReceiver,
unbounded
};
use futures::stream::Stream;
use tokio_core::reactor::{
Handle
};
use tokio_core::net::{
TcpStream
};
use tokio_timer::Timer;
use parking_lot::{
RwLock
};
use std::net::{
ToSocketAddrs
};
use tokio_io::codec::Framed;
use futures::stream::{
SplitSink,
SplitStream
};
use std::rc::Rc;
use std::cell::RefCell;
pub type ConnectionFuture = Box<Future<Item=Option<RedisError>, Error=RedisError>>;
pub type RedisTransport = Framed<TcpStream, RedisCodec>;
pub type RedisSink = SplitSink<RedisTransport>;
pub type RedisStream = SplitStream<RedisTransport>;
pub type SplitTransport = (RedisSink, RedisStream);
fn init_clustered(
client: RedisClient,
handle: Handle,
config: Rc<RefCell<RedisConfig>>,
state: Arc<RwLock<ClientState>>,
error_tx: Rc<RefCell<Option<UnboundedSender<RedisError>>>>,
message_tx: Rc<RefCell<Option<UnboundedSender<(String, RedisValue)>>>>,
command_tx: Rc<RefCell<Option<UnboundedSender<RedisCommand>>>>,
connect_tx: Rc<RefCell<Vec<OneshotSender<Result<RedisClient, RedisError>>>>>,
reconnect_tx: Rc<RefCell<Option<UnboundedSender<RedisClient>>>>,
remote_tx: Rc<RefCell<Vec<OneshotSender<Result<(), RedisError>>>>>,
)
-> ConnectionFuture
{
Box::new(lazy(move || {
let memo = (
client,
handle,
config,
state,
error_tx,
message_tx,
command_tx,
connect_tx,
reconnect_tx,
remote_tx
);
loop_fn(memo, move |(client, handle, config, state, error_tx, message_tx, command_tx, connect_tx, reconnect_tx, remote_tx)| {
let cluster_handle = handle.clone();
let hosts: Vec<(String, u16)> = {
let config_ref = config.borrow();
match *config_ref {
RedisConfig::Clustered { ref hosts, .. } => hosts.clone(),
_ => panic!("unreachable. this is a bug.")
}
};
let key = utils::read_auth_key(&config);
let mult_client = client.clone();
let mult_config = config.clone();
let mult_message_tx = message_tx.clone();
let mult_error_tx = error_tx.clone();
let mult_command_tx = command_tx.clone();
let mult_state = state.clone();
let mult_connect_tx = connect_tx.clone();
let mult_reconnect_tx = reconnect_tx.clone();
let mult_remote_tx = remote_tx.clone();
let cluster_config = config.clone();
utils::build_cluster_cache(handle.clone(), &config).and_then(move |cache: ClusterKeyCache| {
utils::create_all_transports(cluster_config, cluster_handle, hosts, key).and_then(|result| {
Ok((result, cache))
})
})
.and_then(move |(mut transports, cache): (Vec<(String, RedisTransport)>, ClusterKeyCache)| {
let (tx, rx): (UnboundedSender<RedisCommand>, UnboundedReceiver<RedisCommand>) = unbounded();
let multiplexer = Multiplexer::new(
mult_config.clone(),
mult_message_tx.clone(),
mult_error_tx.clone(),
mult_command_tx.clone(),
mult_state.clone()
);
multiplexer.sinks.set_cluster_cache(cache);
for (server, transport) in transports.drain(..) {
let (sink, stream) = transport.split();
multiplexer.sinks.set_clustered_sink(server, sink);
multiplexer.streams.add_stream(stream);
}
let multiplexer_ft = utils::create_multiplexer_ft(multiplexer.clone(), mult_state.clone());
let commands_ft = utils::create_commands_ft(rx, mult_error_tx, multiplexer.clone(), mult_state.clone());
let connection_ft = utils::create_connection_ft(commands_ft, multiplexer_ft, mult_state.clone());
utils::set_command_tx(&mult_command_tx, tx);
utils::emit_connect(&mult_connect_tx, mult_remote_tx, mult_client.clone());
let _ = utils::emit_reconnect(&mult_reconnect_tx, mult_client);
client_utils::set_client_state(&mult_state, ClientState::Connected);
connection_ft.then(move |result| {
multiplexer.sinks.close();
multiplexer.streams.close();
result
})
})
.then(move |result| {
match result {
Ok(_) => Ok::<Loop<_, _>, RedisError>(Loop::Break(None)),
Err(e) => match *e.kind() {
RedisErrorKind::Cluster => {
Ok(Loop::Continue((client, handle, config, state, error_tx, message_tx, command_tx, connect_tx, reconnect_tx, remote_tx)))
},
_ => {
utils::emit_connect_error(&connect_tx, remote_tx, e.clone());
Ok(Loop::Break(Some(e)))
}
}
}
})
}).from_err::<RedisError>()
}))
}
fn init_centralized(
client: RedisClient,
handle: &Handle,
config: Rc<RefCell<RedisConfig>>,
state: Arc<RwLock<ClientState>>,
error_tx: Rc<RefCell<Option<UnboundedSender<RedisError>>>>,
message_tx: Rc<RefCell<Option<UnboundedSender<(String, RedisValue)>>>>,
command_tx: Rc<RefCell<Option<UnboundedSender<RedisCommand>>>>,
connect_tx: Rc<RefCell<Vec<OneshotSender<Result<RedisClient, RedisError>>>>>,
reconnect_tx: Rc<RefCell<Option<UnboundedSender<RedisClient>>>>,
remote_tx: Rc<RefCell<Vec<OneshotSender<Result<(), RedisError>>>>>,
)
-> ConnectionFuture
{
let addr_str = fry!(utils::read_centralized_host(&config));
let mut addr = fry!(addr_str.to_socket_addrs());
let addr = match addr.next() {
Some(a) => a,
None => return client_utils::future_error(RedisError::new(
RedisErrorKind::Unknown, format!("Could not resolve hostname {}.", addr_str)
))
};
client_utils::set_client_state(&state, ClientState::Connecting);
let error_connect_tx = connect_tx.clone();
let error_remote_tx = remote_tx.clone();
Box::new(utils::create_transport(&addr, &handle, config.clone(), state.clone()).and_then(move |(redis_sink, redis_stream)| {
let (tx, rx): (UnboundedSender<RedisCommand>, UnboundedReceiver<RedisCommand>) = unbounded();
let multiplexer = Multiplexer::new(
config.clone(),
message_tx.clone(),
error_tx.clone(),
command_tx.clone(),
state.clone()
);
multiplexer.sinks.set_centralized_sink(redis_sink);
multiplexer.streams.add_stream(redis_stream);
let multiplexer_ft = utils::create_multiplexer_ft(multiplexer.clone(), state.clone());
let commands_ft = utils::create_commands_ft(rx, error_tx, multiplexer, state.clone());
let connection_ft = utils::create_connection_ft(commands_ft, multiplexer_ft, state.clone());
debug!("Redis client successfully connected.");
utils::set_command_tx(&command_tx, tx);
utils::emit_connect(&connect_tx, remote_tx, client.clone());
let _ = utils::emit_reconnect(&reconnect_tx, client);
client_utils::set_client_state(&state, ClientState::Connected);
connection_ft
})
.then(move |result| {
debug!("Centralized connection future closed with result {:?}.", result);
if let Err(ref e) = result {
utils::emit_connect_error(&error_connect_tx, error_remote_tx, e.clone());
}
result
}))
}
pub fn init(
client: RedisClient,
handle: &Handle,
config: Rc<RefCell<RedisConfig>>,
state: Arc<RwLock<ClientState>>,
error_tx: Rc<RefCell<Option<UnboundedSender<RedisError>>>>,
message_tx: Rc<RefCell<Option<UnboundedSender<(String, RedisValue)>>>>,
command_tx: Rc<RefCell<Option<UnboundedSender<RedisCommand>>>>,
connect_tx: Rc<RefCell<Vec<OneshotSender<Result<RedisClient, RedisError>>>>>,
reconnect_tx: Rc<RefCell<Option<UnboundedSender<RedisClient>>>>,
remote_tx: Rc<RefCell<Vec<OneshotSender<Result<(), RedisError>>>>>,
) -> ConnectionFuture
{
let is_clustered = {
let config_ref = config.borrow();
match *config_ref {
RedisConfig::Centralized { .. } => false,
RedisConfig::Clustered { .. } => true
}
};
if is_clustered {
init_clustered(client,handle.clone(), config, state, error_tx, message_tx, command_tx, connect_tx, reconnect_tx, remote_tx)
}else{
init_centralized(client,handle, config, state, error_tx, message_tx, command_tx, connect_tx, reconnect_tx, remote_tx)
}
}
pub fn init_with_policy(
client: RedisClient,
handle: &Handle,
config: Rc<RefCell<RedisConfig>>,
state: Arc<RwLock<ClientState>>,
closed: Arc<RwLock<bool>>,
error_tx: Rc<RefCell<Option<UnboundedSender<RedisError>>>>,
message_tx: Rc<RefCell<Option<UnboundedSender<(String, RedisValue)>>>>,
command_tx: Rc<RefCell<Option<UnboundedSender<RedisCommand>>>>,
reconnect_tx: Rc<RefCell<Option<UnboundedSender<RedisClient>>>>,
connect_tx: Rc<RefCell<Vec<OneshotSender<Result<RedisClient, RedisError>>>>>,
remote_tx: Rc<RefCell<Vec<OneshotSender<Result<(), RedisError>>>>>,
policy: ReconnectPolicy,
) -> Box<Future<Item=(), Error=RedisError>> {
let handle = handle.clone();
let timer = Timer::default();
Box::new(lazy(move || {
loop_fn((handle, timer, policy), move |(handle, timer, policy)| {
let (_client, _config, _state, _error_tx, _message_tx, _command_tx, _connect_tx, _reconnect_tx, _remote_tx) = (
client.clone(),
config.clone(),
state.clone(),
error_tx.clone(),
message_tx.clone(),
command_tx.clone(),
connect_tx.clone(),
reconnect_tx.clone(),
remote_tx.clone()
);
let reconnect_tx_copy = reconnect_tx.clone();
let command_tx_copy = command_tx.clone();
let state_copy = state.clone();
let error_tx_copy = error_tx.clone();
let client_copy = client.clone();
let connect_tx_copy = connect_tx.clone();
let message_tx_copy = message_tx.clone();
let closed_copy = closed.clone();
let is_clustered = {
let config_ref = _config.borrow();
match *config_ref {
RedisConfig::Centralized {..} => false,
RedisConfig::Clustered {..} => true
}
};
let connection_ft = if is_clustered {
Box::new(init_clustered(client_copy, handle.clone(), _config, _state,
_error_tx, _message_tx, _command_tx, _connect_tx, _reconnect_tx, _remote_tx))
}else{
Box::new(init_centralized(client_copy, &handle, _config, _state, _error_tx,
_message_tx, _command_tx, _connect_tx, _reconnect_tx, _remote_tx))
};
Box::new(connection_ft.then(move |result| {
utils::reconnect(handle, timer, policy, state_copy, closed_copy,error_tx_copy,
message_tx_copy, command_tx_copy, reconnect_tx_copy, connect_tx_copy, result)
}))
})
.map(|_: ()| ())
})
.from_err::<RedisError>())
}