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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-02-02 05:10:12 -06:00
|
|
|
use core::comm::{GenericChan, GenericSmartChan, GenericPort};
|
|
|
|
use core::comm::{Chan, Port, Selectable, Peekable};
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::pipes;
|
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-03-05 16:49:03 -06:00
|
|
|
// Allow these methods to be used without import:
|
|
|
|
pub impl<T:Owned,U:Owned> DuplexStream<T, U> {
|
2013-03-07 20:11:09 -06:00
|
|
|
fn send(&self, x: T) {
|
2013-03-05 16:49:03 -06:00
|
|
|
self.chan.send(x)
|
|
|
|
}
|
2013-03-07 20:11:09 -06:00
|
|
|
fn try_send(&self, x: T) -> bool {
|
2013-03-05 16:49:03 -06:00
|
|
|
self.chan.try_send(x)
|
|
|
|
}
|
2013-03-07 20:11:09 -06:00
|
|
|
fn recv(&self, ) -> U {
|
2013-03-05 16:49:03 -06:00
|
|
|
self.port.recv()
|
|
|
|
}
|
2013-03-07 20:11:09 -06:00
|
|
|
fn try_recv(&self) -> Option<U> {
|
2013-03-05 16:49:03 -06:00
|
|
|
self.port.try_recv()
|
|
|
|
}
|
2013-03-21 23:34:30 -05:00
|
|
|
fn peek(&self) -> bool {
|
2013-03-05 16:49:03 -06:00
|
|
|
self.port.peek()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
impl<T:Owned,U:Owned> GenericChan<T> for DuplexStream<T, U> {
|
2013-03-04 21:36:15 -06:00
|
|
|
fn send(&self, x: T) {
|
2013-02-15 01:30:30 -06:00
|
|
|
self.chan.send(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-20 19:07:17 -06:00
|
|
|
impl<T:Owned,U:Owned> GenericSmartChan<T> for DuplexStream<T, U> {
|
2013-03-04 21:36:15 -06:00
|
|
|
fn try_send(&self, x: T) -> bool {
|
2013-02-15 01:30:30 -06:00
|
|
|
self.chan.try_send(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-20 19:07:17 -06:00
|
|
|
impl<T:Owned,U:Owned> GenericPort<U> for DuplexStream<T, U> {
|
2013-03-04 21:36:15 -06:00
|
|
|
fn recv(&self) -> U {
|
2012-08-14 16:17:27 -05:00
|
|
|
self.port.recv()
|
|
|
|
}
|
|
|
|
|
2013-03-04 21:36:15 -06:00
|
|
|
fn try_recv(&self) -> 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-20 19:07:17 -06:00
|
|
|
impl<T:Owned,U:Owned> Peekable<U> for DuplexStream<T, U> {
|
2013-03-21 23:34:30 -05:00
|
|
|
fn peek(&self) -> bool {
|
2012-08-14 16:17:27 -05:00
|
|
|
self.port.peek()
|
|
|
|
}
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
2012-08-14 16:17:27 -05:00
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
impl<T:Owned,U:Owned> Selectable for DuplexStream<T, U> {
|
2013-05-03 16:20:34 -05:00
|
|
|
fn header(&mut self) -> *mut pipes::PacketHeader {
|
2012-08-14 16:17:27 -05:00
|
|
|
self.port.header()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a bidirectional stream.
|
2013-02-20 19:07:17 -06:00
|
|
|
pub fn DuplexStream<T:Owned,U:Owned>()
|
2012-08-14 16:17:27 -05:00
|
|
|
-> (DuplexStream<T, U>, DuplexStream<U, T>)
|
|
|
|
{
|
2013-02-02 05:10:12 -06:00
|
|
|
let (p1, c2) = comm::stream();
|
|
|
|
let (p2, c1) = comm::stream();
|
2012-08-14 16:17:27 -05:00
|
|
|
(DuplexStream {
|
2013-02-15 01:30:30 -06:00
|
|
|
chan: c1,
|
|
|
|
port: p1
|
2012-08-14 16:17:27 -05:00
|
|
|
},
|
|
|
|
DuplexStream {
|
2013-02-15 01:30:30 -06:00
|
|
|
chan: c2,
|
|
|
|
port: 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);
|
|
|
|
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(left.recv(), 123);
|
|
|
|
assert_eq!(right.recv(), ~"abc");
|
2012-08-14 16:17:27 -05:00
|
|
|
}
|
|
|
|
}
|