#![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::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 seven participants and the close and fork functions bundle_struct_fork_close_multi_cancel!(close_mpst_multi, fork_mpst, MeshedChannels, 7); // Create new roles // normal create_multiple_normal_role_short!(A, B, C, D, E, F, G); // Create new names create_multiple_normal_name_short!(A, B, C, D, E, F, G); // Create new send functions // A create_send_mpst_cancel_bundle!( send_mpst_a_to_b, RoleB, 1 | send_mpst_a_to_c, RoleC, 2 | send_mpst_a_to_d, RoleD, 3 | send_mpst_a_to_e, RoleE, 4 | send_mpst_a_to_f, RoleF, 5 | send_mpst_a_to_g, RoleG, 6 | => NameA, MeshedChannels, 7 ); // B create_send_mpst_cancel_bundle!( send_mpst_b_to_a, RoleA, 1 | send_mpst_b_to_c, RoleC, 2 | send_mpst_b_to_d, RoleD, 3 | send_mpst_b_to_e, RoleE, 4 | send_mpst_b_to_f, RoleF, 5 | send_mpst_b_to_g, RoleG, 6 | => NameB, MeshedChannels, 7 ); // C create_send_mpst_cancel_bundle!( send_mpst_c_to_a, RoleA, 1 | send_mpst_c_to_b, RoleB, 2 | send_mpst_c_to_d, RoleD, 3 | send_mpst_c_to_e, RoleE, 4 | send_mpst_c_to_f, RoleF, 5 | send_mpst_c_to_g, RoleG, 6 | => NameC, MeshedChannels, 7 ); // D create_send_mpst_cancel_bundle!( send_mpst_d_to_a, RoleA, 1 | send_mpst_d_to_b, RoleB, 2 | send_mpst_d_to_c, RoleC, 3 | send_mpst_d_to_e, RoleE, 4 | send_mpst_d_to_f, RoleF, 5 | send_mpst_d_to_g, RoleG, 6 | => NameD, MeshedChannels, 7 ); // E create_send_mpst_cancel_bundle!( send_mpst_e_to_a, RoleA, 1 | send_mpst_e_to_b, RoleB, 2 | send_mpst_e_to_c, RoleC, 3 | send_mpst_e_to_d, RoleD, 4 | send_mpst_e_to_f, RoleF, 5 | send_mpst_e_to_g, RoleG, 6 | => NameE, MeshedChannels, 7 ); // F create_send_mpst_cancel_bundle!( send_mpst_f_to_a, RoleA, 1 | send_mpst_f_to_b, RoleB, 2 | send_mpst_f_to_c, RoleC, 3 | send_mpst_f_to_d, RoleD, 4 | send_mpst_f_to_e, RoleE, 5 | send_mpst_f_to_g, RoleG, 6 | => NameF, MeshedChannels, 7 ); // G create_send_mpst_cancel_bundle!( send_mpst_g_to_a, RoleA, 1 | send_mpst_g_to_b, RoleB, 2 | send_mpst_g_to_c, RoleC, 3 | send_mpst_g_to_d, RoleD, 4 | send_mpst_g_to_e, RoleE, 5 | send_mpst_g_to_f, RoleF, 6 | => NameG, MeshedChannels, 7 ); // Create new recv functions and related types // A create_recv_mpst_session_bundle!( recv_mpst_a_from_b, RoleB, 1 | recv_mpst_a_from_c, RoleC, 2 | recv_mpst_a_from_d, RoleD, 3 | recv_mpst_a_from_e, RoleE, 4 | recv_mpst_a_from_f, RoleF, 5 | recv_mpst_a_from_g, RoleG, 6 | => NameA, MeshedChannels, 7 ); // B create_recv_mpst_session_bundle!( recv_mpst_b_from_a, RoleA, 1 | recv_mpst_b_from_c, RoleC, 2 | recv_mpst_b_from_d, RoleD, 3 | recv_mpst_b_from_e, RoleE, 4 | recv_mpst_b_from_f, RoleF, 5 | recv_mpst_b_from_g, RoleG, 6 | => NameB, MeshedChannels, 7 ); // C create_recv_mpst_session_bundle!( recv_mpst_c_from_a, RoleA, 1 | recv_mpst_c_from_b, RoleB, 2 | recv_mpst_c_from_d, RoleD, 3 | recv_mpst_c_from_e, RoleE, 4 | recv_mpst_c_from_f, RoleF, 5 | recv_mpst_c_from_g, RoleG, 6 | => NameC, MeshedChannels, 7 ); // D create_recv_mpst_session_bundle!( recv_mpst_d_from_a, RoleA, 1 | recv_mpst_d_from_b, RoleB, 2 | recv_mpst_d_from_c, RoleC, 3 | recv_mpst_d_from_e, RoleE, 4 | recv_mpst_d_from_f, RoleF, 5 | recv_mpst_d_from_g, RoleG, 6 | => NameD, MeshedChannels, 7 ); // E create_recv_mpst_session_bundle!( recv_mpst_e_from_a, RoleA, 1 | recv_mpst_e_from_b, RoleB, 2 | recv_mpst_e_from_c, RoleC, 3 | recv_mpst_e_from_d, RoleD, 4 | recv_mpst_e_from_f, RoleF, 5 | recv_mpst_e_from_g, RoleG, 6 | => NameE, MeshedChannels, 7 ); // F create_recv_mpst_session_bundle!( recv_mpst_f_from_a, RoleA, 1 | recv_mpst_f_from_b, RoleB, 2 | recv_mpst_f_from_c, RoleC, 3 | recv_mpst_f_from_d, RoleD, 4 | recv_mpst_f_from_e, RoleE, 5 | recv_mpst_f_from_g, RoleG, 6 | => NameF, MeshedChannels, 7 ); // G create_recv_mpst_session_bundle!( recv_mpst_g_from_a, RoleA, 1 | recv_mpst_g_from_b, RoleB, 2 | recv_mpst_g_from_c, RoleC, 3 | recv_mpst_g_from_d, RoleD, 4 | recv_mpst_g_from_e, RoleE, 5 | recv_mpst_g_from_f, RoleF, 6 | => NameG, MeshedChannels, 7 ); // Types // Send/Recv type RS = Recv<(), Send<(), End>>; type SR = Send<(), Recv<(), End>>; // Roles type R2A = RoleA>; type R2B = RoleB>; type R2C = RoleC>; type R2D = RoleD>; type R2E = RoleE>; type R2F = RoleF>; type R2G = RoleG>; // A enum Branching0fromGtoA { More( MeshedChannels< RS, RS, RS, RS, RS, Recv<(), Send<(), RecursAtoG>>, R2G>>>>>>, NameA, >, ), Done(MeshedChannels), } type RecursAtoG = Recv; // B enum Branching0fromGtoB { More( MeshedChannels< SR, RS, RS, RS, RS, Recv<(), Send<(), RecursBtoG>>, R2G>>>>>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoG = Recv; // C enum Branching0fromGtoC { More( MeshedChannels< SR, SR, RS, RS, RS, Recv<(), Send<(), RecursCtoG>>, R2G>>>>>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoG = Recv; // D enum Branching0fromGtoD { More( MeshedChannels< SR, SR, SR, RS, RS, Recv<(), Send<(), RecursDtoG>>, R2G>>>>>>, NameD, >, ), Done(MeshedChannels), } type RecursDtoG = Recv; // E enum Branching0fromGtoE { More( MeshedChannels< SR, SR, SR, SR, RS, Recv<(), Send<(), RecursEtoG>>, R2G>>>>>>, NameE, >, ), Done(MeshedChannels), } type RecursEtoG = Recv; // F enum Branching0fromGtoF { More( MeshedChannels< SR, SR, SR, SR, SR, Recv<(), Send<(), RecursFtoG>>, R2G>>>>>>, NameF, >, ), Done(MeshedChannels), } type RecursFtoG = Recv; // F type Choose0fromGtoA = Send; type Choose0fromGtoB = Send; type Choose0fromGtoC = Send; type Choose0fromGtoD = Send; type Choose0fromGtoE = Send; type Choose0fromGtoF = Send; type EndpointDoneG = MeshedChannels; type EndpointMoreG = MeshedChannels< Send<(), Recv<(), Choose0fromGtoA>>, Send<(), Recv<(), Choose0fromGtoB>>, Send<(), Recv<(), Choose0fromGtoC>>, Send<(), Recv<(), Choose0fromGtoD>>, Send<(), Recv<(), Choose0fromGtoE>>, Send<(), Recv<(), Choose0fromGtoF>>, R2A>>>>>, NameG, >; // 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< Choose0fromGtoA, Choose0fromGtoB, Choose0fromGtoC, Choose0fromGtoD, Choose0fromGtoE, Choose0fromGtoF, RoleBroadcast, NameG, >; create_fn_choose_mpst_multi_to_all_bundle!( done_from_g_to_all, more_from_g_to_all, => Done, More, => EndpointDoneG, EndpointMoreG, => Branching0fromGtoA, Branching0fromGtoB, Branching0fromGtoC, Branching0fromGtoD, Branching0fromGtoE, Branching0fromGtoF, => NameA, NameB, NameC, NameD, NameE, NameF, => NameG, MeshedChannels, 7 ); fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_mpst!(s, recv_mpst_a_from_g, { Branching0fromGtoA::Done(s) => { close_mpst_multi(s) }, Branching0fromGtoA::More(s) => { let (_, s) = recv_mpst_a_from_g(s)?; let s = send_mpst_a_to_g((), s)?; let (_, s) = recv_mpst_a_from_b(s)?; let s = send_mpst_a_to_b((), s)?; let (_, s) = recv_mpst_a_from_c(s)?; let s = send_mpst_a_to_c((), s)?; let (_, s) = recv_mpst_a_from_d(s)?; let s = send_mpst_a_to_d((), s)?; let (_, s) = recv_mpst_a_from_e(s)?; let s = send_mpst_a_to_e((), s)?; let (_, s) = recv_mpst_a_from_f(s)?; let s = send_mpst_a_to_f((), s)?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_mpst!(s, recv_mpst_b_from_g, { Branching0fromGtoB::Done(s) => { close_mpst_multi(s) }, Branching0fromGtoB::More(s) => { let (_, s) = recv_mpst_b_from_g(s)?; let s = send_mpst_b_to_g((), s)?; let s = send_mpst_b_to_a((), s)?; let (_, s) = recv_mpst_b_from_a(s)?; let (_, s) = recv_mpst_b_from_c(s)?; let s = send_mpst_b_to_c((), s)?; let (_, s) = recv_mpst_b_from_d(s)?; let s = send_mpst_b_to_d((), s)?; let (_, s) = recv_mpst_b_from_e(s)?; let s = send_mpst_b_to_e((), s)?; let (_, s) = recv_mpst_b_from_f(s)?; let s = send_mpst_b_to_f((), s)?; endpoint_b(s) }, }) } fn endpoint_c(s: EndpointC) -> Result<(), Box> { offer_mpst!(s, recv_mpst_c_from_g, { Branching0fromGtoC::Done(s) => { close_mpst_multi(s) }, Branching0fromGtoC::More(s) => { let (_, s) = recv_mpst_c_from_g(s)?; let s = send_mpst_c_to_g((), s)?; let s = send_mpst_c_to_a((), s)?; let (_, s) = recv_mpst_c_from_a(s)?; let s = send_mpst_c_to_b((), s)?; let (_, s) = recv_mpst_c_from_b(s)?; let (_, s) = recv_mpst_c_from_d(s)?; let s = send_mpst_c_to_d((), s)?; let (_, s) = recv_mpst_c_from_e(s)?; let s = send_mpst_c_to_e((), s)?; let (_, s) = recv_mpst_c_from_f(s)?; let s = send_mpst_c_to_f((), s)?; endpoint_c(s) }, }) } fn endpoint_d(s: EndpointD) -> Result<(), Box> { offer_mpst!(s, recv_mpst_d_from_g, { Branching0fromGtoD::Done(s) => { close_mpst_multi(s) }, Branching0fromGtoD::More(s) => { let (_, s) = recv_mpst_d_from_g(s)?; let s = send_mpst_d_to_g((), s)?; let s = send_mpst_d_to_a((), s)?; let (_, s) = recv_mpst_d_from_a(s)?; let s = send_mpst_d_to_b((), s)?; let (_, s) = recv_mpst_d_from_b(s)?; let s = send_mpst_d_to_c((), s)?; let (_, s) = recv_mpst_d_from_c(s)?; let (_, s) = recv_mpst_d_from_e(s)?; let s = send_mpst_d_to_e((), s)?; let (_, s) = recv_mpst_d_from_f(s)?; let s = send_mpst_d_to_f((), s)?; endpoint_d(s) }, }) } fn endpoint_e(s: EndpointE) -> Result<(), Box> { offer_mpst!(s, recv_mpst_e_from_g, { Branching0fromGtoE::Done(s) => { close_mpst_multi(s) }, Branching0fromGtoE::More(s) => { let (_, s) = recv_mpst_e_from_g(s)?; let s = send_mpst_e_to_g((), s)?; let s = send_mpst_e_to_a((), s)?; let (_, s) = recv_mpst_e_from_a(s)?; let s = send_mpst_e_to_b((), s)?; let (_, s) = recv_mpst_e_from_b(s)?; let s = send_mpst_e_to_c((), s)?; let (_, s) = recv_mpst_e_from_c(s)?; let s = send_mpst_e_to_d((), s)?; let (_, s) = recv_mpst_e_from_d(s)?; let (_, s) = recv_mpst_e_from_f(s)?; let s = send_mpst_e_to_f((), s)?; endpoint_e(s) }, }) } fn endpoint_f(s: EndpointF) -> Result<(), Box> { offer_mpst!(s, recv_mpst_f_from_g, { Branching0fromGtoF::Done(s) => { close_mpst_multi(s) }, Branching0fromGtoF::More(s) => { let (_, s) = recv_mpst_f_from_g(s)?; let s = send_mpst_f_to_g((), s)?; let s = send_mpst_f_to_a((), s)?; let (_, s) = recv_mpst_f_from_a(s)?; let s = send_mpst_f_to_b((), s)?; let (_, s) = recv_mpst_f_from_b(s)?; let s = send_mpst_f_to_c((), s)?; let (_, s) = recv_mpst_f_from_c(s)?; let s = send_mpst_f_to_d((), s)?; let (_, s) = recv_mpst_f_from_d(s)?; let s = send_mpst_f_to_e((), s)?; let (_, s) = recv_mpst_f_from_e(s)?; endpoint_f(s) }, }) } fn endpoint_g(s: EndpointG) -> Result<(), Box> { recurs_g(s, 100) } fn recurs_g(s: EndpointG, index: i64) -> Result<(), Box> { match index { 0 => { let s = done_from_g_to_all(s); close_mpst_multi(s) } i => { let s = more_from_g_to_all(s); let s = send_mpst_g_to_a((), s)?; let (_, s) = recv_mpst_g_from_a(s)?; let s = send_mpst_g_to_b((), s)?; let (_, s) = recv_mpst_g_from_b(s)?; let s = send_mpst_g_to_c((), s)?; let (_, s) = recv_mpst_g_from_c(s)?; let s = send_mpst_g_to_d((), s)?; let (_, s) = recv_mpst_g_from_d(s)?; let s = send_mpst_g_to_e((), s)?; let (_, s) = recv_mpst_g_from_e(s)?; let s = send_mpst_g_to_f((), s)?; let (_, s) = recv_mpst_g_from_f(s)?; recurs_g(s, i - 1) } } } fn main() { let (thread_a, thread_b, thread_c, thread_d, thread_e, thread_f, thread_g) = fork_mpst( endpoint_a, endpoint_b, endpoint_c, endpoint_d, endpoint_e, endpoint_f, endpoint_g, ); 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(); }