#![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 four participants and the close and fork functions bundle_struct_fork_close_multi_cancel!(close_mpst_multi, fork_mpst, MeshedChannels, 4); // Create new roles // normal create_multiple_normal_role_short!(A, B, C, D); // Create new names create_multiple_normal_name_short!(A, B, C, D); // 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 | => NameA, MeshedChannels, 4 ); // 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 | => NameB, MeshedChannels, 4 ); // 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 | => NameC, MeshedChannels, 4 ); // 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 | => NameD, MeshedChannels, 4 ); // 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 | => NameA, MeshedChannels, 4 ); // 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 | => NameB, MeshedChannels, 4 ); // 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 | => NameC, MeshedChannels, 4 ); // 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 | => NameD, MeshedChannels, 4 ); // 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>; // A enum Branching0fromDtoA { More( MeshedChannels< RS, RS, Recv<(), Send<(), RecursAtoD>>, R2D>>>, NameA, >, ), Done(MeshedChannels), } type RecursAtoD = Recv; // B enum Branching0fromDtoB { More( MeshedChannels< SR, RS, Recv<(), Send<(), RecursBtoD>>, R2D>>>, NameB, >, ), Done(MeshedChannels), } type RecursBtoD = Recv; // C enum Branching0fromDtoC { More( MeshedChannels< SR, SR, Recv<(), Send<(), RecursCtoD>>, R2D>>>, NameC, >, ), Done(MeshedChannels), } type RecursCtoD = Recv; // D type Choose0fromDtoA = Send; type Choose0fromDtoB = Send; type Choose0fromDtoC = Send; type EndpointDoneD = MeshedChannels; type EndpointMoreD = MeshedChannels< Send<(), Recv<(), Choose0fromDtoA>>, Send<(), Recv<(), Choose0fromDtoB>>, Send<(), Recv<(), Choose0fromDtoC>>, R2A>>, NameD, >; // Creating the MP sessions type EndpointA = MeshedChannels, NameA>; type EndpointB = MeshedChannels, NameB>; type EndpointC = MeshedChannels, NameC>; type EndpointD = MeshedChannels; create_fn_choose_mpst_multi_to_all_bundle!( done_from_d_to_all, more_from_d_to_all, => Done, More, => EndpointDoneD, EndpointMoreD, => Branching0fromDtoA, Branching0fromDtoB, Branching0fromDtoC, => NameA, NameB, NameC, => NameD, MeshedChannels, 4 ); fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_mpst!(s, recv_mpst_a_from_d, { Branching0fromDtoA::Done(s) => { close_mpst_multi(s) }, Branching0fromDtoA::More(s) => { let (_, s) = recv_mpst_a_from_d(s)?; let s = send_mpst_a_to_d((), 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)?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_mpst!(s, recv_mpst_b_from_d, { Branching0fromDtoB::Done(s) => { close_mpst_multi(s) }, Branching0fromDtoB::More(s) => { let (_, s) = recv_mpst_b_from_d(s)?; let s = send_mpst_b_to_d((), 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)?; endpoint_b(s) }, }) } fn endpoint_c(s: EndpointC) -> Result<(), Box> { offer_mpst!(s, recv_mpst_c_from_d, { Branching0fromDtoC::Done(s) => { close_mpst_multi(s) }, Branching0fromDtoC::More(s) => { let (_, s) = recv_mpst_c_from_d(s)?; let s = send_mpst_c_to_d((), 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)?; endpoint_c(s) }, }) } fn endpoint_d(s: EndpointD) -> Result<(), Box> { recurs_d(s, 100) } fn recurs_d(s: EndpointD, index: i64) -> Result<(), Box> { match index { 0 => { let s = done_from_d_to_all(s); close_mpst_multi(s) } i => { let s = more_from_d_to_all(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)?; recurs_d(s, i - 1) } } } fn main() { let (thread_a, thread_b, thread_c, thread_d) = fork_mpst(endpoint_a, endpoint_b, endpoint_c, endpoint_d); thread_a.join().unwrap(); thread_b.join().unwrap(); thread_c.join().unwrap(); thread_d.join().unwrap(); }