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