maven_rs/editor/
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
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
//! This module contains the logic for editing XML files without using Serde this is done using the edit-xml crate.
//!
//! Why not use Serde?
//! Using this will keep structure and comments in the XML file.
//!  This is important for pom files as comments are used to describe the purpose of the element.
use std::{fmt::Display, path::PathBuf};

use edit_xml::{Document, EditXMLError, Element};
use thiserror::Error;
use utils::MissingElementError;

use crate::{
    pom::{
        DependencyBuilderError, DeveloperBuilderError, DistributionRepositoryBuilderError,
        ParentBuilderError, PluginBuilderError, RepositoryBuilderError, ScmBuilderError,
        SubRepositoryRulesBuilderError,
    },
    settings::{MirrorBuilderError, ServerBuilderError},
};
pub mod utils;

#[derive(Debug, Error)]
pub enum XMLEditorError {
    #[error(transparent)]
    MissingElement(#[from] MissingElementError),
    #[error("Unexpected Element Type. Expected {expected}, found {found}")]
    UnexpectedElementType {
        expected: &'static str,
        found: String,
    },
    #[error(transparent)]
    InvalidValue(#[from] InvalidValueError),
    #[error(transparent)]
    EditXMLError(#[from] EditXMLError),
    #[error("Error During Validation of type {pom_type} {error}")]
    ValidationError {
        pom_type: &'static str,
        error: String,
    },
}
macro_rules! builder_err {
    ($error_type:ident, $pom_type:literal) => {
        impl From<$error_type> for XMLEditorError {
            fn from(value: $error_type) -> Self {
                match value {
                    $error_type::UninitializedField(missing_field) => {
                        XMLEditorError::MissingElement(MissingElementError(missing_field))
                    }
                    $error_type::ValidationError(other) => XMLEditorError::ValidationError {
                        pom_type: $pom_type,
                        error: other,
                    },
                }
            }
        }
    };
    [
        $(
            ($error_type:ident, $pom_type:literal)
        ),*
    ] => {
        $(
            builder_err!($error_type, $pom_type);
        )*
    };

}

builder_err![
    (DependencyBuilderError, "Dependency"),
    (PluginBuilderError, "Plugin"),
    (ParentBuilderError, "Parent"),
    (ServerBuilderError, "Server"),
    (MirrorBuilderError, "Mirror"),
    (SubRepositoryRulesBuilderError, "SubRepositoryRules"),
    (RepositoryBuilderError, "Repository"),
    (ScmBuilderError, "Scm"),
    (DeveloperBuilderError, "Developer"),
    (DistributionRepositoryBuilderError, "DistributionRepository")
];

/// An element with a specific name.
pub trait HasElementName {
    /// The name of the element.
    fn element_name() -> &'static str;
}

/// Converting an [Element] back and forth to a specific type.
pub trait ElementConverter: Sized {
    /// Converts an [Element] to the specific type.
    fn from_element(element: Element, document: &Document) -> Result<Self, XMLEditorError>;
    /// Creates an [Element] from the current type.
    ///
    /// Default implementation creates an element with the from [HasElementName::element_name] of the type
    /// and adds all children returned by [ElementConverter::into_children].
    fn into_element(self, document: &mut Document) -> Result<Element, XMLEditorError>
    where
        Self: HasElementName,
    {
        let element = Element::new(document, Self::element_name());
        let children = self.into_children(document)?;
        for child in children {
            element.push_child(document, child)?;
        }
        Ok(element)
    }
    /// Creates all children of the current type.
    fn into_children(self, document: &mut Document) -> Result<Vec<Element>, XMLEditorError>;
}
pub trait ComparableElement {
    /// Checks if the current element is the same as the other element.
    /// Some implementations may only check a subset of fields. Such as [Dependency](crate::pom::Dependency) only checking the group id and artifact id.
    fn is_same_item(&self, other: &Self) -> bool;
}
/// Used Internally for updating a type of element.
pub trait UpdatableElement: ElementConverter {
    // Updates the element with the current element.
    fn update_element(
        &self,
        element: Element,
        document: &mut Document,
    ) -> Result<(), XMLEditorError>;
    /// Replaces all children of the element with the children of the current element.
    fn replace_all_elements(
        self,
        element: Element,
        document: &mut Document,
    ) -> Result<(), XMLEditorError> {
        element.clear_children(document);
        let children = self.into_children(document)?;
        for child in children {
            element.push_child(document, child)?;
        }
        Ok(())
    }
}
/// Used Internally for updating list type structures such as dependencies and plugins.
pub trait ChildOfListElement: ElementConverter {
    fn parent_element_name() -> &'static str;
}
#[derive(Debug, Error)]
pub enum InvalidValueError {
    InvalidValue {
        expected: &'static str,
        found: String,
    },
    InvalidFormattedValue {
        error: String,
    },
}
impl Display for InvalidValueError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            InvalidValueError::InvalidValue { expected, found } => {
                write!(f, "Expected {} found {}", expected, found)
            }
            InvalidValueError::InvalidFormattedValue { error } => {
                write!(f, "Invalid Value: {}", error)
            }
        }
    }
}

pub trait PomValue: Sized {
    fn from_string_for_editor(value: String) -> Result<Self, InvalidValueError> {
        Self::from_str_for_editor(&value)
    }

    fn from_str_for_editor(value: &str) -> Result<Self, InvalidValueError>;

    fn to_string_for_editor(&self) -> String;

    fn from_element(element: Element, document: &Document) -> Result<Self, XMLEditorError>
    where
        Self: Sized,
    {
        let value = element.text_content(document);
        Self::from_str_for_editor(&value).map_err(|e| e.into())
    }
}

impl PomValue for bool {
    fn from_str_for_editor(value: &str) -> Result<Self, InvalidValueError> {
        match value {
            "true" => Ok(true),
            "false" => Ok(false),
            _ => Err(InvalidValueError::InvalidValue {
                expected: "true or false",
                found: value.to_string(),
            }),
        }
    }

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

impl PomValue for String {
    fn from_str_for_editor(value: &str) -> Result<Self, InvalidValueError> {
        Ok(value.to_string())
    }
    fn from_string_for_editor(value: String) -> Result<Self, InvalidValueError> {
        Ok(value)
    }
    fn to_string_for_editor(&self) -> String {
        self.clone()
    }
}
macro_rules! pom_value_num {
    (
        $(
            $type:ty
        ),*
    ) => {
        $(
            impl PomValue for $type {
                fn from_str_for_editor(value: &str) -> Result<Self, InvalidValueError> {
                    value.parse().map_err(|_| InvalidValueError::InvalidValue {
                        expected: "A number",
                        found: value.to_string(),
                    })
                }

                fn to_string_for_editor(&self) -> String {
                    self.to_string()
                }
            }
        )*
    };
}
pom_value_num!(usize, u8, u16, u32, u64, u128, isize, i8, i16, i32, i64, i128, f32, f64);

impl PomValue for PathBuf {
    fn from_str_for_editor(value: &str) -> Result<Self, InvalidValueError> {
        Ok(PathBuf::from(value))
    }

    fn to_string_for_editor(&self) -> String {
        // this is probably not the best way to do this.
        self.to_string_lossy().to_string()
    }
}