pulith-source 0.1.0

Composable source abstractions and planning for Pulith
Documentation
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
//! Composable source abstractions and planning for Pulith.

use std::fmt;
use std::path::PathBuf;
use std::str::FromStr;

use pulith_resource::{RequestedResource, ResolvedResource, ResourceLocator, ValidUrl};
use serde::{Deserialize, Serialize};
use thiserror::Error;

pub type Result<T> = std::result::Result<T, SourceError>;

#[derive(Debug, Error, Clone, PartialEq, Eq)]
pub enum SourceError {
    #[error("source set must not be empty")]
    EmptySourceSet,
    #[error("mirror set must not be empty")]
    EmptyMirrorSet,
    #[error("path must not be empty")]
    EmptyPath,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct HttpAssetSource {
    pub url: ValidUrl,
    pub file_name: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct SourcePath(String);

impl SourcePath {
    pub fn new(value: impl Into<String>) -> Result<Self> {
        let value = value.into();
        ensure_non_empty_string(&value, SourceError::EmptyPath)?;
        Ok(Self(value))
    }
}

impl fmt::Display for SourcePath {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(&self.0)
    }
}

impl FromStr for SourcePath {
    type Err = SourceError;

    fn from_str(s: &str) -> Result<Self> {
        Self::new(s)
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct MirrorSource {
    pub mirrors: Vec<ValidUrl>,
    pub path: SourcePath,
}

impl MirrorSource {
    pub fn new(mirrors: Vec<ValidUrl>, path: impl Into<String>) -> Result<Self> {
        ensure_non_empty_slice(&mirrors, SourceError::EmptyMirrorSet)?;
        Ok(Self {
            mirrors,
            path: SourcePath::new(path)?,
        })
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct LocalSource {
    pub path: PathBuf,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct GitSource {
    pub url: ValidUrl,
    pub rev: Option<String>,
    pub subpath: Option<PathBuf>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum RemoteSource {
    HttpAsset(HttpAssetSource),
    Mirror(MirrorSource),
    Git(GitSource),
}

impl RemoteSource {
    pub fn resolved_candidates(&self) -> Vec<ResolvedSourceCandidate> {
        match self {
            Self::HttpAsset(source) => vec![ResolvedSourceCandidate::Url(source.url.clone())],
            Self::Mirror(source) => source
                .mirrors
                .iter()
                .map(|base| {
                    let joined = base
                        .as_url()
                        .join(&source.path.to_string())
                        .expect("validated mirror path");
                    ResolvedSourceCandidate::Url(
                        ValidUrl::parse(joined.as_str()).expect("joined mirror URL"),
                    )
                })
                .collect(),
            Self::Git(source) => vec![ResolvedSourceCandidate::Git {
                url: source.url.clone(),
                rev: source.rev.clone(),
                subpath: source.subpath.clone(),
            }],
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum SourceDefinition {
    Remote(RemoteSource),
    Local(LocalSource),
}

impl SourceDefinition {
    pub fn resolved_candidates(&self) -> Vec<ResolvedSourceCandidate> {
        match self {
            Self::Remote(remote) => remote.resolved_candidates(),
            Self::Local(source) => vec![ResolvedSourceCandidate::LocalPath(source.path.clone())],
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum SelectionStrategy {
    OrderedFallback,
    Race,
    Exhaustive,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct SourceSet {
    entries: Vec<SourceDefinition>,
}

impl SourceSet {
    pub fn new(entries: Vec<SourceDefinition>) -> Result<Self> {
        ensure_non_empty_slice(&entries, SourceError::EmptySourceSet)?;
        Ok(Self { entries })
    }

    pub fn entries(&self) -> &[SourceDefinition] {
        &self.entries
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Unplanned;

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Planned {
    strategy: SelectionStrategy,
    candidates: Vec<ResolvedSourceCandidate>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SourcePlan<S> {
    set: SourceSet,
    state: S,
}

pub type SourceSpec = SourcePlan<Unplanned>;
pub type PlannedSources = SourcePlan<Planned>;

impl SourceSpec {
    pub fn new(set: SourceSet) -> Self {
        Self {
            set,
            state: Unplanned,
        }
    }

    pub fn from_locator(locator: &ResourceLocator) -> Result<Self> {
        Ok(Self::new(source_set_from_locator(locator)?))
    }

    pub fn from_requested_resource(resource: &RequestedResource) -> Result<Self> {
        Self::from_locator(&resource.spec().locator)
    }

    pub fn from_resolved_resource(resource: &ResolvedResource) -> Result<Self> {
        Self::from_locator(&resource.spec().locator)
    }

    pub fn plan(self, strategy: SelectionStrategy) -> PlannedSources {
        planned_sources(self.set, strategy)
    }

    pub fn into_planned(self, strategy: SelectionStrategy) -> PlannedSources {
        self.plan(strategy)
    }
}

impl<S> SourcePlan<S> {
    pub fn set(&self) -> &SourceSet {
        &self.set
    }
}

impl PlannedSources {
    pub fn from_locator(locator: &ResourceLocator, strategy: SelectionStrategy) -> Result<Self> {
        Ok(planned_sources(source_set_from_locator(locator)?, strategy))
    }

    pub fn from_requested_resource(
        resource: &RequestedResource,
        strategy: SelectionStrategy,
    ) -> Result<Self> {
        Ok(SourceSpec::from_requested_resource(resource)?.plan(strategy))
    }

    pub fn from_resolved_resource(
        resource: &ResolvedResource,
        strategy: SelectionStrategy,
    ) -> Result<Self> {
        Ok(SourceSpec::from_resolved_resource(resource)?.plan(strategy))
    }

    pub fn strategy(&self) -> &SelectionStrategy {
        &self.state.strategy
    }

    pub fn candidates(&self) -> &[ResolvedSourceCandidate] {
        &self.state.candidates
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum ResolvedSourceCandidate {
    Url(ValidUrl),
    LocalPath(PathBuf),
    Git {
        url: ValidUrl,
        rev: Option<String>,
        subpath: Option<PathBuf>,
    },
}

impl ResolvedSourceCandidate {
    fn from_definition(definition: &SourceDefinition) -> Vec<Self> {
        definition.resolved_candidates()
    }
}

fn source_set_from_locator(locator: &ResourceLocator) -> Result<SourceSet> {
    match locator {
        ResourceLocator::Url(url) => SourceSet::new(vec![http_asset(url.clone())]),
        ResourceLocator::Alternatives(urls) => {
            SourceSet::new(urls.iter().cloned().map(http_asset).collect())
        }
        ResourceLocator::LocalPath(path) => {
            SourceSet::new(vec![SourceDefinition::Local(LocalSource {
                path: path.clone(),
            })])
        }
    }
}

fn planned_sources(set: SourceSet, strategy: SelectionStrategy) -> PlannedSources {
    let candidates = set
        .entries
        .iter()
        .flat_map(ResolvedSourceCandidate::from_definition)
        .collect();

    SourcePlan {
        set,
        state: Planned {
            strategy,
            candidates,
        },
    }
}

fn http_asset(url: ValidUrl) -> SourceDefinition {
    SourceDefinition::Remote(RemoteSource::HttpAsset(HttpAssetSource {
        url,
        file_name: None,
    }))
}

fn ensure_non_empty_slice<T>(values: &[T], error: SourceError) -> Result<()> {
    if values.is_empty() {
        Err(error)
    } else {
        Ok(())
    }
}

fn ensure_non_empty_string(value: &str, error: SourceError) -> Result<()> {
    if value.is_empty() { Err(error) } else { Ok(()) }
}

pub trait SourceAdapter {
    fn expand(
        &self,
        resource: &ResolvedResource,
        definition: &SourceDefinition,
    ) -> Result<SourceSet>;
}

#[derive(Debug, Default, Clone, Copy)]
pub struct PassthroughAdapter;

impl SourceAdapter for PassthroughAdapter {
    fn expand(
        &self,
        _resource: &ResolvedResource,
        definition: &SourceDefinition,
    ) -> Result<SourceSet> {
        SourceSet::new(vec![definition.clone()])
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use pulith_resource::{
        RequestedResource, ResolvedLocator, ResolvedVersion, ResourceId, ResourceSpec,
    };

    #[test]
    fn source_spec_can_be_built_from_locator() {
        let locator = ResourceLocator::Alternatives(vec![
            ValidUrl::parse("https://a.example.com/file.zip").unwrap(),
            ValidUrl::parse("https://b.example.com/file.zip").unwrap(),
        ]);

        let spec = SourceSpec::from_locator(&locator).unwrap();
        let planned = spec.plan(SelectionStrategy::OrderedFallback);
        assert_eq!(planned.candidates().len(), 2);
    }

    #[test]
    fn source_spec_can_be_built_from_requested_resource() {
        let requested = RequestedResource::new(ResourceSpec::new(
            ResourceId::parse("example/runtime").unwrap(),
            ResourceLocator::Url(ValidUrl::parse("https://example.com/runtime.zip").unwrap()),
        ));

        let planned = SourceSpec::from_requested_resource(&requested)
            .unwrap()
            .plan(SelectionStrategy::OrderedFallback);

        assert_eq!(planned.candidates().len(), 1);
    }

    #[test]
    fn planned_sources_can_be_built_from_requested_resource() {
        let requested = RequestedResource::new(ResourceSpec::new(
            ResourceId::parse("example/runtime").unwrap(),
            ResourceLocator::Url(ValidUrl::parse("https://example.com/runtime.zip").unwrap()),
        ));

        let planned =
            PlannedSources::from_requested_resource(&requested, SelectionStrategy::OrderedFallback)
                .unwrap();

        assert_eq!(planned.candidates().len(), 1);
        assert_eq!(planned.strategy(), &SelectionStrategy::OrderedFallback);
    }

    #[test]
    fn source_spec_can_be_built_from_resolved_resource() {
        let resolved = RequestedResource::new(ResourceSpec::new(
            ResourceId::parse("example/runtime").unwrap(),
            ResourceLocator::LocalPath(PathBuf::from("/tmp/runtime.bin")),
        ))
        .resolve(
            ResolvedVersion::new("1.0.0").unwrap(),
            ResolvedLocator::LocalPath(PathBuf::from("/tmp/runtime.bin")),
            None,
        );

        let planned = SourceSpec::from_resolved_resource(&resolved)
            .unwrap()
            .plan(SelectionStrategy::OrderedFallback);

        assert_eq!(planned.candidates().len(), 1);
    }

    #[test]
    fn planned_sources_can_be_built_from_resolved_resource() {
        let resolved = RequestedResource::new(ResourceSpec::new(
            ResourceId::parse("example/runtime").unwrap(),
            ResourceLocator::LocalPath(PathBuf::from("/tmp/runtime.bin")),
        ))
        .resolve(
            ResolvedVersion::new("1.0.0").unwrap(),
            ResolvedLocator::LocalPath(PathBuf::from("/tmp/runtime.bin")),
            None,
        );

        let planned =
            PlannedSources::from_resolved_resource(&resolved, SelectionStrategy::OrderedFallback)
                .unwrap();

        assert_eq!(planned.candidates().len(), 1);
        assert_eq!(planned.strategy(), &SelectionStrategy::OrderedFallback);
    }

    #[test]
    fn mirror_source_expands_to_urls() {
        let mirrors = vec![
            ValidUrl::parse("https://mirror-a.example.com/").unwrap(),
            ValidUrl::parse("https://mirror-b.example.com/").unwrap(),
        ];
        let set = SourceSet::new(vec![SourceDefinition::Remote(RemoteSource::Mirror(
            MirrorSource::new(mirrors, "downloads/tool.tar.gz").unwrap(),
        ))])
        .unwrap();
        let planned = SourceSpec::new(set).plan(SelectionStrategy::Race);
        assert_eq!(planned.candidates().len(), 2);
    }

    #[test]
    fn adapter_expands_source_for_resource() {
        let resource = RequestedResource::new(ResourceSpec::new(
            ResourceId::parse("example/tool").unwrap(),
            ResourceLocator::Url(ValidUrl::parse("https://example.com/tool.zip").unwrap()),
        ))
        .resolve(
            ResolvedVersion::new("1.0.0").unwrap(),
            ResolvedLocator::Url(ValidUrl::parse("https://example.com/tool.zip").unwrap()),
            None,
        );

        let definition = SourceDefinition::Remote(RemoteSource::HttpAsset(HttpAssetSource {
            url: ValidUrl::parse("https://example.com/tool.zip").unwrap(),
            file_name: Some("tool.zip".to_string()),
        }));

        let expanded = PassthroughAdapter.expand(&resource, &definition).unwrap();
        assert_eq!(expanded.entries().len(), 1);
    }
}