maven_rs/types/
mod.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
use std::{fmt::Display, str::FromStr};

use prop::ParseState;

use crate::{
    editor::{InvalidValueError, PomValue},
    utils::{parse::ParseErrorExt, serde_utils::serde_via_string_types},
};

pub(crate) mod prop;

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum Property {
    /// A variable
    /// ```xml
    /// <version>${project.version}</version>
    /// ```
    Variable(String),
    /// An unclosed variable
    ///
    /// ```xml
    /// <version>${project.version</version>
    /// ```
    UnclosedVariable(String),
    /// A literal string
    ///
    /// ```xml
    /// <version>1.0.0</version>
    /// ```
    Literal(String),
    /// An expression
    /// ```xml
    /// <version>${project.version}-${maven.buildNumber}</version>
    /// ```
    /// This would be parsed as
    /// ```no_compile
    /// let expression = vec![
    ///     Property::Variable("project.version".to_string()),
    ///     Property::Literal("-".to_string()),
    ///     Property::Variable("maven.buildNumber".to_string())
    /// ];
    /// ```
    Expression(Vec<Property>),
}
impl Default for Property {
    fn default() -> Self {
        Property::Literal(Default::default())
    }
}
impl Property {
    pub fn is_variable(&self) -> bool {
        matches!(self, Property::Variable(_))
    }
    pub fn is_maven_variable(&self) -> bool {
        let Property::Variable(name) = self else {
            return false;
        };
        name.starts_with("maven.")
    }
    pub fn is_project_variable(&self) -> bool {
        let Property::Variable(name) = self else {
            return false;
        };
        name.starts_with("project.")
    }
}

impl TryFrom<String> for Property {
    type Error = ParseErrorExt<String, winnow::error::ContextError>;

    fn try_from(value: String) -> Result<Self, Self::Error> {
        match ParseState::default().parse(&value) {
            Ok(o) => Ok(o),
            Err(e) => {
                let offset = e.offset;
                let inner = e.inner;
                Err(ParseErrorExt::new(value, offset, inner))
            }
        }
    }
}
impl<'s> TryFrom<&'s str> for Property {
    type Error = ParseErrorExt<&'s str, winnow::error::ContextError>;

    fn try_from(value: &'s str) -> Result<Self, Self::Error> {
        ParseState::default()
            .parse(value)
            .map_err(|e| e.map(|s| s.input))
    }
}
impl FromStr for Property {
    type Err = ParseErrorExt<(), winnow::error::ContextError>;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        ParseState::default().parse(s).map_err(|e| e.map(|_| ()))
    }
}
impl Display for Property {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Property::Variable(name) => write!(f, "${{{}}}", name),
            Property::UnclosedVariable(value) => write!(f, "${{{}", value),
            Property::Literal(value) => write!(f, "{}", value),
            Property::Expression(vec) => {
                for part in vec {
                    part.fmt(f)?;
                }
                Ok(())
            }
        }
    }
}
impl PomValue for Property {
    fn from_str_for_editor(value: &str) -> Result<Self, crate::editor::InvalidValueError> {
        Self::from_str(value).map_err(|err| InvalidValueError::InvalidFormattedValue {
            error: err.to_string(),
        })
    }

    fn to_string_for_editor(&self) -> String {
        self.to_string()
    }
}

serde_via_string_types!(Property);

#[cfg(test)]
mod tests {
    use crate::types::Property;
    #[test]
    fn test_regular_string_parse() {
        let value = Property::try_from("test").unwrap();
        assert_eq!(value, Property::Literal("test".to_string()));
    }
    #[test]
    fn test_variable_parse() {
        let value = "${test}".parse::<Property>().unwrap();
        assert_eq!(value, Property::Variable("test".to_string()));
    }

    #[test]
    fn test_maven_variable() {
        let value = "${maven.version}".parse::<Property>().unwrap();
        assert!(value.is_maven_variable());
    }
    #[test]
    fn test_commons_logging() {
        let value = "${commons-logging.version}".parse::<Property>().unwrap();
        assert!(!value.is_maven_variable());
    }
    #[test]
    fn test_unclosed_var() {
        let result = "${var".parse::<Property>();
        assert!(result.is_err())
    }
}