use std::error::Error; use mpstthree::functionmpst::close::close_mpst; use mpstthree::binary::struct_trait::{end::End, recv::Recv, session::Session}; use mpstthree::functionmpst::fork::fork_mpst; use mpstthree::meshedchannels::MeshedChannels; use mpstthree::checker_concat; use mpstthree::role::a::RoleA; use mpstthree::role::all_to_b::RoleAlltoB; use mpstthree::role::b::RoleB; use mpstthree::role::b_to_all::RoleBtoAll; use mpstthree::role::end::RoleEnd; use mpstthree::role::Role; use mpstthree::name::a::NameA; use mpstthree::name::b::NameB; use mpstthree::name::c::NameC; use mpstthree::functionmpst::recv::recv_mpst_a_from_b; use mpstthree::functionmpst::send::send_mpst_b_to_a; use mpstthree::functionmpst::offer::offer_mpst_session_to_a_from_b; use mpstthree::functionmpst::offer::offer_mpst_session_to_c_from_b; use mpstthree::functionmpst::choose::choose_left_mpst_session_b_to_all; use mpstthree::functionmpst::choose::choose_right_mpst_session_b_to_all; use mpstthree::functionmpst::ChooseMpst; use mpstthree::functionmpst::OfferMpst; use petgraph::dot::Dot; // Test a simple storage server, implemented using binary // choice. Simple types type AtoBNeg = Recv; type AtoBAdd = Recv; type BtoANeg = as Session>::Dual; type BtoAAdd = as Session>::Dual; // Stacks type StackOfferA = RoleB; type StackFullA = RoleAlltoB; type StackChoiceB = RoleA; type StackFullB = RoleBtoAll; type StackOfferC = RoleEnd; type StackFullC = RoleAlltoB; // Creating the MP sessions // For A type EndpointAAdd = MeshedChannels, End, StackOfferA, NameA>; type EndpointANeg = MeshedChannels, End, StackOfferA, NameA>; type OfferAfromB = OfferMpst, End, AtoBNeg, End, StackOfferA, StackOfferA, NameA>; type EndpointChoiceA = MeshedChannels, End, StackFullA, NameA>; // For B type ChooseBtoA = ChooseMpst< BtoAAdd, End, BtoANeg, End, ::Dual, ::Dual, NameA, >; type ChooseBtoC = ChooseMpst; type EndpointChoiceB = MeshedChannels, ChooseBtoC, StackFullB, NameB>; // For C type OfferCfromB = OfferMpst; type EndpointChoiceC = MeshedChannels; // Functions related to endpoints fn simple_store_server(s: EndpointChoiceA) -> Result<(), Box> { offer_mpst_session_to_a_from_b( s, |s: EndpointAAdd| { let (x, s) = recv_mpst_a_from_b(s)?; assert_eq!(x, 1); close_mpst(s) }, |s: EndpointANeg| { let (x, s) = recv_mpst_a_from_b(s)?; assert_eq!(x, 2); close_mpst(s) }, ) } fn simple_store_client_left(s: EndpointChoiceB) -> Result<(), Box> { let s = choose_left_mpst_session_b_to_all::< End, End, BtoAAdd, End, BtoANeg, End, ::Dual, ::Dual, RoleEnd, RoleEnd, StackChoiceB, StackChoiceB, >(s); let s = send_mpst_b_to_a(1, s); close_mpst(s) } fn simple_store_client_right(s: EndpointChoiceB) -> Result<(), Box> { let s = choose_right_mpst_session_b_to_all::< End, End, BtoAAdd, End, BtoANeg, End, ::Dual, ::Dual, RoleEnd, RoleEnd, StackChoiceB, StackChoiceB, >(s); let s = send_mpst_b_to_a(2, s); close_mpst(s) } fn simple_store_pawn(s: EndpointChoiceC) -> Result<(), Box> { offer_mpst_session_to_c_from_b(s, close_mpst, close_mpst) } ///////////////////////////////////////// pub fn simple_choice_left() { // Test the left branch. let (thread_a, thread_b, thread_c) = fork_mpst( simple_store_server, simple_store_client_left, simple_store_pawn, ); assert!(thread_a.join().is_ok()); assert!(thread_b.join().is_ok()); assert!(thread_c.join().is_ok()); } pub fn simple_choice_right() { // Test the right branch. let (thread_a, thread_b, thread_c) = fork_mpst( simple_store_server, simple_store_client_right, simple_store_pawn, ); assert!(thread_a.join().is_ok()); assert!(thread_b.join().is_ok()); assert!(thread_c.join().is_ok()); } pub fn simple_choice_checker() { let (graphs, kmc) = checker_concat!( "", EndpointChoiceC, EndpointChoiceA, EndpointChoiceB ) .unwrap(); ////////////// Test graph A let graph_a = &graphs["RoleA"]; assert_eq!( format!("{:?}", Dot::new(&graph_a)), "digraph {\n \ 0 [ label = \"\\\"0\\\"\" ]\n \ 1 [ label = \"\\\"0.1\\\"\" ]\n \ 2 [ label = \"\\\"0.2\\\"\" ]\n \ 3 [ label = \"\\\"0.1\\\"\" ]\n \ 4 [ label = \"\\\"0.2\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleA?RoleB: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"0\\\"\" ]\n \ 0 -> 3 [ label = \"\\\"RoleA?RoleB: i32\\\"\" ]\n \ 3 -> 4 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test graph B let graph_b = &graphs["RoleB"]; assert_eq!( format!("{:?}", Dot::new(&graph_b)), "digraph {\n \ 0 [ label = \"\\\"0\\\"\" ]\n \ 1 [ label = \"\\\"0.1\\\"\" ]\n \ 2 [ label = \"\\\"0.2\\\"\" ]\n \ 3 [ label = \"\\\"0.1\\\"\" ]\n \ 4 [ label = \"\\\"0.2\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleB!RoleA: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"0\\\"\" ]\n \ 0 -> 3 [ label = \"\\\"RoleB!RoleA: i32\\\"\" ]\n \ 3 -> 4 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test graph C let graph_c = &graphs["RoleC"]; assert_eq!( format!("{:?}", Dot::new(&graph_c)), "digraph {\n \ 0 [ label = \"\\\"0\\\"\" ]\n \ 1 [ label = \"\\\"0.1\\\"\" ]\n \ 2 [ label = \"\\\"0.1\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"0\\\"\" ]\n \ 0 -> 2 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test KMC output assert_eq!(kmc, None); }