#![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 three participants and the close and fork functions bundle_struct_fork_close_multi!(close_mpst_multi, fork_mpst, MeshedChannels, 4); // Create new roles // normal create_multiple_normal_role_short!(Central, A, B, C); // Create new names create_multiple_normal_name_short!(Central, A, B, C); // Create new send functions // A create_send_check_cancel_bundle!( send_mpst_a_to_b, RoleB, 2 | send_mpst_a_to_c, RoleC, 3 | => NameA, MeshedChannels, 4 ); // B create_send_check_cancel_bundle!( send_mpst_b_to_a, RoleA, 2 | send_mpst_b_to_c, RoleC, 3 | => NameB, MeshedChannels, 4 ); // C create_send_check_cancel_bundle!( send_mpst_c_to_a, RoleA, 2 | send_mpst_c_to_b, RoleB, 3 | => NameC, MeshedChannels, 4 ); // 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 | => NameA, MeshedChannels, 4 ); // B create_recv_mpst_session_bundle!( recv_mpst_b_from_a, RoleA, 2 | recv_mpst_b_from_c, RoleC, 3 | => NameB, MeshedChannels, 4 ); // C create_recv_mpst_session_bundle!( recv_mpst_c_from_a, RoleA, 2 | recv_mpst_c_from_b, RoleB, 3 | => NameC, 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>; // A enum Branching0fromCtoA { More(MeshedChannels>, R2C>>, NameA>), Done(MeshedChannels), } type RecursAtoC = Recv<(End, Branching0fromCtoA), End>; // B enum Branching0fromCtoB { More(MeshedChannels>, R2C>>, NameB>), Done(MeshedChannels), } type RecursBtoC = Recv<(End, Branching0fromCtoB), End>; // C type Choose0fromCtoA = ::Dual; type Choose0fromCtoB = ::Dual; type EndpointDoneC = MeshedChannels; type EndpointMoreC = MeshedChannels< End, Send<(), Recv<(), Choose0fromCtoA>>, Send<(), Recv<(), Choose0fromCtoB>>, R2A>, NameC, >; // Creating the MP sessions type EndpointCentral = MeshedChannels; type EndpointA = MeshedChannels, NameA>; type EndpointB = MeshedChannels, NameB>; type EndpointC = MeshedChannels; create_fn_choose_mpst_cancel_multi_to_all_bundle!( done_from_c_to_all, more_from_c_to_all, => Done, More, => EndpointDoneC, EndpointMoreC, => Branching0fromCtoA, Branching0fromCtoB, => NameA, NameB, => NameCentral, NameC, MeshedChannels, 4 ); fn endpoint_central(s: EndpointCentral) -> Result<(), Box> { broadcast_cancel!(s, 4) } fn endpoint_a(s: EndpointA) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_a_from_c, { Branching0fromCtoA::Done(s) => { close_mpst_multi(s) }, Branching0fromCtoA::More(s) => { let (_, s) = recv_mpst_a_from_c(s)?; let s = send_mpst_a_to_c((), s)?; let (_, s) = recv_mpst_a_from_b(s)?; let s = send_mpst_a_to_b((), s)?; endpoint_a(s) }, }) } fn endpoint_b(s: EndpointB) -> Result<(), Box> { offer_cancel_mpst!(s, recv_mpst_b_from_c, { Branching0fromCtoB::Done(s) => { close_mpst_multi(s) }, Branching0fromCtoB::More(s) => { let (_, s) = recv_mpst_b_from_c(s)?; let s = send_mpst_b_to_c((), s)?; let s = send_mpst_b_to_a((), s)?; let (_, s) = recv_mpst_b_from_a(s)?; endpoint_b(s) }, }) } fn endpoint_c(s: EndpointC) -> Result<(), Box> { recurs_c(s, 100) } fn recurs_c(s: EndpointC, index: i64) -> Result<(), Box> { match index { 0 => { let s = done_from_c_to_all(s)?; close_mpst_multi(s) } i => { let s = more_from_c_to_all(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)?; recurs_c(s, i - 1) } } } fn main() { let (thread_central, thread_a, thread_b, thread_c) = fork_mpst(endpoint_central, endpoint_a, endpoint_b, endpoint_c); thread_central.join().unwrap(); thread_a.join().unwrap(); thread_b.join().unwrap(); thread_c.join().unwrap(); }