iroh-bitswap 0.2.0

Implementation of the bitswap protocol
Documentation
use cid::Cid;
use libp2p::PeerId;

use crate::{
    client::wantlist::{Entry, Wantlist},
    message::{Priority, WantType},
};

/// Tracks the wantlist for a given partner
#[derive(Debug)]
pub struct Ledger {
    /// The remote peer.
    partner: PeerId,
    wantlist: Wantlist,
}

impl Ledger {
    pub fn new(partner: PeerId) -> Self {
        Ledger {
            partner,
            wantlist: Wantlist::default(),
        }
    }

    pub fn wantlist_mut(&mut self) -> &mut Wantlist {
        &mut self.wantlist
    }

    pub fn partner(&self) -> &PeerId {
        &self.partner
    }

    pub fn clear_wantlist(&mut self) {
        self.wantlist.clear();
    }

    pub fn wants(&mut self, cid: Cid, priority: Priority, want_type: WantType) {
        self.wantlist.add(cid, priority, want_type);
    }

    pub fn cancel_want(&mut self, cid: &Cid) -> Option<Entry> {
        self.wantlist.remove(cid)
    }

    pub fn wantlist_get(&self, cid: &Cid) -> Option<&Entry> {
        self.wantlist.get(cid)
    }

    pub fn entries(&mut self) -> impl Iterator<Item = Entry> + '_ {
        self.wantlist.entries()
    }
}