#![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 { 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) }, }) } 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 if i % 2 == 0 => { let s: EndpointForwardB = choose_mpst_b_to_all!(s, Branching0fromBtoA::Forward); let (_, s) = s.recv(); recurs_b(s, i - 1) } i => { let s: EndpointBackwardB = choose_mpst_b_to_all!(s, Branching0fromBtoA::Backward); let s = s.send(()); 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(); }