#![allow( clippy::large_enum_variant, clippy::type_complexity, clippy::too_many_arguments )] use mpstthree::binary::close::close; use mpstthree::binary::fork::fork_with_thread_id; use mpstthree::binary::recv::recv; use mpstthree::binary::send::send; use mpstthree::binary::struct_trait::{end::End, recv::Recv, send::Send, session::Session}; use mpstthree::{choose, offer}; use std::error::Error; use std::marker; use std::thread::{spawn, JoinHandle}; // A enum BinaryA { More(Recv>>), Done(End), } type RecursA = Recv, End>; fn binary_a_to_b(s: RecursA) -> Result<(), Box> { recurs_a_binary(s, 1) } fn recurs_a_binary(s: RecursA, old: i64) -> Result<(), Box> { offer!(s, { BinaryA::Done(s) => { close(s) }, BinaryA::More(s) => { let (new, s) = recv(s)?; let s = send(old + new, s); recurs_a_binary(s, old + new) }, }) } // B type RecursB = as Session>::Dual; fn binary_b_to_a(s: Send>>) -> Result, Box> { recurs_b_binary(s, 0) } fn recurs_b_binary( s: Send>>, old: i64, ) -> Result, Box> { let s = send(old, s); let (_, s) = recv(s)?; Ok(s) } fn main() { let mut threads = Vec::new(); let mut sessions = Vec::new(); for _ in 0..3 { let (thread, s): (JoinHandle<()>, RecursB) = fork_with_thread_id(binary_a_to_b); threads.push(thread); sessions.push(s); } let main = spawn(move || { for _ in 0..LOOPS { sessions = sessions .into_iter() .map(|s| binary_b_to_a(choose!(BinaryA::::More, s)).unwrap()) .collect::>(); } sessions .into_iter() .for_each(|s| close(choose!(BinaryA::::Done, s)).unwrap()); threads.into_iter().for_each(|elt| elt.join().unwrap()); }); main.join().unwrap(); } ///////////////////////// static LOOPS: i64 = 20;