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
use std::ffi::OsStr;
use std::fmt::{Display, Formatter};
use std::ops::Deref;
use validation::{ValidatedField, ValidationError};

#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub struct ExecutableName(String);

impl ExecutableName {
    #[cfg(test)]
    pub(crate) fn new(name: String) -> Self {
        Self(name)
    }
}

impl ValidatedField<String> for ExecutableName {
    fn validate(
        input: Option<String>,
        field_name: &str,
        parent_name: Option<&str>,
    ) -> Result<Self, ValidationError> {
        let input =
            validation::required_not_empty(input, field_name, parent_name)?;

        Ok(Self(input))
    }

    fn validate_for_creation(
        input: Option<String>,
        field_name: &str,
        parent_name: Option<&str>,
    ) -> Result<Self, ValidationError> {
        let input = Self::validate(input, field_name, parent_name)?;

        // TODO: what makes a valid executable name
        // Wasn't there something about 16 bytes (including terminating 0 byte) and anything more would be silently truncated.
        // We don't want to silently truncate IMO, if that is the case.
        //
        // validation::maximum_length(
        //     input.as_bytes(),
        //     15,
        //     "bytes",
        //     field_name,
        //     parent_name,
        // )?;

        Ok(input)
    }
}

impl Display for ExecutableName {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl AsRef<OsStr> for ExecutableName {
    fn as_ref(&self) -> &OsStr {
        self.0.deref().as_ref()
    }
}