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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::pipes::{GenericChan, GenericSmartChan, GenericPort};
|
|
|
|
use core::pipes::{Chan, Port, Selectable, Peekable};
|
|
|
|
use core::pipes;
|
2013-01-08 21:37:25 -06:00
|
|
|
use core::prelude::*;
|
2012-08-14 16:17:27 -05:00
|
|
|
|
|
|
|
/// An extension of `pipes::stream` that allows both sending and receiving.
|
2013-01-28 12:46:43 -06:00
|
|
|
pub struct DuplexStream<T, U> {
|
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
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<T: Owned, U: Owned> GenericChan<T> for DuplexStream<T, U> {
|
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
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<T: Owned, U: Owned> GenericSmartChan<T> for DuplexStream<T, U> {
|
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
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<T: Owned, U: Owned> GenericPort<U> for DuplexStream<T, 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
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<T: Owned, U: Owned> Peekable<U> for DuplexStream<T, 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
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<T: Owned, U: Owned> Selectable for DuplexStream<T, U> {
|
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-12-11 15:50:04 -06:00
|
|
|
pub fn DuplexStream<T: Owned, U: Owned>()
|
2012-08-14 16:17:27 -05:00
|
|
|
-> (DuplexStream<T, U>, DuplexStream<U, T>)
|
|
|
|
{
|
2012-12-11 14:26:41 -06:00
|
|
|
let (p1, c2) = pipes::stream();
|
|
|
|
let (p2, c1) = pipes::stream();
|
2012-08-14 16:17:27 -05:00
|
|
|
(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 {
|
2013-01-08 21:37:25 -06:00
|
|
|
use comm::DuplexStream;
|
|
|
|
|
2012-08-14 16:17:27 -05:00
|
|
|
#[test]
|
2013-01-29 14:06:09 -06:00
|
|
|
pub fn DuplexStream1() {
|
2012-08-14 16:17:27 -05:00
|
|
|
let (left, right) = DuplexStream();
|
|
|
|
|
|
|
|
left.send(~"abc");
|
|
|
|
right.send(123);
|
|
|
|
|
|
|
|
assert left.recv() == 123;
|
|
|
|
assert right.recv() == ~"abc";
|
|
|
|
}
|
|
|
|
}
|