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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
pub mod errors;

use cord_message::{Codec, Message, Pattern};
use errors::{Error, ErrorKind, Result};
use futures::{Future, Stream};
use futures_locks::Mutex;
use retain_mut::RetainMut;
use tokio::{codec::Framed, net::TcpStream, prelude::Async, sync::mpsc, sync::oneshot};

use std::{collections::HashMap, net::SocketAddr, ops::Drop, result, sync::Arc};

/// A `Conn` is used to connect to and communicate with a broker.
///
/// # Examples
///
/// ```
/// use cord_client::Conn;
/// use futures::{future, Future};
/// use tokio;
///
/// let fut = Conn::new("127.0.0.1:7101".parse().unwrap()).and_then(|mut conn| {
///     // Tell the broker we're going to provide the namespace /users
///     conn.provide("/users".into()).unwrap();
///
///     // Start publishing events...
///     conn.event("/users/mark".into(), "Mark has joined").unwrap();
///
///     Ok(())
/// }).map_err(|_| ());
///
/// tokio::run(fut);
/// ```
#[derive(Clone)]
pub struct Conn {
    sender: mpsc::UnboundedSender<Message>,
    inner: Arc<Inner>,
}

/// A `Subscriber` encapsulates a stream of events for a subscribed namespace. It is
/// created by [`Conn::subscribe()`](struct.Conn.html#method.subscribe).
///
/// # Examples
///
/// ```
///# use cord_client::Conn;
///# use cord_client::errors::ErrorKind;
///# use futures::{future, Future, Stream};
///# use tokio;
///
///# let fut = Conn::new("127.0.0.1:7101".parse().unwrap()).and_then(|mut conn| {
/// conn.subscribe("/users/".into()).unwrap().for_each(|(namespace, data)| {
///     // Handle the message...
///     dbg!("Received the namespace '{}' with data: {}", namespace, data);
///
///     Ok(())
/// })
///# });
/// ```
pub struct Subscriber {
    receiver: mpsc::Receiver<Message>,
    _inner: Arc<Inner>,
}

struct Inner {
    receivers: Mutex<HashMap<Pattern, Vec<mpsc::Sender<Message>>>>,
    detonator: Option<oneshot::Sender<()>>,
}

impl Conn {
    /// Connect to a broker
    pub fn new(addr: SocketAddr) -> impl Future<Item = Conn, Error = Error> {
        // Because Sink::send takes ownership of the sink and returns a future, we need a
        // different type to send data that doesn't require ownership. Channels are great
        // for this.
        let (tx, rx) = mpsc::unbounded_channel();

        // This channel is used to shutdown the stream listener when the Conn is dropped
        let (det_tx, det_rx) = oneshot::channel();

        TcpStream::connect(&addr)
            .map(|sock| {
                // Wrap socket in message codec
                let framed = Framed::new(sock, Codec::default());
                let (sink, stream) = framed.split();

                // Drain the channel's receiver into the codec's sink
                tokio::spawn(
                    rx.map_err(|e| Error::from_kind(ErrorKind::ConnRecv(e)))
                        .forward(sink)
                        .map(|_| ())
                        .map_err(|_| ()),
                );

                // Setup the receivers map
                let receivers = Mutex::new(HashMap::new());
                let receivers_c = receivers.clone();

                // Route the codec's stream to receivers
                tokio::spawn(
                    stream
                        .map_err(|e| Error::from_kind(ErrorKind::Message(e)))
                        .for_each(move |message| route(&receivers_c, message))
                        .select(det_rx.map_err(|e| Error::from_kind(ErrorKind::Terminate(e))))
                        .map(|_| ())
                        .map_err(|_| ()),
                );

                Conn {
                    sender: tx,
                    inner: Arc::new(Inner {
                        receivers,
                        detonator: Some(det_tx),
                    }),
                }
            })
            .map_err(|e| ErrorKind::Io(e).into())
    }

    /// If you have a stream that produces `Message`s, you can forward that directly to
    /// the inner `Sink` instead of calling the helper methods.
    pub fn forward<S>(self, stream: S) -> impl Future<Item = Self, Error = Error>
    where
        S: Stream<Item = Message, Error = Error>,
    {
        let inner = self.inner;
        stream
            .forward(self.sender)
            .map(|(_, sender)| Conn { sender, inner })
    }

    /// Inform the broker that you will be providing a new namespace
    pub fn provide(&mut self, namespace: Pattern) -> Result<()> {
        Ok(self.sender.try_send(Message::Provide(namespace))?)
    }

    /// Inform the broker that you will no longer be providing a namespace
    pub fn revoke(&mut self, namespace: Pattern) -> Result<()> {
        Ok(self.sender.try_send(Message::Revoke(namespace))?)
    }

