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
/*
 * This file is part of Tokio ZMQ.
 *
 * Copyright © 2018 Riley Trautman
 *
 * Tokio ZMQ is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Tokio ZMQ is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Tokio ZMQ.  If not, see <http://www.gnu.org/licenses/>.
 */

//! Provide useful types and traits for working with Tokio ZMQ.

use std::time::Duration;

use futures::Stream;
use tokio_file_unix::File;
use tokio_reactor::PollEvented;
use zmq;

use async::{
    ControlledStream, EndingStream, MultipartRequest, MultipartResponse, MultipartSink,
    MultipartSinkStream, MultipartStream, TimeoutStream,
};
use error::Error;
use file::ZmqFile;
use message::Multipart;
use socket::Socket;

/* ----------------------------------TYPES----------------------------------- */

/* ----------------------------------TRAITS---------------------------------- */

/// The `AsSocket` trait is implemented for all wrapper types. This makes implementing other traits a
/// matter of saying a given type implements them.
pub trait AsSocket: From<(zmq::Socket, PollEvented<File<ZmqFile>>)> + Sized {
    /// Any type implementing `AsSocket` must have a way of returning a reference to a Socket.
    fn socket(self) -> Socket;
}

/// The `ControlHandler` trait is used to impose stopping rules for streams that otherwise would
/// continue to create multiparts.
pub trait ControlHandler {
    /// `should_stop` determines whether or not a `ControlledStream` should stop producing values.
    ///
    /// It accepts a Multipart as input. This Multipart comes from the ControlledStream's
    /// associated control MultipartStream. If you want to have a socket that stops based on the
    /// content of a message it receives, see the `EndHandler` trait.
    fn should_stop(&mut self, multipart: Multipart) -> bool;
}

/// The `EndHandler` trait is used to impose stopping rules for streams that otherwise would
/// continue to create multiparts.
pub trait EndHandler {
    /// `should_stop` determines whether or not a `StreamSocket` should stop producing values.
    ///
    /// This method should be used if the stop signal sent to a given socket will be in-line with
    /// the rest of the messages that socket receives. If you want to have a socket controlled by
    /// another socket, see the `ControlHandler` trait.
    fn should_stop(&mut self, multipart: &Multipart) -> bool;
}

/// This trait provides the basic Stream support for ZeroMQ Sockets. It depends on `AsSocket`, but
/// provides implementations for `sink` and `recv`.
pub trait StreamSocket: AsSocket {
    /// Receive a single multipart message from the socket.
    ///
    /// ### Example, using the Rep wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate futures;
    /// extern crate tokio;
    /// extern crate tokio_zmq;
    /// extern crate zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc};
    ///
    /// use futures::Future;
    /// use tokio_zmq::{prelude::*, async::MultipartStream, Error, Multipart, Rep, Socket};
    ///
    /// fn main() {
    ///     let context = Arc::new(zmq::Context::new());
    ///     let rep: Rep = Socket::builder(context)
    ///         .connect("tcp://localhost:5568")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let fut = rep.recv().and_then(|(multipart, _)| {
    ///         for msg in &multipart {
    ///             if let Some(msg) = msg.as_str() {
    ///                 println!("Message: {}", msg);
    ///             }
    ///         }
    ///         Ok(multipart)
    ///     });
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    ///     # let _ = fut;
    /// }
    /// ```
    fn recv(self) -> MultipartResponse<Self> {
        self.socket().recv()
    }

    /// Receive a stream of multipart messages from the socket.
    ///
    /// ### Example, using a Sub wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate zmq;
    /// extern crate futures;
    /// extern crate tokio;
    /// extern crate tokio_zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc};
    ///
    /// use futures::{Future, Stream};
    /// use tokio_zmq::{prelude::*, async::MultipartStream, Error, Multipart, Socket, Sub};
    ///
    /// fn main() {
    ///     let context = Arc::new(zmq::Context::new());
    ///     let sub: Sub = Socket::builder(context)
    ///         .connect("tcp://localhost:5569")
    ///         .filter(b"")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let fut = sub.stream().for_each(|multipart| {
    ///         for msg in multipart {
    ///             if let Some(msg) = msg.as_str() {
    ///                 println!("Message: {}", msg);
    ///             }
    ///         }
    ///         Ok(())
    ///     });
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    /// }
    /// ```
    fn stream(self) -> MultipartStream {
        self.socket().stream()
    }
}

