#![allow(clippy::type_complexity, clippy::too_many_arguments, clippy::large_enum_variant)] use mpstthree::binary::struct_trait::{end::End, recv::Recv, send::Send, session::Session}; use mpstthree::role::broadcast::RoleBroadcast; use mpstthree::role::end::RoleEnd; use mpstthree::{ bundle_struct_fork_close_multi_cancel, create_fn_choose_mpst_multi_to_all_bundle, create_multiple_normal_role_short, create_recv_mpst_session_bundle, create_send_mpst_cancel_bundle, offer_mpst, create_multiple_normal_name_short }; use std::error::Error; // Create the new MeshedChannels for nine participants and the close and fork functions bundle_struct_fork_close_multi_cancel!(close_mpst_multi, fork_mpst, MeshedChannels, 9); // Create new roles // normal create_multiple_normal_role_short!(A, B, C, D, E, F, G, H, I); // Create new names create_multiple_normal_name_short!(A, B, C, D, E, F, G, H, I); // Create new send functions // A create_send_mpst_cancel_bundle!( send_mpst_a_to_b, RoleB, 1 | => NameA, MeshedChannels, 9 ); // B create_send_mpst_cancel_bundle!( send_mpst_b_to_a, RoleA, 1 | send_mpst_b_to_c, RoleC, 2 | => NameB, MeshedChannels, 9 ); // C create_send_mpst_cancel_bundle!( send_mpst_c_to_b, RoleB, 2 | send_mpst_c_to_d, RoleD, 3 | => NameC, MeshedChannels, 9 ); // D create_send_mpst_cancel_bundle!( send_mpst_d_to_c, RoleC, 3 | send_mpst_d_to_e, RoleE, 4 | => NameD, MeshedChannels, 9 ); // E create_send_mpst_cancel_bundle!( send_mpst_e_to_d, RoleD, 4 | send_mpst_e_to_f, RoleF, 5 | => NameE, MeshedChannels, 9 ); // F create_send_mpst_cancel_bundle!( send_mpst_f_to_e, RoleE, 5 | send_mpst_f_to_g, RoleG, 6 | => NameF, MeshedChannels, 9 ); // G create_send_mpst_cancel_bundle!( send_mpst_g_to_f, RoleF, 6 | send_mpst_g_to_h, RoleH, 7 | => NameG, MeshedChannels, 9 ); // H create_send_mpst_cancel_bundle!( send_mpst_h_to_g, RoleG, 7 | send_mpst_h_to_i, RoleI, 8 | => NameH, MeshedChannels, 9 ); // I create_send_mpst_cancel_bundle!( send_mpst_i_to_h, RoleH, 8 | => NameI, MeshedChannels, 9 ); // Create new recv functions and related types // A create_recv_mpst_session_bundle!( recv_mpst_a_from_b, RoleB, 1 | recv_mpst_a_from_i, RoleI, 8 | => NameA, MeshedChannels, 9 ); // B create_recv_mpst_session_bundle!( recv_mpst_b_from_a, RoleA, 1 | recv_mpst_b_from_c, RoleC, 2 | recv_mpst_b_from_i, RoleI, 8 | => NameB, MeshedChannels, 9 ); // C create_recv_mpst_session_bundle!( recv_mpst_c_from_b, RoleB, 2 | recv_mpst_c_from_d, RoleD, 3 | recv_mpst_c_from_i, RoleI, 8 | => NameC, MeshedChannels, 9 ); // D create_recv_mpst_session_bundle!( recv_mpst_d_from_c, RoleC, 3 | recv_mpst_d_from_e, RoleE, 4 | recv_mpst_d_from_i, RoleI, 8 | => NameD, MeshedChannels, 9 ); // E create_recv_mpst_session_bundle!( recv_mpst_e_from_d, RoleD, 4 | recv_mpst_e_from_f, RoleF, 5 | recv_mpst_e_from_i, RoleI, 8 | => NameE, MeshedChannels, 9 ); // F create_recv_mpst_session_bundle!( recv_mpst_f_from_e, RoleE, 5 | recv_mpst_f_from_g, RoleG, 6 | recv_mpst_f_from_i, RoleI, 8 | => NameF, MeshedChannels, 9 ); // G create_recv_mpst_session_bundle!( recv_mpst_g_from_f, RoleF, 6 | recv_mpst_g_from_h, RoleH, 7 | recv_mpst_g_from_i, RoleI, 8 | => NameG, MeshedChannels, 9 ); // H create_recv_mpst_session_bundle!( recv_mpst_h_from_g, RoleG, 7 | recv_mpst_h_from_i, RoleI, 8 | => NameH, MeshedChannels, 9 ); // I create_recv_mpst_session_bundle!( recv_mpst_i_from_h, RoleH, 8 | => NameI, MeshedChannels, 9 ); // Types // A enum Branching0fromItoA { Forward( MeshedChannels< Send<(), End>, End, End, End, End, End, End, RecursAtoI, RoleB>, NameA, >, ), Backward( MeshedChannels< Recv<(), End>, End, End, End, End, End, End, RecursAtoI, RoleB>, NameA, >, ), Done(MeshedChannels), } type RecursAtoI = ::Dual; // B enum Branching0fromItoB { Forward( MeshedChannels< Recv<(), End>, Send<(), End>, End, End, End, End, End, RecursBtoI, RoleA>>, NameB, >, ), Backward( MeshedChannels< Send<(), End>, Recv<(), End>, End, End, End, End, End, RecursBtoI, RoleC>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoI = ::Dual; // C enum Branching0fromItoC { Forward( MeshedChannels< End, Recv<(), End>, Send<(), End>, End, End, End, End, RecursCtoI, RoleB>>, NameC, >, ), Backward( MeshedChannels< End, Send<(), End>, Recv<(), End>, End, End, End, End, RecursCtoI, RoleD>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoI = ::Dual; // D enum Branching0fromItoD { Forward( MeshedChannels< End, End, Recv<(), End>, Send<(), End>, End, End, End, RecursDtoI, RoleC>>, NameD, >, ), Backward( MeshedChannels< End, End, Send<(), End>, Recv<(), End>, End, End, End, RecursDtoI, RoleE>>, NameD, >, ), Done(MeshedChannels), } type RecursDtoI = ::Dual; // E enum Branching0fromItoE { Forward( MeshedChannels< End, End, End, Recv<(), End>, Send<(), End>, End, End, RecursEtoI, RoleD>>, NameE, >, ), Backward( MeshedChannels< End, End, End, Send<(), End>, Recv<(), End>, End, End, RecursEtoI, RoleF>>, NameE, >, ), Done(MeshedChannels), } type RecursEtoI = ::Dual; // F enum Branching0fromItoF { Forward( MeshedChannels< End, End, End, End, Recv<(), End>, Send<(), End>, End, RecursFtoI, RoleE>>, NameF, >, ), Backward( MeshedChannels< End, End, End, End, Send<(), End>, Recv<(), End>, End, RecursFtoI, RoleG>>, NameF, >, ), Done(MeshedChannels), } type RecursFtoI = ::Dual; // G enum Branching0fromItoG { Forward( MeshedChannels< End, End, End, End, End, Recv<(), End>, Send<(), End>, RecursGtoI, RoleF>>, NameG, >, ), Backward( MeshedChannels< End, End, End, End, End, Send<(), End>, Recv<(), End>, RecursGtoI, RoleH>>, NameG, >, ), Done(MeshedChannels), } type RecursGtoI = ::Dual; // H enum Branching0fromItoH { Forward( MeshedChannels< End, End, End, End, End, End, Recv<(), End>, Send<(), RecursHtoI>, RoleG>>, NameH, >, ), Backward( MeshedChannels< End, End, End, End, End, End, Send<(), End>, Recv<(), RecursHtoI>, RoleI>>, NameH, >, ), Done(MeshedChannels), } type RecursHtoI = ::Dual; // I type Choose0fromItoA = Send; type Choose0fromItoB = Send; type Choose0fromItoC = Send; type Choose0fromItoD = Send; type Choose0fromItoE = Send; type Choose0fromItoF = Send; type Choose0fromItoG = Send; type Choose0fromItoH = Send; type EndpointDoneI = MeshedChannels; type EndpointForwardI = MeshedChannels< Choose0fromItoA, Choose0fromItoB, Choose0fromItoC, Choose0fromItoD, Choose0fromItoE, Choose0fromItoF, Choose0fromItoG, Recv<(), Choose0fromItoH>, RoleH, NameI, >; type EndpointBackwardI = MeshedChannels< Choose0fromItoA, Choose0fromItoB, Choose0fromItoC, Choose0fromItoD, Choose0fromItoE, Choose0fromItoF, Choose0fromItoG, Send<(), Choose0fromItoH>, RoleH, NameI, >; // 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< Choose0fromItoA, Choose0fromItoB, Choose0fromItoC, Choose0fromItoD, Choose0fromItoE, Choose0fromItoF, Choose0fromItoG, Choose0fromItoH, RoleBroadcast, NameI, >; create_fn_choose_mpst_multi_to_all_bundle!( done_from_i_to_all, forward_from_i_to_all, backward_from_i_to_all, => Done, Forward, Backward, => EndpointDoneI, EndpointForwardI, EndpointBackwardI, => Branching0fromItoA, Branching0fromItoB, Branching0fromItoC, Branching0fromItoD, Branching0fromItoE, Branching0fromItoF, Branching0fromItoG, Branching0fromItoH, => NameA, NameB, NameC, NameD, NameE, NameF, NameG, NameH, => NameI, MeshedChannels, 9 ); fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_mpst!(s, recv_mpst_a_from_i, { Branching0fromItoA::Done(s) => { close_mpst_multi(s) }, Branching0fromItoA::Forward(s) => { let s = send_mpst_a_to_b((), s)?; endpoint_a(s) }, Branching0fromItoA::Backward(s) => { let (_, s) = recv_mpst_a_from_b(s)?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_mpst!(s, recv_mpst_b_from_i, { Branching0fromItoB::Done(s) => { close_mpst_multi(s) }, Branching0fromItoB::Forward(s) => { let ((), s) = recv_mpst_b_from_a(s)?; let s = send_mpst_b_to_c((), s)?; endpoint_b(s) }, Branching0fromItoB::Backward(s) => { let ((), s) = recv_mpst_b_from_c(s)?; let s = send_mpst_b_to_a((), s)?; endpoint_b(s) }, }) } fn endpoint_c(s: EndpointC) -> Result<(), Box> { offer_mpst!(s, recv_mpst_c_from_i, { Branching0fromItoC::Done(s) => { close_mpst_multi(s) }, Branching0fromItoC::Forward(s) => { let ((), s) = recv_mpst_c_from_b(s)?; let s = send_mpst_c_to_d((), s)?; endpoint_c(s) }, Branching0fromItoC::Backward(s) => { let ((), s) = recv_mpst_c_from_d(s)?; let s = send_mpst_c_to_b((), s)?; endpoint_c(s) }, }) } fn endpoint_d(s: EndpointD) -> Result<(), Box> { offer_mpst!(s, recv_mpst_d_from_i, { Branching0fromItoD::Done(s) => { close_mpst_multi(s) }, Branching0fromItoD::Forward(s) => { let ((), s) = recv_mpst_d_from_c(s)?; let s = send_mpst_d_to_e((), s)?; endpoint_d(s) }, Branching0fromItoD::Backward(s) => { let ((), s) = recv_mpst_d_from_e(s)?; let s = send_mpst_d_to_c((), s)?; endpoint_d(s) }, }) } fn endpoint_e(s: EndpointE) -> Result<(), Box> { offer_mpst!(s, recv_mpst_e_from_i, { Branching0fromItoE::Done(s) => { close_mpst_multi(s) }, Branching0fromItoE::Forward(s) => { let ((), s) = recv_mpst_e_from_d(s)?; let s = send_mpst_e_to_f((), s)?; endpoint_e(s) }, Branching0fromItoE::Backward(s) => { let ((), s) = recv_mpst_e_from_f(s)?; let s = send_mpst_e_to_d((), s)?; endpoint_e(s) }, }) } fn endpoint_f(s: EndpointF) -> Result<(), Box> { offer_mpst!(s, recv_mpst_f_from_i, { Branching0fromItoF::Done(s) => { close_mpst_multi(s) }, Branching0fromItoF::Forward(s) => { let ((), s) = recv_mpst_f_from_e(s)?; let s = send_mpst_f_to_g((), s)?; endpoint_f(s) }, Branching0fromItoF::Backward(s) => { let ((), s) = recv_mpst_f_from_g(s)?; let s = send_mpst_f_to_e((), s)?; endpoint_f(s) }, }) } fn endpoint_g(s: EndpointG) -> Result<(), Box> { offer_mpst!(s, recv_mpst_g_from_i, { Branching0fromItoG::Done(s) => { close_mpst_multi(s) }, Branching0fromItoG::Forward(s) => { let ((), s) = recv_mpst_g_from_f(s)?; let s = send_mpst_g_to_h((), s)?; endpoint_g(s) }, Branching0fromItoG::Backward(s) => { let ((), s) = recv_mpst_g_from_h(s)?; let s = send_mpst_g_to_f((), s)?; endpoint_g(s) }, }) } fn endpoint_h(s: EndpointH) -> Result<(), Box> { offer_mpst!(s, recv_mpst_h_from_i, { Branching0fromItoH::Done(s) => { close_mpst_multi(s) }, Branching0fromItoH::Forward(s) => { let ((), s) = recv_mpst_h_from_g(s)?; let s = send_mpst_h_to_i((), s)?; endpoint_h(s) }, Branching0fromItoH::Backward(s) => { let ((), s) = recv_mpst_h_from_i(s)?; let s = send_mpst_h_to_g((), s)?; endpoint_h(s) }, }) } fn endpoint_i(s: EndpointI) -> Result<(), Box> { recurs_i(s, 100) } fn recurs_i(s: EndpointI, index: i64) -> Result<(), Box> { match index { 0 => { let s = done_from_i_to_all(s); close_mpst_multi(s) } i if i % 2 == 0 => { let s = forward_from_i_to_all(s); let (_, s) = recv_mpst_i_from_h(s)?; recurs_i(s, i - 1) } i => { let s = backward_from_i_to_all(s); let s = send_mpst_i_to_h((), s)?; recurs_i(s, i - 1) } } } fn main() { let (thread_a, thread_b, thread_c, thread_d, thread_e, thread_f, thread_g, thread_h, thread_i) = fork_mpst( endpoint_a, endpoint_b, endpoint_c, endpoint_d, endpoint_e, endpoint_f, endpoint_g, endpoint_h, endpoint_i, ); 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(); }