use std::error::Error; use mpstthree::binary::struct_trait::{end::End, recv::Recv, send::Send, session::Session}; use mpstthree::functionmpst::fork::fork_mpst; use mpstthree::meshedchannels::MeshedChannels; use mpstthree::role::Role; 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::c::RoleC; use mpstthree::role::end::RoleEnd; use mpstthree::name::a::NameA; use mpstthree::name::b::NameB; use mpstthree::name::c::NameC; use mpstthree::functionmpst::ChooseMpst; use mpstthree::functionmpst::OfferMpst; use mpstthree::checker_concat; use petgraph::dot::Dot; // Test a simple storage server, implemented using binary // choice. Simple types type AtoBNeg = Recv; type AtoBAdd = Recv; type AtoCNeg = Send; type AtoCAdd = Send; type BtoANeg = as Session>::Dual; type BtoAAdd = as Session>::Dual; type CtoANeg = as Session>::Dual; type CtoAAdd = as Session>::Dual; // Stacks type StackOfferA = RoleB>; type StackOfferADual = ::Dual; type StackFullA = RoleAlltoB; type StackChoiceB = RoleA; type StackFullB = RoleBtoAll; type StackOfferC = RoleA; type StackOfferCDual = ::Dual; type StackFullC = RoleAlltoB; // Creating the MP sessions // For A type EndpointAAdd = MeshedChannels, AtoCAdd, StackOfferA, NameA>; type EndpointANeg = MeshedChannels, AtoCNeg, StackOfferA, NameA>; type OfferA = OfferMpst, AtoCAdd, AtoBNeg, AtoCNeg, StackOfferA, StackOfferA, NameA>; type EndpointChoiceA = MeshedChannels, End, StackFullA, NameA>; // For B type ChooseBtoA = ChooseMpst< BtoAAdd, CtoAAdd, BtoANeg, CtoANeg, StackOfferADual, StackOfferADual, NameA, >; type ChooseBtoC = ChooseMpst, End, AtoCNeg, End, StackOfferCDual, StackOfferCDual, NameC>; type EndpointChoiceB = MeshedChannels, ChooseBtoC, StackFullB, NameB>; // For C type EndpointCAdd = MeshedChannels, End, StackOfferC, NameC>; type EndpointCNeg = MeshedChannels, End, StackOfferC, NameC>; type OfferC = OfferMpst, End, CtoANeg, End, StackOfferC, StackOfferC, NameC>; type EndpointChoiceC = MeshedChannels, StackFullC, NameC>; // Functions related to endpoints fn simple_store_server(s: EndpointChoiceA) -> Result<(), Box> { s.offer( |s: EndpointAAdd| { let (x, s) = s.recv()?; assert_eq!(x, 1); s.send(x + 1).close() }, |s: EndpointANeg| { let (x, s) = s.recv()?; assert_eq!(x, 2); s.send(x + 1).close() }, ) } fn simple_store_client_left(s: EndpointChoiceB) -> Result<(), Box> { s.choose_left().send(1).close() } fn simple_store_client_right(s: EndpointChoiceB) -> Result<(), Box> { s.choose_right().send(2).close() } fn simple_store_pawn(s: EndpointChoiceC) -> Result<(), Box> { s.offer( |s: EndpointCAdd| { let (x, s) = s.recv()?; assert_eq!(x, 2); s.close() }, |s: EndpointCNeg| { let (x, s) = s.recv()?; assert_eq!(x, 3); s.close() }, ) } ///////////////////////////////////////// pub fn double_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 double_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 double_choice_checker() { let (graphs, kmc) = checker_concat!( "", EndpointChoiceB, EndpointChoiceC, EndpointChoiceA ) .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.3\\\"\" ]\n \ 4 [ label = \"\\\"0.1\\\"\" ]\n \ 5 [ label = \"\\\"0.2\\\"\" ]\n \ 6 [ label = \"\\\"0.3\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleA?RoleB: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"RoleA!RoleC: i32\\\"\" ]\n \ 2 -> 3 [ label = \"\\\"0\\\"\" ]\n \ 0 -> 4 [ label = \"\\\"RoleA?RoleB: i32\\\"\" ]\n \ 4 -> 5 [ label = \"\\\"RoleA!RoleC: i32\\\"\" ]\n \ 5 -> 6 [ 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.2\\\"\" ]\n \ 3 [ label = \"\\\"0.1\\\"\" ]\n \ 4 [ label = \"\\\"0.2\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleC?RoleA: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"0\\\"\" ]\n \ 0 -> 3 [ label = \"\\\"RoleC?RoleA: i32\\\"\" ]\n \ 3 -> 4 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test KMC output assert_eq!(kmc, None); }