2021-06-28 14:23:28 +01:00
|
|
|
use std::{collections::HashSet, net::SocketAddr, sync::Arc};
|
|
|
|
|
|
|
|
|
|
use tokio::sync::{Notify, Semaphore};
|
|
|
|
|
|
2021-06-30 00:00:44 +01:00
|
|
|
use crate::{
|
|
|
|
|
lengths::{ChunkInfo, ValidPieceIndex},
|
|
|
|
|
type_aliases::BF,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Hash, PartialEq, Eq)]
|
|
|
|
|
pub struct InflightRequest {
|
|
|
|
|
pub piece: ValidPieceIndex,
|
|
|
|
|
pub chunk: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl From<&ChunkInfo> for InflightRequest {
|
|
|
|
|
fn from(c: &ChunkInfo) -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
piece: c.piece_index,
|
|
|
|
|
chunk: c.chunk_index,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-28 14:23:28 +01:00
|
|
|
|
|
|
|
|
pub enum PeerState {
|
|
|
|
|
Connecting(SocketAddr),
|
|
|
|
|
Live(LivePeerState),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct LivePeerState {
|
2021-06-28 14:52:12 +01:00
|
|
|
pub peer_id: [u8; 20],
|
2021-06-28 14:23:28 +01:00
|
|
|
pub i_am_choked: bool,
|
|
|
|
|
pub peer_interested: bool,
|
2021-06-28 14:58:53 +01:00
|
|
|
pub requests_sem: Arc<Semaphore>,
|
2021-06-28 14:23:28 +01:00
|
|
|
pub have_notify: Arc<Notify>,
|
|
|
|
|
pub bitfield: Option<BF>,
|
|
|
|
|
pub inflight_requests: HashSet<InflightRequest>,
|
|
|
|
|
}
|
2021-06-28 14:42:19 +01:00
|
|
|
|
|
|
|
|
impl LivePeerState {
|
|
|
|
|
pub fn new(peer_id: [u8; 20]) -> Self {
|
|
|
|
|
LivePeerState {
|
2021-07-02 01:38:07 +01:00
|
|
|
peer_id,
|
2021-06-28 14:42:19 +01:00
|
|
|
i_am_choked: true,
|
|
|
|
|
peer_interested: false,
|
|
|
|
|
bitfield: None,
|
|
|
|
|
have_notify: Arc::new(Notify::new()),
|
2021-06-28 14:58:53 +01:00
|
|
|
requests_sem: Arc::new(Semaphore::new(0)),
|
2021-06-28 14:42:19 +01:00
|
|
|
inflight_requests: Default::default(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|