Compare commits
2 Commits
6e60f58145
...
using-ubun
| Author | SHA1 | Date | |
|---|---|---|---|
| 05dde284a7 | |||
| 5a0c901281 |
65
Cargo.lock
generated
65
Cargo.lock
generated
@@ -86,6 +86,15 @@ version = "1.0.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "deranged"
|
||||||
|
version = "0.3.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
|
||||||
|
dependencies = [
|
||||||
|
"powerfmt",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "futures-core"
|
name = "futures-core"
|
||||||
version = "0.3.29"
|
version = "0.3.29"
|
||||||
@@ -179,6 +188,15 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "num_threads"
|
||||||
|
version = "0.1.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "object"
|
name = "object"
|
||||||
version = "0.32.1"
|
version = "0.32.1"
|
||||||
@@ -217,6 +235,12 @@ version = "0.2.13"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "powerfmt"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "proc-macro2"
|
name = "proc-macro2"
|
||||||
version = "1.0.69"
|
version = "1.0.69"
|
||||||
@@ -285,6 +309,26 @@ version = "1.2.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "serde"
|
||||||
|
version = "1.0.193"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
|
||||||
|
dependencies = [
|
||||||
|
"serde_derive",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "serde_derive"
|
||||||
|
version = "1.0.193"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "signal-hook-registry"
|
name = "signal-hook-registry"
|
||||||
version = "1.4.1"
|
version = "1.4.1"
|
||||||
@@ -341,6 +385,26 @@ dependencies = [
|
|||||||
"syn",
|
"syn",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "time"
|
||||||
|
version = "0.3.30"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
|
||||||
|
dependencies = [
|
||||||
|
"deranged",
|
||||||
|
"libc",
|
||||||
|
"num_threads",
|
||||||
|
"powerfmt",
|
||||||
|
"serde",
|
||||||
|
"time-core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "time-core"
|
||||||
|
version = "0.1.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.34.0"
|
version = "1.34.0"
|
||||||
@@ -471,6 +535,7 @@ dependencies = [
|
|||||||
"nix",
|
"nix",
|
||||||
"regex",
|
"regex",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
|
"time",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-util",
|
"tokio-util",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -11,5 +11,6 @@ lazy_static = "1.4.0"
|
|||||||
nix = {version = "0.27.1", features = ["process", "signal", "fs"]}
|
nix = {version = "0.27.1", features = ["process", "signal", "fs"]}
|
||||||
regex = "1.10.2"
|
regex = "1.10.2"
|
||||||
thiserror = "1.0.50"
|
thiserror = "1.0.50"
|
||||||
|
time = { version = "0.3.30", features = ["local-offset"]}
|
||||||
tokio = { version = "1.34.0", features = ["full"] }
|
tokio = { version = "1.34.0", features = ["full"] }
|
||||||
tokio-util = "0.7.10"
|
tokio-util = "0.7.10"
|
||||||
|
|||||||
@@ -3,11 +3,14 @@ use std::env;
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::io::{BufReader, BufRead};
|
use std::io::{BufReader, BufRead};
|
||||||
use crate::init::error as wingmate_error;
|
use crate::init::error as wingmate_error;
|
||||||
|
use anyhow::anyhow;
|
||||||
use nix::unistd::{access, AccessFlags};
|
use nix::unistd::{access, AccessFlags};
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
use regex::Regex;
|
use regex::Regex;
|
||||||
use anyhow::Context;
|
use anyhow::Context;
|
||||||
|
|
||||||
|
pub const MAX_TERM_WAIT_TIME_SECS: u64 = 5;
|
||||||
|
|
||||||
const CRON_REGEX_STR: &'static str = r"^\s*(?P<minute>\S+)\s+(?P<hour>\S+)\s+(?P<dom>\S+)\s+(?P<month>\S+)\s+(?P<dow>\S+)\s+(?P<command>\S.*\S)\s*$";
|
const CRON_REGEX_STR: &'static str = r"^\s*(?P<minute>\S+)\s+(?P<hour>\S+)\s+(?P<dom>\S+)\s+(?P<month>\S+)\s+(?P<dow>\S+)\s+(?P<command>\S.*\S)\s*$";
|
||||||
const MINUTE: &'static str = "minute";
|
const MINUTE: &'static str = "minute";
|
||||||
const HOUR: &'static str = "hour";
|
const HOUR: &'static str = "hour";
|
||||||
@@ -30,8 +33,7 @@ pub enum Command {
|
|||||||
pub enum CronTimeFieldSpec {
|
pub enum CronTimeFieldSpec {
|
||||||
Any,
|
Any,
|
||||||
Exact(u8),
|
Exact(u8),
|
||||||
MultiOccurrence(Vec<u8>),
|
MultiOccurrence(Vec<u8>)
|
||||||
Every(u8)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
@@ -124,7 +126,7 @@ impl Config {
|
|||||||
let mut match_str = cap.name(MINUTE).ok_or::<wingmate_error::CronParseError>(
|
let mut match_str = cap.name(MINUTE).ok_or::<wingmate_error::CronParseError>(
|
||||||
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(MINUTE) }
|
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(MINUTE) }
|
||||||
)?;
|
)?;
|
||||||
let minute = Self::to_cron_time_field_spec(&match_str).map_err(|e| {
|
let minute = Self::to_cron_time_field_spec(&match_str, 60u8).map_err(|e| {
|
||||||
wingmate_error::CronParseError::Parse {
|
wingmate_error::CronParseError::Parse {
|
||||||
source: e,
|
source: e,
|
||||||
cron_line: String::from(&l),
|
cron_line: String::from(&l),
|
||||||
@@ -136,7 +138,7 @@ impl Config {
|
|||||||
match_str = cap.name(HOUR).ok_or::<wingmate_error::CronParseError>(
|
match_str = cap.name(HOUR).ok_or::<wingmate_error::CronParseError>(
|
||||||
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(HOUR) }
|
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(HOUR) }
|
||||||
)?;
|
)?;
|
||||||
let hour = Self::to_cron_time_field_spec(&match_str).map_err(|e| {
|
let hour = Self::to_cron_time_field_spec(&match_str, 24u8).map_err(|e| {
|
||||||
wingmate_error::CronParseError::Parse {
|
wingmate_error::CronParseError::Parse {
|
||||||
source: e,
|
source: e,
|
||||||
cron_line: String::from(&l),
|
cron_line: String::from(&l),
|
||||||
@@ -148,7 +150,7 @@ impl Config {
|
|||||||
match_str = cap.name(DAY_OF_MONTH_ABBRV).ok_or::<wingmate_error::CronParseError>(
|
match_str = cap.name(DAY_OF_MONTH_ABBRV).ok_or::<wingmate_error::CronParseError>(
|
||||||
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(DAY_OF_MONTH) }
|
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(DAY_OF_MONTH) }
|
||||||
)?;
|
)?;
|
||||||
let dom = Self::to_cron_time_field_spec(&match_str).map_err(|e| {
|
let dom = Self::to_cron_time_field_spec(&match_str, 31u8).map_err(|e| {
|
||||||
wingmate_error::CronParseError::Parse {
|
wingmate_error::CronParseError::Parse {
|
||||||
source: e,
|
source: e,
|
||||||
cron_line: String::from(&l),
|
cron_line: String::from(&l),
|
||||||
@@ -160,7 +162,7 @@ impl Config {
|
|||||||
match_str = cap.name(MONTH).ok_or::<wingmate_error::CronParseError>(
|
match_str = cap.name(MONTH).ok_or::<wingmate_error::CronParseError>(
|
||||||
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(MONTH) }
|
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(MONTH) }
|
||||||
)?;
|
)?;
|
||||||
let month = Self::to_cron_time_field_spec(&match_str).map_err(|e| {
|
let month = Self::to_cron_time_field_spec(&match_str, 12u8).map_err(|e| {
|
||||||
wingmate_error::CronParseError::Parse {
|
wingmate_error::CronParseError::Parse {
|
||||||
source: e,
|
source: e,
|
||||||
cron_line: String::from(&l),
|
cron_line: String::from(&l),
|
||||||
@@ -172,7 +174,7 @@ impl Config {
|
|||||||
match_str = cap.name(DAY_OF_WEEK_ABBRV).ok_or::<wingmate_error::CronParseError>(
|
match_str = cap.name(DAY_OF_WEEK_ABBRV).ok_or::<wingmate_error::CronParseError>(
|
||||||
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(DAY_OF_WEEK) }
|
wingmate_error::CronParseError::FieldMatch { cron_line: String::from(&l), field_name: String::from(DAY_OF_WEEK) }
|
||||||
)?;
|
)?;
|
||||||
let dow = Self::to_cron_time_field_spec(&match_str).map_err(|e| {
|
let dow = Self::to_cron_time_field_spec(&match_str, 7u8).map_err(|e| {
|
||||||
wingmate_error::CronParseError::Parse {
|
wingmate_error::CronParseError::Parse {
|
||||||
source: e,
|
source: e,
|
||||||
cron_line: String::from(&l),
|
cron_line: String::from(&l),
|
||||||
@@ -200,26 +202,41 @@ impl Config {
|
|||||||
Ok(ret_vec)
|
Ok(ret_vec)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn to_cron_time_field_spec(match_str: ®ex::Match) -> Result<CronTimeFieldSpec, anyhow::Error> {
|
fn to_cron_time_field_spec(match_str: ®ex::Match, max: u8) -> Result<CronTimeFieldSpec, anyhow::Error> {
|
||||||
let field = match_str.as_str();
|
let field = match_str.as_str();
|
||||||
|
|
||||||
if field == "*" {
|
if field == "*" {
|
||||||
return Ok(CronTimeFieldSpec::Any);
|
return Ok(CronTimeFieldSpec::Any);
|
||||||
} else if field.starts_with("*/") {
|
} else if field.starts_with("*/") {
|
||||||
let every = field[2..].parse::<u8>().context("parsing on field matching \"every\" pattern")?;
|
let every = field[2..].parse::<u8>().context("parsing on field matching \"every\" pattern")?;
|
||||||
return Ok(CronTimeFieldSpec::Every(every));
|
if every >= max {
|
||||||
|
return Err(anyhow!("invalid value {}", every));
|
||||||
|
}
|
||||||
|
let mut next_value = every;
|
||||||
|
let mut multi: Vec<u8> = Vec::new();
|
||||||
|
while next_value < max {
|
||||||
|
multi.push(next_value);
|
||||||
|
next_value += every;
|
||||||
|
}
|
||||||
|
return Ok(CronTimeFieldSpec::MultiOccurrence(multi));
|
||||||
} else if field.contains(",") {
|
} else if field.contains(",") {
|
||||||
let multi: Vec<&str> = field.split(",").collect();
|
let multi: Vec<&str> = field.split(",").collect();
|
||||||
let mut multi_occurrence: Vec<u8> = Vec::new();
|
let mut multi_occurrence: Vec<u8> = Vec::new();
|
||||||
|
|
||||||
for m in multi {
|
for m in multi {
|
||||||
let ur = m.parse::<u8>().context("parsing on field matching \"multi occurrence\" pattern")?;
|
let ur = m.parse::<u8>().context("parsing on field matching \"multi occurrence\" pattern")?;
|
||||||
|
if ur >= max {
|
||||||
|
return Err(anyhow!("invalid value {}", field));
|
||||||
|
}
|
||||||
multi_occurrence.push(ur);
|
multi_occurrence.push(ur);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ok(CronTimeFieldSpec::MultiOccurrence(multi_occurrence));
|
return Ok(CronTimeFieldSpec::MultiOccurrence(multi_occurrence));
|
||||||
} else {
|
} else {
|
||||||
let n = field.parse::<u8>().context("parsing on field matching \"exact\" pattern")?;
|
let n = field.parse::<u8>().context("parsing on field matching \"exact\" pattern")?;
|
||||||
|
if n >= max {
|
||||||
|
return Err(anyhow!("invalid value {}", n));
|
||||||
|
}
|
||||||
return Ok(CronTimeFieldSpec::Exact(n));
|
return Ok(CronTimeFieldSpec::Exact(n));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -266,6 +283,10 @@ impl Config {
|
|||||||
self.services.iter()
|
self.services.iter()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn get_cron_iter(&self) -> std::slice::Iter<Crontab> {
|
||||||
|
self.cron.iter()
|
||||||
|
}
|
||||||
|
|
||||||
pub fn get_shell(&self) -> Option<String> {
|
pub fn get_shell(&self) -> Option<String> {
|
||||||
if let Some(shell) = &self.shell_path {
|
if let Some(shell) = &self.shell_path {
|
||||||
return Some(shell.clone());
|
return Some(shell.clone());
|
||||||
@@ -282,3 +303,97 @@ impl Clone for Command {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Clone for Crontab {
|
||||||
|
fn clone(&self) -> Self {
|
||||||
|
Self {
|
||||||
|
minute: self.minute.clone(),
|
||||||
|
hour: self.hour.clone(),
|
||||||
|
day_of_month: self.day_of_month.clone(),
|
||||||
|
month: self.month.clone(),
|
||||||
|
day_of_week: self.day_of_week.clone(),
|
||||||
|
command: self.command.clone()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl CronTimeFieldSpec {
|
||||||
|
pub fn is_match(&self, current: u8) -> bool {
|
||||||
|
match self {
|
||||||
|
Self::Any => { return true; },
|
||||||
|
Self::Exact(x) => { return *x == current; },
|
||||||
|
Self::MultiOccurrence(v) => {
|
||||||
|
for i in v {
|
||||||
|
if *i == current {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Clone for CronTimeFieldSpec {
|
||||||
|
fn clone(&self) -> Self {
|
||||||
|
match self {
|
||||||
|
Self::Any => Self::Any,
|
||||||
|
Self::Exact(x) => Self::Exact(*x),
|
||||||
|
Self::MultiOccurrence(x) => {
|
||||||
|
Self::MultiOccurrence(x.clone())
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct CronFieldCmpHelper<'a>(u8, u8, Option<&'a Vec<u8>>);
|
||||||
|
impl PartialEq for CronTimeFieldSpec {
|
||||||
|
fn eq(&self, other: &Self) -> bool {
|
||||||
|
let lhs: CronFieldCmpHelper;
|
||||||
|
let rhs: CronFieldCmpHelper;
|
||||||
|
match self {
|
||||||
|
CronTimeFieldSpec::Any => { lhs = CronFieldCmpHelper(0, 0, None); }
|
||||||
|
CronTimeFieldSpec::Exact(x) => { lhs = CronFieldCmpHelper(1, *x, None); }
|
||||||
|
CronTimeFieldSpec::MultiOccurrence(v) => { lhs = CronFieldCmpHelper(1, 0, Some(v)); }
|
||||||
|
}
|
||||||
|
|
||||||
|
match other {
|
||||||
|
CronTimeFieldSpec::Any => { rhs = CronFieldCmpHelper(0, 0, None); }
|
||||||
|
CronTimeFieldSpec::Exact(x) => { rhs = CronFieldCmpHelper(1, *x, None); }
|
||||||
|
CronTimeFieldSpec::MultiOccurrence(v) => { rhs = CronFieldCmpHelper(2, 0, Some(v)); }
|
||||||
|
}
|
||||||
|
|
||||||
|
if lhs.0 == rhs.0 {
|
||||||
|
if lhs.0 == 3u8 {
|
||||||
|
if let Some(lv) = lhs.2 {
|
||||||
|
if let Some(rv) = rhs.2 {
|
||||||
|
if lv.len() != rv.len() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut l_iter = lv.iter();
|
||||||
|
let mut r_iter = rv.iter();
|
||||||
|
'item: loop {
|
||||||
|
if let Some(liv) = l_iter.next() {
|
||||||
|
if let Some(riv) = r_iter.next() {
|
||||||
|
if *liv != *riv {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
break 'item;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
break 'item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return lhs.1 == rhs.1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,9 +3,13 @@ mod waiter;
|
|||||||
mod starter;
|
mod starter;
|
||||||
mod constants;
|
mod constants;
|
||||||
|
|
||||||
|
use tokio::{select, pin};
|
||||||
use tokio::task::JoinSet;
|
use tokio::task::JoinSet;
|
||||||
use tokio_util::sync::CancellationToken;
|
use tokio_util::sync::CancellationToken;
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
|
use std::time::{Duration,Instant};
|
||||||
|
use nix::sys::signal::{Signal, kill};
|
||||||
|
use nix::unistd::Pid;
|
||||||
use crate::init::config;
|
use crate::init::config;
|
||||||
use crate::init::error as wmerr;
|
use crate::init::error as wmerr;
|
||||||
use crate::init::error::WingmateInitError;
|
use crate::init::error::WingmateInitError;
|
||||||
@@ -16,17 +20,24 @@ pub async fn start(cfg: config::Config) -> Result<(), WingmateInitError> {
|
|||||||
|
|
||||||
let sighandler_cancel = CancellationToken::new();
|
let sighandler_cancel = CancellationToken::new();
|
||||||
let waiter_cancel_sighandler = sighandler_cancel.clone();
|
let waiter_cancel_sighandler = sighandler_cancel.clone();
|
||||||
|
let signal_pump_stop = sighandler_cancel.clone();
|
||||||
|
|
||||||
let cancel = CancellationToken::new();
|
let cancel = CancellationToken::new();
|
||||||
let starter_cancel = cancel.clone();
|
let starter_service_cancel = cancel.clone();
|
||||||
|
let starter_cron_cancel = cancel.clone();
|
||||||
|
let signal_pump_start = cancel.clone();
|
||||||
|
|
||||||
let mut set: JoinSet<Result<(), wmerr::WingmateInitError>> = JoinSet::new();
|
let mut set: JoinSet<Result<(), wmerr::WingmateInitError>> = JoinSet::new();
|
||||||
|
set.spawn(async move {
|
||||||
|
signal_pump(signal_pump_start, signal_pump_stop).await
|
||||||
|
});
|
||||||
|
|
||||||
set.spawn(async move {
|
set.spawn(async move {
|
||||||
sighandler::sighandler(sig_sync_flag, cancel, sighandler_cancel).await
|
sighandler::sighandler(sig_sync_flag, cancel, sighandler_cancel).await
|
||||||
});
|
});
|
||||||
|
|
||||||
//TODO: start the process starter
|
starter::start_services(&mut set, &cfg, starter_service_cancel)?;
|
||||||
starter::start_services(&mut set, &cfg, starter_cancel)?;
|
starter::start_cron(&mut set, &cfg, starter_cron_cancel)?;
|
||||||
|
|
||||||
//TODO: spawn_blocking for waiter
|
//TODO: spawn_blocking for waiter
|
||||||
set.spawn_blocking(move || {
|
set.spawn_blocking(move || {
|
||||||
@@ -47,7 +58,6 @@ pub async fn start(cfg: config::Config) -> Result<(), WingmateInitError> {
|
|||||||
return Err(ev);
|
return Err(ev);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// return Err(ev as Box<dyn error::Error>);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
@@ -59,3 +69,46 @@ pub async fn start(cfg: config::Config) -> Result<(), WingmateInitError> {
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn signal_pump(start: CancellationToken, stop: CancellationToken) -> Result<(), WingmateInitError> {
|
||||||
|
const TERM_MODE: u8 = 0;
|
||||||
|
const KILL_MODE: u8 = 1;
|
||||||
|
const ALL_CHILDREN_PID: i32 = -1;
|
||||||
|
|
||||||
|
start.cancelled().await;
|
||||||
|
|
||||||
|
let stop_time = Instant::now();
|
||||||
|
let mut wait_time_millis: u64 = 100;
|
||||||
|
let mut mode = TERM_MODE;
|
||||||
|
|
||||||
|
'signal: loop {
|
||||||
|
let stop = stop.clone();
|
||||||
|
let s = tokio::time::sleep(Duration::from_millis(wait_time_millis));
|
||||||
|
pin!(s);
|
||||||
|
|
||||||
|
select! {
|
||||||
|
() = &mut s => {
|
||||||
|
if mode == TERM_MODE {
|
||||||
|
if let Err(e) = kill(Pid::from_raw(ALL_CHILDREN_PID), Signal::SIGTERM) {
|
||||||
|
eprintln!("daemon: sending TERM signal got {}", e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if let Err(e) = kill(Pid::from_raw(ALL_CHILDREN_PID), Signal::SIGKILL) {
|
||||||
|
eprintln!("daemon: sending KILL signal got {}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let time_peek = Instant::now();
|
||||||
|
if time_peek.saturating_duration_since(stop_time).as_secs() >= config::MAX_TERM_WAIT_TIME_SECS && mode == TERM_MODE {
|
||||||
|
wait_time_millis = 10;
|
||||||
|
mode = KILL_MODE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ = stop.cancelled() => {
|
||||||
|
break 'signal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
@@ -3,17 +3,20 @@ use tokio::process::{Command, Child};
|
|||||||
use tokio_util::sync::CancellationToken;
|
use tokio_util::sync::CancellationToken;
|
||||||
use tokio::select;
|
use tokio::select;
|
||||||
use tokio::io::Result as tokio_result;
|
use tokio::io::Result as tokio_result;
|
||||||
use tokio::time::sleep;
|
use tokio::time::{sleep, interval};
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
use std::process::ExitStatus;
|
use std::process::ExitStatus;
|
||||||
use nix::sys::signal::{kill, Signal};
|
use nix::sys::signal::{kill, Signal};
|
||||||
use nix::errno::Errno;
|
use nix::errno::Errno;
|
||||||
use nix::unistd::Pid;
|
use nix::unistd::Pid;
|
||||||
use anyhow::Context;
|
use anyhow::{Context, anyhow};
|
||||||
|
use time::{OffsetDateTime, Duration as TimeDur, Weekday};
|
||||||
use crate::init::config;
|
use crate::init::config;
|
||||||
use crate::init::error::WingmateInitError;
|
use crate::init::error::{WingmateInitError, CronConfigError};
|
||||||
|
|
||||||
|
|
||||||
|
const CRON_TRIGGER_WAIT_SECS: u64 = 20;
|
||||||
|
|
||||||
pub fn start_services(ts: &mut JoinSet<Result<(), WingmateInitError>>, cfg: &config::Config, cancel: CancellationToken)
|
pub fn start_services(ts: &mut JoinSet<Result<(), WingmateInitError>>, cfg: &config::Config, cancel: CancellationToken)
|
||||||
-> Result<(), WingmateInitError> {
|
-> Result<(), WingmateInitError> {
|
||||||
|
|
||||||
@@ -51,7 +54,7 @@ pub fn start_services(ts: &mut JoinSet<Result<(), WingmateInitError>>, cfg: &con
|
|||||||
match kill(Pid::from_raw(id as i32), Some(Signal::SIGTERM)) {
|
match kill(Pid::from_raw(id as i32), Some(Signal::SIGTERM)) {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
select! {
|
select! {
|
||||||
_ = sleep(Duration::from_secs(5)) => {
|
_ = sleep(Duration::from_secs(config::MAX_TERM_WAIT_TIME_SECS)) => {
|
||||||
child.kill().await.expect("failed to kill process");
|
child.kill().await.expect("failed to kill process");
|
||||||
},
|
},
|
||||||
result = child.wait() => {
|
result = child.wait() => {
|
||||||
@@ -102,7 +105,154 @@ fn result_match(result: tokio_result<ExitStatus>) -> Result<(), anyhow::Error> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dbg!("starter: sleep exited");
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn start_cron(ts: &mut JoinSet<Result<(), WingmateInitError>>, cfg: &config::Config, cancel: CancellationToken)
|
||||||
|
-> Result<(), WingmateInitError> {
|
||||||
|
|
||||||
|
for c_ in cfg.get_cron_iter() {
|
||||||
|
let cron = c_.clone();
|
||||||
|
let in_loop_cancel = cancel.clone();
|
||||||
|
|
||||||
|
ts.spawn(async move {
|
||||||
|
if cron.day_of_month != config::CronTimeFieldSpec::Any
|
||||||
|
&& cron.day_of_week != config::CronTimeFieldSpec::Any {
|
||||||
|
return Err(WingmateInitError::CronConfig { source: CronConfigError::ClashingConfig });
|
||||||
|
}
|
||||||
|
|
||||||
|
// let cron = cron.clone();
|
||||||
|
let mut cron_interval = interval(Duration::from_secs(CRON_TRIGGER_WAIT_SECS));
|
||||||
|
let mut cron_procs: JoinSet<Result<(), WingmateInitError>> = JoinSet::new();
|
||||||
|
let mut last_running: Option<OffsetDateTime> = None;
|
||||||
|
'continuous: loop {
|
||||||
|
let cron = cron.clone();
|
||||||
|
let cron_proc_cancel = in_loop_cancel.clone();
|
||||||
|
|
||||||
|
let mut flag = true;
|
||||||
|
|
||||||
|
if let Ok(local_time) = OffsetDateTime::now_local() {
|
||||||
|
if let Some(last) = last_running {
|
||||||
|
if local_time - last < TimeDur::minutes(1) {
|
||||||
|
flag = false;
|
||||||
|
} else {
|
||||||
|
flag = flag && cron.minute.is_match(local_time.minute()) &&
|
||||||
|
cron.hour.is_match(local_time.hour()) &&
|
||||||
|
cron.day_of_month.is_match(local_time.day()) &&
|
||||||
|
cron.day_of_week.is_match(weekday_map(local_time.weekday()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if flag {
|
||||||
|
last_running = Some(local_time);
|
||||||
|
cron_procs.spawn(async move {
|
||||||
|
run_cron_command(cron.command.clone(), cron_proc_cancel).await
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if cron_procs.is_empty() {
|
||||||
|
select! {
|
||||||
|
_ = in_loop_cancel.cancelled() => {
|
||||||
|
break 'continuous;
|
||||||
|
},
|
||||||
|
_ = cron_interval.tick() => {},
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
'task: while !cron_procs.is_empty() {
|
||||||
|
select! {
|
||||||
|
opt_res = cron_procs.join_next() => {
|
||||||
|
if let Some(res) = opt_res {
|
||||||
|
if let Err(e) = res {
|
||||||
|
eprintln!("running cron got problem {:?}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_ = in_loop_cancel.cancelled() => {
|
||||||
|
while let Some(res) = cron_procs.join_next().await {
|
||||||
|
if let Err(e) = res {
|
||||||
|
eprintln!("running cron got problem {:?}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break 'continuous;
|
||||||
|
},
|
||||||
|
_ = cron_interval.tick() => {
|
||||||
|
break 'task;
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn weekday_map(wd: Weekday) -> u8 {
|
||||||
|
match wd {
|
||||||
|
Weekday::Sunday => 0,
|
||||||
|
Weekday::Monday => 1,
|
||||||
|
Weekday::Tuesday => 2,
|
||||||
|
Weekday::Wednesday => 3,
|
||||||
|
Weekday::Thursday => 4,
|
||||||
|
Weekday::Friday => 5,
|
||||||
|
Weekday::Saturday => 6
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn run_cron_command(command: String, cancel: CancellationToken) -> Result<(), WingmateInitError> {
|
||||||
|
let mut args: Vec<&str> = Vec::new();
|
||||||
|
for part in command.split(' ') {
|
||||||
|
if part.len() > 0 {
|
||||||
|
args.push(part);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if args.is_empty() {
|
||||||
|
return Err(WingmateInitError::Other { source: anyhow!("parsed as empty: {}", command) });
|
||||||
|
}
|
||||||
|
|
||||||
|
let cmd = args.swap_remove(0);
|
||||||
|
let mut child: Child;
|
||||||
|
if args.is_empty() {
|
||||||
|
child = Command::new(cmd).spawn().map_err(|e| {
|
||||||
|
WingmateInitError::SpawnError { source: e, message: command }
|
||||||
|
})?;
|
||||||
|
} else {
|
||||||
|
child = Command::new(cmd).args(args.as_slice()).spawn().map_err(|e| {
|
||||||
|
WingmateInitError::SpawnError { source: e, message: command }
|
||||||
|
})?;
|
||||||
|
}
|
||||||
|
|
||||||
|
select! {
|
||||||
|
_ = cancel.cancelled() => {
|
||||||
|
if let Some(id) = child.id() {
|
||||||
|
match kill(Pid::from_raw(id as i32), Some(Signal::SIGTERM)) {
|
||||||
|
Ok(_) => {
|
||||||
|
if let Err(e) = result_match(child.wait().await) {
|
||||||
|
return Err(WingmateInitError::ChildExit { source: e });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Err(e) => {
|
||||||
|
match e {
|
||||||
|
Errno::ESRCH => {
|
||||||
|
return Err(WingmateInitError::ChildNotFound);
|
||||||
|
},
|
||||||
|
_ => {
|
||||||
|
return Err(WingmateInitError::FromNix { source: e });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
result = child.wait() => {
|
||||||
|
if let Err(e) = result_match(result) {
|
||||||
|
return Err(WingmateInitError::ChildExit { source: e });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -51,6 +51,18 @@ pub enum WingmateInitError {
|
|||||||
source: tokio::task::JoinError,
|
source: tokio::task::JoinError,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
#[error("cron config")]
|
||||||
|
CronConfig {
|
||||||
|
#[source]
|
||||||
|
source: CronConfigError,
|
||||||
|
},
|
||||||
|
|
||||||
|
#[error("from nix")]
|
||||||
|
FromNix {
|
||||||
|
#[source]
|
||||||
|
source: nix::Error,
|
||||||
|
},
|
||||||
|
|
||||||
#[error("tripped over")]
|
#[error("tripped over")]
|
||||||
Other {
|
Other {
|
||||||
#[source]
|
#[source]
|
||||||
@@ -58,6 +70,21 @@ pub enum WingmateInitError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Error,Debug)]
|
||||||
|
pub enum CronConfigError {
|
||||||
|
#[error("setting day of week and day of month at the same time will lead to unexpected behavior")]
|
||||||
|
ClashingConfig,
|
||||||
|
|
||||||
|
#[error("when setting time for higher order, the smallest (minute) muste be set")]
|
||||||
|
MissingMinute,
|
||||||
|
|
||||||
|
#[error("something went wrong")]
|
||||||
|
Other {
|
||||||
|
#[source]
|
||||||
|
source: anyhow::Error,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Error,Debug)]
|
#[derive(Error,Debug)]
|
||||||
pub enum CronParseError {
|
pub enum CronParseError {
|
||||||
#[error("invalid cron syntax: {}", .0)]
|
#[error("invalid cron syntax: {}", .0)]
|
||||||
|
|||||||
Reference in New Issue
Block a user