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
use super::{ArchiveEvent, BINARIES_METADATA_FILE_NAME, CARGO_METADATA_FILE_NAME};
use crate::{
errors::{ArchiveCreateError, UnknownArchiveFormat},
helpers::convert_rel_path_to_forward_slash,
list::{BinaryList, OutputFormat, SerializableFormat},
reuse_build::PathMapper,
};
use atomicwrites::{AtomicFile, OverwriteBehavior};
use camino::{Utf8Path, Utf8PathBuf};
use std::{
collections::HashSet,
io::{self, BufWriter, Write},
time::{Instant, SystemTime},
};
use zstd::Encoder;
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[non_exhaustive]
pub enum ArchiveFormat {
TarZst,
}
impl ArchiveFormat {
pub const SUPPORTED_FORMATS: &'static [(&'static str, Self)] = &[(".tar.zst", Self::TarZst)];
pub fn autodetect(archive_file: &Utf8Path) -> Result<Self, UnknownArchiveFormat> {
let file_name = archive_file.file_name().unwrap_or("");
for (extension, format) in Self::SUPPORTED_FORMATS {
if file_name.ends_with(extension) {
return Ok(*format);
}
}
Err(UnknownArchiveFormat {
file_name: file_name.to_owned(),
})
}
}
pub fn archive_to_file<'a, F>(
binary_list: &'a BinaryList,
cargo_metadata: &'a str,
path_mapper: &'a PathMapper,
format: ArchiveFormat,
zstd_level: i32,
output_file: &'a Utf8Path,
mut callback: F,
) -> Result<(), ArchiveCreateError>
where
F: FnMut(ArchiveEvent<'a>) -> io::Result<()>,
{
let file = AtomicFile::new(output_file, OverwriteBehavior::AllowOverwrite);
let test_binary_count = binary_list.rust_binaries.len();
let non_test_binary_count = binary_list.rust_build_meta.non_test_binaries.len();
let linked_path_count = binary_list.rust_build_meta.linked_paths.len();
let start_time = Instant::now();
let file_count = file
.write(|file| {
callback(ArchiveEvent::ArchiveStarted {
test_binary_count,
non_test_binary_count,
linked_path_count,
output_file,
})
.map_err(ArchiveCreateError::ReporterIo)?;
let archiver = Archiver::new(
binary_list,
cargo_metadata,
path_mapper,
format,
zstd_level,
file,
)?;
let (_, file_count) = archiver.archive()?;
Ok(file_count)
})
.map_err(|err| match err {
atomicwrites::Error::Internal(err) => ArchiveCreateError::OutputArchiveIo(err),
atomicwrites::Error::User(err) => err,
})?;
let elapsed = start_time.elapsed();
callback(ArchiveEvent::Archived {
file_count,
output_file,
elapsed,
})
.map_err(ArchiveCreateError::ReporterIo)?;
Ok(())
}
struct Archiver<'a, W: Write> {
binary_list: &'a BinaryList,
cargo_metadata: &'a str,
path_mapper: &'a PathMapper,
builder: tar::Builder<Encoder<'static, BufWriter<W>>>,
unix_timestamp: u64,
added_files: HashSet<Utf8PathBuf>,
}
impl<'a, W: Write> Archiver<'a, W> {
fn new(
binary_list: &'a BinaryList,
cargo_metadata: &'a str,
path_mapper: &'a PathMapper,
format: ArchiveFormat,
compression_level: i32,
writer: W,
) -> Result<Self, ArchiveCreateError> {
let buf_writer = BufWriter::new(writer);
let builder = match format {
ArchiveFormat::TarZst => {
let mut encoder = zstd::Encoder::new(buf_writer, compression_level)
.map_err(ArchiveCreateError::OutputArchiveIo)?;
encoder
.include_checksum(true)
.map_err(ArchiveCreateError::OutputArchiveIo)?;
encoder
.multithread(num_cpus::get() as u32)
.map_err(ArchiveCreateError::OutputArchiveIo)?;
tar::Builder::new(encoder)
}
};
let unix_timestamp = SystemTime::now()
.duration_since(SystemTime::UNIX_EPOCH)
.expect("current time should be after 1970-01-01")
.as_secs();
Ok(Self {
binary_list,
cargo_metadata,
path_mapper,
builder,
unix_timestamp,
added_files: HashSet::new(),
})
}
fn archive(mut self) -> Result<(W, usize), ArchiveCreateError> {
let binaries_metadata = self
.binary_list
.to_string(OutputFormat::Serializable(SerializableFormat::JsonPretty))
.map_err(ArchiveCreateError::CreateBinaryList)?;
self.append_from_memory(BINARIES_METADATA_FILE_NAME, &binaries_metadata)?;
self.append_from_memory(CARGO_METADATA_FILE_NAME, self.cargo_metadata)?;
let target_dir = &self.binary_list.rust_build_meta.target_directory;
for binary in &self.binary_list.rust_binaries {
let rel_path = binary
.path
.strip_prefix(target_dir)
.expect("binary paths must be within target directory");
let rel_path = Utf8Path::new("target").join(rel_path);
let rel_path = convert_rel_path_to_forward_slash(&rel_path);
self.append_path(&binary.path, &rel_path)?;
}
for non_test_binary in self
.binary_list
.rust_build_meta
.non_test_binaries
.iter()
.flat_map(|(_, binaries)| binaries)
{
let src_path = self
.binary_list
.rust_build_meta
.target_directory
.join(&non_test_binary.path);
let src_path = self.path_mapper.map_binary(src_path);
let rel_path = Utf8Path::new("target").join(&non_test_binary.path);
let rel_path = convert_rel_path_to_forward_slash(&rel_path);
self.append_path(&src_path, &rel_path)?;
}
for (linked_path, requested_by) in &self.binary_list.rust_build_meta.linked_paths {
let src_path = self
.binary_list
.rust_build_meta
.target_directory
.join(linked_path);
let src_path = self.path_mapper.map_binary(src_path);
if !src_path.exists() {
let mut s = String::new();
for package_id in requested_by {
s.push_str(" - ");
s.push_str(package_id);
s.push('\n');
}
log::warn!(
target: "nextest-runner",
"these crates link against `{src_path}` which doesn't exist, ignoring:\n{s} (this is a bug in these crates that should be fixed)",
);
continue;
}
let rel_path = Utf8Path::new("target").join(linked_path);
let rel_path = convert_rel_path_to_forward_slash(&rel_path);
self.append_dir_one_level(&rel_path, &src_path)?;
}
let encoder = self
.builder
.into_inner()
.map_err(ArchiveCreateError::OutputArchiveIo)?;
let buf_writer = encoder
.finish()
.map_err(ArchiveCreateError::OutputArchiveIo)?;
let writer = buf_writer
.into_inner()
.map_err(|err| ArchiveCreateError::OutputArchiveIo(err.into_error()))?;
Ok((writer, self.added_files.len()))
}
fn append_from_memory(&mut self, name: &str, contents: &str) -> Result<(), ArchiveCreateError> {
let mut header = tar::Header::new_gnu();
header.set_size(contents.len() as u64);
header.set_mtime(self.unix_timestamp);
header.set_mode(0o664);
header.set_cksum();
self.builder
.append_data(&mut header, name, io::Cursor::new(contents))
.map_err(ArchiveCreateError::OutputArchiveIo)?;
self.added_files.insert(name.into());
Ok(())
}
fn append_dir_one_level(
&mut self,
rel_path: &Utf8Path,
src_path: &Utf8Path,
) -> Result<(), ArchiveCreateError> {
for entry in
src_path
.read_dir_utf8()
.map_err(|error| ArchiveCreateError::InputFileRead {
path: src_path.to_owned(),
is_dir: Some(true),
error,
})?
{
let entry = entry.map_err(|error| ArchiveCreateError::DirEntryRead {
path: src_path.to_owned(),
error,
})?;
let src = entry.path();
let file_type =
entry
.file_type()
.map_err(|error| ArchiveCreateError::InputFileRead {
path: src.to_owned(),
is_dir: None,
error,
})?;
if !file_type.is_dir() {
let dest = rel_path.join(src.file_name().expect("entries should have a file name"));
self.append_path(src, &dest)?;
}
}
Ok(())
}
fn append_path(&mut self, src: &Utf8Path, dest: &Utf8Path) -> Result<(), ArchiveCreateError> {
if !self.added_files.contains(dest) {
self.builder
.append_path_with_name(src, dest)
.map_err(|error| ArchiveCreateError::InputFileRead {
path: src.to_owned(),
is_dir: Some(false),
error,
})?;
self.added_files.insert(dest.into());
}
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_archive_format_autodetect() {
assert_eq!(
ArchiveFormat::autodetect("foo.tar.zst".as_ref()).unwrap(),
ArchiveFormat::TarZst,
);
assert_eq!(
ArchiveFormat::autodetect("foo/bar.tar.zst".as_ref()).unwrap(),
ArchiveFormat::TarZst,
);
ArchiveFormat::autodetect("foo".as_ref()).unwrap_err();
ArchiveFormat::autodetect("/".as_ref()).unwrap_err();
}
}