    /// Subscribe to another provider's namespace
    ///
    /// # Examples
    ///
    /// ```
    ///# use cord_client::Conn;
    ///# use cord_client::errors::ErrorKind;
    ///# use futures::{future, Future, Stream};
    ///# use tokio;
    ///
    ///# let fut = Conn::new("127.0.0.1:7101".parse().unwrap()).and_then(|mut conn| {
    /// conn.subscribe("/users/".into()).unwrap().for_each(|msg| {
    ///     // Handle the message...
    ///     dbg!("The following user just joined: {}", msg);
    ///
    ///     Ok(())
    /// })
    ///# });
    /// ```
    pub fn subscribe(&mut self, namespace: Pattern) -> Result<Subscriber> {
        let namespace_c = namespace.clone();
        self.sender.try_send(Message::Subscribe(namespace))?;

        let (tx, rx) = mpsc::channel(10);
        tokio::spawn(
            self.inner
                .receivers
                .with(move |mut guard| {
                    (*guard)
                        .entry(namespace_c)
                        .or_insert_with(Vec::new)
                        .push(tx);
                    Ok(())
                })
                .expect("The default executor has shut down")
                .map(|_| ()),
        );
        Ok(Subscriber {
            receiver: rx,
            _inner: self.inner.clone(),
        })
    }

    /// Unsubscribe from another provider's namespace
    pub fn unsubscribe(&mut self, namespace: Pattern) -> Result<()> {
        let namespace_c = namespace.clone();
        self.sender.try_send(Message::Unsubscribe(namespace))?;

        tokio::spawn(
            self.inner
                .receivers
                .with(move |mut guard| {
                    (*guard).remove(&namespace_c);
                    Ok(())
                })
                .expect("The default executor has shut down")
                .map(|_| ()),
        );
        Ok(())
    }

    /// Publish an event to your subscribers
    pub fn event<S: Into<String>>(&mut self, namespace: Pattern, data: S) -> Result<()> {
        Ok(self
            .sender
            .try_send(Message::Event(namespace, data.into()))?)
    }
}

fn route(
    receivers: &Mutex<HashMap<Pattern, Vec<mpsc::Sender<Message>>>>,
    message: Message,
) -> impl Future<Item = (), Error = Error> {
    receivers
        .with(move |mut guard| {
            // Remove any subscribers that have no senders left
            (*guard).retain(|namespace, senders| {
                // We assume that all messages will be Events. If this changes, we will
                // need to store a Message, not a pattern.
                if namespace.contains(message.namespace()) {
                    // Remove any senders that give errors when attempting to send
                    senders.retain_mut(|tx| tx.try_send(message.clone()).is_ok());

                    // XXX Awaiting stabilisation
                    // https://github.com/rust-lang/rust/issues/43244
                    // senders.drain_filter(|tx| {
                    //     tx.try_send(message.clone()).is_ok()
                    // });
                }

                // So long as we have senders, keep the subscriber
                !senders.is_empty()
            });

            Ok(())
        })
        .expect("The default executor has shut down")
}

impl Stream for Subscriber {
    type Item = (Pattern, String);
    type Error = Error;

    fn poll(&mut self) -> result::Result<Async<Option<Self::Item>>, Self::Error> {
        self.receiver
            .poll()
            .map(|asy| {
                asy.map(|opt| {
                    opt.map(|msg| match msg {
                        Message::Event(pattern, data) => (pattern, data),
                        _ => unreachable!(),
                    })
                })
            })
            .map_err(|e| ErrorKind::SubscriberError(e).into())
    }
}

