#![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!("recursive", MeshedChannels, A, B); // Types // A enum Branching0fromBtoA { More(MeshedChannels>, RoleB>>, NameA>), Done(MeshedChannels), } type RecursAtoB = Recv; // C type Choose0fromBtoA = Send; type EndpointMoreB = 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::More(s) => { let (_, s) = s.recv(); let s = s.send(()); endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { recurs_b(s, LOOPS) } fn recurs_b(s: EndpointB, index: i64) -> Result<(), Box> { match index { 0 => { let s = choose_mpst_b_to_all!(s, Branching0fromBtoA::Done); s.close() } i => { let s: EndpointMoreB = choose_mpst_b_to_all!(s, Branching0fromBtoA::More); let s = s.send(()); let (_, s) = s.recv(); recurs_b(s, i - 1) } } } fn main() { let (thread_a, thread_b) = fork_mpst(endpoint_a, endpoint_b); thread_a.join().unwrap(); thread_b.join().unwrap(); }