rust/src/test/run-pass/pipe-pingpong-bounded.rs

126 lines
3.7 KiB
Rust
Raw Normal View History

// xfail-fast
// 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.
// Ping-pong is a bounded protocol. This is place where I can
// experiment with what code the compiler should generate for bounded
// protocols.
use std::cell::Cell;
// This was generated initially by the pipe compiler, but it's been
// modified in hopefully straightforward ways.
mod pingpong {
use std::pipes;
use std::pipes::*;
use std::ptr;
pub struct Packets {
2012-08-28 11:11:15 -07:00
ping: Packet<ping>,
pong: Packet<pong>,
}
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(),
data: Packets {
ping: mk_packet::<ping>(),
pong: mk_packet::<pong>()
}
};
2013-02-15 02:44:18 -08:00
do pipes::entangle_buffer(buffer) |buffer, data| {
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))
}
}
pub struct ping(server::pong);
pub struct pong(client::ping);
pub mod client {
use std::pipes;
use std::pipes::*;
use std::ptr;
2013-05-06 19:29:04 -07:00
pub fn ping(mut pipe: ping) -> pong {
{
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
}
}
pub type ping = pipes::SendPacketBuffered<::pingpong::ping,
::pingpong::Packets>;
pub type pong = pipes::RecvPacketBuffered<::pingpong::pong,
::pingpong::Packets>;
}
pub mod server {
use std::pipes;
use std::pipes::*;
use std::ptr;
pub type ping = pipes::RecvPacketBuffered<::pingpong::ping,
::pingpong::Packets>;
2013-05-06 19:29:04 -07:00
pub fn pong(mut pipe: pong) -> ping {
{
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
}
}
pub type pong = pipes::SendPacketBuffered<::pingpong::pong,
::pingpong::Packets>;
}
}
mod test {
use std::pipes::recv;
use pingpong::{ping, pong};
2013-05-07 21:33:31 -07:00
pub fn client(chan: ::pingpong::client::ping) {
use pingpong::client;
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");
}
2013-05-07 21:33:31 -07:00
pub fn server(chan: ::pingpong::server::ping) {
use pingpong::server;
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");
}
}
pub fn main() {
let (client_, server_) = ::pingpong::init();
let client_ = Cell(client_);
let server_ = Cell(server_);
do task::spawn {
let client__ = client_.take();
test::client(client__);
};
do task::spawn {
let server__ = server_.take();
test::server(server__);
};
}