#![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 eight participants and the close and fork functions bundle_struct_fork_close_multi_cancel!(close_mpst_multi, fork_mpst, MeshedChannels, 8); // Create new roles // normal create_multiple_normal_role_short!(A, B, C, D, E, F, G, H); // Create new names create_multiple_normal_name_short!(A, B, C, D, E, F, G, H); // 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 | send_mpst_a_to_h, RoleH, 7 | => NameA, MeshedChannels, 8 ); // 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 | send_mpst_b_to_h, RoleH, 7 | => NameB, MeshedChannels, 8 ); // 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 | send_mpst_c_to_h, RoleH, 7 | => NameC, MeshedChannels, 8 ); // 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 | send_mpst_d_to_h, RoleH, 7 | => NameD, MeshedChannels, 8 ); // 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 | send_mpst_e_to_h, RoleH, 7 | => NameE, MeshedChannels, 8 ); // 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 | send_mpst_f_to_h, RoleH, 7 | => NameF, MeshedChannels, 8 ); // 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 | send_mpst_g_to_h, RoleH, 7 | => NameG, MeshedChannels, 8 ); // H create_send_mpst_cancel_bundle!( send_mpst_h_to_a, RoleA, 1 | send_mpst_h_to_b, RoleB, 2 | send_mpst_h_to_c, RoleC, 3 | send_mpst_h_to_d, RoleD, 4 | send_mpst_h_to_e, RoleE, 5 | send_mpst_h_to_f, RoleF, 6 | send_mpst_h_to_g, RoleG, 7 | => NameH, MeshedChannels, 8 ); // 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 | recv_mpst_a_from_h, RoleH, 7 | => NameA, MeshedChannels, 8 ); // 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 | recv_mpst_b_from_h, RoleH, 7 | => NameB, MeshedChannels, 8 ); // 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 | recv_mpst_c_from_h, RoleH, 7 | => NameC, MeshedChannels, 8 ); // 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 | recv_mpst_d_from_h, RoleH, 7 | => NameD, MeshedChannels, 8 ); // 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 | recv_mpst_e_from_h, RoleH, 7 | => NameE, MeshedChannels, 8 ); // 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 | recv_mpst_f_from_h, RoleH, 7 | => NameF, MeshedChannels, 8 ); // 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 | recv_mpst_g_from_h, RoleH, 7 | => NameG, MeshedChannels, 8 ); // H create_recv_mpst_session_bundle!( recv_mpst_h_from_a, RoleA, 1 | recv_mpst_h_from_b, RoleB, 2 | recv_mpst_h_from_c, RoleC, 3 | recv_mpst_h_from_d, RoleD, 4 | recv_mpst_h_from_e, RoleE, 5 | recv_mpst_h_from_f, RoleF, 6 | recv_mpst_h_from_g, RoleG, 7 | => NameH, MeshedChannels, 8 ); // 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>; type R2H = RoleH>; // A enum Branching0fromHtoA { More( MeshedChannels< RS, RS, RS, RS, RS, RS, Recv<(), Send<(), RecursAtoH>>, R2H>>>>>>>, NameA, >, ), Done(MeshedChannels), } type RecursAtoH = Recv; // B enum Branching0fromHtoB { More( MeshedChannels< SR, RS, RS, RS, RS, RS, Recv<(), Send<(), RecursBtoH>>, R2H>>>>>>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoH = Recv; // C enum Branching0fromHtoC { More( MeshedChannels< SR, SR, RS, RS, RS, RS, Recv<(), Send<(), RecursCtoH>>, R2H>>>>>>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoH = Recv; // D enum Branching0fromHtoD { More( MeshedChannels< SR, SR, SR, RS, RS, RS, Recv<(), Send<(), RecursDtoH>>, R2H>>>>>>>, NameD, >, ), Done(MeshedChannels), } type RecursDtoH = Recv; // E enum Branching0fromHtoE { More( MeshedChannels< SR, SR, SR, SR, RS, RS, Recv<(), Send<(), RecursEtoH>>, R2H>>>>>>>, NameE, >, ), Done(MeshedChannels), } type RecursEtoH = Recv; // F enum Branching0fromHtoF { More( MeshedChannels< SR, SR, SR, SR, SR, RS, Recv<(), Send<(), RecursFtoH>>, R2H>>>>>>>, NameF, >, ), Done(MeshedChannels), } type RecursFtoH = Recv; // G enum Branching0fromHtoG { More( MeshedChannels< SR, SR, SR, SR, SR, SR, Recv<(), Send<(), RecursGtoH>>, R2H>>>>>>>, NameG, >, ), Done(MeshedChannels), } type RecursGtoH = Recv; // H type Choose0fromHtoA = Send; type Choose0fromHtoB = Send; type Choose0fromHtoC = Send; type Choose0fromHtoD = Send; type Choose0fromHtoE = Send; type Choose0fromHtoF = Send; type Choose0fromHtoG = Send; type EndpointDoneH = MeshedChannels; type EndpointMoreH = MeshedChannels< Send<(), Recv<(), Choose0fromHtoA>>, Send<(), Recv<(), Choose0fromHtoB>>, Send<(), Recv<(), Choose0fromHtoC>>, Send<(), Recv<(), Choose0fromHtoD>>, Send<(), Recv<(), Choose0fromHtoE>>, Send<(), Recv<(), Choose0fromHtoF>>, Send<(), Recv<(), Choose0fromHtoG>>, R2A>>>>>>, NameH, >; // 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< Choose0fromHtoA, Choose0fromHtoB, Choose0fromHtoC, Choose0fromHtoD, Choose0fromHtoE, Choose0fromHtoF, Choose0fromHtoG, RoleBroadcast, NameH, >; create_fn_choose_mpst_multi_to_all_bundle!( done_from_h_to_all, more_from_h_to_all, => Done, More, => EndpointDoneH, EndpointMoreH, => Branching0fromHtoA, Branching0fromHtoB, Branching0fromHtoC, Branching0fromHtoD, Branching0fromHtoE, Branching0fromHtoF, Branching0fromHtoG, => NameA, NameB, NameC, NameD, NameE, NameF, NameG, => NameH, MeshedChannels, 8 ); fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_mpst!(s, recv_mpst_a_from_h, { Branching0fromHtoA::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoA::More(s) => { let (_, s) = recv_mpst_a_from_h(s)?; let s = send_mpst_a_to_h((), 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)?; let (_, s) = recv_mpst_a_from_g(s)?; let s = send_mpst_a_to_g((), s)?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_mpst!(s, recv_mpst_b_from_h, { Branching0fromHtoB::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoB::More(s) => { let (_, s) = recv_mpst_b_from_h(s)?; let s = send_mpst_b_to_h((), 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)?; let (_, s) = recv_mpst_b_from_g(s)?; let s = send_mpst_b_to_g((), s)?; endpoint_b(s) }, }) } fn endpoint_c(s: EndpointC) -> Result<(), Box> { offer_mpst!(s, recv_mpst_c_from_h, { Branching0fromHtoC::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoC::More(s) => { let (_, s) = recv_mpst_c_from_h(s)?; let s = send_mpst_c_to_h((), 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)?; let (_, s) = recv_mpst_c_from_g(s)?; let s = send_mpst_c_to_g((), s)?; endpoint_c(s) }, }) } fn endpoint_d(s: EndpointD) -> Result<(), Box> { offer_mpst!(s, recv_mpst_d_from_h, { Branching0fromHtoD::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoD::More(s) => { let (_, s) = recv_mpst_d_from_h(s)?; let s = send_mpst_d_to_h((), 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)?; let (_, s) = recv_mpst_d_from_g(s)?; let s = send_mpst_d_to_g((), s)?; endpoint_d(s) }, }) } fn endpoint_e(s: EndpointE) -> Result<(), Box> { offer_mpst!(s, recv_mpst_e_from_h, { Branching0fromHtoE::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoE::More(s) => { let (_, s) = recv_mpst_e_from_h(s)?; let s = send_mpst_e_to_h((), 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)?; let (_, s) = recv_mpst_e_from_g(s)?; let s = send_mpst_e_to_g((), s)?; endpoint_e(s) }, }) } fn endpoint_f(s: EndpointF) -> Result<(), Box> { offer_mpst!(s, recv_mpst_f_from_h, { Branching0fromHtoF::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoF::More(s) => { let (_, s) = recv_mpst_f_from_h(s)?; let s = send_mpst_f_to_h((), 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)?; let (_, s) = recv_mpst_f_from_g(s)?; let s = send_mpst_f_to_g((), s)?; endpoint_f(s) }, }) } fn endpoint_g(s: EndpointG) -> Result<(), Box> { offer_mpst!(s, recv_mpst_g_from_h, { Branching0fromHtoG::Done(s) => { close_mpst_multi(s) }, Branching0fromHtoG::More(s) => { let (_, s) = recv_mpst_g_from_h(s)?; let s = send_mpst_g_to_h((), 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)?; 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 => { let s = more_from_h_to_all(s); let s = send_mpst_h_to_a((), s)?; let (_, s) = recv_mpst_h_from_a(s)?; let s = send_mpst_h_to_b((), s)?; let (_, s) = recv_mpst_h_from_b(s)?; let s = send_mpst_h_to_c((), s)?; let (_, s) = recv_mpst_h_from_c(s)?; let s = send_mpst_h_to_d((), s)?; let (_, s) = recv_mpst_h_from_d(s)?; let s = send_mpst_h_to_e((), s)?; let (_, s) = recv_mpst_h_from_e(s)?; let s = send_mpst_h_to_f((), s)?; let (_, s) = recv_mpst_h_from_f(s)?; let s = send_mpst_h_to_g((), s)?; let (_, s) = recv_mpst_h_from_g(s)?; recurs_h(s, i - 1) } } } fn main() { let (thread_a, thread_b, thread_c, thread_d, thread_e, thread_f, thread_g, thread_h) = fork_mpst( endpoint_a, endpoint_b, endpoint_c, endpoint_d, endpoint_e, endpoint_f, endpoint_g, endpoint_h, ); 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(); }