mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-05-06 17:59:11 +00:00
50 lines
1.5 KiB
Rust
50 lines
1.5 KiB
Rust
use std::sync::Arc;
|
|
|
|
use crate::{common::scoped_task::ScopedTask, tunnel::TunnelConnector};
|
|
|
|
pub mod controller;
|
|
pub mod session;
|
|
|
|
pub struct WebClient {
|
|
controller: Arc<controller::Controller>,
|
|
tasks: ScopedTask<()>,
|
|
}
|
|
|
|
impl WebClient {
|
|
pub fn new<T: TunnelConnector + 'static, S: ToString, H: ToString>(connector: T, token: S, hostname: H) -> Self {
|
|
let controller = Arc::new(controller::Controller::new(token.to_string(),
|
|
hostname.to_string()));
|
|
|
|
let controller_clone = controller.clone();
|
|
let tasks = ScopedTask::from(tokio::spawn(async move {
|
|
Self::routine(controller_clone, Box::new(connector)).await;
|
|
}));
|
|
|
|
WebClient { controller, tasks }
|
|
}
|
|
|
|
async fn routine(
|
|
controller: Arc<controller::Controller>,
|
|
mut connector: Box<dyn TunnelConnector>,
|
|
) {
|
|
loop {
|
|
let conn = match connector.connect().await {
|
|
Ok(conn) => conn,
|
|
Err(e) => {
|
|
println!(
|
|
"Failed to connect to the server ({}), retrying in 5 seconds...",
|
|
e
|
|
);
|
|
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
|
|
continue;
|
|
}
|
|
};
|
|
|
|
println!("Successfully connected to {:?}", conn.info());
|
|
|
|
let mut session = session::Session::new(conn, controller.clone());
|
|
session.wait().await;
|
|
}
|
|
}
|
|
}
|