rust/src/test/run-pass/pipe-pingpong-bounded.rs
Tim Chevalier b18320446e Move over to calling ptr::addr_of
Everything should now call ptr::addr_of instead of
ptr::p2::addr_of. Only the pipes macro code when compiled
by stage0 will call ptr::p2::addr_of. Needs a snapshot to get
rid of that.
2012-10-01 15:12:09 -07:00

111 lines
3.3 KiB
Rust
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Ping-pong is a bounded protocol. This is place where I can
// experiment with what code the compiler should generate for bounded
// protocols.
// xfail-pretty
// This was generated initially by the pipe compiler, but it's been
// modified in hopefully straightforward ways.
mod pingpong {
#[legacy_exports];
use pipes::*;
type packets = {
// This is probably a resolve bug, I forgot to export packet,
// but since I didn't import pipes::*, it worked anyway.
ping: Packet<ping>,
pong: Packet<pong>,
};
fn init() -> (client::ping, server::ping) {
let buffer = ~{
header: BufferHeader(),
data: {
ping: mk_packet::<ping>(),
pong: mk_packet::<pong>()
}
};
do pipes::entangle_buffer(buffer) |buffer, data| {
data.ping.set_buffer_(buffer);
data.pong.set_buffer_(buffer);
ptr::addr_of(&(data.ping))
}
}
enum ping = server::pong;
enum pong = client::ping;
mod client {
#[legacy_exports];
fn ping(+pipe: ping) -> pong {
{
let b = pipe.reuse_buffer();
let s = SendPacketBuffered(ptr::addr_of(&(b.buffer.data.pong)));
let c = RecvPacketBuffered(ptr::addr_of(&(b.buffer.data.pong)));
let message = pingpong::ping(s);
pipes::send(pipe, message);
c
}
}
type ping = pipes::SendPacketBuffered<pingpong::ping,
pingpong::packets>;
type pong = pipes::RecvPacketBuffered<pingpong::pong,
pingpong::packets>;
}
mod server {
#[legacy_exports];
type ping = pipes::RecvPacketBuffered<pingpong::ping,
pingpong::packets>;
fn pong(+pipe: pong) -> ping {
{
let b = pipe.reuse_buffer();
let s = SendPacketBuffered(ptr::addr_of(&(b.buffer.data.ping)));
let c = RecvPacketBuffered(ptr::addr_of(&(b.buffer.data.ping)));
let message = pingpong::pong(s);
pipes::send(pipe, message);
c
}
}
type pong = pipes::SendPacketBuffered<pingpong::pong,
pingpong::packets>;
}
}
mod test {
#[legacy_exports];
use pipes::recv;
use pingpong::{ping, pong};
fn client(-chan: pingpong::client::ping) {
use pingpong::client;
let chan = client::ping(chan); return;
log(error, "Sent ping");
let pong(_chan) = recv(chan);
log(error, "Received pong");
}
fn server(-chan: pingpong::server::ping) {
use pingpong::server;
let ping(chan) = recv(chan); return;
log(error, "Received ping");
let _chan = server::pong(chan);
log(error, "Sent pong");
}
}
fn main() {
let (client_, server_) = pingpong::init();
let client_ = ~mut Some(client_);
let server_ = ~mut Some(server_);
do task::spawn |move client_| {
let mut client__ = None;
*client_ <-> client__;
test::client(option::unwrap(client__));
};
do task::spawn |move server_| {
let mut server_ˊ = None;
*server_ <-> server_ˊ;
test::server(option::unwrap(server_ˊ));
};
}