maven_rs/pom/
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
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
use derive_builder::Builder;
use edit_xml::Element;
use serde::{Deserialize, Serialize};

use crate::editor::{
    utils::{add_if_present, find_or_create_then_set_text_content, sync_element},
    ComparableElement, ElementConverter, HasElementName, PomValue, UpdatableElement,
};

use super::{ChecksumPolicy, UpdatePolicy};

#[derive(Debug, Clone, Default, PartialEq, Eq, Serialize, Deserialize, Builder)]
#[serde(rename_all = "camelCase")]
pub struct DistributionRepository {
    #[builder(setter(into, strip_option), default)]
    pub id: Option<String>,
    #[builder(setter(into, strip_option), default)]
    pub name: Option<String>,
    pub url: String,
    #[builder(setter(into, strip_option), default)]
    pub layout: Option<String>,
    #[builder(setter(into, strip_option), default)]
    pub update_policy: Option<UpdatePolicy>,
    #[builder(setter(into, strip_option), default)]
    pub checksum_policy: Option<ChecksumPolicy>,
}
impl DistributionRepository {
    pub fn repository(self) -> DistributionRepositoryRepository {
        DistributionRepositoryRepository::new(self)
    }
    pub fn snapshot_repository(self) -> DistributionRepositorySnapshotRepository {
        DistributionRepositorySnapshotRepository::new(self)
    }
}

impl ComparableElement for DistributionRepository {
    fn is_same_item(&self, other: &Self) -> bool {
        if self.name.is_none() {
            return false;
        }
        self.name == other.name
    }
}
impl UpdatableElement for DistributionRepository {
    fn update_element(
        &self,
        element: Element,
        document: &mut edit_xml::Document,
    ) -> Result<(), crate::editor::XMLEditorError> {
        sync_element(document, element, "id", self.id.as_deref());
        sync_element(document, element, "name", self.name.as_deref());
        find_or_create_then_set_text_content(document, element, "url", self.url.as_str());
        // TODO: Layout
        Ok(())
    }
}
impl ElementConverter for DistributionRepository {
    fn from_element(
        element: edit_xml::Element,
        document: &edit_xml::Document,
    ) -> Result<Self, crate::editor::XMLEditorError> {
        let mut builder = DistributionRepositoryBuilder::default();
        for child in element.child_elements(document) {
            match child.name(document) {
                "id" => {
                    builder.id(String::from_element(child, document)?);
                }
                "name" => {
                    builder.name(String::from_element(child, document)?);
                }
                "url" => {
                    builder.url(String::from_element(child, document)?);
                }
                "layout" => {
                    builder.layout(String::from_element(child, document)?);
                }
                "updatePolicy" => {
                    builder.update_policy(UpdatePolicy::from_element(child, document)?);
                }
                "checksumPolicy" => {
                    builder.checksum_policy(ChecksumPolicy::from_element(child, document)?);
                }
                _ => {}
            }
        }
        let result = builder.build()?;
        Ok(result)
    }
    // TODO: Releases, Snapshots

    fn into_children(
        self,
        document: &mut edit_xml::Document,
    ) -> Result<Vec<edit_xml::Element>, crate::editor::XMLEditorError> {
        let Self {
            id,
            name,
            url,
            layout,
            update_policy,
            checksum_policy,
        } = self;
        let mut children = vec![];
        add_if_present!(document, children, id, "id");
        add_if_present!(document, children, name, "name");
        children.push(crate::editor::utils::create_basic_text_element(
            document, "url", url,
        ));
        add_if_present!(document, children, layout, "layout");
        add_if_present!(document, children, update_policy, "updatePolicy");
        add_if_present!(document, children, checksum_policy, "checksumPolicy");

        Ok(children)
    }
}

pub struct DistributionRepositoryRepository(DistributionRepository);
impl DistributionRepositoryRepository {
    pub fn new(repository: DistributionRepository) -> Self {
        Self(repository)
    }
}
impl From<DistributionRepository> for DistributionRepositoryRepository {
    fn from(repository: DistributionRepository) -> Self {
        Self(repository)
    }
}
impl HasElementName for DistributionRepositoryRepository {
    fn element_name() -> &'static str {
        "repository"
    }
}
impl ComparableElement for DistributionRepositoryRepository {
    fn is_same_item(&self, other: &Self) -> bool {
        self.0.is_same_item(&other.0)
    }
}
impl UpdatableElement for DistributionRepositoryRepository {
    fn update_element(
        &self,
        element: Element,
        document: &mut edit_xml::Document,
    ) -> Result<(), crate::editor::XMLEditorError> {
        self.0.update_element(element, document)
    }
}
impl ElementConverter for DistributionRepositoryRepository {
    fn from_element(
        element: edit_xml::Element,
        document: &edit_xml::Document,
    ) -> Result<Self, crate::editor::XMLEditorError> {
        let repository = DistributionRepository::from_element(element, document)?;
        Ok(Self(repository))
    }
    // TODO: Releases, Snapshots

    fn into_children(
        self,
        document: &mut edit_xml::Document,
    ) -> Result<Vec<edit_xml::Element>, crate::editor::XMLEditorError> {
        self.0.into_children(document)
    }
}

pub struct DistributionRepositorySnapshotRepository(DistributionRepository);
impl DistributionRepositorySnapshotRepository {
    pub fn new(repository: DistributionRepository) -> Self {
        Self(repository)
    }
}
impl From<DistributionRepository> for DistributionRepositorySnapshotRepository {
    fn from(repository: DistributionRepository) -> Self {
        Self(repository)
    }
}
impl HasElementName for DistributionRepositorySnapshotRepository {
    fn element_name() -> &'static str {
        "snapshotRepository"
    }
}
impl ComparableElement for DistributionRepositorySnapshotRepository {
    fn is_same_item(&self, other: &Self) -> bool {
        self.0.is_same_item(&other.0)
    }
}
impl UpdatableElement for DistributionRepositorySnapshotRepository {
    fn update_element(
        &self,
        element: Element,
        document: &mut edit_xml::Document,
    ) -> Result<(), crate::editor::XMLEditorError> {
        self.0.update_element(element, document)
    }
}
impl ElementConverter for DistributionRepositorySnapshotRepository {
    fn from_element(
        element: edit_xml::Element,
        document: &edit_xml::Document,
    ) -> Result<Self, crate::editor::XMLEditorError> {
        let repository = DistributionRepository::from_element(element, document)?;
        Ok(Self(repository))
    }
    // TODO: Releases, Snapshots

    fn into_children(
        self,
        document: &mut edit_xml::Document,
    ) -> Result<Vec<edit_xml::Element>, crate::editor::XMLEditorError> {
        self.0.into_children(document)
    }
}