rust/src/libstd/comm.rs

93 lines
2.1 KiB
Rust
Raw Normal View History

// 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)];
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.
pub struct DuplexStream<T: Send, U: Send> {
priv chan: Chan<T>,
priv port: Port<U>,
}
2012-08-14 16:17:27 -05:00
impl<T: Send, U: Send> DuplexStream<T, U> : GenericChan<T> {
fn send(x: T) {
self.chan.send(move x)
2012-08-14 16:17:27 -05:00
}
}
2012-08-14 16:17:27 -05:00
impl<T: Send, U: Send> DuplexStream<T, U> : GenericSmartChan<T> {
fn try_send(x: T) -> bool {
self.chan.try_send(move x)
2012-08-14 16:17:27 -05:00
}
}
2012-08-14 16:17:27 -05: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-08-14 16:17:27 -05: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-08-14 16:17:27 -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.
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 {
#[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";
}
}