split main signal handler to unit
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
f40a3ea4a6
commit
959fd2e6c4
2 changed files with 60 additions and 53 deletions
|
@ -1,14 +1,15 @@
|
||||||
pub(crate) mod clap;
|
pub(crate) mod clap;
|
||||||
mod mods;
|
mod mods;
|
||||||
mod server;
|
mod server;
|
||||||
|
mod signal;
|
||||||
|
|
||||||
extern crate conduit_core as conduit;
|
extern crate conduit_core as conduit;
|
||||||
|
|
||||||
use std::{cmp, sync::Arc, time::Duration};
|
use std::{cmp, sync::Arc, time::Duration};
|
||||||
|
|
||||||
use conduit::{debug_error, debug_info, error, trace, utils::available_parallelism, warn, Error, Result};
|
use conduit::{debug_info, error, utils::available_parallelism, Error, Result};
|
||||||
use server::Server;
|
use server::Server;
|
||||||
use tokio::{runtime, signal};
|
use tokio::runtime;
|
||||||
|
|
||||||
const WORKER_NAME: &str = "conduwuit:worker";
|
const WORKER_NAME: &str = "conduwuit:worker";
|
||||||
const WORKER_MIN: usize = 2;
|
const WORKER_MIN: usize = 2;
|
||||||
|
@ -26,7 +27,7 @@ fn main() -> Result<(), Error> {
|
||||||
.expect("built runtime");
|
.expect("built runtime");
|
||||||
|
|
||||||
let server: Arc<Server> = Server::build(args, Some(runtime.handle()))?;
|
let server: Arc<Server> = Server::build(args, Some(runtime.handle()))?;
|
||||||
runtime.spawn(signal(server.clone()));
|
runtime.spawn(signal::signal(server.clone()));
|
||||||
runtime.block_on(async_main(&server))?;
|
runtime.block_on(async_main(&server))?;
|
||||||
|
|
||||||
// explicit drop here to trace thread and tls dtors
|
// explicit drop here to trace thread and tls dtors
|
||||||
|
@ -95,53 +96,3 @@ async fn async_main(server: &Arc<Server>) -> Result<(), Error> {
|
||||||
debug_info!("Exit runtime");
|
debug_info!("Exit runtime");
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(unix)]
|
|
||||||
#[tracing::instrument(skip_all)]
|
|
||||||
async fn signal(server: Arc<Server>) {
|
|
||||||
use signal::unix;
|
|
||||||
use unix::SignalKind;
|
|
||||||
|
|
||||||
const CONSOLE: bool = cfg!(feature = "console");
|
|
||||||
const RELOADING: bool = cfg!(all(conduit_mods, not(CONSOLE)));
|
|
||||||
|
|
||||||
let mut quit = unix::signal(SignalKind::quit()).expect("SIGQUIT handler");
|
|
||||||
let mut term = unix::signal(SignalKind::terminate()).expect("SIGTERM handler");
|
|
||||||
loop {
|
|
||||||
trace!("Installed signal handlers");
|
|
||||||
let sig: &'static str;
|
|
||||||
tokio::select! {
|
|
||||||
_ = signal::ctrl_c() => { sig = "SIGINT"; },
|
|
||||||
_ = quit.recv() => { sig = "SIGQUIT"; },
|
|
||||||
_ = term.recv() => { sig = "SIGTERM"; },
|
|
||||||
}
|
|
||||||
|
|
||||||
warn!("Received {sig}");
|
|
||||||
let result = if RELOADING && sig == "SIGINT" {
|
|
||||||
server.server.reload()
|
|
||||||
} else if matches!(sig, "SIGQUIT" | "SIGTERM") || (!CONSOLE && sig == "SIGINT") {
|
|
||||||
server.server.shutdown()
|
|
||||||
} else {
|
|
||||||
server.server.signal(sig)
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Err(e) = result {
|
|
||||||
debug_error!(?sig, "signal: {e}");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(not(unix))]
|
|
||||||
#[tracing::instrument(skip_all)]
|
|
||||||
async fn signal(server: Arc<Server>) {
|
|
||||||
loop {
|
|
||||||
tokio::select! {
|
|
||||||
_ = signal::ctrl_c() => {
|
|
||||||
warn!("Received Ctrl+C");
|
|
||||||
if let Err(e) = server.server.signal.send("SIGINT") {
|
|
||||||
debug_error!("signal channel: {e}");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
56
src/main/signal.rs
Normal file
56
src/main/signal.rs
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
use conduit::{debug_error, trace, warn};
|
||||||
|
use tokio::signal;
|
||||||
|
|
||||||
|
use super::server::Server;
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
|
#[tracing::instrument(skip_all)]
|
||||||
|
pub(super) async fn signal(server: Arc<Server>) {
|
||||||
|
use signal::unix;
|
||||||
|
use unix::SignalKind;
|
||||||
|
|
||||||
|
const CONSOLE: bool = cfg!(feature = "console");
|
||||||
|
const RELOADING: bool = cfg!(all(conduit_mods, not(CONSOLE)));
|
||||||
|
|
||||||
|
let mut quit = unix::signal(SignalKind::quit()).expect("SIGQUIT handler");
|
||||||
|
let mut term = unix::signal(SignalKind::terminate()).expect("SIGTERM handler");
|
||||||
|
loop {
|
||||||
|
trace!("Installed signal handlers");
|
||||||
|
let sig: &'static str;
|
||||||
|
tokio::select! {
|
||||||
|
_ = signal::ctrl_c() => { sig = "SIGINT"; },
|
||||||
|
_ = quit.recv() => { sig = "SIGQUIT"; },
|
||||||
|
_ = term.recv() => { sig = "SIGTERM"; },
|
||||||
|
}
|
||||||
|
|
||||||
|
warn!("Received {sig}");
|
||||||
|
let result = if RELOADING && sig == "SIGINT" {
|
||||||
|
server.server.reload()
|
||||||
|
} else if matches!(sig, "SIGQUIT" | "SIGTERM") || (!CONSOLE && sig == "SIGINT") {
|
||||||
|
server.server.shutdown()
|
||||||
|
} else {
|
||||||
|
server.server.signal(sig)
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Err(e) = result {
|
||||||
|
debug_error!(?sig, "signal: {e}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(unix))]
|
||||||
|
#[tracing::instrument(skip_all)]
|
||||||
|
pub(super) async fn signal(server: Arc<Server>) {
|
||||||
|
loop {
|
||||||
|
tokio::select! {
|
||||||
|
_ = signal::ctrl_c() => {
|
||||||
|
warn!("Received Ctrl+C");
|
||||||
|
if let Err(e) = server.server.signal.send("SIGINT") {
|
||||||
|
debug_error!("signal channel: {e}");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue