#![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, C, D, E, F, G, H, I, J ); // Types // A enum Branching0fromJtoA { Forward( MeshedChannels< Send<(), End>, End, End, End, End, End, End, End, RecursAtoJ, RoleB>, NameA, >, ), Backward( MeshedChannels< Recv<(), End>, End, End, End, End, End, End, End, RecursAtoJ, RoleB>, NameA, >, ), Done(MeshedChannels), } type RecursAtoJ = Recv; // B enum Branching0fromJtoB { Forward( MeshedChannels< Recv<(), End>, Send<(), End>, End, End, End, End, End, End, RecursBtoJ, RoleA>>, NameB, >, ), Backward( MeshedChannels< Send<(), End>, Recv<(), End>, End, End, End, End, End, End, RecursBtoJ, RoleC>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoJ = Recv; // C enum Branching0fromJtoC { Forward( MeshedChannels< End, Recv<(), End>, Send<(), End>, End, End, End, End, End, RecursCtoJ, RoleB>>, NameC, >, ), Backward( MeshedChannels< End, Send<(), End>, Recv<(), End>, End, End, End, End, End, RecursCtoJ, RoleD>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoJ = Recv; // D enum Branching0fromJtoD { Forward( MeshedChannels< End, End, Recv<(), End>, Send<(), End>, End, End, End, End, RecursDtoJ, RoleC>>, NameD, >, ), Backward( MeshedChannels< End, End, Send<(), End>, Recv<(), End>, End, End, End, End, RecursDtoJ, RoleE>>, NameD, >, ), Done(MeshedChannels), } type RecursDtoJ = Recv; // E enum Branching0fromJtoE { Forward( MeshedChannels< End, End, End, Recv<(), End>, Send<(), End>, End, End, End, RecursEtoJ, RoleD>>, NameE, >, ), Backward( MeshedChannels< End, End, End, Send<(), End>, Recv<(), End>, End, End, End, RecursEtoJ, RoleF>>, NameE, >, ), Done(MeshedChannels), } type RecursEtoJ = Recv; // F enum Branching0fromJtoF { Forward( MeshedChannels< End, End, End, End, Recv<(), End>, Send<(), End>, End, End, RecursFtoJ, RoleE>>, NameF, >, ), Backward( MeshedChannels< End, End, End, End, Send<(), End>, Recv<(), End>, End, End, RecursFtoJ, RoleG>>, NameF, >, ), Done(MeshedChannels), } type RecursFtoJ = Recv; // G enum Branching0fromJtoG { Forward( MeshedChannels< End, End, End, End, End, Recv<(), End>, Send<(), End>, End, RecursGtoJ, RoleF>>, NameG, >, ), Backward( MeshedChannels< End, End, End, End, End, Send<(), End>, Recv<(), End>, End, RecursGtoJ, RoleH>>, NameG, >, ), Done(MeshedChannels), } type RecursGtoJ = Recv; // H enum Branching0fromJtoH { Forward( MeshedChannels< End, End, End, End, End, End, Recv<(), End>, Send<(), End>, RecursHtoJ, RoleG>>, NameH, >, ), Backward( MeshedChannels< End, End, End, End, End, End, Send<(), End>, Recv<(), End>, RecursHtoJ, RoleI>>, NameH, >, ), Done(MeshedChannels), } type RecursHtoJ = Recv; // I enum Branching0fromJtoI { Forward( MeshedChannels< End, End, End, End, End, End, End, Recv<(), End>, Send<(), RecursItoJ>, RoleH>>, NameI, >, ), Backward( MeshedChannels< End, End, End, End, End, End, End, Send<(), End>, Recv<(), RecursItoJ>, RoleJ>>, NameI, >, ), Done(MeshedChannels), } type RecursItoJ = Recv; // J type Choose0fromJtoA = Send; type Choose0fromJtoB = Send; type Choose0fromJtoC = Send; type Choose0fromJtoD = Send; type Choose0fromJtoE = Send; type Choose0fromJtoF = Send; type Choose0fromJtoG = Send; type Choose0fromJtoH = Send; type Choose0fromJtoI = Send; type EndpointForwardJ = MeshedChannels< Choose0fromJtoA, Choose0fromJtoB, Choose0fromJtoC, Choose0fromJtoD, Choose0fromJtoE, Choose0fromJtoF, Choose0fromJtoG, Choose0fromJtoH, Recv<(), Choose0fromJtoI>, RoleI, NameJ, >; type EndpointBackwardJ = MeshedChannels< Choose0fromJtoA, Choose0fromJtoB, Choose0fromJtoC, Choose0fromJtoD, Choose0fromJtoE, Choose0fromJtoF, Choose0fromJtoG, Choose0fromJtoH, Send<(), Choose0fromJtoI>, RoleI, NameJ, >; // Creating the MP sessions type EndpointA = MeshedChannels, NameA>; type EndpointB = MeshedChannels, NameB>; type EndpointC = MeshedChannels, NameC>; type EndpointD = MeshedChannels, NameD>; type EndpointE = MeshedChannels, NameE>; type EndpointF = MeshedChannels, NameF>; type EndpointG = MeshedChannels, NameG>; type EndpointH = MeshedChannels, NameH>; type EndpointI = MeshedChannels, NameI>; type EndpointJ = MeshedChannels< Choose0fromJtoA, Choose0fromJtoB, Choose0fromJtoC, Choose0fromJtoD, Choose0fromJtoE, Choose0fromJtoF, Choose0fromJtoG, Choose0fromJtoH, Choose0fromJtoI, RoleBroadcast, NameJ, >; fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoA::Done(s) => { s.close() }, Branching0fromJtoA::Forward(s) => { let s = s.send(())?; endpoint_a(s) }, Branching0fromJtoA::Backward(s) => { let (_, s) = s.recv()?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoB::Done(s) => { s.close() }, Branching0fromJtoB::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_b(s) }, Branching0fromJtoB::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_b(s) }, }) } fn endpoint_c(s: EndpointC) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoC::Done(s) => { s.close() }, Branching0fromJtoC::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_c(s) }, Branching0fromJtoC::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_c(s) }, }) } fn endpoint_d(s: EndpointD) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoD::Done(s) => { s.close() }, Branching0fromJtoD::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_d(s) }, Branching0fromJtoD::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_d(s) }, }) } fn endpoint_e(s: EndpointE) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoE::Done(s) => { s.close() }, Branching0fromJtoE::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_e(s) }, Branching0fromJtoE::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_e(s) }, }) } fn endpoint_f(s: EndpointF) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoF::Done(s) => { s.close() }, Branching0fromJtoF::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_f(s) }, Branching0fromJtoF::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_f(s) }, }) } fn endpoint_g(s: EndpointG) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoG::Done(s) => { s.close() }, Branching0fromJtoG::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_g(s) }, Branching0fromJtoG::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_g(s) }, }) } fn endpoint_h(s: EndpointH) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoH::Done(s) => { s.close() }, Branching0fromJtoH::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_h(s) }, Branching0fromJtoH::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_h(s) }, }) } fn endpoint_i(s: EndpointI) -> Result<(), Box> { offer_mpst!(s, { Branching0fromJtoI::Done(s) => { s.close() }, Branching0fromJtoI::Forward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_i(s) }, Branching0fromJtoI::Backward(s) => { let ((), s) = s.recv()?; let s = s.send(())?; endpoint_i(s) }, }) } fn endpoint_j(s: EndpointJ) -> Result<(), Box> { recurs_j(s, LOOPS) } fn recurs_j(s: EndpointJ, index: i64) -> Result<(), Box> { match index { 0 => { let s = choose_mpst_j_to_all!( s, Branching0fromJtoA::Done, Branching0fromJtoB::Done, Branching0fromJtoC::Done, Branching0fromJtoD::Done, Branching0fromJtoE::Done, Branching0fromJtoF::Done, Branching0fromJtoG::Done, Branching0fromJtoH::Done, Branching0fromJtoI::Done ); s.close() } i if i % 2 == 0 => { let s: EndpointForwardJ = choose_mpst_j_to_all!( s, Branching0fromJtoA::Forward, Branching0fromJtoB::Forward, Branching0fromJtoC::Forward, Branching0fromJtoD::Forward, Branching0fromJtoE::Forward, Branching0fromJtoF::Forward, Branching0fromJtoG::Forward, Branching0fromJtoH::Forward, Branching0fromJtoI::Forward ); let (_, s) = s.recv()?; recurs_j(s, i - 1) } i => { let s: EndpointBackwardJ = choose_mpst_j_to_all!( s, Branching0fromJtoA::Backward, Branching0fromJtoB::Backward, Branching0fromJtoC::Backward, Branching0fromJtoD::Backward, Branching0fromJtoE::Backward, Branching0fromJtoF::Backward, Branching0fromJtoG::Backward, Branching0fromJtoH::Backward, Branching0fromJtoI::Backward ); let s = s.send(())?; recurs_j(s, i - 1) } } } fn main() { let ( thread_a, thread_b, thread_c, thread_d, thread_e, thread_f, thread_g, thread_h, thread_i, thread_j, ) = fork_mpst( endpoint_a, endpoint_b, endpoint_c, endpoint_d, endpoint_e, endpoint_f, endpoint_g, endpoint_h, endpoint_i, endpoint_j, ); thread_a.join().unwrap(); thread_b.join().unwrap(); thread_c.join().unwrap(); thread_d.join().unwrap(); thread_e.join().unwrap(); thread_f.join().unwrap(); thread_g.join().unwrap(); thread_h.join().unwrap(); thread_i.join().unwrap(); thread_j.join().unwrap(); }