service_manager/
lib.rs

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#![doc = include_str!("../README.md")]

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;

use std::{
    ffi::{OsStr, OsString},
    fmt, io,
    path::PathBuf,
    str::FromStr,
};

mod kind;
mod launchd;
mod openrc;
mod rcd;
mod sc;
mod systemd;
mod typed;
mod utils;
mod winsw;

pub use kind::*;
pub use launchd::*;
pub use openrc::*;
pub use rcd::*;
pub use sc::*;
pub use systemd::*;
pub use typed::*;
pub use winsw::*;

/// Interface for a service manager
pub trait ServiceManager {
    /// Determines if the service manager exists (e.g. is `launchd` available on the system?) and
    /// can be used
    fn available(&self) -> io::Result<bool>;

    /// Installs a new service using the manager
    fn install(&self, ctx: ServiceInstallCtx) -> io::Result<()>;

    /// Uninstalls an existing service using the manager
    fn uninstall(&self, ctx: ServiceUninstallCtx) -> io::Result<()>;

    /// Starts a service using the manager
    fn start(&self, ctx: ServiceStartCtx) -> io::Result<()>;

    /// Stops a running service using the manager
    fn stop(&self, ctx: ServiceStopCtx) -> io::Result<()>;

    /// Returns the current target level for the manager
    fn level(&self) -> ServiceLevel;

    /// Sets the target level for the manager
    fn set_level(&mut self, level: ServiceLevel) -> io::Result<()>;
}

impl dyn ServiceManager {
    /// Creates a new service using the specified type, falling back to selecting
    /// based on native service manager for the current operating system if no type provided
    pub fn target_or_native(
        kind: impl Into<Option<ServiceManagerKind>>,
    ) -> io::Result<Box<dyn ServiceManager>> {
        Ok(TypedServiceManager::target_or_native(kind)?.into_box())
    }

    /// Creates a new service manager targeting the specific service manager kind using the
    /// default service manager instance
    pub fn target(kind: ServiceManagerKind) -> Box<dyn ServiceManager> {
        TypedServiceManager::target(kind).into_box()
    }

    /// Attempts to select a native service manager for the current operating system
    ///
    /// * For MacOS, this will use [`LaunchdServiceManager`]
    /// * For Windows, this will use [`ScServiceManager`]
    /// * For BSD variants, this will use [`RcdServiceManager`]
    /// * For Linux variants, this will use either [`SystemdServiceManager`] or [`OpenRcServiceManager`]
    pub fn native() -> io::Result<Box<dyn ServiceManager>> {
        native_service_manager()
    }
}

/// Attempts to select a native service manager for the current operating system1
///
/// * For MacOS, this will use [`LaunchdServiceManager`]
/// * For Windows, this will use [`ScServiceManager`]
/// * For BSD variants, this will use [`RcdServiceManager`]
/// * For Linux variants, this will use either [`SystemdServiceManager`] or [`OpenRcServiceManager`]
#[inline]
pub fn native_service_manager() -> io::Result<Box<dyn ServiceManager>> {
    Ok(TypedServiceManager::native()?.into_box())
}

impl<'a, S> From<S> for Box<dyn ServiceManager + 'a>
where
    S: ServiceManager + 'a,
{
    fn from(service_manager: S) -> Self {
        Box::new(service_manager)
    }
}

/// Represents whether a service is system-wide or user-level
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
pub enum ServiceLevel {
    System,
    User,
}

/// Label describing the service (e.g. `org.example.my_application`
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct ServiceLabel {
    /// Qualifier used for services tied to management systems like `launchd`
    ///
    /// E.g. `org` or `com`
    pub qualifier: Option<String>,

    /// Organization associated with the service
    ///
    /// E.g. `example`
    pub organization: Option<String>,

    /// Application name associated with the service
    ///
    /// E.g. `my_application`
    pub application: String,
}

impl ServiceLabel {
    /// Produces a fully-qualified name in the form of `{qualifier}.{organization}.{application}`
    pub fn to_qualified_name(&self) -> String {
        let mut qualified_name = String::new();
        if let Some(qualifier) = self.qualifier.as_ref() {
            qualified_name.push_str(qualifier.as_str());
            qualified_name.push('.');
        }
        if let Some(organization) = self.organization.as_ref() {
            qualified_name.push_str(organization.as_str());
            qualified_name.push('.');
        }
        qualified_name.push_str(self.application.as_str());
        qualified_name
    }

