Skip to main content

Peer

Struct Peer 

Source
pub struct Peer<S: Store> {
    pub remote_id: PeerId,
    /* private fields */
}
Expand description

WebRTC peer connection wrapper

Each Peer is an independent agent that tracks:

  • pending_requests: requests WE sent TO this peer (awaiting response)
  • their_requests: requests THEY sent TO US that we couldn’t fulfill

This matches the hashtree-ts Peer architecture. Wire protocol is binary MessagePack compatible with hashtree-ts.

Fields§

§remote_id: PeerId

Remote peer identifier

Implementations§

Source§

impl<S: Store + 'static> Peer<S>

Source

pub async fn new( remote_id: PeerId, local_peer_id: String, signaling_tx: Sender<SignalingMessage>, local_store: Arc<S>, debug: bool, ) -> Result<Self, PeerError>

Create a new peer connection

Source

pub async fn with_forward_channel( remote_id: PeerId, local_peer_id: String, signaling_tx: Sender<SignalingMessage>, local_store: Arc<S>, debug: bool, forward_tx: Option<ForwardTx>, ) -> Result<Self, PeerError>

Create a new peer connection with a forwarding channel

Source

pub async fn connect(&self) -> Result<(), PeerError>

Initiate connection as offerer

Source

pub async fn handle_signaling( &self, msg: SignalingMessage, ) -> Result<(), PeerError>

Handle incoming signaling message

Source

pub async fn request(&self, hash: &Hash) -> Result<Option<Vec<u8>>, PeerError>

Request data by hash with default HTL

Source

pub async fn request_with_htl( &self, hash: &Hash, htl: u8, ) -> Result<Option<Vec<u8>>, PeerError>

Request data by hash with specified HTL Uses binary MessagePack protocol compatible with hashtree-ts

Source

pub async fn send_response_for_hash( &self, hash: &Hash, data: Option<&[u8]>, ) -> Result<(), PeerError>

Send data response using binary MessagePack protocol Note: For found data, use the internal fragmentation-aware send_response This method is kept for API compatibility but now uses binary protocol

Source

pub async fn state(&self) -> PeerState

Get current connection state

Source

pub async fn close(&self) -> Result<(), PeerError>

Close the connection

Source

pub fn set_on_forward_request<F>(&mut self, callback: F)
where F: Fn(Hash, String, u8) -> BoxFuture<'static, Option<Vec<u8>>> + Send + Sync + 'static,

Set the forward request callback Called when this peer requests data we don’t have locally Parameters: (hash, exclude_peer_id, htl)

Source

pub fn htl_config(&self) -> PeerHTLConfig

Get the peer’s HTL config (for testing)

Source

pub async fn send_data( &self, hash_hex: &str, data: &[u8], ) -> Result<bool, PeerError>

Send data to this peer for a hash they previously requested Returns true if this peer had requested this hash

Source

pub async fn has_requested(&self, hash_hex: &str) -> bool

Check if this peer has requested a hash

Source

pub async fn their_request_count(&self) -> usize

Get count of pending requests from this peer

Source

pub async fn our_request_count(&self) -> usize

Get count of pending requests we sent to this peer

Auto Trait Implementations§

§

impl<S> Freeze for Peer<S>

§

impl<S> !RefUnwindSafe for Peer<S>

§

impl<S> Send for Peer<S>

§

impl<S> Sync for Peer<S>

§

impl<S> Unpin for Peer<S>

§

impl<S> UnsafeUnpin for Peer<S>

§

impl<S> !UnwindSafe for Peer<S>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more