maven_rs/pom/editor/
build.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
use edit_xml::Element;

use crate::{
    editor::utils::{add_or_update_item, get_all_children_of_element},
    editor::XMLEditorError,
    pom::build::Plugin,
};

use super::PomEditor;
impl PomEditor {
    /// Creates a new build editor
    ///
    /// If no build element is present, it will create one
    /// # Note.
    /// This function will hold a mutable reference to the PomEditor.
    /// I would recommend using this function within a scope. To prevent borrowing issues.
    pub fn get_or_create_build_element(&mut self) -> BuildEditor<'_> {
        BuildEditor::new(self)
    }
    /// Checks if the build element is present in the pom file
    ///
    /// If the build element is present, it will return Some(BuildEditor) else it will return None
    pub fn get_build_element_or_none(&mut self) -> Option<BuildEditor<'_>> {
        if self.has_build() {
            return Some(BuildEditor::new(self));
        }
        None
    }
    pub fn has_build(&self) -> bool {
        let root = self.root();
        root.find(&self.document, "build").is_some()
    }
    pub fn delete_build(&mut self) -> Result<bool, XMLEditorError> {
        let root = self.root();
        let element = root.find(&self.document, "build");
        if let Some(element) = element {
            element.detach(&mut self.document)?;
            Ok(true)
        } else {
            Ok(false)
        }
    }
}
/// Allows for editing the build section of a pom file
#[derive(Debug)]
pub struct BuildEditor<'a> {
    parent: &'a mut PomEditor,
    build_element: Element,
}
macro_rules! top_level_getter_setter {
    (
        $set:ident, $get:ident, $name:literal
    ) => {
        pub fn $set(&mut self, value: &str) {
            let element = crate::editor::utils::get_or_create_top_level_element(
                $name,
                &mut self.parent.document,
                self.build_element,
            );
            element.set_text_content(&mut self.parent.document, value);
        }
        pub fn $get(&self) -> Option<String> {
            let element = self.build_element.find(&self.parent.document, $name);
            return element.map(|x| x.text_content(&self.parent.document));
        }
    };
}
impl<'a> BuildEditor<'a> {
    top_level_getter_setter!(
        set_source_directory,
        get_source_directory,
        "sourceDirectory"
    );
    top_level_getter_setter!(set_final_name, get_final_name, "finalName");
    top_level_getter_setter!(set_directory, get_directory, "directory");
    top_level_getter_setter!(set_default_goal, get_default_goal, "defaultGoal");

    pub(super) fn new(parent: &'a mut PomEditor) -> Self {
        let root = parent.root();
        let build_element = crate::editor::utils::get_or_create_top_level_element(
            "build",
            &mut parent.document,
            root,
        );
        Self {
            parent,
            build_element,
        }
    }
    /// Gets all the plugins in the build section
    pub fn get_plugins(&self) -> Result<Vec<Plugin>, XMLEditorError> {
        let Some(plugins) = self.build_element.find(&self.parent.document, "plugins") else {
            return Ok(vec![]);
        };
        let result = get_all_children_of_element::<Plugin>(&self.parent.document, plugins)?;
        Ok(result.into_iter().map(|(depend, _)| depend).collect())
    }
    /// Adds or updates a plugin in the build section
    pub fn add_or_update_plugin(
        &mut self,
        plugin: Plugin,
    ) -> Result<Option<Plugin>, XMLEditorError> {
        let plugins = self.build_element.find(&self.parent.document, "plugins");
        add_or_update_item(
            &mut self.parent.document,
            plugins,
            self.build_element,
            plugin,
        )
    }
}

#[cfg(test)]
mod tests {
    use crate::{
        pom::editor::{build::Plugin, PomEditor},
        types::Property,
    };

    #[test]
    pub fn test_plugins() -> anyhow::Result<()> {
        let mut editor = PomEditor::new_with_group_and_artifact("dev.wyatt-herkamp", "test");
        {
            let mut build_editor = editor.get_or_create_build_element();
            build_editor.set_source_directory("src/main/java");
            build_editor.set_final_name("test");
            let plugin = Plugin {
                group_id: Some("org.apache.maven.plugins".to_string()),
                artifact_id: "maven-compiler-plugin".to_string(),
                version: Some(Property::Literal("3.8.1".to_string())),
            };
            build_editor.add_or_update_plugin(plugin.clone())?;
            let plugins = build_editor.get_plugins()?;
            assert_eq!(plugins.len(), 1);
            assert_eq!(plugins[0], plugin);
        }
        let value = editor.write_to_str()?;
        println!("{}", value);

        Ok(())
    }
}