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::checker_concat; use mpstthree::role::a::RoleA; use mpstthree::role::all_to_c::RoleAlltoC; use mpstthree::role::b::RoleB; use mpstthree::role::c::RoleC; use mpstthree::role::c_to_all::RoleCtoAll; 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 petgraph::dot::Dot; // Test a simple storage server, implemented using binary // choice. Simple types type BtoCNeg = Recv; type BtoCAdd = Recv; type BtoANeg = Send; type BtoAAdd = Send; type CtoBNeg = as Session>::Dual; type CtoBAdd = as Session>::Dual; type AtoBNeg = as Session>::Dual; type AtoBAdd = as Session>::Dual; // Stacks type StackOfferB = RoleC>; type StackOfferBDual = ::Dual; type StackFullB = RoleAlltoC; type StackChoiceC = RoleB; type StackFullC = RoleCtoAll; type StackOfferA = RoleB; type StackOfferADual = ::Dual; type StackFullA = RoleAlltoC; // Creating the MP sessions // For B type EndpointBAdd = MeshedChannels, BtoCAdd, StackOfferB, NameB>; type EndpointBNeg = MeshedChannels, BtoCNeg, StackOfferB, NameB>; type OfferB = OfferMpst, BtoCAdd, BtoANeg, BtoCNeg, StackOfferB, StackOfferB, NameB>; type EndpointChoiceB = MeshedChannels, StackFullB, NameB>; // For C type ChooseCtoB = ChooseMpst< AtoBAdd, CtoBAdd, AtoBNeg, CtoBNeg, StackOfferBDual, StackOfferBDual, NameB, >; type ChooseCtoA = ChooseMpst, End, BtoANeg, End, StackOfferADual, StackOfferADual, NameA>; type EndpointChoiceC = MeshedChannels, ChooseCtoB, StackFullC, NameC>; // For A type EndpointAAdd = MeshedChannels, End, StackOfferA, NameA>; type EndpointANeg = MeshedChannels, End, StackOfferA, NameA>; type OfferA = OfferMpst, End, AtoBNeg, End, StackOfferA, StackOfferA, NameA>; type EndpointChoiceA = MeshedChannels, StackFullA, NameA>; // Functions related to endpoints fn simple_store_server(s: EndpointChoiceB) -> Result<(), Box> { s.offer( |s: EndpointBAdd| { let (x, s) = s.recv()?; assert_eq!(x, 1); s.send(x + 1).close() }, |s: EndpointBNeg| { let (x, s) = s.recv()?; assert_eq!(x, 2); s.send(x + 1).close() }, ) } fn simple_store_client_left(s: EndpointChoiceC) -> Result<(), Box> { s.choose_left().send(1).close() } fn simple_store_client_right(s: EndpointChoiceC) -> Result<(), Box> { s.choose_right().send(2).close() } fn simple_store_pawn(s: EndpointChoiceA) -> Result<(), Box> { s.offer( |s: EndpointAAdd| { let (x, s) = s.recv()?; assert_eq!(x, 2); s.close() }, |s: EndpointANeg| { 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_pawn, simple_store_server, simple_store_client_left, ); 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_pawn, simple_store_server, simple_store_client_right, ); 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!( "", EndpointChoiceA, EndpointChoiceC, 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.3\\\"\" ]\n \ 4 [ label = \"\\\"0.1\\\"\" ]\n \ 5 [ label = \"\\\"0.2\\\"\" ]\n \ 6 [ label = \"\\\"0.3\\\"\" ]\n \ 0 -> 1 [ label = \"\\\"RoleB?RoleC: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"RoleB!RoleA: i32\\\"\" ]\n \ 2 -> 3 [ label = \"\\\"0\\\"\" ]\n \ 0 -> 4 [ label = \"\\\"RoleB?RoleC: i32\\\"\" ]\n \ 4 -> 5 [ label = \"\\\"RoleB!RoleA: i32\\\"\" ]\n \ 5 -> 6 [ 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!RoleB: i32\\\"\" ]\n \ 1 -> 2 [ label = \"\\\"0\\\"\" ]\n \ 0 -> 3 [ label = \"\\\"RoleC!RoleB: i32\\\"\" ]\n \ 3 -> 4 [ label = \"\\\"0\\\"\" ]\n\ }\n" ); ////////////// Test KMC output assert_eq!(kmc, None); }