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

use super::PomEditor;
use crate::editor::ElementConverter;
use crate::editor::{UpdatableElement, XMLEditorError};
use crate::pom::{DistributionRepositoryRepository, DistributionRepositorySnapshotRepository};
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_distribution_management_element(
        &mut self,
    ) -> DistributionManagementEditor<'_> {
        DistributionManagementEditor::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_distribution_management_element_or_none(
        &mut self,
    ) -> Option<DistributionManagementEditor<'_>> {
        if self.has_distribution_management() {
            return Some(DistributionManagementEditor::new(self));
        }
        None
    }
    pub fn has_distribution_management(&self) -> bool {
        let root = self.root();
        root.find(&self.document, "distributionManagement")
            .is_some()
    }
    pub fn delete_distribution_management(&mut self) -> Result<bool, XMLEditorError> {
        let root = self.root();
        let element = root.find(&self.document, "distributionManagement");
        if let Some(element) = element {
            element.detach(&mut self.document)?;
            Ok(true)
        } else {
            Ok(false)
        }
    }
}
/// Allows for editing the [Distribution Management](https://maven.apache.org/pom.html#Distribution_Management) section of a pom file
#[derive(Debug)]
pub struct DistributionManagementEditor<'a> {
    parent: &'a mut PomEditor,
    element: Element,
}
macro_rules! top_level_structured_type {
    (
        $(#[$set_docs:meta])*
        set: $set:ident,
        $(#[$get_docs:meta])*
        get: $get:ident,
        $element_name:literal => $structured_type:ident,
    ) => {
        $(#[$get_docs])*
        pub fn $get(&self) -> Result<Option<$structured_type>, XMLEditorError> {
            self.element.find(&self.parent.document, $element_name)
                .map(|x| $structured_type::from_element(x, &self.parent.document))
                .transpose()
        }
        $(#[$set_docs])*
        pub fn $set<U>(&mut self, value: U) -> Result<(), XMLEditorError>
        where
            U: Into<Option<$structured_type>> {
            let value: Option<$structured_type> = value.into();
            let root = self.element;
            let existing_element = root.find(&self.parent.document, $element_name);
            if let Some(value) = value{
                if let Some(element) = existing_element {
                    value.update_element(element, &mut self.parent.document)?;
                    return Ok(());
                }
                let new_element = value.into_element(&mut self.parent.document)?;
                root.push_child(&mut self.parent.document, new_element)?;
            }else{
                if let Some(element) = existing_element {
                    element.detach(&mut self.parent.document)?;
                }
            }

            Ok(())
        }
    };
}

impl<'a> DistributionManagementEditor<'a> {
    pub(super) fn new(parent: &'a mut PomEditor) -> Self {
        let root = parent.root();
        let element: Element = crate::editor::utils::get_or_create_top_level_element(
            "distributionManagement",
            &mut parent.document,
            root,
        );
        Self { parent, element }
    }
    top_level_structured_type!(
        set: set_repository,
        get: get_repository,
        "repository" => DistributionRepositoryRepository,
    );
    top_level_structured_type!(
        set: set_snapshot_repository,
        get: get_snapshot_repository,
        "snapshotRepository" => DistributionRepositorySnapshotRepository,
    );
}

#[cfg(test)]
mod tests {
    use crate::pom::{distribution_management, editor::PomEditor};

    #[test]
    pub fn test_dm() -> anyhow::Result<()> {
        let mut editor = PomEditor::new_with_group_and_artifact("dev.wyatt-herkamp", "test");
        {
            let mut distribution_management =
                editor.get_or_create_distribution_management_element();
            let repository = distribution_management.get_repository()?;
            assert!(repository.is_none());

            let repository = distribution_management.get_snapshot_repository()?;
            assert!(repository.is_none());

            distribution_management.set_repository(Some(
                distribution_management::DistributionRepository {
                    id: Some("test".to_string()),
                    name: Some("test".to_string()),
                    url: "https://test.com".to_string(),
                    layout: Some("default".to_string()),
                    ..Default::default()
                }
                .repository(),
            ))?;

            distribution_management.set_repository(Some(
                distribution_management::DistributionRepository {
                    id: Some("test".to_string()),
                    name: Some("test".to_string()),
                    url: "https://test.com".to_string(),
                    layout: Some("default".to_string()),
                    ..Default::default()
                }
                .repository(),
            ))?;

            distribution_management.set_snapshot_repository(
                distribution_management::DistributionRepository {
                    id: Some("test-snapshot".to_string()),
                    name: Some("test".to_string()),
                    url: "https://test.com".to_string(),
                    layout: Some("default".to_string()),
                    ..Default::default()
                }
                .snapshot_repository(),
            )?;
        }
        let value = editor.write_to_str()?;
        println!("{}", value);

        Ok(())
    }
}