mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-07 03:19:43 +00:00
Boog900
b510739701
* p2p changes * clippy * a few more docs * init cuprate-p2p * remove some unrelated code and add some docs * start documenting client_pool.rs * add more docs * typo * fix docs * use JoinSet in connection maintainer * small changes * add peer sync state svc * add broadcast svc * add more docs * add some tests * add a test * fix merge * add another test * unify PeerDisconnectFut and add more docs * start network init * add an inbound connection server * remove crate doc for now * fix address book docs * fix leak in client pool * correct comment * fix merge + add some docs * fix doc * dandelion_tower -> dandelion-tower * fix async-buffer builds * check if incoming peers are banned * add interface methods * update docs * use a JoinSet for background network tasks * Apply suggestions from code review Co-authored-by: hinto-janai <hinto.janai@protonmail.com> * Update p2p/monero-p2p/src/services.rs Co-authored-by: hinto-janai <hinto.janai@protonmail.com> --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
107 lines
3 KiB
Rust
107 lines
3 KiB
Rust
//! Test net zone.
|
|
//!
|
|
//! This module contains a test network zone, this network zone use channels as the network layer to simulate p2p
|
|
//! communication.
|
|
//!
|
|
use std::{
|
|
fmt::Formatter,
|
|
io::Error,
|
|
net::{Ipv4Addr, SocketAddr},
|
|
pin::Pin,
|
|
};
|
|
|
|
use borsh::{BorshDeserialize, BorshSerialize};
|
|
use futures::Stream;
|
|
use tokio::io::{DuplexStream, ReadHalf, WriteHalf};
|
|
use tokio_util::codec::{FramedRead, FramedWrite};
|
|
|
|
use monero_wire::{
|
|
network_address::{NetworkAddress, NetworkAddressIncorrectZone},
|
|
MoneroWireCodec,
|
|
};
|
|
|
|
use monero_p2p::{NetZoneAddress, NetworkZone};
|
|
|
|
/// An address on the test network
|
|
#[derive(Debug, Clone, Copy, Eq, Hash, PartialEq, BorshSerialize, BorshDeserialize)]
|
|
pub struct TestNetZoneAddr(pub u32);
|
|
|
|
impl NetZoneAddress for TestNetZoneAddr {
|
|
type BanID = Self;
|
|
|
|
fn set_port(&mut self, _: u16) {}
|
|
|
|
fn make_canonical(&mut self) {}
|
|
|
|
fn ban_id(&self) -> Self::BanID {
|
|
*self
|
|
}
|
|
|
|
fn should_add_to_peer_list(&self) -> bool {
|
|
true
|
|
}
|
|
}
|
|
|
|
impl std::fmt::Display for TestNetZoneAddr {
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
f.write_str(format!("test client, id: {}", self.0).as_str())
|
|
}
|
|
}
|
|
|
|
impl From<TestNetZoneAddr> for NetworkAddress {
|
|
fn from(value: TestNetZoneAddr) -> Self {
|
|
Self::Clear(SocketAddr::new(Ipv4Addr::from(value.0).into(), 18080))
|
|
}
|
|
}
|
|
|
|
impl TryFrom<NetworkAddress> for TestNetZoneAddr {
|
|
type Error = NetworkAddressIncorrectZone;
|
|
|
|
fn try_from(value: NetworkAddress) -> Result<Self, Self::Error> {
|
|
match value {
|
|
NetworkAddress::Clear(soc) => match soc {
|
|
SocketAddr::V4(v4) => Ok(Self(u32::from_be_bytes(v4.ip().octets()))),
|
|
SocketAddr::V6(_) => panic!("None v4 address in test code"),
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
/// TODO
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
|
pub struct TestNetZone<const ALLOW_SYNC: bool, const DANDELION_PP: bool, const CHECK_NODE_ID: bool>;
|
|
|
|
#[async_trait::async_trait]
|
|
impl<const ALLOW_SYNC: bool, const DANDELION_PP: bool, const CHECK_NODE_ID: bool> NetworkZone
|
|
for TestNetZone<ALLOW_SYNC, DANDELION_PP, CHECK_NODE_ID>
|
|
{
|
|
const NAME: &'static str = "Testing";
|
|
const SEEDS: &'static [Self::Addr] = &[];
|
|
const ALLOW_SYNC: bool = ALLOW_SYNC;
|
|
const DANDELION_PP: bool = DANDELION_PP;
|
|
const CHECK_NODE_ID: bool = CHECK_NODE_ID;
|
|
|
|
type Addr = TestNetZoneAddr;
|
|
type Stream = FramedRead<ReadHalf<DuplexStream>, MoneroWireCodec>;
|
|
type Sink = FramedWrite<WriteHalf<DuplexStream>, MoneroWireCodec>;
|
|
type Listener = Pin<
|
|
Box<
|
|
dyn Stream<
|
|
Item = Result<(Option<Self::Addr>, Self::Stream, Self::Sink), std::io::Error>,
|
|
> + Send
|
|
+ 'static,
|
|
>,
|
|
>;
|
|
type ServerCfg = ();
|
|
|
|
async fn connect_to_peer(_: Self::Addr) -> Result<(Self::Stream, Self::Sink), Error> {
|
|
unimplemented!()
|
|
}
|
|
|
|
async fn incoming_connection_listener(
|
|
_: Self::ServerCfg,
|
|
_: u16,
|
|
) -> Result<Self::Listener, Error> {
|
|
unimplemented!()
|
|
}
|
|
}
|