#![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 six participants and the close and fork functions bundle_struct_fork_close_multi_cancel!(close_mpst_multi, fork_mpst, MeshedChannels, 6); // Create new roles // normal create_multiple_normal_role_short!(A, B, C, D, E, F); // Create new names create_multiple_normal_name_short!(A, B, C, D, E, F); // Create new send functions // A create_send_mpst_cancel_bundle!( send_mpst_a_to_b, RoleB, 1 | => NameA, MeshedChannels, 6 ); // B create_send_mpst_cancel_bundle!( send_mpst_b_to_a, RoleA, 1 | send_mpst_b_to_c, RoleC, 2 | => NameB, MeshedChannels, 6 ); // C create_send_mpst_cancel_bundle!( send_mpst_c_to_b, RoleB, 2 | send_mpst_c_to_d, RoleD, 3 | => NameC, MeshedChannels, 6 ); // D create_send_mpst_cancel_bundle!( send_mpst_d_to_c, RoleC, 3 | send_mpst_d_to_e, RoleE, 4 | => NameD, MeshedChannels, 6 ); // E create_send_mpst_cancel_bundle!( send_mpst_e_to_d, RoleD, 4 | send_mpst_e_to_f, RoleF, 5 | => NameE, MeshedChannels, 6 ); // F create_send_mpst_cancel_bundle!( send_mpst_f_to_e, RoleE, 5 | => NameF, MeshedChannels, 6 ); // Create new recv functions and related types // A create_recv_mpst_session_bundle!( recv_mpst_a_from_b, RoleB, 1 | recv_mpst_a_from_f, RoleF, 5 | => NameA, MeshedChannels, 6 ); // B create_recv_mpst_session_bundle!( recv_mpst_b_from_a, RoleA, 1 | recv_mpst_b_from_c, RoleC, 2 | recv_mpst_b_from_f, RoleF, 5 | => NameB, MeshedChannels, 6 ); // C create_recv_mpst_session_bundle!( recv_mpst_c_from_b, RoleB, 2 | recv_mpst_c_from_d, RoleD, 3 | recv_mpst_c_from_f, RoleF, 5 | => NameC, MeshedChannels, 6 ); // D create_recv_mpst_session_bundle!( recv_mpst_d_from_c, RoleC, 3 | recv_mpst_d_from_e, RoleE, 4 | recv_mpst_d_from_f, RoleF, 5 | => NameD, MeshedChannels, 6 ); // E create_recv_mpst_session_bundle!( recv_mpst_e_from_d, RoleD, 4 | recv_mpst_e_from_f, RoleF, 5 | => NameE, MeshedChannels, 6 ); // F create_recv_mpst_session_bundle!( recv_mpst_f_from_e, RoleE, 5 | => NameF, MeshedChannels, 6 ); // Types // A enum Branching0fromFtoA { Forward(MeshedChannels, End, End, End, RecursAtoF, RoleB>, NameA>), Backward( MeshedChannels, End, End, End, RecursAtoF, RoleB>, NameA>, ), Done(MeshedChannels), } type RecursAtoF = ::Dual; // B enum Branching0fromFtoB { Forward( MeshedChannels< Recv<(), End>, Send<(), End>, End, End, RecursBtoF, RoleA>>, NameB, >, ), Backward( MeshedChannels< Send<(), End>, Recv<(), End>, End, End, RecursBtoF, RoleC>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoF = ::Dual; // C enum Branching0fromFtoC { Forward( MeshedChannels< End, Recv<(), End>, Send<(), End>, End, RecursCtoF, RoleB>>, NameC, >, ), Backward( MeshedChannels< End, Send<(), End>, Recv<(), End>, End, RecursCtoF, RoleD>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoF = ::Dual; // D enum Branching0fromFtoD { Forward( MeshedChannels< End, End, Recv<(), End>, Send<(), End>, RecursDtoF, RoleC>>, NameD, >, ), Backward( MeshedChannels< End, End, Send<(), End>, Recv<(), End>, RecursDtoF, RoleE>>, NameD, >, ), Done(MeshedChannels), } type RecursDtoF = ::Dual; // E enum Branching0fromFtoE { Forward( MeshedChannels< End, End, End, Recv<(), End>, Send<(), RecursEtoF>, RoleD>>, NameE, >, ), Backward( MeshedChannels< End, End, End, Send<(), End>, Recv<(), RecursEtoF>, RoleF>>, NameE, >, ), Done(MeshedChannels), } type RecursEtoF = ::Dual; // F type Choose0fromFtoA = Send; type Choose0fromFtoB = Send; type Choose0fromFtoC = Send; type Choose0fromFtoD = Send; type Choose0fromFtoE = Send; type EndpointDoneF = MeshedChannels; type EndpointForwardF = MeshedChannels< Choose0fromFtoA, Choose0fromFtoB, Choose0fromFtoC, Choose0fromFtoD, Recv<(), Choose0fromFtoE>, RoleE, NameF, >; type EndpointBackwardF = MeshedChannels< Choose0fromFtoA, Choose0fromFtoB, Choose0fromFtoC, Choose0fromFtoD, Send<(), Choose0fromFtoE>, RoleE, NameF, >; // 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< Choose0fromFtoA, Choose0fromFtoB, Choose0fromFtoC, Choose0fromFtoD, Choose0fromFtoE, RoleBroadcast, NameF, >; create_fn_choose_mpst_multi_to_all_bundle!( done_from_f_to_all, forward_from_f_to_all, backward_from_f_to_all, => Done, Forward, Backward, => EndpointDoneF, EndpointForwardF, EndpointBackwardF, => Branching0fromFtoA, Branching0fromFtoB, Branching0fromFtoC, Branching0fromFtoD, Branching0fromFtoE, => NameA, NameB, NameC, NameD, NameE, => NameF, MeshedChannels, 6 ); fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_mpst!(s, recv_mpst_a_from_f, { Branching0fromFtoA::Done(s) => { close_mpst_multi(s) }, Branching0fromFtoA::Forward(s) => { let s = send_mpst_a_to_b((), s)?; endpoint_a(s) }, Branching0fromFtoA::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_f, { Branching0fromFtoB::Done(s) => { close_mpst_multi(s) }, Branching0fromFtoB::Forward(s) => { let ((), s) = recv_mpst_b_from_a(s)?; let s = send_mpst_b_to_c((), s)?; endpoint_b(s) }, Branching0fromFtoB::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_f, { Branching0fromFtoC::Done(s) => { close_mpst_multi(s) }, Branching0fromFtoC::Forward(s) => { let ((), s) = recv_mpst_c_from_b(s)?; let s = send_mpst_c_to_d((), s)?; endpoint_c(s) }, Branching0fromFtoC::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_f, { Branching0fromFtoD::Done(s) => { close_mpst_multi(s) }, Branching0fromFtoD::Forward(s) => { let ((), s) = recv_mpst_d_from_c(s)?; let s = send_mpst_d_to_e((), s)?; endpoint_d(s) }, Branching0fromFtoD::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_f, { Branching0fromFtoE::Done(s) => { close_mpst_multi(s) }, Branching0fromFtoE::Forward(s) => { let ((), s) = recv_mpst_e_from_d(s)?; let s = send_mpst_e_to_f((), s)?; endpoint_e(s) }, Branching0fromFtoE::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> { recurs_f(s, 100) } fn recurs_f(s: EndpointF, index: i64) -> Result<(), Box> { match index { 0 => { let s = done_from_f_to_all(s); close_mpst_multi(s) } i if i % 2 == 0 => { let s = forward_from_f_to_all(s); let (_, s) = recv_mpst_f_from_e(s)?; recurs_f(s, i - 1) } i => { let s = backward_from_f_to_all(s); let s = send_mpst_f_to_e((), s)?; recurs_f(s, i - 1) } } } fn main() { let (thread_a, thread_b, thread_c, thread_d, thread_e, thread_f) = fork_mpst( endpoint_a, endpoint_b, endpoint_c, endpoint_d, endpoint_e, endpoint_f, ); thread_a.join().unwrap(); thread_b.join().unwrap(); thread_c.join().unwrap(); thread_d.join().unwrap(); thread_e.join().unwrap(); thread_f.join().unwrap(); }