1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
// Copyright 2019 Parity Technologies (UK) Ltd. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. use libp2p_core::Multiaddr; use smallvec::SmallVec; use std::fmt; /// A non-empty list of (unique) addresses of a peer in the routing table. #[derive(Clone, PartialEq, Eq)] pub struct Addresses { addrs: SmallVec<[Multiaddr; 6]>, } #[derive(PartialEq, Eq, Debug)] pub enum Remove { Completely = 0, KeepLast = 1 } impl Addresses { /// Creates a new list of addresses. pub fn new(addr: Multiaddr) -> Addresses { let mut addrs = SmallVec::new(); addrs.push(addr); Addresses { addrs } } /// Gets a reference to the first address in the list. pub fn first(&self) -> &Multiaddr { &self.addrs[0] } /// Returns an iterator over the addresses. pub fn iter(&self) -> impl Iterator<Item = &Multiaddr> { self.addrs.iter() } /// Returns a mutable iterator over the addresses. pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut Multiaddr> { self.addrs.iter_mut() } /// Returns the number of addresses in the list. pub fn len(&self) -> usize { self.addrs.len() } /// Converts the addresses into a `Vec`. pub fn into_vec(self) -> Vec<Multiaddr> { self.addrs.into_vec() } /// Removes the given address from the list. /// /// Returns `Ok(())` if the address is either not in the list or was found and /// removed. Returns `Err(())` if the address is the last remaining address, /// which cannot be removed. /// /// An address should only be removed if is determined to be invalid or /// otherwise unreachable. pub fn remove(&mut self, addr: &Multiaddr, mode: Remove) -> Result<(),()> { if mode == Remove::KeepLast && self.addrs.len() == 1 { return Err(()) } if let Some(pos) = self.addrs.iter().position(|a| a == addr) { self.addrs.remove(pos); if self.addrs.len() <= self.addrs.inline_size() { self.addrs.shrink_to_fit(); } } Ok(()) } /// Adds a new address to the end of the list. /// /// Returns true if the address was added, false otherwise (i.e. if the /// address is already in the list). pub fn insert(&mut self, addr: Multiaddr) -> bool { if self.addrs.iter().all(|a| *a != addr) { self.addrs.push(addr); true } else { false } } /// Replaces an old address with a new address. /// /// Returns true if the previous address was found and replaced with a clone /// of the new address, returns false otherwise. pub fn replace(&mut self, old: &Multiaddr, new: &Multiaddr) -> bool { if let Some(a) = self.addrs.iter_mut().find(|a| *a == old) { *a = new.clone(); return true } false } } impl From<SmallVec<[Multiaddr; 6]>> for Addresses { fn from(addrs: SmallVec<[Multiaddr; 6]>) -> Self { Addresses { addrs } } } impl fmt::Debug for Addresses { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { f.debug_list() .entries(self.addrs.iter()) .finish() } }