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
use super::*;
use crate::{
    dependency::{DependencyGraph, Requirement},
    extra::path::ComponentPathBuf,
    store::{backend::ReadBackend, id::PackageId, Store},
};
use std::collections::HashSet;
use std::fs;
use std::path::{Path, PathBuf};

// TODO: Tests

#[derive(Debug)]
pub struct GenerationBuilder {
    id: usize,
    requirements: Option<HashSet<Requirement>>,
    packages: Option<HashSet<PackageId>>,
    base: Option<PathBuf>,
}

impl GenerationBuilder {
    pub fn new(id: usize) -> Self {
        Self {
            id,
            requirements: None,
            packages: None,
            base: None,
        }
    }

    pub fn under<P: AsRef<Path>>(mut self, base: P) -> Self {
        self.base = Some(base.as_ref().to_owned());
        self
    }

    pub fn requires(mut self, requirements: impl IntoIterator<Item = Requirement>) -> Self {
        self.requirements = Some(requirements.into_iter().collect());
        self
    }

    pub fn resolve<S, B: ReadBackend>(mut self, store: &Store<S, B>) -> GenerationResult<Self> {
        let reqs = self
            .requirements
            .as_ref()
            .ok_or(GenerationError::MissingRequirements { id: self.id })?;
        let mut graph = DependencyGraph::new();
        graph
            .resolve(reqs, store)
            .context(DependencySnafu { id: self.id })?;

        let packages = if graph.is_resolved() {
            graph.resolved_packages().collect()
        } else {
            let unresolved = graph.unresolved_requirements().cloned().collect();
            return Err(GenerationError::GraphNotResolvable { unresolved });
        };

        self.packages = Some(packages);
        Ok(self)
    }

    pub fn build<B: ReadBackend<Source = PathBuf>>(
        self,
        store: &Store<PathBuf, B>,
    ) -> GenerationResult<Generation> {
        let base = self
            .base
            .ok_or(GenerationError::MissingBasePath { id: self.id })?;

        let requirements = self
            .requirements
            .ok_or(GenerationError::MissingRequirements { id: self.id })?;

        let packages = self
            .packages
            .ok_or(GenerationError::MissingPackages { id: self.id })?;

        let path = base.join(self.id.to_string());
        if path.exists() {
            return Err(GenerationError::AlreadyPresent { id: self.id });
        }
        fs::create_dir(&path).context(GenerationIoSnafu { id: self.id })?;
        let component_paths = ComponentPathBuf::new(
            path.join("bin"),
            path.join("cfg"),
            path.join("lib"),
            path.join("share"),
        );
        component_paths
            .create_dirs(false)
            .context(GenerationIoSnafu { id: self.id })?;

        store
            .link_packages(&packages, &component_paths)
            .context(StoreSnafu)?;

        Ok(Generation::new(
            path,
            packages,
            requirements,
            component_paths,
        ))
    }

    pub fn empty(self) -> GenerationResult<Generation> {
        let base = self
            .base
            .ok_or(GenerationError::MissingBasePath { id: self.id })?;

        let path = base.join(self.id.to_string());
        if path.exists() {
            return Err(GenerationError::AlreadyPresent { id: self.id });
        }
        fs::create_dir(&path).context(GenerationIoSnafu { id: self.id })?;
        let component_paths = ComponentPathBuf::new(
            path.join("bin"),
            path.join("cfg"),
            path.join("lib"),
            path.join("share"),
        );
        component_paths
            .create_dirs(false)
            .context(GenerationIoSnafu { id: self.id })?;

        Ok(Generation::new(
            path,
            HashSet::new(),
            HashSet::new(),
            component_paths,
        ))
    }
}