server: lifecycle

This commit is contained in:
Luna Yao
2026-03-31 03:37:23 +02:00
parent 70fba64e17
commit 08a1640e30
3 changed files with 11 additions and 7 deletions
+3 -3
View File
@@ -11,6 +11,7 @@ use crate::proto::dns::{DnsNodeMgrRpcClientFactory, DnsPeerMgrRpcServer, Heartbe
use crate::proto::rpc_impl::standalone::{StandAloneClient, StandAloneServer};
use crate::proto::rpc_types::controller::BaseController;
use crate::tunnel::tcp::{TcpTunnelConnector, TcpTunnelListener};
use crate::utils::AsyncRuntime;
use derivative::Derivative;
use futures::task::SpawnExt;
use std::sync::Arc;
@@ -20,7 +21,6 @@ use tokio::task::{JoinHandle, JoinSet};
use tokio::time::{sleep, sleep_until, Instant};
use tokio_util::sync::CancellationToken;
use uuid::Uuid;
use crate::utils::AsyncRuntime;
#[derive(Debug)]
struct DnsNodeRuntime {
@@ -74,7 +74,7 @@ impl DnsNode {
pub fn start(&self) {
let this = self.clone();
self.runtime.start(|token| async move {
self.runtime.start(None, |token| async move {
tokio::join!(this.run_election(token.clone()), this.run_node(token));
});
}
@@ -117,7 +117,7 @@ impl DnsNode {
tokio::join!(
self.peer_mgr
.add_nic_packet_process_pipeline(Box::new(server.clone())),
server.run()
server.run(token.child_token())
);
self.global_ctx.set_dns(None);
+5 -1
View File
@@ -270,7 +270,7 @@ impl DnsServer {
Ok(())
}
pub async fn run(&self) {
pub async fn run(&self, token: CancellationToken) {
let dirty = &self.mgr.dirty;
let mut runtime = None;
@@ -314,6 +314,10 @@ impl DnsServer {
};
tokio::select!(
_ = token.cancelled() => {
tracing::info!("DnsServer received shutdown signal, exiting server loop");
}
_ = reload_catalog => {},
_ = reload_addresses => {},
_ = reload_listeners => {},
+3 -3
View File
@@ -195,7 +195,7 @@ impl<T: Send + 'static> AsyncRuntime<T> {
self.inner.lock().as_ref().map(|r| r.token.clone())
}
pub fn start<F, Fut>(&self, factory: F)
pub fn start<F, Fut>(&self, token: Option<CancellationToken>, factory: F)
where
F: FnOnce(CancellationToken) -> Fut,
Fut: Future<Output = T> + Send + 'static,
@@ -207,8 +207,8 @@ impl<T: Send + 'static> AsyncRuntime<T> {
return;
}
}
let token = CancellationToken::new();
let token = token.unwrap_or_default();
runtime.replace(AsyncRuntimeInner {
task: tokio::spawn(factory(token.clone())).into(),
token,