rust/src/test/run-pass/pipe-pingpong-proto.rs

66 lines
1.7 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.
// An example to make sure the protocol parsing syntax extension works.
use core::option;
proto! pingpong (
ping:send {
ping -> pong
}
pong:recv {
pong -> ping
}
)
mod test {
use core::pipes::recv;
use pingpong::{ping, pong};
pub fn client(-chan: pingpong::client::ping) {
use pingpong::client;
2012-09-18 22:45:24 -07:00
let chan = client::ping(move chan);
log(error, ~"Sent ping");
2012-09-18 22:45:24 -07:00
let pong(_chan) = recv(move chan);
log(error, ~"Received pong");
}
pub fn server(-chan: pingpong::server::ping) {
use pingpong::server;
2012-09-18 22:45:24 -07:00
let ping(chan) = recv(move chan);
log(error, ~"Received ping");
2012-09-18 22:45:24 -07:00
let _chan = server::pong(move chan);
log(error, ~"Sent pong");
}
}
fn main() {
let (client_, server_) = pingpong::init();
2012-09-18 22:45:24 -07:00
let client_ = ~mut Some(move client_);
let server_ = ~mut Some(move server_);
do task::spawn |move client_| {
2012-08-20 12:23:37 -07:00
let mut client__ = None;
*client_ <-> client__;
2012-09-18 22:45:24 -07:00
test::client(option::unwrap(move client__));
};
do task::spawn |move server_| {
2012-08-20 12:23:37 -07:00
let mut server_ˊ = None;
*server_ <-> server_ˊ;
2012-09-18 22:45:24 -07:00
test::server(option::unwrap(move server_ˊ));
};
}