2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-08-14 16:17:27 -05:00
|
|
|
/*!
|
|
|
|
|
|
|
|
Higher level communication abstractions.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// NB: transitionary, de-mode-ing.
|
|
|
|
#[forbid(deprecated_mode)];
|
|
|
|
|
2012-11-25 16:09:53 -06:00
|
|
|
use pipes::{GenericChan, GenericSmartChan, GenericPort,
|
|
|
|
Chan, Port, Selectable, Peekable};
|
2012-08-14 16:17:27 -05:00
|
|
|
|
|
|
|
/// An extension of `pipes::stream` that allows both sending and receiving.
|
2012-09-28 18:05:33 -05:00
|
|
|
pub struct DuplexStream<T: Send, U: Send> {
|
2012-09-07 16:50:47 -05:00
|
|
|
priv chan: Chan<T>,
|
2012-11-25 16:09:53 -06:00
|
|
|
priv port: Port<U>,
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
2012-08-14 16:17:27 -05:00
|
|
|
|
2012-11-25 16:09:53 -06:00
|
|
|
impl<T: Send, U: Send> DuplexStream<T, U> : GenericChan<T> {
|
2012-10-04 21:58:31 -05:00
|
|
|
fn send(x: T) {
|
2012-09-10 19:50:48 -05:00
|
|
|
self.chan.send(move x)
|
2012-08-14 16:17:27 -05:00
|
|
|
}
|
2012-11-25 16:09:53 -06:00
|
|
|
}
|
2012-08-14 16:17:27 -05:00
|
|
|
|
2012-11-25 16:09:53 -06:00
|
|
|
impl<T: Send, U: Send> DuplexStream<T, U> : GenericSmartChan<T> {
|
2012-10-04 21:58:31 -05:00
|
|
|
fn try_send(x: T) -> bool {
|
2012-09-10 19:50:48 -05:00
|
|
|
self.chan.try_send(move x)
|
2012-08-14 16:17:27 -05:00
|
|
|
}
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
2012-08-14 16:17:27 -05:00
|
|
|
|
2012-11-25 16:09:53 -06:00
|
|
|
impl<T: Send, U: Send> DuplexStream<T, U> : GenericPort<U> {
|
2012-08-14 16:17:27 -05:00
|
|
|
fn recv() -> U {
|
|
|
|
self.port.recv()
|
|
|
|
}
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
fn try_recv() -> Option<U> {
|
2012-08-14 16:17:27 -05:00
|
|
|
self.port.try_recv()
|
|
|
|
}
|
2012-11-25 16:09:53 -06:00
|
|
|
}
|
2012-08-14 16:17:27 -05:00
|
|
|
|
2012-11-25 16:09:53 -06:00
|
|
|
impl<T: Send, U: Send> DuplexStream<T, U> : Peekable<U> {
|
2012-08-14 16:17:27 -05:00
|
|
|
pure fn peek() -> bool {
|
|
|
|
self.port.peek()
|
|
|
|
}
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
2012-08-14 16:17:27 -05:00
|
|
|
|
2012-09-07 21:04:40 -05:00
|
|
|
impl<T: Send, U: Send> DuplexStream<T, U> : Selectable {
|
2012-08-28 13:11:15 -05:00
|
|
|
pure fn header() -> *pipes::PacketHeader {
|
2012-08-14 16:17:27 -05:00
|
|
|
self.port.header()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a bidirectional stream.
|
2012-09-28 23:19:43 -05:00
|
|
|
pub fn DuplexStream<T: Send, U: Send>()
|
2012-08-14 16:17:27 -05:00
|
|
|
-> (DuplexStream<T, U>, DuplexStream<U, T>)
|
|
|
|
{
|
|
|
|
let (c2, p1) = pipes::stream();
|
|
|
|
let (c1, p2) = pipes::stream();
|
|
|
|
(DuplexStream {
|
2012-09-19 00:35:42 -05:00
|
|
|
chan: move c1,
|
|
|
|
port: move p1
|
2012-08-14 16:17:27 -05:00
|
|
|
},
|
|
|
|
DuplexStream {
|
2012-09-19 00:35:42 -05:00
|
|
|
chan: move c2,
|
|
|
|
port: move p2
|
2012-08-14 16:17:27 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-08-14 16:17:27 -05:00
|
|
|
#[test]
|
|
|
|
fn DuplexStream1() {
|
|
|
|
let (left, right) = DuplexStream();
|
|
|
|
|
|
|
|
left.send(~"abc");
|
|
|
|
right.send(123);
|
|
|
|
|
|
|
|
assert left.recv() == 123;
|
|
|
|
assert right.recv() == ~"abc";
|
|
|
|
}
|
|
|
|
}
|