/// This trait provides the basic Sink support for ZeroMQ Sockets. It depends on `AsSocket` and
/// provides the `send` and `sink` methods.
pub trait SinkSocket: AsSocket {
    /// Send a single multipart message to the socket.
    ///
    /// ### Example, using a Pub wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate zmq;
    /// extern crate futures;
    /// extern crate tokio;
    /// extern crate tokio_zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc};
    ///
    /// use futures::Future;
    /// use tokio_zmq::{prelude::*, async::MultipartStream, Error, Pub, Socket};
    ///
    /// fn main() {
    ///     let context = Arc::new(zmq::Context::new());
    ///     let zpub: Pub = Socket::builder(context)
    ///         .connect("tcp://localhost:5569")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let msg = zmq::Message::from_slice(b"Hello").unwrap();
    ///
    ///     let fut = zpub.send(msg.into());
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    /// }
    /// ```
    fn send(self, multipart: Multipart) -> MultipartRequest<Self> {
        self.socket().send(multipart)
    }

    /// Send a stream of multipart messages to the socket.
    ///
    /// ### Example, using a Pub wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate zmq;
    /// extern crate futures;
    /// extern crate tokio;
    /// extern crate tokio_zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc};
    ///
    /// use futures::{Future, Stream, stream::iter_ok};
    /// use tokio_zmq::{prelude::*, async::MultipartStream, Error, Multipart, Pub, Socket};
    ///
    /// fn main() {
    ///     let context = Arc::new(zmq::Context::new());
    ///     let zpub: Pub = Socket::builder(context)
    ///         .connect("tcp://localhost:5570")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let fut = iter_ok(0..5)
    ///         .and_then(|i| {
    ///             let msg = zmq::Message::from_slice(format!("i: {}", i).as_bytes())?;
    ///             Ok(msg.into()) as Result<Multipart, Error>
    ///         })
    ///         .forward(zpub.sink());
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    /// }
    /// ```
    fn sink(self) -> MultipartSink {
        self.socket().sink()
    }
}

/// This trait is provided for sockets that implement both Sync and Stream
pub trait SinkStreamSocket: AsSocket {
    /// Retrieve a structure that implements both Sync and Stream.
    ///
    /// ### Example, using a Rep wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate futures;
    /// extern crate tokio_zmq;
    /// extern crate zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc};
    ///
    /// use futures::{Future, Stream};
    /// use tokio_zmq::{prelude::*, Socket, Rep};
    ///
    /// fn main() {
    ///     let ctx = Arc::new(zmq::Context::new());
    ///     let rep: Rep = Socket::builder(ctx)
    ///         .bind("tcp://*:5571")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let (sink, stream) = rep.sink_stream().split();
    ///
    ///     let fut = stream.forward(sink);
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    /// }
    /// ```
    fn sink_stream(self) -> MultipartSinkStream;
}

/// This trait is provided to allow for ending a stream based on a Multipart message it receives.
pub trait WithEndHandler: Stream<Item = Multipart, Error = Error> + Sized {
    /// Add an EndHandler to a stream.
    ///
    /// ### Example, using a Sub wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate futures;
    /// extern crate tokio_zmq;
    /// extern crate zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc};
    ///
    /// use futures::{Future, Stream};
    /// use tokio_zmq::{prelude::*, Socket, Sub, Multipart};
    ///
    /// struct End(u32);
    ///
    /// impl EndHandler for End {
    ///     fn should_stop(&mut self, multipart: &Multipart) -> bool {
    ///         self.0 += 1;
    ///
    ///         self.0 > 30
    ///     }
    /// }
    ///
    /// fn main() {
    ///     let ctx = Arc::new(zmq::Context::new());
    ///     let sub: Sub = Socket::builder(ctx)
    ///         .bind("tcp://*:5571")
    ///         .filter(b"")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let fut = sub.stream().with_end_handler(End(0));
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    /// }
    /// ```
    fn with_end_handler<E>(self, end_handler: E) -> EndingStream<E, Self>
    where
        E: EndHandler;
}

