Implement Extend and Drain for AddressBook.
This commit is contained in:
parent
0bfd57def2
commit
ecd57f43ed
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
collections::{BTreeMap, HashMap},
|
collections::{BTreeMap, HashMap},
|
||||||
|
iter::Extend,
|
||||||
net::SocketAddr,
|
net::SocketAddr,
|
||||||
sync::{Arc, Mutex},
|
sync::{Arc, Mutex},
|
||||||
};
|
};
|
||||||
|
|
@ -88,6 +89,12 @@ impl AddressBook {
|
||||||
.rev()
|
.rev()
|
||||||
.map(from_by_time_kv)
|
.map(from_by_time_kv)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns an iterator that drains entries from the address book, removing
|
||||||
|
/// them in order from most recent to least recent.
|
||||||
|
pub fn drain_recent<'a>(&'a mut self) -> impl Iterator<Item = MetaAddr> + 'a {
|
||||||
|
Drain { book: self }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Helper impl to convert by_time Iterator Items back to MetaAddrs
|
// Helper impl to convert by_time Iterator Items back to MetaAddrs
|
||||||
|
|
@ -100,3 +107,37 @@ fn from_by_time_kv(by_time_kv: (&DateTime<Utc>, &(SocketAddr, PeerServices))) ->
|
||||||
services: services.clone(),
|
services: services.clone(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Extend<MetaAddr> for AddressBook {
|
||||||
|
fn extend<T>(&mut self, iter: T)
|
||||||
|
where
|
||||||
|
T: IntoIterator<Item = MetaAddr>,
|
||||||
|
{
|
||||||
|
for meta in iter.into_iter() {
|
||||||
|
self.update(meta);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Drain<'a> {
|
||||||
|
book: &'a mut AddressBook,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> Iterator for Drain<'a> {
|
||||||
|
type Item = MetaAddr;
|
||||||
|
|
||||||
|
fn next(&mut self) -> Option<Self::Item> {
|
||||||
|
let most_recent = self.book.by_time.keys().rev().next()?.clone();
|
||||||
|
let (addr, services) = self
|
||||||
|
.book
|
||||||
|
.by_time
|
||||||
|
.remove(&most_recent)
|
||||||
|
.expect("key from keys() must be present in btreemap");
|
||||||
|
self.book.by_addr.remove(&addr);
|
||||||
|
Some(MetaAddr {
|
||||||
|
addr,
|
||||||
|
services,
|
||||||
|
last_seen: most_recent,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue