2012-12-10 17:32:48 -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-17 11:47:01 -07:00
|
|
|
// xfail-test - this isn't really a test.
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// select!
|
2012-08-22 17:47:11 -07:00
|
|
|
macro_rules! select_if (
|
2012-08-17 11:47:01 -07:00
|
|
|
|
|
|
|
{
|
|
|
|
$index:expr,
|
|
|
|
$count:expr
|
|
|
|
} => {
|
2013-02-11 19:26:38 -08:00
|
|
|
fail!()
|
2012-08-17 11:47:01 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
{
|
|
|
|
$index:expr,
|
|
|
|
$count:expr,
|
|
|
|
$port:path => [
|
|
|
|
$(type_this $message:path$(($(x $x: ident),+))dont_type_this*
|
2013-02-15 02:44:18 -08:00
|
|
|
-> $next:ident => { $e:expr }),+
|
2012-08-17 11:47:01 -07:00
|
|
|
]
|
|
|
|
$(, $ports:path => [
|
|
|
|
$(type_this $messages:path$(($(x $xs: ident),+))dont_type_this*
|
2013-02-15 02:44:18 -08:00
|
|
|
-> $nexts:ident => { $es:expr }),+
|
2012-08-17 11:47:01 -07:00
|
|
|
] )*
|
|
|
|
} => {
|
|
|
|
if $index == $count {
|
2013-02-15 02:44:18 -08:00
|
|
|
match pipes::try_recv($port) {
|
|
|
|
$(Some($message($($($x,)+)* next)) => {
|
|
|
|
let $next = next;
|
|
|
|
$e
|
2012-08-17 11:47:01 -07:00
|
|
|
})+
|
2013-02-11 19:26:38 -08:00
|
|
|
_ => fail!()
|
2012-08-17 11:47:01 -07:00
|
|
|
}
|
|
|
|
} else {
|
2012-08-22 17:24:52 -07:00
|
|
|
select_if!(
|
2012-08-17 11:47:01 -07:00
|
|
|
$index,
|
|
|
|
$count + 1
|
|
|
|
$(, $ports => [
|
|
|
|
$(type_this $messages$(($(x $xs),+))dont_type_this*
|
2013-02-15 02:44:18 -08:00
|
|
|
-> $nexts => { $es }),+
|
2012-08-17 11:47:01 -07:00
|
|
|
])*
|
2012-08-22 17:24:52 -07:00
|
|
|
)
|
2012-08-17 11:47:01 -07:00
|
|
|
}
|
|
|
|
};
|
2012-08-22 17:47:11 -07:00
|
|
|
)
|
2012-08-17 11:47:01 -07:00
|
|
|
|
2012-08-22 17:47:11 -07:00
|
|
|
macro_rules! select (
|
2012-08-17 11:47:01 -07:00
|
|
|
{
|
|
|
|
$( $port:path => {
|
|
|
|
$($message:path$(($($x: ident),+))dont_type_this*
|
|
|
|
-> $next:ident $e:expr),+
|
|
|
|
} )+
|
|
|
|
} => {
|
2012-10-10 00:28:04 -04:00
|
|
|
let index = pipes::selecti([$(($port).header()),+]);
|
2012-08-22 17:24:52 -07:00
|
|
|
select_if!(index, 0 $(, $port => [
|
2013-02-15 02:44:18 -08:00
|
|
|
$(type_this $message$(($(x $x),+))dont_type_this* -> $next => { $e }),+
|
2012-08-22 17:24:52 -07:00
|
|
|
])+)
|
2012-08-17 11:47:01 -07:00
|
|
|
}
|
2012-08-22 17:47:11 -07:00
|
|
|
)
|
2012-08-17 11:47:01 -07:00
|
|
|
|
|
|
|
}
|