2018-06-01 10:10:00 +02:00
|
|
|
///! # multiaddr
|
|
|
|
///!
|
|
|
|
///! Implementation of [multiaddr](https://github.com/jbenet/multiaddr)
|
|
|
|
///! in Rust.
|
2018-08-10 17:47:02 +02:00
|
|
|
|
2019-02-11 14:58:15 +01:00
|
|
|
pub use multihash;
|
2018-06-01 10:10:00 +02:00
|
|
|
|
|
|
|
mod protocol;
|
|
|
|
mod errors;
|
|
|
|
|
2019-04-08 10:57:09 +02:00
|
|
|
use bytes::Bytes;
|
2018-09-20 19:51:00 +02:00
|
|
|
use serde::{
|
|
|
|
Deserialize,
|
|
|
|
Deserializer,
|
|
|
|
Serialize,
|
|
|
|
Serializer,
|
|
|
|
de::{self, Error as DeserializerError}
|
|
|
|
};
|
|
|
|
use std::{
|
|
|
|
fmt,
|
|
|
|
iter::FromIterator,
|
|
|
|
net::{SocketAddr, SocketAddrV4, SocketAddrV6, IpAddr, Ipv4Addr, Ipv6Addr},
|
|
|
|
result::Result as StdResult,
|
|
|
|
str::FromStr
|
|
|
|
};
|
2019-01-29 10:02:29 +00:00
|
|
|
pub use self::errors::{Result, Error};
|
|
|
|
pub use self::protocol::Protocol;
|
2018-06-01 10:10:00 +02:00
|
|
|
|
|
|
|
/// Representation of a Multiaddr.
|
|
|
|
#[derive(PartialEq, Eq, Clone, Hash)]
|
2019-04-08 10:57:09 +02:00
|
|
|
pub struct Multiaddr { bytes: Bytes }
|
2018-06-01 10:10:00 +02:00
|
|
|
|
2018-08-20 12:04:22 +02:00
|
|
|
impl Serialize for Multiaddr {
|
|
|
|
fn serialize<S>(&self, serializer: S) -> StdResult<S::Ok, S::Error>
|
|
|
|
where
|
|
|
|
S: Serializer,
|
|
|
|
{
|
|
|
|
if serializer.is_human_readable() {
|
2019-02-18 11:39:49 +01:00
|
|
|
serializer.serialize_str(&self.to_string())
|
2018-08-20 12:04:22 +02:00
|
|
|
} else {
|
2019-02-18 11:39:49 +01:00
|
|
|
serializer.serialize_bytes(self.as_slice())
|
2018-08-20 12:04:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'de> Deserialize<'de> for Multiaddr {
|
|
|
|
fn deserialize<D>(deserializer: D) -> StdResult<Self, D::Error>
|
|
|
|
where
|
|
|
|
D: Deserializer<'de>,
|
|
|
|
{
|
2019-02-18 11:39:49 +01:00
|
|
|
struct Visitor { is_human_readable: bool };
|
2018-09-20 19:51:00 +02:00
|
|
|
|
|
|
|
impl<'de> de::Visitor<'de> for Visitor {
|
|
|
|
type Value = Multiaddr;
|
|
|
|
|
2019-02-11 14:58:15 +01:00
|
|
|
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2018-09-20 19:51:00 +02:00
|
|
|
formatter.write_str("multiaddress")
|
|
|
|
}
|
2019-02-18 11:39:49 +01:00
|
|
|
fn visit_seq<A: de::SeqAccess<'de>>(self, mut seq: A) -> StdResult<Self::Value, A::Error> {
|
|
|
|
let mut buf: Vec<u8> = Vec::with_capacity(seq.size_hint().unwrap_or(0));
|
|
|
|
while let Some(e) = seq.next_element()? { buf.push(e); }
|
|
|
|
if self.is_human_readable {
|
|
|
|
let s = String::from_utf8(buf).map_err(DeserializerError::custom)?;
|
|
|
|
s.parse().map_err(DeserializerError::custom)
|
|
|
|
} else {
|
2019-04-08 10:57:09 +02:00
|
|
|
Multiaddr::try_from_vec(buf).map_err(DeserializerError::custom)
|
2019-02-18 11:39:49 +01:00
|
|
|
}
|
|
|
|
}
|
2018-09-20 19:51:00 +02:00
|
|
|
fn visit_str<E: de::Error>(self, v: &str) -> StdResult<Self::Value, E> {
|
|
|
|
v.parse().map_err(DeserializerError::custom)
|
|
|
|
}
|
|
|
|
fn visit_borrowed_str<E: de::Error>(self, v: &'de str) -> StdResult<Self::Value, E> {
|
|
|
|
self.visit_str(v)
|
|
|
|
}
|
|
|
|
fn visit_string<E: de::Error>(self, v: String) -> StdResult<Self::Value, E> {
|
|
|
|
self.visit_str(&v)
|
|
|
|
}
|
|
|
|
fn visit_bytes<E: de::Error>(self, v: &[u8]) -> StdResult<Self::Value, E> {
|
|
|
|
self.visit_byte_buf(v.into())
|
|
|
|
}
|
|
|
|
fn visit_borrowed_bytes<E: de::Error>(self, v: &'de [u8]) -> StdResult<Self::Value, E> {
|
|
|
|
self.visit_byte_buf(v.into())
|
|
|
|
}
|
|
|
|
fn visit_byte_buf<E: de::Error>(self, v: Vec<u8>) -> StdResult<Self::Value, E> {
|
2019-04-08 10:57:09 +02:00
|
|
|
Multiaddr::try_from_vec(v).map_err(DeserializerError::custom)
|
2018-09-20 19:51:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 12:04:22 +02:00
|
|
|
if deserializer.is_human_readable() {
|
2019-02-18 11:39:49 +01:00
|
|
|
deserializer.deserialize_str(Visitor { is_human_readable: true })
|
2018-08-20 12:04:22 +02:00
|
|
|
} else {
|
2019-02-18 11:39:49 +01:00
|
|
|
deserializer.deserialize_bytes(Visitor { is_human_readable: false })
|
2018-08-20 12:04:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-01 10:10:00 +02:00
|
|
|
impl fmt::Debug for Multiaddr {
|
|
|
|
#[inline]
|
2019-02-11 14:58:15 +01:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2018-06-01 10:10:00 +02:00
|
|
|
self.to_string().fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Multiaddr {
|
|
|
|
/// Convert a Multiaddr to a string
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2018-12-07 15:40:02 +01:00
|
|
|
/// use parity_multiaddr::Multiaddr;
|
2018-06-01 10:10:00 +02:00
|
|
|
///
|
|
|
|
/// let address: Multiaddr = "/ip4/127.0.0.1/udt".parse().unwrap();
|
|
|
|
/// assert_eq!(address.to_string(), "/ip4/127.0.0.1/udt");
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
#[inline]
|
2019-02-11 14:58:15 +01:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2018-06-01 10:10:00 +02:00
|
|
|
for s in self.iter() {
|
|
|
|
s.to_string().fmt(f)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Multiaddr {
|
2019-04-08 10:57:09 +02:00
|
|
|
#[deprecated(since = "0.2.1", note = "Use `Multiaddr::to_vec` instead.")]
|
|
|
|
pub fn into_bytes(self) -> Vec<u8> {
|
|
|
|
self.to_vec()
|
2018-10-15 16:29:32 +02:00
|
|
|
}
|
|
|
|
|
2019-04-08 10:57:09 +02:00
|
|
|
#[deprecated(since = "0.2.1", note = "Use `Multiaddr::to_vec` instead.")]
|
|
|
|
pub fn to_bytes(&self) -> Vec<u8> {
|
|
|
|
self.to_vec()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[deprecated(since = "0.2.1", note = "Use `Multiaddr::try_from_vec` instead.")]
|
|
|
|
pub fn from_bytes(bytes: Vec<u8>) -> Result<Multiaddr> {
|
|
|
|
Self::try_from_vec(bytes)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new, empty multiaddress.
|
|
|
|
pub fn empty() -> Multiaddr {
|
|
|
|
Multiaddr { bytes: Bytes::new() }
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Return a copy to disallow changing the bytes directly
|
2019-04-08 10:57:09 +02:00
|
|
|
pub fn to_vec(&self) -> Vec<u8> {
|
|
|
|
Vec::from(&self.bytes[..])
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Produces a `Multiaddr` from its bytes representation.
|
2019-04-08 10:57:09 +02:00
|
|
|
pub fn try_from_vec(v: Vec<u8>) -> Result<Multiaddr> {
|
|
|
|
// Check if the argument is a valid `Multiaddr`
|
|
|
|
// by reading its protocols.
|
|
|
|
let mut ptr = &v[..];
|
|
|
|
while !ptr.is_empty() {
|
|
|
|
let (_, new_ptr) = Protocol::from_bytes(ptr)?;
|
|
|
|
ptr = new_ptr;
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
2019-04-08 10:57:09 +02:00
|
|
|
Ok(Multiaddr { bytes: v.into() })
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Extracts a slice containing the entire underlying vector.
|
|
|
|
pub fn as_slice(&self) -> &[u8] {
|
|
|
|
&self.bytes
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Wrap a given Multiaddr and return the combination.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2018-12-07 15:40:02 +01:00
|
|
|
/// use parity_multiaddr::Multiaddr;
|
2018-06-01 10:10:00 +02:00
|
|
|
///
|
|
|
|
/// let address: Multiaddr = "/ip4/127.0.0.1".parse().unwrap();
|
|
|
|
/// let nested = address.encapsulate("/udt").unwrap();
|
|
|
|
/// assert_eq!(nested, "/ip4/127.0.0.1/udt".parse().unwrap());
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
pub fn encapsulate<T: ToMultiaddr>(&self, input: T) -> Result<Multiaddr> {
|
|
|
|
let new = input.to_multiaddr()?;
|
|
|
|
let mut bytes = self.bytes.clone();
|
2019-04-08 10:57:09 +02:00
|
|
|
bytes.extend_from_slice(&new.bytes);
|
2018-09-20 19:51:00 +02:00
|
|
|
Ok(Multiaddr { bytes })
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Adds an already-parsed address component to the end of this multiaddr.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2018-12-07 15:40:02 +01:00
|
|
|
/// use parity_multiaddr::{Multiaddr, Protocol};
|
2018-06-01 10:10:00 +02:00
|
|
|
///
|
|
|
|
/// let mut address: Multiaddr = "/ip4/127.0.0.1".parse().unwrap();
|
2018-09-20 19:51:00 +02:00
|
|
|
/// address.append(Protocol::Tcp(10000));
|
2018-06-01 10:10:00 +02:00
|
|
|
/// assert_eq!(address, "/ip4/127.0.0.1/tcp/10000".parse().unwrap());
|
|
|
|
/// ```
|
|
|
|
///
|
2019-02-11 14:58:15 +01:00
|
|
|
pub fn append(&mut self, p: Protocol<'_>) {
|
2019-04-08 10:57:09 +02:00
|
|
|
let mut w = Vec::new();
|
|
|
|
p.write_bytes(&mut w).expect("writing to a Vec never fails");
|
|
|
|
self.bytes.extend_from_slice(&w);
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Remove the outermost address.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```
|
2018-12-07 15:40:02 +01:00
|
|
|
/// use parity_multiaddr::{Multiaddr, ToMultiaddr};
|
2018-06-01 10:10:00 +02:00
|
|
|
///
|
|
|
|
/// let address: Multiaddr = "/ip4/127.0.0.1/udt/sctp/5678".parse().unwrap();
|
|
|
|
/// let unwrapped = address.decapsulate("/udt").unwrap();
|
|
|
|
/// assert_eq!(unwrapped, "/ip4/127.0.0.1".parse().unwrap());
|
|
|
|
///
|
|
|
|
/// assert_eq!(
|
|
|
|
/// address.decapsulate("/udt").unwrap(),
|
|
|
|
/// "/ip4/127.0.0.1".to_multiaddr().unwrap()
|
|
|
|
/// );
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Returns the original if the passed in address is not found
|
|
|
|
///
|
|
|
|
/// ```
|
2018-12-07 15:40:02 +01:00
|
|
|
/// use parity_multiaddr::ToMultiaddr;
|
2018-06-01 10:10:00 +02:00
|
|
|
///
|
|
|
|
/// let address = "/ip4/127.0.0.1/udt/sctp/5678".to_multiaddr().unwrap();
|
|
|
|
/// let unwrapped = address.decapsulate("/ip4/127.0.1.1").unwrap();
|
|
|
|
/// assert_eq!(unwrapped, address);
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
pub fn decapsulate<T: ToMultiaddr>(&self, input: T) -> Result<Multiaddr> {
|
2019-04-08 10:57:09 +02:00
|
|
|
let input = input.to_multiaddr()?.to_vec();
|
2018-06-01 10:10:00 +02:00
|
|
|
|
|
|
|
let bytes_len = self.bytes.len();
|
|
|
|
let input_length = input.len();
|
|
|
|
|
|
|
|
let mut input_pos = 0;
|
|
|
|
let mut matches = false;
|
|
|
|
|
|
|
|
for (i, _) in self.bytes.iter().enumerate() {
|
|
|
|
let next = i + input_length;
|
|
|
|
|
|
|
|
if next > bytes_len {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
if self.bytes[i..next] == input[..] {
|
2018-06-01 10:10:00 +02:00
|
|
|
matches = true;
|
|
|
|
input_pos = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !matches {
|
2019-04-08 10:57:09 +02:00
|
|
|
return Ok(self.clone())
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut bytes = self.bytes.clone();
|
|
|
|
bytes.truncate(input_pos);
|
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
Ok(Multiaddr { bytes })
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the components of this multiaddress.
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// use std::net::Ipv4Addr;
|
2018-12-07 15:40:02 +01:00
|
|
|
/// use parity_multiaddr::{Multiaddr, Protocol};
|
2018-06-01 10:10:00 +02:00
|
|
|
///
|
|
|
|
/// let address: Multiaddr = "/ip4/127.0.0.1/udt/sctp/5678".parse().unwrap();
|
|
|
|
///
|
|
|
|
/// let components = address.iter().collect::<Vec<_>>();
|
2018-09-20 19:51:00 +02:00
|
|
|
/// assert_eq!(components[0], Protocol::Ip4(Ipv4Addr::new(127, 0, 0, 1)));
|
|
|
|
/// assert_eq!(components[1], Protocol::Udt);
|
|
|
|
/// assert_eq!(components[2], Protocol::Sctp(5678));
|
2018-06-01 10:10:00 +02:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
#[inline]
|
2019-02-11 14:58:15 +01:00
|
|
|
pub fn iter(&self) -> Iter<'_> {
|
2018-06-01 10:10:00 +02:00
|
|
|
Iter(&self.bytes)
|
|
|
|
}
|
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
/// Pops the last `Protocol` of this multiaddr, or `None` if the multiaddr is empty.
|
2018-06-01 10:10:00 +02:00
|
|
|
/// ```
|
2018-12-07 15:40:02 +01:00
|
|
|
/// use parity_multiaddr::{Multiaddr, Protocol};
|
2018-06-01 10:10:00 +02:00
|
|
|
///
|
|
|
|
/// let mut address: Multiaddr = "/ip4/127.0.0.1/udt/sctp/5678".parse().unwrap();
|
|
|
|
///
|
2018-09-20 19:51:00 +02:00
|
|
|
/// assert_eq!(address.pop().unwrap(), Protocol::Sctp(5678));
|
|
|
|
/// assert_eq!(address.pop().unwrap(), Protocol::Udt);
|
2018-06-01 10:10:00 +02:00
|
|
|
/// ```
|
|
|
|
///
|
2018-09-20 19:51:00 +02:00
|
|
|
pub fn pop<'a>(&mut self) -> Option<Protocol<'a>> {
|
2018-06-01 10:10:00 +02:00
|
|
|
// Note: could be more optimized
|
2018-09-20 19:51:00 +02:00
|
|
|
let mut list = self.iter().map(|p| p.acquire()).collect::<Vec<_>>();
|
2018-06-01 10:10:00 +02:00
|
|
|
let last_elem = list.pop();
|
|
|
|
*self = list.into_iter().collect();
|
|
|
|
last_elem
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
impl<'a> From<Protocol<'a>> for Multiaddr {
|
|
|
|
fn from(p: Protocol<'a>) -> Multiaddr {
|
|
|
|
let mut w = Vec::new();
|
|
|
|
p.write_bytes(&mut w).expect("writing to a Vec never fails");
|
2019-04-08 10:57:09 +02:00
|
|
|
Multiaddr { bytes: w.into() }
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> IntoIterator for &'a Multiaddr {
|
2018-09-20 19:51:00 +02:00
|
|
|
type Item = Protocol<'a>;
|
2018-06-01 10:10:00 +02:00
|
|
|
type IntoIter = Iter<'a>;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn into_iter(self) -> Iter<'a> {
|
|
|
|
Iter(&self.bytes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
impl<'a> FromIterator<Protocol<'a>> for Multiaddr {
|
2018-06-01 10:10:00 +02:00
|
|
|
fn from_iter<T>(iter: T) -> Self
|
|
|
|
where
|
2018-09-20 19:51:00 +02:00
|
|
|
T: IntoIterator<Item = Protocol<'a>>,
|
2018-06-01 10:10:00 +02:00
|
|
|
{
|
2018-09-20 19:51:00 +02:00
|
|
|
let mut writer = Vec::new();
|
2018-06-01 10:10:00 +02:00
|
|
|
for cmp in iter {
|
2018-09-20 19:51:00 +02:00
|
|
|
cmp.write_bytes(&mut writer).expect("writing to a Vec never fails");
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
2019-04-08 10:57:09 +02:00
|
|
|
Multiaddr { bytes: writer.into() }
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for Multiaddr {
|
|
|
|
type Err = Error;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn from_str(input: &str) -> Result<Self> {
|
2018-09-20 19:51:00 +02:00
|
|
|
let mut writer = Vec::new();
|
|
|
|
let mut parts = input.split('/').peekable();
|
2018-06-01 10:10:00 +02:00
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
if Some("") != parts.next() {
|
|
|
|
// A multiaddr must start with `/`
|
|
|
|
return Err(Error::InvalidMultiaddr)
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
while parts.peek().is_some() {
|
|
|
|
let p = Protocol::from_str_parts(&mut parts)?;
|
|
|
|
p.write_bytes(&mut writer).expect("writing to a Vec never fails");
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
|
2019-04-08 10:57:09 +02:00
|
|
|
Ok(Multiaddr { bytes: writer.into() })
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Iterator for the address components in a multiaddr.
|
|
|
|
pub struct Iter<'a>(&'a [u8]);
|
|
|
|
|
|
|
|
impl<'a> Iterator for Iter<'a> {
|
2018-09-20 19:51:00 +02:00
|
|
|
type Item = Protocol<'a>;
|
2018-06-01 10:10:00 +02:00
|
|
|
|
2018-09-14 10:21:14 +02:00
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
2018-06-01 10:10:00 +02:00
|
|
|
if self.0.is_empty() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2018-09-20 19:51:00 +02:00
|
|
|
let (p, next_data) =
|
|
|
|
Protocol::from_bytes(self.0).expect("multiaddr is known to be valid");
|
|
|
|
|
2018-06-01 10:10:00 +02:00
|
|
|
self.0 = next_data;
|
2018-09-20 19:51:00 +02:00
|
|
|
Some(p)
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A trait for objects which can be converted to a
|
|
|
|
/// Multiaddr.
|
|
|
|
///
|
|
|
|
/// This trait is implemented by default for
|
|
|
|
///
|
|
|
|
/// * `SocketAddr`, `SocketAddrV4` and `SocketAddrV6`, assuming that the
|
|
|
|
/// the given port is a tcp port.
|
|
|
|
///
|
|
|
|
/// * `Ipv4Addr`, `Ipv6Addr`
|
|
|
|
///
|
|
|
|
/// * `String` and `&str`, requiring the default string format for a Multiaddr.
|
|
|
|
///
|
|
|
|
pub trait ToMultiaddr {
|
|
|
|
/// Converts this object to a Multiaddr
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Any errors encountered during parsing will be returned
|
|
|
|
/// as an `Err`.
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for SocketAddr {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
|
|
|
match *self {
|
|
|
|
SocketAddr::V4(ref a) => (*a).to_multiaddr(),
|
|
|
|
SocketAddr::V6(ref a) => (*a).to_multiaddr(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for SocketAddrV4 {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
2018-09-20 19:51:00 +02:00
|
|
|
let mut m = self.ip().to_multiaddr()?;
|
|
|
|
m.append(Protocol::Tcp(self.port()));
|
|
|
|
Ok(m)
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for SocketAddrV6 {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
2018-09-20 19:51:00 +02:00
|
|
|
// TODO: Should we handle `flowinfo` and `scope_id`?
|
|
|
|
let mut m = self.ip().to_multiaddr()?;
|
|
|
|
m.append(Protocol::Tcp(self.port()));
|
|
|
|
Ok(m)
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for IpAddr {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
|
|
|
match *self {
|
|
|
|
IpAddr::V4(ref a) => (*a).to_multiaddr(),
|
|
|
|
IpAddr::V6(ref a) => (*a).to_multiaddr(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for Ipv4Addr {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
2018-09-20 19:51:00 +02:00
|
|
|
Ok(Protocol::Ip4(*self).into())
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for Ipv6Addr {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
2018-09-20 19:51:00 +02:00
|
|
|
Ok(Protocol::Ip6(*self).into())
|
2018-06-01 10:10:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for String {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
|
|
|
self.parse()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ToMultiaddr for &'a str {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
|
|
|
self.parse()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ToMultiaddr for Multiaddr {
|
|
|
|
fn to_multiaddr(&self) -> Result<Multiaddr> {
|
|
|
|
Ok(self.clone())
|
|
|
|
}
|
|
|
|
}
|
2019-02-18 13:35:51 +01:00
|
|
|
|
|
|
|
/// Easy way for a user to create a `Multiaddr`.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use parity_multiaddr::multiaddr;
|
|
|
|
/// # fn main() {
|
|
|
|
/// let _addr = multiaddr![Ip4([127, 0, 0, 1]), Tcp(10500u16)];
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Each element passed to `multiaddr![]` should be a variant of the `Protocol` enum. The
|
|
|
|
/// optional parameter is casted into the proper type with the `Into` trait.
|
|
|
|
///
|
|
|
|
/// For example, `Ip4([127, 0, 0, 1])` works because `Ipv4Addr` implements `From<[u8; 4]>`.
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! multiaddr {
|
|
|
|
($($comp:ident $(($param:expr))*),+) => {
|
|
|
|
{
|
|
|
|
use std::iter;
|
|
|
|
let elem = iter::empty::<$crate::Protocol>();
|
|
|
|
$(
|
|
|
|
let elem = {
|
|
|
|
let cmp = $crate::Protocol::$comp $(( $param.into() ))*;
|
|
|
|
elem.chain(iter::once(cmp))
|
|
|
|
};
|
|
|
|
)+
|
|
|
|
elem.collect::<$crate::Multiaddr>()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|