summaryrefslogtreecommitdiffstats
path: root/src/service/systemd.rs
blob: e3b4d1b37f0b162139f1097482e6b0ab5a46cfc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
use std::{fmt::Display, process::Command, time::Duration};

use serde::Deserialize;
use tokio::sync::watch::Sender;

use crate::{Error, Status};

use super::ServiceSpawner;

#[derive(Debug, Clone, Deserialize)]
pub struct Systemd {
    pub service: String,
}

impl Display for Systemd {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}.service", self.service.trim_end_matches(".service"))
    }
}

impl ServiceSpawner for Systemd {
    async fn spawn(self, tx: Sender<Status>) -> Result<(), Error> {
        let mut command = Command::new("systemctl");
        command.arg("is-active").arg(&self.service);

        let mut interval = tokio::time::interval(Duration::from_secs(5));
        loop {
            interval.tick().await;

            let status = match command.output() {
                Ok(output) if output.status.success() => Status::Pass,
                Ok(output) => {
                    let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
                    Status::Fail(Some(format!("Service state: {}", stdout)))
                }
                Err(err) => {
                    tracing::error!("Failed to spawn process: {err}");
                    Status::Unknown
                }
            };

            tx.send_if_modified(|s| s.update(status));
        }
    }
}

impl Systemd {
    pub async fn check(&self) -> Result<Status, Error> {
        let output = Command::new("systemctl")
            .arg("is-active")
            .arg(&self.service)
            .output()?;

        let status = match output.status.success() {
            true => Status::Pass,
            false => {
                let stdout = String::from_utf8_lossy(&output.stdout).trim().to_string();
                Status::Fail(Some(format!("Service state: {}", stdout)))
            }
        };

        Ok(status)
    }
}