diplonat/src/consul_actor.rs

107 lines
2.8 KiB
Rust
Raw Normal View History

2020-05-22 10:25:44 +00:00
use std::cmp;
use std::time::Duration;
use log::*;
2020-05-22 12:17:48 +00:00
use tokio::sync::watch;
use tokio::time::delay_for;
use anyhow::Result;
use serde::{Serialize, Deserialize};
use serde_lexpr::{from_str,to_string,error};
use crate::messages;
use crate::consul;
#[derive(Serialize, Deserialize, Debug)]
pub enum DiplonatParameter {
2020-05-22 14:27:43 +00:00
tcp_port(Vec<u16>),
udp_port(Vec<u16>)
2020-05-22 12:17:48 +00:00
}
#[derive(Serialize, Deserialize, Debug)]
pub enum DiplonatConsul {
diplonat(Vec<DiplonatParameter>)
}
2020-05-22 09:34:12 +00:00
pub struct ConsulActor {
2020-05-22 14:27:43 +00:00
pub rx_open_ports: watch::Receiver<messages::PublicExposedPorts>,
2020-05-22 10:25:44 +00:00
2020-05-22 12:17:48 +00:00
consul: consul::Consul,
2020-05-22 10:25:44 +00:00
node: String,
retries: u32,
2020-05-22 14:27:43 +00:00
tx_open_ports: watch::Sender<messages::PublicExposedPorts>
2020-05-22 10:25:44 +00:00
}
fn retry_to_time(retries: u32, max_time: Duration) -> Duration {
// 1.2^x seems to be a good value to exponentially increase time at a good pace
// eg. 1.2^32 = 341 seconds ~= 5 minutes - ie. after 32 retries we wait 5 minutes
2020-05-22 13:19:49 +00:00
return Duration::from_secs(cmp::min(max_time.as_secs(), 1.2f64.powf(retries as f64) as u64))
2020-05-22 09:34:12 +00:00
}
2020-05-22 16:13:32 +00:00
fn to_parameters(catalog: &consul::CatalogNode) -> Vec<DiplonatConsul> {
let mut r = Vec::new();
2020-05-22 14:27:43 +00:00
2020-05-22 12:17:48 +00:00
for (_, service_info) in &catalog.Services {
for tag in &service_info.Tags {
let diplo_conf: error::Result<DiplonatConsul> = from_str(tag);
match diplo_conf {
2020-05-22 16:13:32 +00:00
Ok(conf) => r.push(conf),
2020-05-22 12:17:48 +00:00
Err(e) => debug!("Failed to parse entry {}. {}", tag, e),
};
}
}
2020-05-22 16:13:32 +00:00
return r;
}
fn to_open_ports(params: &Vec<DiplonatConsul>) -> messages::PublicExposedPorts {
let mut op = messages::PublicExposedPorts {
tcp_ports: Vec::new(),
udp_ports: Vec::new()
};
for conf in params {
let DiplonatConsul::diplonat(c) = conf;
for parameter in c {
match parameter {
DiplonatParameter::tcp_port(p) => op.tcp_ports.extend(p),
DiplonatParameter::udp_port(p) => op.udp_ports.extend(p),
};
}
}
2020-05-22 12:17:48 +00:00
return op;
}
2020-05-22 09:34:12 +00:00
impl ConsulActor {
2020-05-22 10:29:55 +00:00
pub fn new(url: &str, node: &str) -> Self {
2020-05-22 14:27:43 +00:00
let (tx, rx) = watch::channel(messages::PublicExposedPorts{
tcp_ports: Vec::new(),
udp_ports: Vec::new()
});
2020-05-22 09:34:12 +00:00
return Self {
2020-05-22 12:17:48 +00:00
consul: consul::Consul::new(url),
2020-05-22 10:25:44 +00:00
rx_open_ports: rx,
tx_open_ports: tx,
node: node.to_string(),
retries: 0,
2020-05-22 09:34:12 +00:00
};
}
2020-05-22 10:25:44 +00:00
2020-05-22 10:29:55 +00:00
pub async fn listen(&mut self) -> Result<()> {
2020-05-22 10:25:44 +00:00
loop {
let catalog = match self.consul.watch_node(&self.node).await {
Ok(c) => c,
Err(e) => {
2020-05-22 13:19:49 +00:00
self.consul.watch_node_reset();
2020-05-22 10:25:44 +00:00
self.retries = cmp::min(u32::MAX - 1, self.retries) + 1;
let will_retry_in = retry_to_time(self.retries, Duration::from_secs(600));
error!("Failed to query consul. Will retry in {}s. {}", will_retry_in.as_secs(), e);
delay_for(will_retry_in).await;
continue;
}
};
2020-05-22 13:19:49 +00:00
self.retries = 0;
2020-05-22 16:13:32 +00:00
info!("{:#?}", to_open_ports(&to_parameters(&catalog)));
2020-05-22 10:25:44 +00:00
}
}
2020-05-22 09:34:12 +00:00
}