    /// Produces a script name using the organization and application
    /// in the form of `{organization}-{application}`
    pub fn to_script_name(&self) -> String {
        let mut script_name = String::new();
        if let Some(organization) = self.organization.as_ref() {
            script_name.push_str(organization.as_str());
            script_name.push('-');
        }
        script_name.push_str(self.application.as_str());
        script_name
    }
}

impl fmt::Display for ServiceLabel {
    /// Produces a fully-qualified name
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.to_qualified_name().as_str())
    }
}

impl FromStr for ServiceLabel {
    type Err = io::Error;

    /// Parses a fully-qualified name in the form of `{qualifier}.{organization}.{application}`
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let tokens = s.split('.').collect::<Vec<&str>>();

        let label = match tokens.len() {
            1 => Self {
                qualifier: None,
                organization: None,
                application: tokens[0].to_string(),
            },
            2 => Self {
                qualifier: None,
                organization: Some(tokens[0].to_string()),
                application: tokens[1].to_string(),
            },
            3 => Self {
                qualifier: Some(tokens[0].to_string()),
                organization: Some(tokens[1].to_string()),
                application: tokens[2].to_string(),
            },
            _ => Self {
                qualifier: Some(tokens[0].to_string()),
                organization: Some(tokens[1].to_string()),
                application: tokens[2..].join("."),
            },
        };

        Ok(label)
    }
}

/// Context provided to the install function of [`ServiceManager`]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ServiceInstallCtx {
    /// Label associated with the service
    ///
    /// E.g. `org.example.my_application`
    pub label: ServiceLabel,

    /// Path to the program to run
    ///
    /// E.g. `/usr/local/bin/my-program`
    pub program: PathBuf,

    /// Arguments to use for the program
    ///
    /// E.g. `--arg`, `value`, `--another-arg`
    pub args: Vec<OsString>,

    /// Optional contents of the service file for a given ServiceManager
    /// to use instead of the default template.
    pub contents: Option<String>,

    /// Optionally supply the user the service will run as
    ///
    /// If not specified, the service will run as the root or Administrator user.
    pub username: Option<String>,

    /// Optionally specify a working directory for the process launched by the service
    pub working_directory: Option<PathBuf>,

    /// Optionally specify a list of environment variables to be passed to the process launched by
    /// the service
    pub environment: Option<Vec<(String, String)>>,

    /// Specify whether the service should automatically start on reboot
    pub autostart: bool,
}

impl ServiceInstallCtx {
    /// Iterator over the program and its arguments
    pub fn cmd_iter(&self) -> impl Iterator<Item = &OsStr> {
        std::iter::once(self.program.as_os_str()).chain(self.args_iter())
    }

    /// Iterator over the program arguments
    pub fn args_iter(&self) -> impl Iterator<Item = &OsStr> {
        self.args.iter().map(OsString::as_os_str)
    }
}

/// Context provided to the uninstall function of [`ServiceManager`]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ServiceUninstallCtx {
    /// Label associated with the service
    ///
    /// E.g. `rocks.distant.manager`
    pub label: ServiceLabel,
}

/// Context provided to the start function of [`ServiceManager`]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ServiceStartCtx {
    /// Label associated with the service
    ///
    /// E.g. `rocks.distant.manager`
    pub label: ServiceLabel,
}

/// Context provided to the stop function of [`ServiceManager`]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ServiceStopCtx {
    /// Label associated with the service
    ///
    /// E.g. `rocks.distant.manager`
    pub label: ServiceLabel,
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_service_label_parssing_1() {
        let label = ServiceLabel::from_str("com.example.app123").unwrap();

        assert_eq!(label.qualifier, Some("com".to_string()));
        assert_eq!(label.organization, Some("example".to_string()));
        assert_eq!(label.application, "app123".to_string());

        assert_eq!(label.to_qualified_name(), "com.example.app123");
        assert_eq!(label.to_script_name(), "example-app123");
    }

    #[test]
    fn test_service_label_parssing_2() {
        let label = ServiceLabel::from_str("example.app123").unwrap();

        assert_eq!(label.qualifier, None);
        assert_eq!(label.organization, Some("example".to_string()));
        assert_eq!(label.application, "app123".to_string());

        assert_eq!(label.to_qualified_name(), "example.app123");
        assert_eq!(label.to_script_name(), "example-app123");
    }

    #[test]
    fn test_service_label_parssing_3() {
        let label = ServiceLabel::from_str("app123").unwrap();

        assert_eq!(label.qualifier, None);
        assert_eq!(label.organization, None);
        assert_eq!(label.application, "app123".to_string());

        assert_eq!(label.to_qualified_name(), "app123");
        assert_eq!(label.to_script_name(), "app123");
    }
}