#![allow( clippy::type_complexity, clippy::too_many_arguments, clippy::large_enum_variant )] use mpstthree::binary::struct_trait::{end::End, recv::Recv, send::Send}; use mpstthree::generate; use mpstthree::role::broadcast::RoleBroadcast; use mpstthree::role::end::RoleEnd; use std::error::Error; static LOOPS: i64 = 100; // Create new roles generate!("rec_and_cancel", MeshedChannels, A, B); // Types // A enum Branching0fromBtoA { Forward(MeshedChannels, RoleB>, NameA>), Backward(MeshedChannels, RoleB>, NameA>), Done(MeshedChannels), } type RecursAtoB = Recv; // B type Choose0fromBtoA = Send; type EndpointForwardB = MeshedChannels, RoleA, NameB>; type EndpointBackwardB = MeshedChannels, RoleA, NameB>; // Creating the MP sessions type EndpointA = MeshedChannels, NameA>; type EndpointB = MeshedChannels; fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_mpst!(s, { Branching0fromBtoA::Done(s) => { s.close() }, Branching0fromBtoA::Forward(s) => { let s = s.send(())?; endpoint_a(s) }, Branching0fromBtoA::Backward(s) => { let (_, s) = s.recv()?; endpoint_a(s) }, }) } #[inline] fn endpoint_b(s: EndpointB) -> Result<(), Box> { let mut temp_s = s; for i in 1..LOOPS { temp_s = recurs_b(temp_s, i)?; } let s = choose_mpst_b_to_all!(temp_s, Branching0fromBtoA::Done); s.close() } fn recurs_b(s: EndpointB, index: i64) -> Result> { match index { i if i % 2 == 0 => { let s: EndpointForwardB = choose_mpst_b_to_all!(s, Branching0fromBtoA::Forward); let (_, s) = s.recv()?; Ok(s) } _ => { let s: EndpointBackwardB = choose_mpst_b_to_all!(s, Branching0fromBtoA::Backward); let s = s.send(())?; Ok(s) } } } fn main() { let (thread_a, thread_b) = fork_mpst(endpoint_a, endpoint_b); thread_a.join().unwrap(); thread_b.join().unwrap(); }