impl Drop for Inner {
    fn drop(&mut self) {
        self.detonator.take().unwrap().send(()).unwrap();
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use futures::future;
    use tokio::prelude::Async;

    struct ForwardStream(Vec<Message>);
    impl Stream for ForwardStream {
        type Item = Message;
        type Error = Error;

        fn poll(&mut self) -> Result<Async<Option<Self::Item>>> {
            Ok(Async::Ready(self.0.pop()))
        }
    }

    #[test]
    fn test_forward() {
        let (tx, rx) = mpsc::unbounded_channel();
        let (det_tx, _det_rx) = oneshot::channel();

        let conn = Conn {
            sender: tx,
            inner: Arc::new(Inner {
                receivers: Mutex::new(HashMap::new()),
                detonator: Some(det_tx),
            }),
        };

        let data_stream = ForwardStream(vec![
            Message::Event("/a".into(), "b".into()),
            Message::Provide("/a".into()),
        ]);
        conn.forward(data_stream).wait().unwrap();

        // We check these messages in reverse order (i.e. Provide, then Event), because
        // our budget DIY stream sends them in reverse order.
        let (item, rx) = rx.into_future().wait().unwrap();
        assert_eq!(item, Some(Message::Provide("/a".into())));

        let (item, _) = rx.into_future().wait().unwrap();
        assert_eq!(item, Some(Message::Event("/a".into(), "b".into())));
    }

    #[test]
    fn test_provide() {
        let (tx, rx) = mpsc::unbounded_channel();
        let (det_tx, _det_rx) = oneshot::channel();

        let mut conn = Conn {
            sender: tx,
            inner: Arc::new(Inner {
                receivers: Mutex::new(HashMap::new()),
                detonator: Some(det_tx),
            }),
        };

        conn.provide("/a/b".into()).unwrap();
        assert_eq!(
            rx.into_future().wait().unwrap().0.unwrap(),
            Message::Provide("/a/b".into())
        );
    }

    #[test]
    fn test_revoke() {
        let (tx, rx) = mpsc::unbounded_channel();
        let (det_tx, _det_rx) = oneshot::channel();

        let mut conn = Conn {
            sender: tx,
            inner: Arc::new(Inner {
                receivers: Mutex::new(HashMap::new()),
                detonator: Some(det_tx),
            }),
        };

        conn.revoke("/a/b".into()).unwrap();
        assert_eq!(
            rx.into_future().wait().unwrap().0.unwrap(),
            Message::Revoke("/a/b".into())
        );
    }

    #[test]
    fn test_subscribe() {
        let (tx, rx) = mpsc::unbounded_channel();
        let (det_tx, _det_rx) = oneshot::channel();

        let receivers: Mutex<HashMap<Pattern, Vec<mpsc::Sender<Message>>>> =
            Mutex::new(HashMap::new());

        let mut conn = Conn {
            sender: tx,
            inner: Arc::new(Inner {
                receivers: receivers.clone(),
                detonator: Some(det_tx),
            }),
        };

        // All this extra fluff around future::lazy() is necessary to ensure that there
        // is an active executor when the fn calls Mutex::with().
        tokio::run(future::lazy(move || {
            conn.subscribe("/a/b".into()).unwrap();
            Ok(())
        }));
        assert_eq!(
            rx.into_future().wait().unwrap().0.unwrap(),
            Message::Subscribe("/a/b".into())
        );
        assert!(receivers.try_unwrap().unwrap().contains_key(&"/a/b".into()));
    }

    #[test]
    fn test_unsubscribe() {
        let (tx, rx) = mpsc::unbounded_channel();
        let (det_tx, _det_rx) = oneshot::channel();

        let mut receivers: HashMap<Pattern, Vec<mpsc::Sender<Message>>> = HashMap::new();
        receivers.insert("/a/b".into(), Vec::new());
        let receivers = Mutex::new(receivers);

        let mut conn = Conn {
            sender: tx,
            inner: Arc::new(Inner {
                receivers: receivers.clone(),
                detonator: Some(det_tx),
            }),
        };

        // All this extra fluff around future::lazy() is necessary to ensure that there
        // is an active executor when the fn calls Mutex::with().
        tokio::run(future::lazy(move || {
            conn.unsubscribe("/a/b".into()).unwrap();
            Ok(())
        }));
        assert_eq!(
            rx.into_future().wait().unwrap().0.unwrap(),
            Message::Unsubscribe("/a/b".into())
        );
        assert!(receivers.try_unwrap().unwrap().is_empty());
    }

    #[test]
    fn test_event() {
        let (tx, rx) = mpsc::unbounded_channel();
        let (det_tx, _det_rx) = oneshot::channel();

        let mut conn = Conn {
            sender: tx,
            inner: Arc::new(Inner {
                receivers: Mutex::new(HashMap::new()),
                detonator: Some(det_tx),
            }),
        };

        conn.event("/a/b".into(), "moo").unwrap();
        assert_eq!(
            rx.into_future().wait().unwrap().0.unwrap(),
            Message::Event("/a/b".into(), "moo".into())
        );
    }

    #[test]
    fn test_route() {
        let (tx, rx) = mpsc::channel(10);

        let mut receivers = HashMap::new();
        receivers.insert("/a/b".into(), vec![tx]);
        let receivers = Mutex::new(receivers);
        let receivers_c = receivers.clone();

        let event_msg = Message::Event("/a/b".into(), "Moo!".into());
        let event_msg_c = event_msg.clone();

        // All this extra fluff around future::lazy() is necessary to ensure that there
        // is an active executor when the fn calls Mutex::with().
        tokio::run(future::lazy(move || {
            route(&receivers, event_msg).map_err(|_| ())
        }));

        assert_eq!(rx.into_future().wait().unwrap().0.unwrap(), event_msg_c);
        assert!(receivers_c
            .try_unwrap()
            .unwrap()
            .contains_key(&"/a/b".into()));
    }

    #[test]
    fn test_route_norecv() {
        let (tx, _) = mpsc::channel(10);

        let mut receivers = HashMap::new();
        receivers.insert("/a/b".into(), vec![tx]);
        let receivers = Mutex::new(receivers);
        let receivers_c = receivers.clone();

        // All this extra fluff around future::lazy() is necessary to ensure that there
        // is an active executor when the fn calls Mutex::with().
        tokio::run(future::lazy(move || {
            route(&receivers, Message::Event("/a/b".into(), "Moo!".into())).map_err(|_| ())
        }));

        assert!(receivers_c.try_unwrap().unwrap().is_empty());
    }
}