2012-12-03 16:48:01 -08: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 14:17:27 -07:00
|
|
|
/*!
|
|
|
|
|
|
|
|
Higher level communication abstractions.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// NB: transitionary, de-mode-ing.
|
|
|
|
#[forbid(deprecated_mode)];
|
|
|
|
|
2012-12-23 17:41:37 -05:00
|
|
|
use core::pipes::{GenericChan, GenericSmartChan, GenericPort};
|
|
|
|
use core::pipes::{Chan, Port, Selectable, Peekable};
|
|
|
|
use core::pipes;
|
2013-01-08 19:37:25 -08:00
|
|
|
use core::prelude::*;
|
2012-08-14 14:17:27 -07:00
|
|
|
|
|
|
|
/// An extension of `pipes::stream` that allows both sending and receiving.
|
2013-01-28 10:46:43 -08:00
|
|
|
#[cfg(stage0)]
|
|
|
|
pub struct DuplexStream<T:Owned, U:Owned> {
|
|
|
|
priv chan: Chan<T>,
|
|
|
|
priv port: Port<U>,
|
|
|
|
}
|
|
|
|
#[cfg(stage1)]
|
|
|
|
#[cfg(stage2)]
|
|
|
|
pub struct DuplexStream<T, U> {
|
2012-09-07 14:50:47 -07:00
|
|
|
priv chan: Chan<T>,
|
2012-11-25 14:09:53 -08:00
|
|
|
priv port: Port<U>,
|
2012-09-07 19:04:40 -07:00
|
|
|
}
|
2012-08-14 14:17:27 -07:00
|
|
|
|
2012-12-11 13:50:04 -08:00
|
|
|
impl<T: Owned, U: Owned> DuplexStream<T, U> : GenericChan<T> {
|
2012-10-04 19:58:31 -07:00
|
|
|
fn send(x: T) {
|
2012-09-10 17:50:48 -07:00
|
|
|
self.chan.send(move x)
|
2012-08-14 14:17:27 -07:00
|
|
|
}
|
2012-11-25 14:09:53 -08:00
|
|
|
}
|
2012-08-14 14:17:27 -07:00
|
|
|
|
2012-12-11 13:50:04 -08:00
|
|
|
impl<T: Owned, U: Owned> DuplexStream<T, U> : GenericSmartChan<T> {
|
2012-10-04 19:58:31 -07:00
|
|
|
fn try_send(x: T) -> bool {
|
2012-09-10 17:50:48 -07:00
|
|
|
self.chan.try_send(move x)
|
2012-08-14 14:17:27 -07:00
|
|
|
}
|
2012-09-07 19:04:40 -07:00
|
|
|
}
|
2012-08-14 14:17:27 -07:00
|
|
|
|
2012-12-11 13:50:04 -08:00
|
|
|
impl<T: Owned, U: Owned> DuplexStream<T, U> : GenericPort<U> {
|
2012-08-14 14:17:27 -07:00
|
|
|
fn recv() -> U {
|
|
|
|
self.port.recv()
|
|
|
|
}
|
|
|
|
|
2012-08-20 12:23:37 -07:00
|
|
|
fn try_recv() -> Option<U> {
|
2012-08-14 14:17:27 -07:00
|
|
|
self.port.try_recv()
|
|
|
|
}
|
2012-11-25 14:09:53 -08:00
|
|
|
}
|
2012-08-14 14:17:27 -07:00
|
|
|
|
2012-12-11 13:50:04 -08:00
|
|
|
impl<T: Owned, U: Owned> DuplexStream<T, U> : Peekable<U> {
|
2012-08-14 14:17:27 -07:00
|
|
|
pure fn peek() -> bool {
|
|
|
|
self.port.peek()
|
|
|
|
}
|
2012-09-07 19:04:40 -07:00
|
|
|
}
|
2012-08-14 14:17:27 -07:00
|
|
|
|
2012-12-11 13:50:04 -08:00
|
|
|
impl<T: Owned, U: Owned> DuplexStream<T, U> : Selectable {
|
2012-08-28 11:11:15 -07:00
|
|
|
pure fn header() -> *pipes::PacketHeader {
|
2012-08-14 14:17:27 -07:00
|
|
|
self.port.header()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a bidirectional stream.
|
2012-12-11 13:50:04 -08:00
|
|
|
pub fn DuplexStream<T: Owned, U: Owned>()
|
2012-08-14 14:17:27 -07:00
|
|
|
-> (DuplexStream<T, U>, DuplexStream<U, T>)
|
|
|
|
{
|
2012-12-11 12:26:41 -08:00
|
|
|
let (p1, c2) = pipes::stream();
|
|
|
|
let (p2, c1) = pipes::stream();
|
2012-08-14 14:17:27 -07:00
|
|
|
(DuplexStream {
|
2012-09-18 22:35:42 -07:00
|
|
|
chan: move c1,
|
|
|
|
port: move p1
|
2012-08-14 14:17:27 -07:00
|
|
|
},
|
|
|
|
DuplexStream {
|
2012-09-18 22:35:42 -07:00
|
|
|
chan: move c2,
|
|
|
|
port: move p2
|
2012-08-14 14:17:27 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2013-01-08 19:37:25 -08:00
|
|
|
use comm::DuplexStream;
|
|
|
|
|
2012-08-14 14:17:27 -07:00
|
|
|
#[test]
|
|
|
|
fn DuplexStream1() {
|
|
|
|
let (left, right) = DuplexStream();
|
|
|
|
|
|
|
|
left.send(~"abc");
|
|
|
|
right.send(123);
|
|
|
|
|
|
|
|
assert left.recv() == 123;
|
|
|
|
assert right.recv() == ~"abc";
|
|
|
|
}
|
|
|
|
}
|