rust/src/test/run-pass/pipe-select.rs

116 lines
2.6 KiB
Rust
Raw Normal View History

// xfail-fast
// 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-07-06 01:14:27 -05:00
// xfail-pretty
// xfail-win32
2012-07-06 01:14:27 -05:00
#[legacy_records];
extern mod std;
2012-09-05 14:32:05 -05:00
use std::timer::sleep;
use std::uv;
2012-09-05 14:32:05 -05:00
use pipes::{recv, select};
proto! oneshot (
2012-07-06 01:14:27 -05:00
waiting:send {
signal -> !
}
)
proto! stream (
2012-12-11 15:50:04 -06:00
Stream:send<T:Owned> {
send(T) -> Stream<T>
}
)
fn main() {
use oneshot::client::*;
use stream::client::*;
let iotask = &uv::global_loop::get();
let c = pipes::spawn_service(stream::init, |p| {
2012-08-22 19:24:52 -05:00
error!("waiting for pipes");
2012-09-19 00:45:24 -05:00
let stream::send(x, p) = recv(move p);
2012-08-22 19:24:52 -05:00
error!("got pipes");
let (left, right) : (oneshot::server::waiting,
oneshot::server::waiting)
2012-09-19 00:45:24 -05:00
= move x;
2012-08-22 19:24:52 -05:00
error!("selecting");
2012-09-19 00:45:24 -05:00
let (i, _, _) = select(~[move left, move right]);
2012-08-22 19:24:52 -05:00
error!("selected");
assert i == 0;
2012-08-22 19:24:52 -05:00
error!("waiting for pipes");
2012-09-19 00:45:24 -05:00
let stream::send(x, _) = recv(move p);
2012-08-22 19:24:52 -05:00
error!("got pipes");
let (left, right) : (oneshot::server::waiting,
oneshot::server::waiting)
2012-09-19 00:45:24 -05:00
= move x;
2012-08-22 19:24:52 -05:00
error!("selecting");
2012-09-19 00:45:24 -05:00
let (i, m, _) = select(~[move left, move right]);
2012-08-22 19:24:52 -05:00
error!("selected %?", i);
if m.is_some() {
assert i == 1;
}
});
let (c1, p1) = oneshot::init();
2012-07-10 18:46:16 -05:00
let (_c2, p2) = oneshot::init();
2012-09-19 00:45:24 -05:00
let c = send(move c, (move p1, move p2));
sleep(iotask, 100);
2012-09-19 00:45:24 -05:00
signal(move c1);
2012-07-10 18:46:16 -05:00
let (_c1, p1) = oneshot::init();
let (c2, p2) = oneshot::init();
2012-09-19 00:45:24 -05:00
send(move c, (move p1, move p2));
sleep(iotask, 100);
2012-09-19 00:45:24 -05:00
signal(move c2);
2012-07-09 15:53:55 -05:00
test_select2();
}
fn test_select2() {
let (ac, ap) = stream::init();
let (bc, bp) = stream::init();
2012-09-19 00:45:24 -05:00
stream::client::send(move ac, 42);
2012-07-09 15:53:55 -05:00
2012-09-19 00:45:24 -05:00
match pipes::select2(move ap, move bp) {
2012-08-14 18:54:13 -05:00
either::Left(*) => { }
either::Right(*) => { die!() }
2012-07-09 15:53:55 -05:00
}
2012-09-19 00:45:24 -05:00
stream::client::send(move bc, ~"abc");
2012-07-09 15:53:55 -05:00
2012-08-22 19:24:52 -05:00
error!("done with first select2");
2012-07-09 15:53:55 -05:00
let (ac, ap) = stream::init();
let (bc, bp) = stream::init();
2012-09-19 00:45:24 -05:00
stream::client::send(move bc, ~"abc");
2012-07-09 15:53:55 -05:00
2012-09-19 00:45:24 -05:00
match pipes::select2(move ap, move bp) {
either::Left(*) => { die!() }
2012-08-14 18:54:13 -05:00
either::Right(*) => { }
2012-07-09 15:53:55 -05:00
}
2012-09-19 00:45:24 -05:00
stream::client::send(move ac, 42);
2012-07-09 15:53:55 -05:00
}