#![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 ten participants and the close and fork functions bundle_struct_fork_close_multi!(close_mpst_multi, fork_mpst, MeshedChannels, 11); // Create new roles // normal create_multiple_normal_role_short!(Central, A, B, C, D, E, F, G, H, I, J); // Create new names create_multiple_normal_name_short!(Central, A, B, C, D, E, F, G, H, I, J); // Create new send functions // A create_send_check_cancel_bundle!( send_mpst_a_to_b, RoleB, 2 | send_mpst_a_to_c, RoleC, 3 | send_mpst_a_to_d, RoleD, 4 | send_mpst_a_to_e, RoleE, 5 | send_mpst_a_to_f, RoleF, 6 | send_mpst_a_to_g, RoleG, 7 | send_mpst_a_to_h, RoleH, 8 | send_mpst_a_to_i, RoleI, 9 | send_mpst_a_to_j, RoleJ, 10 | => NameA, MeshedChannels, 11 ); // B create_send_check_cancel_bundle!( send_mpst_b_to_a, RoleA, 2 | send_mpst_b_to_c, RoleC, 3 | send_mpst_b_to_d, RoleD, 4 | send_mpst_b_to_e, RoleE, 5 | send_mpst_b_to_f, RoleF, 6 | send_mpst_b_to_g, RoleG, 7 | send_mpst_b_to_h, RoleH, 8 | send_mpst_b_to_i, RoleI, 9 | send_mpst_b_to_j, RoleJ, 10 | => NameB, MeshedChannels, 11 ); // C create_send_check_cancel_bundle!( send_mpst_c_to_a, RoleA, 2 | send_mpst_c_to_b, RoleB, 3 | send_mpst_c_to_d, RoleD, 4 | send_mpst_c_to_e, RoleE, 5 | send_mpst_c_to_f, RoleF, 6 | send_mpst_c_to_g, RoleG, 7 | send_mpst_c_to_h, RoleH, 8 | send_mpst_c_to_i, RoleI, 9 | send_mpst_c_to_j, RoleJ, 10 | => NameC, MeshedChannels, 11 ); // D create_send_check_cancel_bundle!( send_mpst_d_to_a, RoleA, 2 | send_mpst_d_to_b, RoleB, 3 | send_mpst_d_to_c, RoleC, 4 | send_mpst_d_to_e, RoleE, 5 | send_mpst_d_to_f, RoleF, 6 | send_mpst_d_to_g, RoleG, 7 | send_mpst_d_to_h, RoleH, 8 | send_mpst_d_to_i, RoleI, 9 | send_mpst_d_to_j, RoleJ, 10 | => NameD, MeshedChannels, 11 ); // E create_send_check_cancel_bundle!( send_mpst_e_to_a, RoleA, 2 | send_mpst_e_to_b, RoleB, 3 | send_mpst_e_to_c, RoleC, 4 | send_mpst_e_to_d, RoleD, 5 | send_mpst_e_to_f, RoleF, 6 | send_mpst_e_to_g, RoleG, 7 | send_mpst_e_to_h, RoleH, 8 | send_mpst_e_to_i, RoleI, 9 | send_mpst_e_to_j, RoleJ, 10 | => NameE, MeshedChannels, 11 ); // F create_send_check_cancel_bundle!( send_mpst_f_to_a, RoleA, 2 | send_mpst_f_to_b, RoleB, 3 | send_mpst_f_to_c, RoleC, 4 | send_mpst_f_to_d, RoleD, 5 | send_mpst_f_to_e, RoleE, 6 | send_mpst_f_to_g, RoleG, 7 | send_mpst_f_to_h, RoleH, 8 | send_mpst_f_to_i, RoleI, 9 | send_mpst_f_to_j, RoleJ, 10 | => NameF, MeshedChannels, 11 ); // G create_send_check_cancel_bundle!( send_mpst_g_to_a, RoleA, 2 | send_mpst_g_to_b, RoleB, 3 | send_mpst_g_to_c, RoleC, 4 | send_mpst_g_to_d, RoleD, 5 | send_mpst_g_to_e, RoleE, 6 | send_mpst_g_to_f, RoleF, 7 | send_mpst_g_to_h, RoleH, 8 | send_mpst_g_to_i, RoleI, 9 | send_mpst_g_to_j, RoleJ, 10 | => NameG, MeshedChannels, 11 ); // H create_send_check_cancel_bundle!( send_mpst_h_to_a, RoleA, 2 | send_mpst_h_to_b, RoleB, 3 | send_mpst_h_to_c, RoleC, 4 | send_mpst_h_to_d, RoleD, 5 | send_mpst_h_to_e, RoleE, 6 | send_mpst_h_to_f, RoleF, 7 | send_mpst_h_to_g, RoleG, 8 | send_mpst_h_to_i, RoleI, 9 | send_mpst_h_to_j, RoleJ, 10 | => NameH, MeshedChannels, 11 ); // I create_send_check_cancel_bundle!( send_mpst_i_to_a, RoleA, 2 | send_mpst_i_to_b, RoleB, 3 | send_mpst_i_to_c, RoleC, 4 | send_mpst_i_to_d, RoleD, 5 | send_mpst_i_to_e, RoleE, 6 | send_mpst_i_to_f, RoleF, 7 | send_mpst_i_to_g, RoleG, 8 | send_mpst_i_to_h, RoleH, 9 | send_mpst_i_to_j, RoleJ, 10 | => NameI, MeshedChannels, 11 ); // J create_send_check_cancel_bundle!( send_mpst_j_to_a, RoleA, 2 | send_mpst_j_to_b, RoleB, 3 | send_mpst_j_to_c, RoleC, 4 | send_mpst_j_to_d, RoleD, 5 | send_mpst_j_to_e, RoleE, 6 | send_mpst_j_to_f, RoleF, 7 | send_mpst_j_to_g, RoleG, 8 | send_mpst_j_to_h, RoleH, 9 | send_mpst_j_to_i, RoleI, 10 | => NameJ, MeshedChannels, 11 ); // Create new recv functions and related types // A create_recv_mpst_session_bundle!( recv_mpst_a_from_b, RoleB, 2 | recv_mpst_a_from_c, RoleC, 3 | recv_mpst_a_from_d, RoleD, 4 | recv_mpst_a_from_e, RoleE, 5 | recv_mpst_a_from_f, RoleF, 6 | recv_mpst_a_from_g, RoleG, 7 | recv_mpst_a_from_h, RoleH, 8 | recv_mpst_a_from_i, RoleI, 9 | recv_mpst_a_from_j, RoleJ, 10 | => NameA, MeshedChannels, 11 ); // B create_recv_mpst_session_bundle!( recv_mpst_b_from_a, RoleA, 2 | recv_mpst_b_from_c, RoleC, 3 | recv_mpst_b_from_d, RoleD, 4 | recv_mpst_b_from_e, RoleE, 5 | recv_mpst_b_from_f, RoleF, 6 | recv_mpst_b_from_g, RoleG, 7 | recv_mpst_b_from_h, RoleH, 8 | recv_mpst_b_from_i, RoleI, 9 | recv_mpst_b_from_j, RoleJ, 10 | => NameB, MeshedChannels, 11 ); // C create_recv_mpst_session_bundle!( recv_mpst_c_from_a, RoleA, 2 | recv_mpst_c_from_b, RoleB, 3 | recv_mpst_c_from_d, RoleD, 4 | recv_mpst_c_from_e, RoleE, 5 | recv_mpst_c_from_f, RoleF, 6 | recv_mpst_c_from_g, RoleG, 7 | recv_mpst_c_from_h, RoleH, 8 | recv_mpst_c_from_i, RoleI, 9 | recv_mpst_c_from_j, RoleJ, 10 | => NameC, MeshedChannels, 11 ); // D create_recv_mpst_session_bundle!( recv_mpst_d_from_a, RoleA, 2 | recv_mpst_d_from_b, RoleB, 3 | recv_mpst_d_from_c, RoleC, 4 | recv_mpst_d_from_e, RoleE, 5 | recv_mpst_d_from_f, RoleF, 6 | recv_mpst_d_from_g, RoleG, 7 | recv_mpst_d_from_h, RoleH, 8 | recv_mpst_d_from_i, RoleI, 9 | recv_mpst_d_from_j, RoleJ, 10 | => NameD, MeshedChannels, 11 ); // E create_recv_mpst_session_bundle!( recv_mpst_e_from_a, RoleA, 2 | recv_mpst_e_from_b, RoleB, 3 | recv_mpst_e_from_c, RoleC, 4 | recv_mpst_e_from_d, RoleD, 5 | recv_mpst_e_from_f, RoleF, 6 | recv_mpst_e_from_g, RoleG, 7 | recv_mpst_e_from_h, RoleH, 8 | recv_mpst_e_from_i, RoleI, 9 | recv_mpst_e_from_j, RoleJ, 10 | => NameE, MeshedChannels, 11 ); // F create_recv_mpst_session_bundle!( recv_mpst_f_from_a, RoleA, 2 | recv_mpst_f_from_b, RoleB, 3 | recv_mpst_f_from_c, RoleC, 4 | recv_mpst_f_from_d, RoleD, 5 | recv_mpst_f_from_e, RoleE, 6 | recv_mpst_f_from_g, RoleG, 7 | recv_mpst_f_from_h, RoleH, 8 | recv_mpst_f_from_i, RoleI, 9 | recv_mpst_f_from_j, RoleJ, 10 | => NameF, MeshedChannels, 11 ); // G create_recv_mpst_session_bundle!( recv_mpst_g_from_a, RoleA, 2 | recv_mpst_g_from_b, RoleB, 3 | recv_mpst_g_from_c, RoleC, 4 | recv_mpst_g_from_d, RoleD, 5 | recv_mpst_g_from_e, RoleE, 6 | recv_mpst_g_from_f, RoleF, 7 | recv_mpst_g_from_h, RoleH, 8 | recv_mpst_g_from_i, RoleI, 9 | recv_mpst_g_from_j, RoleJ, 10 | => NameG, MeshedChannels, 11 ); // H create_recv_mpst_session_bundle!( recv_mpst_h_from_a, RoleA, 2 | recv_mpst_h_from_b, RoleB, 3 | recv_mpst_h_from_c, RoleC, 4 | recv_mpst_h_from_d, RoleD, 5 | recv_mpst_h_from_e, RoleE, 6 | recv_mpst_h_from_f, RoleF, 7 | recv_mpst_h_from_g, RoleG, 8 | recv_mpst_h_from_i, RoleI, 9 | recv_mpst_h_from_j, RoleJ, 10 | => NameH, MeshedChannels, 11 ); // I create_recv_mpst_session_bundle!( recv_mpst_i_from_a, RoleA, 2 | recv_mpst_i_from_b, RoleB, 3 | recv_mpst_i_from_c, RoleC, 4 | recv_mpst_i_from_d, RoleD, 5 | recv_mpst_i_from_e, RoleE, 6 | recv_mpst_i_from_f, RoleF, 7 | recv_mpst_i_from_g, RoleG, 8 | recv_mpst_i_from_h, RoleH, 9 | recv_mpst_i_from_j, RoleJ, 10 | => NameI, MeshedChannels, 11 ); // J create_recv_mpst_session_bundle!( recv_mpst_j_from_a, RoleA, 2 | recv_mpst_j_from_b, RoleB, 3 | recv_mpst_j_from_c, RoleC, 4 | recv_mpst_j_from_d, RoleD, 5 | recv_mpst_j_from_e, RoleE, 6 | recv_mpst_j_from_f, RoleF, 7 | recv_mpst_j_from_g, RoleG, 8 | recv_mpst_j_from_h, RoleH, 9 | recv_mpst_j_from_i, RoleI, 10 | => NameJ, MeshedChannels, 11 ); // 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>; type R2I = RoleI>; type R2J = RoleJ>; // A enum Branching0fromJtoA { More( MeshedChannels< End, RS, RS, RS, RS, RS, RS, RS, RS, Recv<(), Send<(), RecursAtoJ>>, R2J>>>>>>>>>, NameA, >, ), Done(MeshedChannels), } type RecursAtoJ = Recv<(End, Branching0fromJtoA), End>; // B enum Branching0fromJtoB { More( MeshedChannels< End, SR, RS, RS, RS, RS, RS, RS, RS, Recv<(), Send<(), RecursBtoJ>>, R2J>>>>>>>>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoJ = Recv<(End, Branching0fromJtoB), End>; // C enum Branching0fromJtoC { More( MeshedChannels< End, SR, SR, RS, RS, RS, RS, RS, RS, Recv<(), Send<(), RecursCtoJ>>, R2J>>>>>>>>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoJ = Recv<(End, Branching0fromJtoC), End>; // D enum Branching0fromJtoD { More( MeshedChannels< End, SR, SR, SR, RS, RS, RS, RS, RS, Recv<(), Send<(), RecursDtoJ>>, R2J>>>>>>>>>, NameD, >, ), Done(MeshedChannels), } type RecursDtoJ = Recv<(End, Branching0fromJtoD), End>; // E enum Branching0fromJtoE { More( MeshedChannels< End, SR, SR, SR, SR, RS, RS, RS, RS, Recv<(), Send<(), RecursEtoJ>>, R2J>>>>>>>>>, NameE, >, ), Done(MeshedChannels), } type RecursEtoJ = Recv<(End, Branching0fromJtoE), End>; // F enum Branching0fromJtoF { More( MeshedChannels< End, SR, SR, SR, SR, SR, RS, RS, RS, Recv<(), Send<(), RecursFtoJ>>, R2J>>>>>>>>>, NameF, >, ), Done(MeshedChannels), } type RecursFtoJ = Recv<(End, Branching0fromJtoF), End>; // G enum Branching0fromJtoG { More( MeshedChannels< End, SR, SR, SR, SR, SR, SR, RS, RS, Recv<(), Send<(), RecursGtoJ>>, R2J>>>>>>>>>, NameG, >, ), Done(MeshedChannels), } type RecursGtoJ = Recv<(End, Branching0fromJtoG), End>; // H enum Branching0fromJtoH { More( MeshedChannels< End, SR, SR, SR, SR, SR, SR, SR, RS, Recv<(), Send<(), RecursHtoJ>>, R2J>>>>>>>>>, NameH, >, ), Done(MeshedChannels), } type RecursHtoJ = Recv<(End, Branching0fromJtoH), End>; // I enum Branching0fromJtoI { More( MeshedChannels< End, SR, SR, SR, SR, SR, SR, SR, SR, Recv<(), Send<(), RecursItoJ>>, R2J>>>>>>>>>, NameI, >, ), Done(MeshedChannels), } type RecursItoJ = Recv<(End, Branching0fromJtoI), End>; // J type Choose0fromJtoA = ::Dual; type Choose0fromJtoB = ::Dual; type Choose0fromJtoC = ::Dual; type Choose0fromJtoD = ::Dual; type Choose0fromJtoE = ::Dual; type Choose0fromJtoF = ::Dual; type Choose0fromJtoG = ::Dual; type Choose0fromJtoH = ::Dual; type Choose0fromJtoI = ::Dual; type EndpointDoneJ = MeshedChannels; type EndpointMoreJ = MeshedChannels< End, Send<(), Recv<(), Choose0fromJtoA>>, Send<(), Recv<(), Choose0fromJtoB>>, Send<(), Recv<(), Choose0fromJtoC>>, Send<(), Recv<(), Choose0fromJtoD>>, Send<(), Recv<(), Choose0fromJtoE>>, Send<(), Recv<(), Choose0fromJtoF>>, Send<(), Recv<(), Choose0fromJtoG>>, Send<(), Recv<(), Choose0fromJtoH>>, Send<(), Recv<(), Choose0fromJtoI>>, R2A>>>>>>>>, NameJ, >; // Creating the MP sessions type EndpointCentral = MeshedChannels< End, End, End, End, End, End, End, End, End, End, RoleEnd, RoleCentral, >; type EndpointA = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursAtoJ, RoleJ, NameA, >; type EndpointB = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursBtoJ, RoleJ, NameB, >; type EndpointC = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursCtoJ, RoleJ, NameC, >; type EndpointD = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursDtoJ, RoleJ, NameD, >; type EndpointE = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursEtoJ, RoleJ, NameE, >; type EndpointF = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursFtoJ, RoleJ, NameF, >; type EndpointG = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursGtoJ, RoleJ, NameG, >; type EndpointH = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursHtoJ, RoleJ, NameH, >; type EndpointI = MeshedChannels< End, End, End, End, End, End, End, End, End, RecursItoJ, RoleJ, NameI, >; type EndpointJ = MeshedChannels< End, Choose0fromJtoA, Choose0fromJtoB, Choose0fromJtoC, Choose0fromJtoD, Choose0fromJtoE, Choose0fromJtoF, Choose0fromJtoG, Choose0fromJtoH, Choose0fromJtoI, RoleBroadcast, NameJ, >; create_fn_choose_mpst_cancel_multi_to_all_bundle!( done_from_j_to_all, more_from_j_to_all, => Done, More, => EndpointDoneJ, EndpointMoreJ, => Branching0fromJtoA, Branching0fromJtoB, Branching0fromJtoC, Branching0fromJtoD, Branching0fromJtoE, Branching0fromJtoF, Branching0fromJtoG, Branching0fromJtoH, Branching0fromJtoI, => NameA, NameB, NameC, NameD, NameE, NameF, NameG, NameH, NameI, => NameCentral, NameJ, MeshedChannels, 11 ); fn endpoint_central(s: EndpointCentral) -> Result<(), Box> { broadcast_cancel!(s, 11) } fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_a_from_j, { Branching0fromJtoA::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoA::More(s) => { let (_, s) = recv_mpst_a_from_j(s)?; let s = send_mpst_a_to_j((), 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)?; let (_, s) = recv_mpst_a_from_h(s)?; let s = send_mpst_a_to_h((), s)?; let (_, s) = recv_mpst_a_from_i(s)?; let s = send_mpst_a_to_i((), s)?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_b_from_j, { Branching0fromJtoB::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoB::More(s) => { let (_, s) = recv_mpst_b_from_j(s)?; let s = send_mpst_b_to_j((), 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)?; let (_, s) = recv_mpst_b_from_h(s)?; let s = send_mpst_b_to_h((), s)?; let (_, s) = recv_mpst_b_from_i(s)?; let s = send_mpst_b_to_i((), s)?; endpoint_b(s) }, }) } fn endpoint_c(s: EndpointC) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_c_from_j, { Branching0fromJtoC::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoC::More(s) => { let (_, s) = recv_mpst_c_from_j(s)?; let s = send_mpst_c_to_j((), 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)?; let (_, s) = recv_mpst_c_from_h(s)?; let s = send_mpst_c_to_h((), s)?; let (_, s) = recv_mpst_c_from_i(s)?; let s = send_mpst_c_to_i((), s)?; endpoint_c(s) }, }) } fn endpoint_d(s: EndpointD) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_d_from_j, { Branching0fromJtoD::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoD::More(s) => { let (_, s) = recv_mpst_d_from_j(s)?; let s = send_mpst_d_to_j((), 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)?; let (_, s) = recv_mpst_d_from_h(s)?; let s = send_mpst_d_to_h((), s)?; let (_, s) = recv_mpst_d_from_i(s)?; let s = send_mpst_d_to_i((), s)?; endpoint_d(s) }, }) } fn endpoint_e(s: EndpointE) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_e_from_j, { Branching0fromJtoE::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoE::More(s) => { let (_, s) = recv_mpst_e_from_j(s)?; let s = send_mpst_e_to_j((), 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)?; let (_, s) = recv_mpst_e_from_h(s)?; let s = send_mpst_e_to_h((), s)?; let (_, s) = recv_mpst_e_from_i(s)?; let s = send_mpst_e_to_i((), s)?; endpoint_e(s) }, }) } fn endpoint_f(s: EndpointF) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_f_from_j, { Branching0fromJtoF::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoF::More(s) => { let (_, s) = recv_mpst_f_from_j(s)?; let s = send_mpst_f_to_j((), 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)?; let (_, s) = recv_mpst_f_from_h(s)?; let s = send_mpst_f_to_h((), s)?; let (_, s) = recv_mpst_f_from_i(s)?; let s = send_mpst_f_to_i((), s)?; endpoint_f(s) }, }) } fn endpoint_g(s: EndpointG) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_g_from_j, { Branching0fromJtoG::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoG::More(s) => { let (_, s) = recv_mpst_g_from_j(s)?; let s = send_mpst_g_to_j((), 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)?; let (_, s) = recv_mpst_g_from_h(s)?; let s = send_mpst_g_to_h((), s)?; let (_, s) = recv_mpst_g_from_i(s)?; let s = send_mpst_g_to_i((), s)?; endpoint_g(s) }, }) } fn endpoint_h(s: EndpointH) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_h_from_j, { Branching0fromJtoH::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoH::More(s) => { let (_, s) = recv_mpst_h_from_j(s)?; let s = send_mpst_h_to_j((), 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)?; let (_, s) = recv_mpst_h_from_i(s)?; let s = send_mpst_h_to_i((), s)?; endpoint_h(s) }, }) } fn endpoint_i(s: EndpointI) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_i_from_j, { Branching0fromJtoI::Done(s) => { close_mpst_multi(s) }, Branching0fromJtoI::More(s) => { let (_, s) = recv_mpst_i_from_j(s)?; let s = send_mpst_i_to_j((), s)?; let s = send_mpst_i_to_a((), s)?; let (_, s) = recv_mpst_i_from_a(s)?; let s = send_mpst_i_to_b((), s)?; let (_, s) = recv_mpst_i_from_b(s)?; let s = send_mpst_i_to_c((), s)?; let (_, s) = recv_mpst_i_from_c(s)?; let s = send_mpst_i_to_d((), s)?; let (_, s) = recv_mpst_i_from_d(s)?; let s = send_mpst_i_to_e((), s)?; let (_, s) = recv_mpst_i_from_e(s)?; let s = send_mpst_i_to_f((), s)?; let (_, s) = recv_mpst_i_from_f(s)?; let s = send_mpst_i_to_g((), s)?; let (_, s) = recv_mpst_i_from_g(s)?; let s = send_mpst_i_to_h((), s)?; let (_, s) = recv_mpst_i_from_h(s)?; endpoint_i(s) }, }) } fn endpoint_j(s: EndpointJ) -> Result<(), Box> { recurs_j(s, 100) } fn recurs_j(s: EndpointJ, index: i64) -> Result<(), Box> { match index { 0 => { let s = done_from_j_to_all(s)?; close_mpst_multi(s) } i => { let s = more_from_j_to_all(s)?; let s = send_mpst_j_to_a((), s)?; let (_, s) = recv_mpst_j_from_a(s)?; let s = send_mpst_j_to_b((), s)?; let (_, s) = recv_mpst_j_from_b(s)?; let s = send_mpst_j_to_c((), s)?; let (_, s) = recv_mpst_j_from_c(s)?; let s = send_mpst_j_to_d((), s)?; let (_, s) = recv_mpst_j_from_d(s)?; let s = send_mpst_j_to_e((), s)?; let (_, s) = recv_mpst_j_from_e(s)?; let s = send_mpst_j_to_f((), s)?; let (_, s) = recv_mpst_j_from_f(s)?; let s = send_mpst_j_to_g((), s)?; let (_, s) = recv_mpst_j_from_g(s)?; let s = send_mpst_j_to_h((), s)?; let (_, s) = recv_mpst_j_from_h(s)?; let s = send_mpst_j_to_i((), s)?; let (_, s) = recv_mpst_j_from_i(s)?; recurs_j(s, i - 1) } } } fn main() { let ( thread_central, thread_a, thread_b, thread_c, thread_d, thread_e, thread_f, thread_g, thread_h, thread_i, thread_j, ) = fork_mpst( endpoint_central, endpoint_a, endpoint_b, endpoint_c, endpoint_d, endpoint_e, endpoint_f, endpoint_g, endpoint_h, endpoint_i, endpoint_j, ); 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(); thread_i.join().unwrap(); thread_j.join().unwrap(); }