#![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::{ broadcast_cancel, bundle_struct_fork_close_multi, create_fn_choose_mpst_cancel_multi_to_all_bundle, create_multiple_normal_role_short, create_recv_mpst_session_bundle, create_send_check_cancel_bundle, offer_cancel_mpst, create_multiple_normal_name_short }; use std::error::Error; // Create the new MeshedChannels for eight participants and the close and fork functions bundle_struct_fork_close_multi!(close_mpst_multi, fork_mpst, MeshedChannels, 9); // Create new roles // normal create_multiple_normal_role_short!(Central, A, B, C, D, E, F, G, H); // Create new names create_multiple_normal_name_short!(Central, A, B, C, D, E, F, G, H); // Create new send functions // A create_send_check_cancel_bundle!( send_mpst_a_to_b, RoleB, 2 | => NameA, MeshedChannels, 9 ); // B create_send_check_cancel_bundle!( send_mpst_b_to_a, RoleA, 2 | send_mpst_b_to_c, RoleC, 3 | => NameB, MeshedChannels, 9 ); // C create_send_check_cancel_bundle!( send_mpst_c_to_b, RoleB, 3 | send_mpst_c_to_d, RoleD, 4 | => NameC, MeshedChannels, 9 ); // D create_send_check_cancel_bundle!( send_mpst_d_to_c, RoleC, 4 | send_mpst_d_to_e, RoleE, 5 | => NameD, MeshedChannels, 9 ); // E create_send_check_cancel_bundle!( send_mpst_e_to_d, RoleD, 5 | send_mpst_e_to_f, RoleF, 6 | => NameE, MeshedChannels, 9 ); // F create_send_check_cancel_bundle!( send_mpst_f_to_e, RoleE, 6 | send_mpst_f_to_g, RoleG, 7 | => NameF, MeshedChannels, 9 ); // G create_send_check_cancel_bundle!( send_mpst_g_to_f, RoleF, 7 | send_mpst_g_to_h, RoleH, 8 | => NameG, MeshedChannels, 9 ); // H create_send_check_cancel_bundle!( send_mpst_h_to_g, RoleG, 8 | => NameH, MeshedChannels, 9 ); // Create new recv functions and related types // A create_recv_mpst_session_bundle!( recv_mpst_a_from_b, RoleB, 2 | recv_mpst_a_from_h, RoleH, 8 | => NameA, MeshedChannels, 9 ); // B create_recv_mpst_session_bundle!( recv_mpst_b_from_a, RoleA, 2 | recv_mpst_b_from_c, RoleC, 3 | recv_mpst_b_from_h, RoleH, 8 | => NameB, MeshedChannels, 9 ); // C create_recv_mpst_session_bundle!( recv_mpst_c_from_b, RoleB, 3 | recv_mpst_c_from_d, RoleD, 4 | recv_mpst_c_from_h, RoleH, 8 | => NameC, MeshedChannels, 9 ); // D create_recv_mpst_session_bundle!( recv_mpst_d_from_c, RoleC, 4 | recv_mpst_d_from_e, RoleE, 5 | recv_mpst_d_from_h, RoleH, 8 | => NameD, MeshedChannels, 9 ); // E create_recv_mpst_session_bundle!( recv_mpst_e_from_d, RoleD, 5 | recv_mpst_e_from_f, RoleF, 6 | recv_mpst_e_from_h, RoleH, 8 | => NameE, MeshedChannels, 9 ); // F create_recv_mpst_session_bundle!( recv_mpst_f_from_e, RoleE, 6 | recv_mpst_f_from_g, RoleG, 7 | recv_mpst_f_from_h, RoleH, 8 | => NameF, MeshedChannels, 9 ); // G create_recv_mpst_session_bundle!( recv_mpst_g_from_f, RoleF, 7 | recv_mpst_g_from_h, RoleH, 8 | => NameG, MeshedChannels, 9 ); // H create_recv_mpst_session_bundle!( recv_mpst_h_from_g, RoleG, 8 | => NameH, MeshedChannels, 9 ); // Types // A enum Branching0fromHtoA { Forward( MeshedChannels< End, Send<(), End>, End, End, End, End, End, RecursAtoH, RoleB>, NameA, >, ), Backward( MeshedChannels< End, Recv<(), End>, End, End, End, End, End, RecursAtoH, RoleB>, NameA, >, ), Done(MeshedChannels), } type RecursAtoH = ::Dual; // B enum Branching0fromHtoB { Forward( MeshedChannels< End, Recv<(), End>, Send<(), End>, End, End, End, End, RecursBtoH, RoleA>>, NameB, >, ), Backward( MeshedChannels< End, Send<(), End>, Recv<(), End>, End, End, End, End, RecursBtoH, RoleC>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoH = ::Dual; // C enum Branching0fromHtoC { Forward( MeshedChannels< End, End, Recv<(), End>, Send<(), End>, End, End, End, RecursCtoH, RoleB>>, NameC, >, ), Backward( MeshedChannels< End, End, Send<(), End>, Recv<(), End>, End, End, End, RecursCtoH, RoleD>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoH = ::Dual; // D enum Branching0fromHtoD { Forward( MeshedChannels< End, End, End, Recv<(), End>, Send<(), End>, End, End, RecursDtoH, RoleC>>, NameD, >, ), Backward( MeshedChannels< End, End, End, Send<(), End>, Recv<(), End>, End, End, RecursDtoH, RoleE>>, NameD, >, ), Done(MeshedChannels), } type RecursDtoH = ::Dual; // E enum Branching0fromHtoE { Forward( MeshedChannels< End, End, End, End, Recv<(), End>, Send<(), End>, End, RecursEtoH, RoleD>>, NameE, >, ), Backward( MeshedChannels< End, End, End, End, Send<(), End>, Recv<(), End>, End, RecursEtoH, RoleF>>, NameE, >, ), Done(MeshedChannels), } type RecursEtoH = ::Dual; // F enum Branching0fromHtoF { Forward( MeshedChannels< End, End, End, End, End, Recv<(), End>, Send<(), End>, RecursFtoH, RoleE>>, NameF, >, ), Backward( MeshedChannels< End, End, End, End, End, Send<(), End>, Recv<(), End>, RecursFtoH, RoleG>>, NameF, >, ), Done(MeshedChannels), } type RecursFtoH = ::Dual; // G enum Branching0fromHtoG { Forward( MeshedChannels< End, End, End, End, End, End, Recv<(), End>, Send<(), RecursGtoH>, RoleF>>, NameG, >, ), Backward( MeshedChannels< End, End, End, End, End, End, Send<(), End>, Recv<(), RecursGtoH>, RoleH>>, NameG, >, ), Done(MeshedChannels), } type RecursGtoH = ::Dual; // H type Choose0fromHtoA = Send<(End, Branching0fromHtoA), End>; type Choose0fromHtoB = Send<(End, Branching0fromHtoB), End>; type Choose0fromHtoC = Send<(End, Branching0fromHtoC), End>; type Choose0fromHtoD = Send<(End, Branching0fromHtoD), End>; type Choose0fromHtoE = Send<(End, Branching0fromHtoE), End>; type Choose0fromHtoF = Send<(End, Branching0fromHtoF), End>; type Choose0fromHtoG = Send<(End, Branching0fromHtoG), End>; type EndpointDoneH = MeshedChannels; type EndpointForwardH = MeshedChannels< End, Choose0fromHtoA, Choose0fromHtoB, Choose0fromHtoC, Choose0fromHtoD, Choose0fromHtoE, Choose0fromHtoF, Recv<(), Choose0fromHtoG>, RoleG, NameH, >; type EndpointBackwardH = MeshedChannels< End, Choose0fromHtoA, Choose0fromHtoB, Choose0fromHtoC, Choose0fromHtoD, Choose0fromHtoE, Choose0fromHtoF, Send<(), Choose0fromHtoG>, RoleG, NameH, >; // Creating the MP sessions type EndpointCentral = MeshedChannels; 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< End, Choose0fromHtoA, Choose0fromHtoB, Choose0fromHtoC, Choose0fromHtoD, Choose0fromHtoE, Choose0fromHtoF, Choose0fromHtoG, RoleBroadcast, NameH, >; create_fn_choose_mpst_cancel_multi_to_all_bundle!( done_from_h_to_all, forward_from_h_to_all, backward_from_h_to_all, => Done, Forward, Backward, => EndpointDoneH, EndpointForwardH, EndpointBackwardH, => Branching0fromHtoA, Branching0fromHtoB, Branching0fromHtoC, Branching0fromHtoD, Branching0fromHtoE, Branching0fromHtoF, Branching0fromHtoG, => NameA, NameB, NameC, NameD, NameE, NameF, NameG, => NameCentral, NameH, MeshedChannels, 9 ); fn endpoint_central(s: EndpointCentral) -> Result<(), Box> { broadcast_cancel!(s, 9) } fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_a_from_h, { Branching0fromHtoA::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoA::Forward(s) => { let s = send_mpst_a_to_b((), s)?; endpoint_a(s) }, Branching0fromHtoA::Backward(s) => { let (_, s) = recv_mpst_a_from_b(s)?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_b_from_h, { Branching0fromHtoB::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoB::Forward(s) => { let ((), s) = recv_mpst_b_from_a(s)?; let s = send_mpst_b_to_c((), s)?; endpoint_b(s) }, Branching0fromHtoB::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_cancel_mpst!(s, recv_mpst_c_from_h, { Branching0fromHtoC::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoC::Forward(s) => { let ((), s) = recv_mpst_c_from_b(s)?; let s = send_mpst_c_to_d((), s)?; endpoint_c(s) }, Branching0fromHtoC::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_cancel_mpst!(s, recv_mpst_d_from_h, { Branching0fromHtoD::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoD::Forward(s) => { let ((), s) = recv_mpst_d_from_c(s)?; let s = send_mpst_d_to_e((), s)?; endpoint_d(s) }, Branching0fromHtoD::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_cancel_mpst!(s, recv_mpst_e_from_h, { Branching0fromHtoE::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoE::Forward(s) => { let ((), s) = recv_mpst_e_from_d(s)?; let s = send_mpst_e_to_f((), s)?; endpoint_e(s) }, Branching0fromHtoE::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_cancel_mpst!(s, recv_mpst_f_from_h, { Branching0fromHtoF::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoF::Forward(s) => { let ((), s) = recv_mpst_f_from_e(s)?; let s = send_mpst_f_to_g((), s)?; endpoint_f(s) }, Branching0fromHtoF::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_cancel_mpst!(s, recv_mpst_g_from_h, { Branching0fromHtoG::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoG::Forward(s) => { let ((), s) = recv_mpst_g_from_f(s)?; let s = send_mpst_g_to_h((), s)?; endpoint_g(s) }, Branching0fromHtoG::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> { recurs_h(s, 100) } fn recurs_h(s: EndpointH, index: i64) -> Result<(), Box> { match index { 0 => { let s = done_from_h_to_all(s)?; close_mpst_multi(s) } i if i % 2 == 0 => { let s = forward_from_h_to_all(s)?; let (_, s) = recv_mpst_h_from_g(s)?; recurs_h(s, i - 1) } i => { let s = backward_from_h_to_all(s)?; let s = send_mpst_h_to_g((), s)?; recurs_h(s, i - 1) } } } fn main() { let ( thread_central, thread_a, thread_b, thread_c, thread_d, thread_e, thread_f, thread_g, thread_h, ) = fork_mpst( endpoint_central, endpoint_a, endpoint_b, endpoint_c, endpoint_d, endpoint_e, endpoint_f, endpoint_g, endpoint_h, ); thread_central.join().unwrap(); 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(); }