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-23 13:28:38 -05:00
|
|
|
|
// Ping-pong is a bounded protocol. This is place where I can
|
|
|
|
|
// experiment with what code the compiler should generate for bounded
|
|
|
|
|
// protocols.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// This was generated initially by the pipe compiler, but it's been
|
|
|
|
|
// modified in hopefully straightforward ways.
|
2013-01-26 01:19:20 -06:00
|
|
|
|
#[legacy_records];
|
|
|
|
|
|
2012-07-23 13:28:38 -05:00
|
|
|
|
mod pingpong {
|
2013-01-08 00:13:34 -06:00
|
|
|
|
use core::pipes::*;
|
|
|
|
|
use core::ptr;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
|
2012-12-28 19:32:42 -06:00
|
|
|
|
pub type packets = {
|
2012-08-28 13:11:15 -05:00
|
|
|
|
ping: Packet<ping>,
|
|
|
|
|
pong: Packet<pong>,
|
2012-07-23 13:28:38 -05:00
|
|
|
|
};
|
|
|
|
|
|
2012-12-28 19:32:42 -06:00
|
|
|
|
pub fn init() -> (client::ping, server::ping) {
|
2013-01-24 13:37:36 -06:00
|
|
|
|
let buffer = ~Buffer {
|
2012-08-28 13:11:15 -05:00
|
|
|
|
header: BufferHeader(),
|
2012-07-23 13:28:38 -05:00
|
|
|
|
data: {
|
|
|
|
|
ping: mk_packet::<ping>(),
|
|
|
|
|
pong: mk_packet::<pong>()
|
|
|
|
|
}
|
|
|
|
|
};
|
2012-09-19 00:45:24 -05:00
|
|
|
|
do pipes::entangle_buffer(move buffer) |buffer, data| {
|
2012-08-28 13:11:15 -05:00
|
|
|
|
data.ping.set_buffer_(buffer);
|
|
|
|
|
data.pong.set_buffer_(buffer);
|
2012-10-01 14:47:02 -05:00
|
|
|
|
ptr::addr_of(&(data.ping))
|
2012-07-23 13:28:38 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-12-28 19:17:05 -06:00
|
|
|
|
pub enum ping = server::pong;
|
|
|
|
|
pub enum pong = client::ping;
|
|
|
|
|
pub mod client {
|
2013-01-08 21:37:25 -06:00
|
|
|
|
use core::pipes::*;
|
2013-01-08 00:13:34 -06:00
|
|
|
|
use core::ptr;
|
2012-12-28 19:32:42 -06:00
|
|
|
|
|
2012-12-28 19:17:05 -06:00
|
|
|
|
pub fn ping(+pipe: ping) -> pong {
|
2012-07-23 13:28:38 -05:00
|
|
|
|
{
|
|
|
|
|
let b = pipe.reuse_buffer();
|
2012-10-01 14:47:02 -05:00
|
|
|
|
let s = SendPacketBuffered(ptr::addr_of(&(b.buffer.data.pong)));
|
|
|
|
|
let c = RecvPacketBuffered(ptr::addr_of(&(b.buffer.data.pong)));
|
2012-12-28 19:32:42 -06:00
|
|
|
|
let message = ::pingpong::ping(move s);
|
|
|
|
|
::pipes::send(move pipe, move message);
|
2012-09-19 00:45:24 -05:00
|
|
|
|
move c
|
2012-07-23 13:28:38 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-12-28 19:32:42 -06:00
|
|
|
|
pub type ping = pipes::SendPacketBuffered<::pingpong::ping,
|
|
|
|
|
::pingpong::packets>;
|
|
|
|
|
pub type pong = pipes::RecvPacketBuffered<::pingpong::pong,
|
|
|
|
|
::pingpong::packets>;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
}
|
2012-12-28 19:17:05 -06:00
|
|
|
|
pub mod server {
|
2013-01-08 21:37:25 -06:00
|
|
|
|
use core::pipes::*;
|
2013-01-08 00:13:34 -06:00
|
|
|
|
use core::ptr;
|
2012-12-28 19:32:42 -06:00
|
|
|
|
|
|
|
|
|
pub type ping = pipes::RecvPacketBuffered<::pingpong::ping,
|
|
|
|
|
::pingpong::packets>;
|
2012-12-28 19:17:05 -06:00
|
|
|
|
pub fn pong(+pipe: pong) -> ping {
|
2012-07-23 13:28:38 -05:00
|
|
|
|
{
|
|
|
|
|
let b = pipe.reuse_buffer();
|
2012-10-01 14:47:02 -05:00
|
|
|
|
let s = SendPacketBuffered(ptr::addr_of(&(b.buffer.data.ping)));
|
|
|
|
|
let c = RecvPacketBuffered(ptr::addr_of(&(b.buffer.data.ping)));
|
2012-12-28 19:32:42 -06:00
|
|
|
|
let message = ::pingpong::pong(move s);
|
|
|
|
|
::pipes::send(move pipe, move message);
|
2012-09-19 00:45:24 -05:00
|
|
|
|
move c
|
2012-07-23 13:28:38 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-12-28 19:32:42 -06:00
|
|
|
|
pub type pong = pipes::SendPacketBuffered<::pingpong::pong,
|
|
|
|
|
::pingpong::packets>;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod test {
|
2012-09-07 20:08:21 -05:00
|
|
|
|
use pipes::recv;
|
|
|
|
|
use pingpong::{ping, pong};
|
2012-07-23 13:28:38 -05:00
|
|
|
|
|
2012-12-28 19:32:42 -06:00
|
|
|
|
pub fn client(-chan: ::pingpong::client::ping) {
|
2012-09-07 20:08:21 -05:00
|
|
|
|
use pingpong::client;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
|
2012-09-19 00:45:24 -05:00
|
|
|
|
let chan = client::ping(move chan); return;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
log(error, "Sent ping");
|
2012-09-19 00:45:24 -05:00
|
|
|
|
let pong(_chan) = recv(move chan);
|
2012-07-23 13:28:38 -05:00
|
|
|
|
log(error, "Received pong");
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-28 19:32:42 -06:00
|
|
|
|
pub fn server(-chan: ::pingpong::server::ping) {
|
2012-09-07 20:08:21 -05:00
|
|
|
|
use pingpong::server;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
|
2012-09-19 00:45:24 -05:00
|
|
|
|
let ping(chan) = recv(move chan); return;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
log(error, "Received ping");
|
2012-09-19 00:45:24 -05:00
|
|
|
|
let _chan = server::pong(move chan);
|
2012-07-23 13:28:38 -05:00
|
|
|
|
log(error, "Sent pong");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2012-12-28 19:32:42 -06:00
|
|
|
|
let (client_, server_) = ::pingpong::init();
|
2012-09-19 00:45:24 -05:00
|
|
|
|
let client_ = ~mut Some(move client_);
|
|
|
|
|
let server_ = ~mut Some(move server_);
|
2012-07-23 13:28:38 -05:00
|
|
|
|
do task::spawn |move client_| {
|
2012-08-20 14:23:37 -05:00
|
|
|
|
let mut client__ = None;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
*client_ <-> client__;
|
2012-09-19 00:45:24 -05:00
|
|
|
|
test::client(option::unwrap(move client__));
|
2012-07-23 13:28:38 -05:00
|
|
|
|
};
|
|
|
|
|
do task::spawn |move server_| {
|
2012-08-20 14:23:37 -05:00
|
|
|
|
let mut server_ˊ = None;
|
2012-07-23 13:28:38 -05:00
|
|
|
|
*server_ <-> server_ˊ;
|
2012-09-19 00:45:24 -05:00
|
|
|
|
test::server(option::unwrap(move server_ˊ));
|
2012-07-23 13:28:38 -05:00
|
|
|
|
};
|
|
|
|
|
}
|