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-23 11:28:38 -07:00
|
|
|
// Ping-pong is a bounded protocol. This is place where I can
|
|
|
|
// experiment with what code the compiler should generate for bounded
|
|
|
|
// protocols.
|
|
|
|
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::cell::Cell;
|
2012-07-23 11:28:38 -07:00
|
|
|
|
|
|
|
// This was generated initially by the pipe compiler, but it's been
|
|
|
|
// modified in hopefully straightforward ways.
|
2013-01-25 23:19:20 -08:00
|
|
|
|
2012-07-23 11:28:38 -07:00
|
|
|
mod pingpong {
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::pipes;
|
|
|
|
use std::pipes::*;
|
|
|
|
use std::ptr;
|
2012-07-23 11:28:38 -07:00
|
|
|
|
2013-02-21 15:19:40 -08:00
|
|
|
pub struct Packets {
|
2012-08-28 11:11:15 -07:00
|
|
|
ping: Packet<ping>,
|
|
|
|
pong: Packet<pong>,
|
2013-02-21 15:19:40 -08:00
|
|
|
}
|
2012-07-23 11:28:38 -07:00
|
|
|
|
2012-12-28 17:32:42 -08:00
|
|
|
pub fn init() -> (client::ping, server::ping) {
|
2013-01-24 11:37:36 -08:00
|
|
|
let buffer = ~Buffer {
|
2012-08-28 11:11:15 -07:00
|
|
|
header: BufferHeader(),
|
2013-02-21 15:19:40 -08:00
|
|
|
data: Packets {
|
2012-07-23 11:28:38 -07:00
|
|
|
ping: mk_packet::<ping>(),
|
|
|
|
pong: mk_packet::<pong>()
|
|
|
|
}
|
|
|
|
};
|
2013-02-15 02:44:18 -08:00
|
|
|
do pipes::entangle_buffer(buffer) |buffer, data| {
|
2013-01-29 16:57:41 -08:00
|
|
|
data.ping.set_buffer(buffer);
|
|
|
|
data.pong.set_buffer(buffer);
|
2013-05-06 19:29:04 -07:00
|
|
|
ptr::to_mut_unsafe_ptr(&mut (data.ping))
|
2012-07-23 11:28:38 -07:00
|
|
|
}
|
|
|
|
}
|
2013-03-07 16:36:30 -08:00
|
|
|
pub struct ping(server::pong);
|
|
|
|
pub struct pong(client::ping);
|
2012-12-28 17:17:05 -08:00
|
|
|
pub mod client {
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::pipes;
|
|
|
|
use std::pipes::*;
|
|
|
|
use std::ptr;
|
2012-12-28 17:32:42 -08:00
|
|
|
|
2013-05-06 19:29:04 -07:00
|
|
|
pub fn ping(mut pipe: ping) -> pong {
|
2012-07-23 11:28:38 -07:00
|
|
|
{
|
2013-05-06 19:29:04 -07:00
|
|
|
let mut b = pipe.reuse_buffer();
|
|
|
|
let s = SendPacketBuffered(&mut b.buffer.data.pong);
|
|
|
|
let c = RecvPacketBuffered(&mut b.buffer.data.pong);
|
2013-02-15 02:44:18 -08:00
|
|
|
let message = ::pingpong::ping(s);
|
2013-02-02 03:10:12 -08:00
|
|
|
send(pipe, message);
|
2013-02-15 02:44:18 -08:00
|
|
|
c
|
2012-07-23 11:28:38 -07:00
|
|
|
}
|
|
|
|
}
|
2012-12-28 17:32:42 -08:00
|
|
|
pub type ping = pipes::SendPacketBuffered<::pingpong::ping,
|
2013-02-21 15:19:40 -08:00
|
|
|
::pingpong::Packets>;
|
2012-12-28 17:32:42 -08:00
|
|
|
pub type pong = pipes::RecvPacketBuffered<::pingpong::pong,
|
2013-02-21 15:19:40 -08:00
|
|
|
::pingpong::Packets>;
|
2012-07-23 11:28:38 -07:00
|
|
|
}
|
2012-12-28 17:17:05 -08:00
|
|
|
pub mod server {
|
2013-05-20 17:07:24 -07:00
|
|
|
use std::pipes;
|
|
|
|
use std::pipes::*;
|
|
|
|
use std::ptr;
|
2012-12-28 17:32:42 -08:00
|
|
|
|
|
|
|
pub type ping = pipes::RecvPacketBuffered<::pingpong::ping,
|
2013-02-21 15:19:40 -08:00
|
|
|
::pingpong::Packets>;
|
2013-05-06 19:29:04 -07:00
|
|
|
pub fn pong(mut pipe: pong) -> ping {
|
2012-07-23 11:28:38 -07:00
|
|
|
{
|
2013-05-06 19:29:04 -07:00
|
|
|
let mut b = pipe.reuse_buffer();
|
|
|
|
let s = SendPacketBuffered(&mut b.buffer.data.ping);
|
|
|
|
let c = RecvPacketBuffered(&mut b.buffer.data.ping);
|
2013-02-15 02:44:18 -08:00
|
|
|
let message = ::pingpong::pong(s);
|
2013-02-02 03:10:12 -08:00
|
|
|
send(pipe, message);
|
2013-02-15 02:44:18 -08:00
|
|
|
c
|
2012-07-23 11:28:38 -07:00
|
|
|
}
|
|
|
|
}
|
2012-12-28 17:32:42 -08:00
|
|
|
pub type pong = pipes::SendPacketBuffered<::pingpong::pong,
|
2013-02-21 15:19:40 -08:00
|
|
|
::pingpong::Packets>;
|
2012-07-23 11:28:38 -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-23 11:28:38 -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-23 11:28:38 -07:00
|
|
|
|
2013-02-15 02:44:18 -08:00
|
|
|
let chan = client::ping(chan); return;
|
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-23 11:28:38 -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-23 11:28:38 -07:00
|
|
|
|
2013-02-15 02:44:18 -08:00
|
|
|
let ping(chan) = recv(chan); return;
|
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-23 11:28:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2012-12-28 17:32:42 -08:00
|
|
|
let (client_, server_) = ::pingpong::init();
|
2013-02-25 14:04:32 -08:00
|
|
|
let client_ = Cell(client_);
|
|
|
|
let server_ = Cell(server_);
|
|
|
|
do task::spawn {
|
|
|
|
let client__ = client_.take();
|
|
|
|
test::client(client__);
|
2012-07-23 11:28:38 -07:00
|
|
|
};
|
2013-02-25 14:04:32 -08:00
|
|
|
do task::spawn {
|
|
|
|
let server__ = server_.take();
|
|
|
|
test::server(server__);
|
2012-07-23 11:28:38 -07:00
|
|
|
};
|
|
|
|
}
|