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.
|
|
|
|
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::cell::Cell;
|
|
|
|
use std::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 {
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::pipes::recv;
|
2012-09-07 18:08:21 -07:00
|
|
|
use pingpong::{ping, pong};
|
2012-07-05 16:07:53 -07:00
|
|
|
|
2013-05-07 21:33:31 -07: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
|
|
|
|
2013-02-15 02:44:18 -08:00
|
|
|
let chan = client::ping(chan);
|
2013-03-08 12:39:42 -08:00
|
|
|
error!(~"Sent ping");
|
2013-02-15 02:44:18 -08:00
|
|
|
let pong(_chan) = recv(chan);
|
2013-03-08 12:39:42 -08:00
|
|
|
error!(~"Received pong");
|
2012-07-05 16:07:53 -07:00
|
|
|
}
|
2013-05-03 19:25:04 -04:00
|
|
|
|
2013-05-07 21:33:31 -07: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
|
|
|
|
2013-02-15 02:44:18 -08:00
|
|
|
let ping(chan) = recv(chan);
|
2013-03-08 12:39:42 -08:00
|
|
|
error!(~"Received ping");
|
2013-02-15 02:44:18 -08:00
|
|
|
let _chan = server::pong(chan);
|
2013-03-08 12:39:42 -08:00
|
|
|
error!(~"Sent pong");
|
2012-07-05 16:07:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2012-07-05 16:07:53 -07:00
|
|
|
let (client_, server_) = pingpong::init();
|
2013-02-25 14:04:32 -08:00
|
|
|
let client_ = Cell(client_);
|
|
|
|
let server_ = Cell(server_);
|
2012-07-05 16:07:53 -07:00
|
|
|
|
2013-02-25 14:04:32 -08:00
|
|
|
do task::spawn {
|
|
|
|
let client__ = client_.take();
|
|
|
|
test::client(client__);
|
2012-07-05 16:07:53 -07:00
|
|
|
};
|
2013-02-25 14:04:32 -08:00
|
|
|
do task::spawn {
|
|
|
|
let server__ = server_.take();
|
|
|
|
test::server(server__);
|
2012-07-05 16:07:53 -07:00
|
|
|
};
|
|
|
|
}
|