Modular Diplonat (with the option to disable useless modules) #8
1 changed files with 15 additions and 8 deletions
|
@ -2,14 +2,16 @@ use std::pin::Pin;
|
|||
|
||||
use anyhow::{anyhow, Result};
|
||||
use futures::future::{try_join_all, Future};
|
||||
use tokio::try_join;
|
||||
// use tokio::try_join;
|
||||
|
||||
type ActorTask = Pin<Box<dyn Future<Output = Result<()>>>>;
|
||||
|
||||
use crate::{
|
||||
config::ConfigOpts, consul_actor::ConsulActor, fw_actor::FirewallActor, igd_actor::IgdActor,
|
||||
};
|
||||
|
||||
pub struct Diplonat {
|
||||
actors: Vec<Pin<Box<dyn Future<Output = Result<()>>>>>,
|
||||
actors: Vec<ActorTask>,
|
||||
}
|
||||
|
||||
impl Diplonat {
|
||||
|
@ -17,14 +19,19 @@ impl Diplonat {
|
|||
let config = ConfigOpts::from_env()?;
|
||||
println!("{:#?}", config);
|
||||
|
||||
|
||||
let consul_actor = ConsulActor::new(config.consul);
|
||||
let mut actors = vec![Box::pin(consul_actor.listen())];
|
||||
let mut consul_actor = ConsulActor::new(config.consul);
|
||||
let consul_rx = consul_actor.rx_open_ports.clone();
|
||||
let actor_task: ActorTask = Box::pin(consul_actor.listen());
|
||||
|
||||
if let Some(actor) = FirewallActor::new(config.firewall, &consul_actor.rx_open_ports)? {
|
||||
actors.push(Box::pin(actor.listen()));
|
||||
let mut actors = vec![actor_task];
|
||||
|
||||
if let Some(mut actor) = FirewallActor::new(config.firewall, &consul_rx)? {
|
||||
let actor_task: ActorTask = Box::pin(actor.listen());
|
||||
actors.push(actor_task);
|
||||
}
|
||||
if let Some(actor) = IgdActor::new(config.igd, &consul_actor.rx_open_ports).await? {
|
||||
actors.push(Box::pin(actor.listen()));
|
||||
if let Some(mut actor) = IgdActor::new(config.igd, &consul_rx).await? {
|
||||
let actor_task: ActorTask = Box::pin(actor.listen());
|
||||
actors.push(actor_task);
|
||||
}
|
||||
|
||||
if actors.len() == 1 {
|
||||
|
|
Loading…
Reference in a new issue
Now that our actors are modular, I think that this function fails to convey the real meaning of what we want to do.
IMHO, I think we want to:
With the current code, I see many problems.
((1)) I have a feeling that we are duplicating logic between the "runtime config" and our actor initialization. Currently, the constructor of the actor is only:
To fix this problem, I see 2 options:
((2)) The current
try_join!
fails to convey the information that we run only the initialized actors. I think that, independently of the choice you made for 1, you should create a vector of initialized actors that you will populate and then run. You will replacetry_join!
bytry_join_all
Tip: start by solving problem number 2, it will help you solve problem number 1