[][src]Trait libp2p_kad::record::store::RecordStore

pub trait RecordStore<'a> {
    type RecordsIter: Iterator<Item = Cow<'a, Record>>;
    type ProvidedIter: Iterator<Item = Cow<'a, ProviderRecord>>;
    fn get(&'a self, k: &Key) -> Option<Cow<'_, Record>>;
fn put(&'a mut self, r: Record) -> Result<()>;
fn remove(&'a mut self, k: &Key);
fn records(&'a self) -> Self::RecordsIter;
fn add_provider(&'a mut self, record: ProviderRecord) -> Result<()>;
fn providers(&'a self, key: &Key) -> Vec<ProviderRecord>;
fn provided(&'a self) -> Self::ProvidedIter;
fn remove_provider(&'a mut self, k: &Key, p: &PeerId); }

Trait for types implementing a record store.

There are two types of records managed by a RecordStore:

  1. Regular (value-)records. These records store an arbitrary value associated with a key which is distributed to the closest nodes to the key in the Kademlia DHT as per the standard Kademlia "push-model". These records are subject to re-replication and re-publication as per the standard Kademlia protocol.

  2. Provider records. These records associate the ID of a peer with a key who can supposedly provide the associated value. These records are mere "pointers" to the data which may be followed by contacting these providers to obtain the value. These records are specific to the libp2p Kademlia specification and realise a "pull-model" for distributed content. Just like a regular record, a provider record is distributed to the closest nodes to the key.

Associated Types

type RecordsIter: Iterator<Item = Cow<'a, Record>>

type ProvidedIter: Iterator<Item = Cow<'a, ProviderRecord>>

Loading content...

Required methods

fn get(&'a self, k: &Key) -> Option<Cow<'_, Record>>

Gets a record from the store, given its key.

fn put(&'a mut self, r: Record) -> Result<()>

Puts a record into the store.

fn remove(&'a mut self, k: &Key)

Removes the record with the given key from the store.

fn records(&'a self) -> Self::RecordsIter

Gets an iterator over all (value-) records currently stored.

fn add_provider(&'a mut self, record: ProviderRecord) -> Result<()>

Adds a provider record to the store.

A record store only needs to store a number of provider records for a key corresponding to the replication factor and should store those records whose providers are closest to the key.

fn providers(&'a self, key: &Key) -> Vec<ProviderRecord>

Gets a copy of the stored provider records for the given key.

fn provided(&'a self) -> Self::ProvidedIter

Gets an iterator over all stored provider records for which the node owning the store is itself the provider.

fn remove_provider(&'a mut self, k: &Key, p: &PeerId)

Removes a provider record from the store.

Loading content...

Implementors

impl<'a> RecordStore<'a> for MemoryStore[src]

type RecordsIter = Map<Values<'a, Key, Record>, fn(_: &'a Record) -> Cow<'a, Record>>

type ProvidedIter = Map<Iter<'a, ProviderRecord>, fn(_: &'a ProviderRecord) -> Cow<'a, ProviderRecord>>

Loading content...