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
use std::{
collections::HashSet,
fs,
hash::Hash,
io::{Error, ErrorKind, Result},
os::unix,
path::{Path, PathBuf},
};
use super::path::ComponentPathBuf;
pub fn io_task_into<P, Q, T, R, F, C>(from: P, into: Q, task: &T, fold: &F) -> Result<C>
where
P: AsRef<Path>,
Q: AsRef<Path>,
T: Fn(&Path, &Path) -> std::io::Result<R>,
R: Eq + Hash,
F: Fn(&mut C, R),
C: Default,
{
let mut collector = C::default();
inner_io_task_into(from.as_ref(), into.as_ref(), task, fold, &mut collector)?;
Ok(collector)
}
fn inner_io_task_into<R, T, F, C>(
from: &Path,
into: &Path,
task: &T,
fold: &F,
collector: &mut C,
) -> Result<()>
where
T: Fn(&Path, &Path) -> std::io::Result<R>,
R: Eq + Hash,
F: Fn(&mut C, R),
C: Default,
{
let from = from.canonicalize()?;
let name = from
.file_name()
.ok_or(Error::new(
ErrorKind::UnexpectedEof,
"Unexpected terminating path",
))?
.to_str()
.ok_or(Error::new(ErrorKind::InvalidData, "Invalid utf-8"))?;
let into = into.join(name);
if from.is_dir() {
from.read_dir()?
.map(|res| match res {
Ok(entry) => {
if !into.exists() {
fs::create_dir(&into)?;
}
inner_io_task_into(&entry.path(), &into, task, fold, collector)
}
Err(e) => Err(e.into()),
})
.collect::<Result<()>>()
} else {
fold(collector, task(&from, &into)?);
Ok(())
}
}
pub fn io_task_to<P, Q, T, R, F, C>(from: P, to: Q, task: &T, fold: &F) -> Result<C>
where
P: AsRef<Path>,
Q: AsRef<Path>,
T: Fn(&Path, &Path) -> std::io::Result<R>,
R: Eq + Hash,
F: Fn(&mut C, R),
C: Default,
{
let mut collector = C::default();
inner_io_task_to(from.as_ref(), to.as_ref(), task, fold, &mut collector)?;
Ok(collector)
}
fn inner_io_task_to<T, R, F, C>(
from: &Path,
to: &Path,
task: &T,
fold: &F,
collector: &mut C,
) -> Result<()>
where
T: Fn(&Path, &Path) -> std::io::Result<R>,
R: Eq + Hash,
F: Fn(&mut C, R),
C: Default,
{
let contents = from.read_dir()?;
contents
.map(|res| match res {
Ok(entry) => inner_io_task_into(&entry.path(), to, task, fold, collector),
Err(e) => Err(e.into()),
})
.collect::<Result<()>>()
}
fn symlink(original: &Path, link: &Path) -> std::io::Result<PathBuf> {
unix::fs::symlink(original, link)?;
Ok(link.to_owned())
}
fn fold_hash_set_path_buf(collector: &mut HashSet<PathBuf>, path_buf: PathBuf) {
collector.insert(path_buf);
}
pub fn link_into<P: AsRef<Path>, Q: AsRef<Path>>(from: P, into: Q) -> Result<HashSet<PathBuf>> {
io_task_into(from, into, &symlink, &fold_hash_set_path_buf)
}
pub fn link_to<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> Result<HashSet<PathBuf>> {
io_task_to(from, to, &symlink, &fold_hash_set_path_buf)
}
pub fn link_component_paths(
from: &ComponentPathBuf,
to: &ComponentPathBuf,
) -> Result<HashSet<PathBuf>> {
let mut collector = HashSet::new();
inner_io_task_to(
&from.binary,
&to.binary,
&symlink,
&fold_hash_set_path_buf,
&mut collector,
)?;
inner_io_task_to(
&from.config,
&to.config,
&symlink,
&fold_hash_set_path_buf,
&mut collector,
)?;
inner_io_task_to(
&from.library,
&to.library,
&symlink,
&fold_hash_set_path_buf,
&mut collector,
)?;
inner_io_task_to(
&from.share,
&to.share,
&symlink,
&fold_hash_set_path_buf,
&mut collector,
)?;
Ok(collector)
}
fn copy(from: &Path, to: &Path) -> std::io::Result<u64> {
fs::copy(from, to)
}
fn fold_u64(collector: &mut u64, val: u64) {
*collector += val;
}
pub fn copy_into<P: AsRef<Path>, Q: AsRef<Path>>(from: P, into: Q) -> Result<u64> {
io_task_into(from, into, ©, &fold_u64)
}
pub fn copy_to<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> Result<u64> {
io_task_to(from, to, ©, &fold_u64)
}