hbbft/src/messaging.rs

47 lines
1.3 KiB
Rust
Raw Normal View History

2018-05-10 08:50:07 -07:00
/// Message sent by a given source.
#[derive(Clone, Debug)]
2018-05-10 08:50:07 -07:00
pub struct SourcedMessage<M, N> {
/// The ID of the sender.
2018-05-10 08:50:07 -07:00
pub source: N,
2018-11-27 03:13:42 -08:00
/// The content of a message.
2018-05-10 08:50:07 -07:00
pub message: M,
}
2018-11-27 03:13:42 -08:00
/// The intended recipient(s) of a message.
#[derive(Clone, Debug, PartialEq, Eq)]
2018-05-10 08:50:07 -07:00
pub enum Target<N> {
/// The message must be sent to all remote nodes.
All,
/// The message must be sent to the node with the given ID.
2018-05-10 08:50:07 -07:00
Node(N),
}
impl<N> Target<N> {
/// Returns a `TargetedMessage` with this target, and the given message.
pub fn message<M>(self, message: M) -> TargetedMessage<M, N> {
TargetedMessage {
target: self,
message,
}
}
}
/// Message with a designated target.
#[derive(Clone, Debug, PartialEq)]
2018-05-10 08:50:07 -07:00
pub struct TargetedMessage<M, N> {
/// The node or nodes that this message must be delivered to.
2018-05-10 08:50:07 -07:00
pub target: Target<N>,
/// The content of the message that must be serialized and sent to the target.
2018-05-10 08:50:07 -07:00
pub message: M,
}
impl<M, N> TargetedMessage<M, N> {
/// Applies the given transformation of messages, preserving the target.
pub fn map<T, F: Fn(M) -> T>(self, f: F) -> TargetedMessage<T, N> {
TargetedMessage {
target: self.target,
message: f(self.message),
}
}
}