/// This trait is implemented by all Streams with Item = Multipart and Error = Error, it provides
/// the ability to control when the stream stops based on the content of another stream.
pub trait Controllable: Stream<Item = Multipart, Error = Error> + Sized {
    /// Add a controller stream to a given stream. This allows the controller stream to decide when
    /// the controlled stream should stop.
    ///
    /// ### Example, using a controlled Pull wrapper type and a controller Sub wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate futures;
    /// extern crate tokio_zmq;
    /// extern crate zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc};
    ///
    /// use futures::{Future, Stream};
    /// use tokio_zmq::{prelude::*, Socket, Pull, Sub, Multipart};
    ///
    /// struct End;
    ///
    /// impl ControlHandler for End {
    ///     fn should_stop(&mut self, _: Multipart) -> bool {
    ///         true
    ///     }
    /// }
    ///
    /// fn main() {
    ///     let ctx = Arc::new(zmq::Context::new());
    ///     let pull: Pull = Socket::builder(Arc::clone(&ctx))
    ///         .bind("tcp://*:5572")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let sub: Sub = Socket::builder(ctx)
    ///         .bind("tcp://*:5573")
    ///         .filter(b"")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     let fut = pull.stream().controlled(sub.stream(), End);
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    /// }
    /// ```
    fn controlled<H, S>(self, control_stream: S, handler: H) -> ControlledStream<H, S, Self>
    where
        H: ControlHandler,
        S: Stream<Item = Multipart, Error = Error>;
}

/// This trait allows adding a timeout to any stream with Error = Error.
pub trait WithTimeout: Stream<Error = Error> + Sized {
    /// Add a timeout to a given stream.
    ///
    /// ### Example, using a Pull wrapper type
    /// ```rust
    /// #![feature(try_from)]
    ///
    /// extern crate futures;
    /// extern crate tokio_zmq;
    /// extern crate zmq;
    ///
    /// use std::{convert::TryInto, sync::Arc, time::Duration};
    ///
    /// use futures::{Future, Stream};
    /// use tokio_zmq::{prelude::*, Socket, Pull, Multipart};
    ///
    /// fn main() {
    ///     let ctx = Arc::new(zmq::Context::new());
    ///     let pull: Pull = Socket::builder(ctx)
    ///         .bind("tcp://*:5574")
    ///         .try_into()
    ///         .unwrap();
    ///
    ///     // Receive a Timeout after 30 seconds if the stream hasn't produced a value
    ///     let fut = pull.stream().timeout(Duration::from_secs(30));
    ///
    ///     // tokio::runtime::run2(fut.map(|_| ()).or_else(|e| {
    ///     //     println!("Error: {}", e);
    ///     //     Ok(())
    ///     // }));
    /// }
    /// ```
    fn timeout(self, duration: Duration) -> TimeoutStream<Self>;
}

/* ----------------------------------impls----------------------------------- */

impl<T> SinkStreamSocket for T
where
    T: StreamSocket + SinkSocket,
{
    fn sink_stream(self) -> MultipartSinkStream {
        self.socket().sink_stream()
    }
}

impl<T> WithEndHandler for T
where
    T: Stream<Item = Multipart, Error = Error>,
{
    fn with_end_handler<E>(self, end_handler: E) -> EndingStream<E, Self>
    where
        E: EndHandler,
    {
        EndingStream::new(self, end_handler)
    }
}

impl<T> Controllable for T
where
    T: Stream<Item = Multipart, Error = Error>,
{
    fn controlled<H, S>(self, control_stream: S, handler: H) -> ControlledStream<H, S, Self>
    where
        H: ControlHandler,
        S: Stream<Item = Multipart, Error = Error>,
    {
        ControlledStream::new(self, control_stream, handler)
    }
}

impl<T> WithTimeout for T
where
    T: Stream<Error = Error>,
{
    fn timeout(self, duration: Duration) -> TimeoutStream<Self> {
        TimeoutStream::new(self, duration)
    }
}