casper_types/
peers_map.rsuse alloc::collections::BTreeMap;
use crate::bytesrepr::{self, FromBytes, ToBytes};
use alloc::{
string::{String, ToString},
vec::Vec,
};
#[cfg(feature = "json-schema")]
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
#[cfg(any(feature = "testing", test))]
use crate::testing::TestRng;
#[cfg(any(feature = "testing", test))]
use core::iter;
#[cfg(any(feature = "testing", test))]
use rand::Rng;
#[derive(Clone, PartialEq, Eq, Serialize, Deserialize, Debug)]
#[cfg_attr(feature = "json-schema", derive(JsonSchema))]
#[serde(deny_unknown_fields)]
pub struct PeerEntry {
pub node_id: String,
pub address: String,
}
impl PeerEntry {
#[cfg(any(feature = "testing", test))]
pub(crate) fn random(rng: &mut TestRng) -> Self {
Self {
node_id: rng.random_string(10..20),
address: rng.random_string(10..20),
}
}
}
impl ToBytes for PeerEntry {
fn to_bytes(&self) -> Result<Vec<u8>, bytesrepr::Error> {
let mut buffer = bytesrepr::allocate_buffer(self)?;
self.write_bytes(&mut buffer)?;
Ok(buffer)
}
fn write_bytes(&self, writer: &mut Vec<u8>) -> Result<(), bytesrepr::Error> {
self.node_id.write_bytes(writer)?;
self.address.write_bytes(writer)
}
fn serialized_length(&self) -> usize {
self.node_id.serialized_length() + self.address.serialized_length()
}
}
impl FromBytes for PeerEntry {
fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), bytesrepr::Error> {
let (node_id, remainder) = String::from_bytes(bytes)?;
let (address, remainder) = String::from_bytes(remainder)?;
Ok((PeerEntry { node_id, address }, remainder))
}
}
#[derive(Clone, PartialEq, Eq, Serialize, Deserialize, Debug)]
#[cfg_attr(feature = "json-schema", derive(JsonSchema))]
#[serde(deny_unknown_fields)]
pub struct Peers(Vec<PeerEntry>);
impl Peers {
pub fn into_inner(self) -> Vec<PeerEntry> {
self.0
}
#[cfg(any(feature = "testing", test))]
pub fn random(rng: &mut TestRng) -> Self {
let count = rng.gen_range(0..10);
let peers = iter::repeat(())
.map(|_| PeerEntry::random(rng))
.take(count)
.collect();
Self(peers)
}
}
impl<Id: ToString> From<BTreeMap<Id, String>> for Peers {
fn from(input: BTreeMap<Id, String>) -> Self {
let ret = input
.into_iter()
.map(|(node_id, address)| PeerEntry {
node_id: node_id.to_string(),
address,
})
.collect();
Peers(ret)
}
}
impl ToBytes for Peers {
fn to_bytes(&self) -> Result<Vec<u8>, bytesrepr::Error> {
let mut buffer = bytesrepr::allocate_buffer(self)?;
self.write_bytes(&mut buffer)?;
Ok(buffer)
}
fn write_bytes(&self, writer: &mut Vec<u8>) -> Result<(), bytesrepr::Error> {
self.0.write_bytes(writer)
}
fn serialized_length(&self) -> usize {
self.0.serialized_length()
}
}
impl FromBytes for Peers {
fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), bytesrepr::Error> {
let (inner, remainder) = Vec::<PeerEntry>::from_bytes(bytes)?;
Ok((Peers(inner), remainder))
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::testing::TestRng;
#[test]
fn bytesrepr_roundtrip() {
let rng = &mut TestRng::new();
let val = Peers::random(rng);
bytesrepr::test_serialization_roundtrip(&val);
}
}