2021-10-14 09:58:09 +00:00
|
|
|
use std::net::SocketAddr;
|
2021-10-18 10:39:19 +00:00
|
|
|
use std::net::ToSocketAddrs;
|
2021-10-14 09:58:09 +00:00
|
|
|
|
2021-10-13 15:12:13 +00:00
|
|
|
use log::info;
|
2022-06-07 22:30:56 +00:00
|
|
|
use serde::Serialize;
|
|
|
|
|
2020-12-07 12:35:24 +00:00
|
|
|
use tokio::sync::watch;
|
|
|
|
|
2022-07-22 11:06:10 +00:00
|
|
|
use crate::netapp::*;
|
2020-12-12 20:14:15 +00:00
|
|
|
|
2020-12-02 19:12:24 +00:00
|
|
|
/// Utility function: encodes any serializable value in MessagePack binary format
|
|
|
|
/// using the RMP library.
|
|
|
|
///
|
|
|
|
/// Field names and variant names are included in the serialization.
|
|
|
|
/// This is used internally by the netapp communication protocol.
|
2022-07-21 17:05:51 +00:00
|
|
|
pub fn rmp_to_vec_all_named<T>(val: &T) -> Result<Vec<u8>, rmp_serde::encode::Error>
|
2020-12-02 12:30:47 +00:00
|
|
|
where
|
2022-07-21 17:05:51 +00:00
|
|
|
T: Serialize + ?Sized,
|
2020-12-02 12:30:47 +00:00
|
|
|
{
|
|
|
|
let mut wr = Vec::with_capacity(128);
|
|
|
|
let mut se = rmp_serde::Serializer::new(&mut wr)
|
|
|
|
.with_struct_map()
|
|
|
|
.with_string_variants();
|
2022-06-07 22:30:56 +00:00
|
|
|
val.serialize(&mut se)?;
|
2022-07-21 17:05:51 +00:00
|
|
|
Ok(wr)
|
2020-12-02 12:30:47 +00:00
|
|
|
}
|
2020-12-07 12:35:24 +00:00
|
|
|
|
|
|
|
/// This async function returns only when a true signal was received
|
|
|
|
/// from a watcher that tells us when to exit.
|
2021-10-14 09:35:05 +00:00
|
|
|
///
|
2020-12-07 12:35:24 +00:00
|
|
|
/// Usefull in a select statement to interrupt another
|
|
|
|
/// future:
|
2021-10-13 16:05:49 +00:00
|
|
|
/// ```ignore
|
2020-12-07 12:35:24 +00:00
|
|
|
/// select!(
|
|
|
|
/// _ = a_long_task() => Success,
|
|
|
|
/// _ = await_exit(must_exit) => Interrupted,
|
|
|
|
/// )
|
|
|
|
/// ```
|
|
|
|
pub async fn await_exit(mut must_exit: watch::Receiver<bool>) {
|
2021-10-12 11:07:34 +00:00
|
|
|
while !*must_exit.borrow_and_update() {
|
|
|
|
if must_exit.changed().await.is_err() {
|
|
|
|
break;
|
2020-12-07 12:35:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-13 15:12:13 +00:00
|
|
|
|
2021-10-14 09:35:05 +00:00
|
|
|
/// Creates a watch that contains `false`, and that changes
|
|
|
|
/// to `true` when a Ctrl+C signal is received.
|
2021-10-13 15:12:13 +00:00
|
|
|
pub fn watch_ctrl_c() -> watch::Receiver<bool> {
|
|
|
|
let (send_cancel, watch_cancel) = watch::channel(false);
|
|
|
|
tokio::spawn(async move {
|
|
|
|
tokio::signal::ctrl_c()
|
|
|
|
.await
|
|
|
|
.expect("failed to install CTRL+C signal handler");
|
|
|
|
info!("Received CTRL+C, shutting down.");
|
|
|
|
send_cancel.send(true).unwrap();
|
|
|
|
});
|
|
|
|
watch_cancel
|
|
|
|
}
|
2021-10-14 09:58:09 +00:00
|
|
|
|
|
|
|
/// Parse a peer's address including public key, written in the format:
|
|
|
|
/// `<public key hex>@<ip>:<port>`
|
|
|
|
pub fn parse_peer_addr(peer: &str) -> Option<(NodeID, SocketAddr)> {
|
|
|
|
let delim = peer.find('@')?;
|
|
|
|
let (key, ip) = peer.split_at(delim);
|
|
|
|
let pubkey = NodeID::from_slice(&hex::decode(&key).ok()?)?;
|
|
|
|
let ip = ip[1..].parse::<SocketAddr>().ok()?;
|
|
|
|
Some((pubkey, ip))
|
|
|
|
}
|
2021-10-18 10:39:19 +00:00
|
|
|
|
|
|
|
/// Parse and resolve a peer's address including public key, written in the format:
|
|
|
|
/// `<public key hex>@<ip or hostname>:<port>`
|
|
|
|
pub fn parse_and_resolve_peer_addr(peer: &str) -> Option<(NodeID, Vec<SocketAddr>)> {
|
|
|
|
let delim = peer.find('@')?;
|
|
|
|
let (key, host) = peer.split_at(delim);
|
|
|
|
let pubkey = NodeID::from_slice(&hex::decode(&key).ok()?)?;
|
2021-10-18 10:59:55 +00:00
|
|
|
let hosts = host[1..].to_socket_addrs().ok()?.collect::<Vec<_>>();
|
2021-10-18 10:41:46 +00:00
|
|
|
if hosts.is_empty() {
|
|
|
|
return None;
|
|
|
|
}
|
2021-10-18 10:39:19 +00:00
|
|
|
Some((pubkey, hosts))
|
|
|
|
}
|