2012-12-13 15:05:22 -06:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-10 19:32:48 -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-07-05 14:10:33 -05:00
|
|
|
// An example to make sure the protocol parsing syntax extension works.
|
|
|
|
|
2013-02-25 16:04:32 -06:00
|
|
|
use core::cell::Cell;
|
2013-01-08 00:13:34 -06:00
|
|
|
use core::option;
|
2012-07-05 18:07:53 -05:00
|
|
|
|
2012-08-22 20:10:48 -05:00
|
|
|
proto! pingpong (
|
2012-07-05 14:10:33 -05:00
|
|
|
ping:send {
|
|
|
|
ping -> pong
|
|
|
|
}
|
|
|
|
|
|
|
|
pong:recv {
|
|
|
|
pong -> ping
|
|
|
|
}
|
2012-08-22 20:10:48 -05:00
|
|
|
)
|
2012-07-05 14:10:33 -05:00
|
|
|
|
2012-07-05 18:07:53 -05:00
|
|
|
mod test {
|
2013-01-08 00:13:34 -06:00
|
|
|
use core::pipes::recv;
|
2012-09-07 20:08:21 -05:00
|
|
|
use pingpong::{ping, pong};
|
2012-07-05 18:07:53 -05:00
|
|
|
|
2013-03-10 10:02:16 -05:00
|
|
|
pub fn client(+chan: ::pingpong::client::ping) {
|
2012-09-07 20:08:21 -05:00
|
|
|
use pingpong::client;
|
2012-07-05 18:07:53 -05:00
|
|
|
|
2013-02-15 04:44:18 -06:00
|
|
|
let chan = client::ping(chan);
|
2013-03-08 14:39:42 -06:00
|
|
|
error!(~"Sent ping");
|
2013-02-15 04:44:18 -06:00
|
|
|
let pong(_chan) = recv(chan);
|
2013-03-08 14:39:42 -06:00
|
|
|
error!(~"Received pong");
|
2012-07-05 18:07:53 -05:00
|
|
|
}
|
|
|
|
|
2013-03-10 10:02:16 -05:00
|
|
|
pub fn server(+chan: ::pingpong::server::ping) {
|
2012-09-07 20:08:21 -05:00
|
|
|
use pingpong::server;
|
2012-07-05 18:07:53 -05:00
|
|
|
|
2013-02-15 04:44:18 -06:00
|
|
|
let ping(chan) = recv(chan);
|
2013-03-08 14:39:42 -06:00
|
|
|
error!(~"Received ping");
|
2013-02-15 04:44:18 -06:00
|
|
|
let _chan = server::pong(chan);
|
2013-03-08 14:39:42 -06:00
|
|
|
error!(~"Sent pong");
|
2012-07-05 18:07:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-07-05 18:07:53 -05:00
|
|
|
let (client_, server_) = pingpong::init();
|
2013-02-25 16:04:32 -06:00
|
|
|
let client_ = Cell(client_);
|
|
|
|
let server_ = Cell(server_);
|
2012-07-05 18:07:53 -05:00
|
|
|
|
2013-02-25 16:04:32 -06:00
|
|
|
do task::spawn {
|
|
|
|
let client__ = client_.take();
|
|
|
|
test::client(client__);
|
2012-07-05 18:07:53 -05:00
|
|
|
};
|
2013-02-25 16:04:32 -06:00
|
|
|
do task::spawn {
|
|
|
|
let server__ = server_.take();
|
|
|
|
test::server(server__);
|
2012-07-05 18:07:53 -05:00
|
|
|
};
|
|
|
|
}
|