mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-19 22:19:49 -04:00
* new sql lib stuff * add sync stuff + rename all crates * build sd-core * add sync/example/dist to source * fix sync example in monorepop * appease clippy * update lockfile * update commit hooks * fix typescript * fix typescript build * please rustfmt
33 lines
707 B
Rust
33 lines
707 B
Rust
use std::sync::Arc;
|
|
|
|
use sd_core::Node;
|
|
use tokio::signal;
|
|
|
|
/// shutdown_signal will inform axum to gracefully shutdown when the process is asked to shutdown.
|
|
pub async fn axum_shutdown_signal(node: Arc<Node>) {
|
|
let ctrl_c = async {
|
|
signal::ctrl_c()
|
|
.await
|
|
.expect("failed to install Ctrl+C handler");
|
|
};
|
|
|
|
#[cfg(unix)]
|
|
let terminate = async {
|
|
signal::unix::signal(signal::unix::SignalKind::terminate())
|
|
.expect("failed to install signal handler")
|
|
.recv()
|
|
.await;
|
|
};
|
|
|
|
#[cfg(not(unix))]
|
|
let terminate = std::future::pending::<()>();
|
|
|
|
tokio::select! {
|
|
_ = ctrl_c => {},
|
|
_ = terminate => {},
|
|
}
|
|
|
|
println!("signal received, starting graceful shutdown");
|
|
node.shutdown().await;
|
|
}
|