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 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
use std::{
ffi::{CStr, CString},
io::{Read, Seek, SeekFrom, Write},
slice,
};
use libc::{c_int, c_void};
use crate::{
error::archive_result, ffi, ffi::UTF8LocaleGuard, DecodeCallback, Error, Result,
READER_BUFFER_SIZE,
};
struct HeapReadSeekerPipe<R: Read + Seek> {
reader: R,
buffer: [u8; READER_BUFFER_SIZE],
}
/// The contents of an archive, yielded in order from the beginning to the end
/// of the archive.
///
/// Each entry, file or directory, will have a
/// [`ArchiveContents::StartOfEntry`], zero or more
/// [`ArchiveContents::DataChunk`], and then a corresponding
/// [`ArchiveContents::EndOfEntry`] to mark that the entry has been read to
/// completion.
pub enum ArchiveContents {
/// Marks the start of an entry, either a file or a directory.
StartOfEntry(String, libc::stat),
/// A chunk of uncompressed data from the entry. Entries may have zero or
/// more chunks.
DataChunk(Vec<u8>),
/// Marks the end of the entry that was started by the previous
/// StartOfEntry.
EndOfEntry,
Err(Error),
}
/// Filter for an archive iterator to skip decompression of unwanted
/// entries.
///
/// Gets called on an encounter of a new archive entry with the filename and
/// file status information of that entry.
/// The entry is processed on a return value of `true` and ignored on `false`.
pub type EntryFilterCallbackFn = dyn Fn(&str, &libc::stat) -> bool;
/// An iterator over the contents of an archive.
#[allow(clippy::module_name_repetitions)]
pub struct ArchiveIterator<R: Read + Seek> {
archive_entry: *mut ffi::archive_entry,
archive_reader: *mut ffi::archive,
decode: DecodeCallback,
in_file: bool,
closed: bool,
error: bool,
filter: Option<Box<EntryFilterCallbackFn>>,
_pipe: Box<HeapReadSeekerPipe<R>>,
_utf8_guard: UTF8LocaleGuard,
}
impl<R: Read + Seek> Iterator for ArchiveIterator<R> {
type Item = ArchiveContents;
fn next(&mut self) -> Option<Self::Item> {
debug_assert!(!self.closed);
if self.error {
return None;
}
loop {
let next = if self.in_file {
unsafe { self.next_data_chunk() }
} else {
unsafe { self.next_header() }
};
match &next {
ArchiveContents::StartOfEntry(name, stat) => {
debug_assert!(!self.in_file);
if let Some(filter) = &self.filter {
if !filter(name, stat) {
continue;
}
}
self.in_file = true;
break Some(next);
}
ArchiveContents::DataChunk(_) => {
debug_assert!(self.in_file);
break Some(next);
}
ArchiveContents::EndOfEntry if self.in_file => {
self.in_file = false;
break Some(next);
}
ArchiveContents::EndOfEntry => break None,
ArchiveContents::Err(_) => {
self.error = true;
break Some(next);
}
}
}
}
}
impl<R: Read + Seek> Drop for ArchiveIterator<R> {
fn drop(&mut self) {
drop(self.free());
}
}
impl<R: Read + Seek> ArchiveIterator<R> {
fn new(
source: R,
decode: DecodeCallback,
filter: Option<Box<EntryFilterCallbackFn>>,
) -> Result<ArchiveIterator<R>>
where
R: Read + Seek,
{
let utf8_guard = ffi::UTF8LocaleGuard::new();
let reader = source;
let buffer = [0; READER_BUFFER_SIZE];
let mut pipe = Box::new(HeapReadSeekerPipe { reader, buffer });
unsafe {
let archive_entry: *mut ffi::archive_entry = std::ptr::null_mut();
let archive_reader = ffi::archive_read_new();
let res = (|| {
archive_result(
ffi::archive_read_support_filter_all(archive_reader),
archive_reader,
)?;
archive_result(
ffi::archive_read_support_format_raw(archive_reader),
archive_reader,
)?;
archive_result(
ffi::archive_read_set_seek_callback(
archive_reader,
Some(libarchive_heap_seek_callback::<R>),
),
archive_reader,
)?;
if archive_reader.is_null() {
return Err(Error::NullArchive);
}
archive_result(
ffi::archive_read_support_format_all(archive_reader),
archive_reader,
)?;
archive_result(
ffi::archive_read_open(
archive_reader,
std::ptr::addr_of_mut!(*pipe) as *mut c_void,
None,
Some(libarchive_heap_seekableread_callback::<R>),
None,
),
archive_reader,
)?;
Ok(())
})();
let iter = ArchiveIterator {
archive_entry,
archive_reader,
decode,
in_file: false,
closed: false,
error: false,
filter,
_pipe: pipe,
_utf8_guard: utf8_guard,
};
res?;
Ok(iter)
}
}
/// Iterate over the contents of an archive, streaming the contents of each
/// entry in small chunks.
///
/// ```no_run
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use compress_tools::*;
/// use std::fs::File;
///
/// let file = File::open("tree.tar")?;
///
/// let mut name = String::default();
/// let mut size = 0;
/// let decode_utf8 = |bytes: &[u8]| Ok(std::str::from_utf8(bytes)?.to_owned());
/// let mut iter = ArchiveIterator::from_read_with_encoding(file, decode_utf8)?;
///
/// for content in &mut iter {
/// match content {
/// ArchiveContents::StartOfEntry(s, _) => name = s,
/// ArchiveContents::DataChunk(v) => size += v.len(),
/// ArchiveContents::EndOfEntry => {
/// println!("Entry {} was {} bytes", name, size);
/// size = 0;
/// }
/// ArchiveContents::Err(e) => {
/// Err(e)?;
/// }
/// }
/// }
///
/// iter.close()?;
/// # Ok(())
/// # }
/// ```
pub fn from_read_with_encoding(source: R, decode: DecodeCallback) -> Result<ArchiveIterator<R>>
where
R: Read + Seek,
{
Self::new(source, decode, None)
}
/// Iterate over the contents of an archive, streaming the contents of each
/// entry in small chunks.
///
/// ```no_run
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// use compress_tools::*;
/// use std::fs::File;
///
/// let file = File::open("tree.tar")?;
///
/// let mut name = String::default();
/// let mut size = 0;
/// let mut iter = ArchiveIterator::from_read(file)?;
///
/// for content in &mut iter {
/// match content {
/// ArchiveContents::StartOfEntry(s, _) => name = s,
/// ArchiveContents::DataChunk(v) => size += v.len(),
/// ArchiveContents::EndOfEntry => {
/// println!("Entry {} was {} bytes", name, size);
/// size = 0;
/// }
/// ArchiveContents::Err(e) => {
/// Err(e)?;
/// }
/// }
/// }
///
/// iter.close()?;
/// # Ok(())
/// # }
/// ```
pub fn from_read(source: R) -> Result<ArchiveIterator<R>>
where
R: Read + Seek,
{
Self::new(source, crate::decode_utf8, None)
}
/// Close the iterator, freeing up the associated resources.
///
/// Resources will be freed on drop if this is not called, but any errors
/// during freeing on drop will be lost.
pub fn close(mut self) -> Result<()> {
self.free()
}
fn free(&mut self) -> Result<()> {
if self.closed {
return Ok(());
}
self.closed = true;
unsafe {
archive_result(
ffi::archive_read_close(self.archive_reader),
self.archive_reader,
)?;
archive_result(
ffi::archive_read_free(self.archive_reader),
self.archive_reader,
)?;
}
Ok(())
}
unsafe fn next_header(&mut self) -> ArchiveContents {
match ffi::archive_read_next_header(self.archive_reader, &mut self.archive_entry) {
ffi::ARCHIVE_EOF => ArchiveContents::EndOfEntry,
ffi::ARCHIVE_OK | ffi::ARCHIVE_WARN => {
let _utf8_guard = ffi::WindowsUTF8LocaleGuard::new();
let cstr = CStr::from_ptr(ffi::archive_entry_pathname(self.archive_entry));
let file_name = match (self.decode)(cstr.to_bytes()) {
Ok(f) => f,
Err(e) => return ArchiveContents::Err(e),
};
let stat = *ffi::archive_entry_stat(self.archive_entry);
ArchiveContents::StartOfEntry(file_name, stat)
}
_ => ArchiveContents::Err(Error::from(self.archive_reader)),
}
}
unsafe fn next_data_chunk(&mut self) -> ArchiveContents {
let mut buffer = std::ptr::null();
let mut offset = 0;
let mut size = 0;
let mut target = Vec::with_capacity(READER_BUFFER_SIZE);
match ffi::archive_read_data_block(self.archive_reader, &mut buffer, &mut size, &mut offset)
{
ffi::ARCHIVE_EOF => ArchiveContents::EndOfEntry,
ffi::ARCHIVE_OK | ffi::ARCHIVE_WARN => {
let content = slice::from_raw_parts(buffer as *const u8, size);
let write = target.write_all(content);
if let Err(e) = write {
ArchiveContents::Err(e.into())
} else {
ArchiveContents::DataChunk(target)
}
}
_ => ArchiveContents::Err(Error::from(self.archive_reader)),
}
}
}
unsafe extern "C" fn libarchive_heap_seek_callback<R: Read + Seek>(
_: *mut ffi::archive,
client_data: *mut c_void,
offset: ffi::la_int64_t,
whence: c_int,
) -> i64 {
let pipe = (client_data as *mut HeapReadSeekerPipe<R>)
.as_mut()
.unwrap();
let whence = match whence {
0 => SeekFrom::Start(offset as u64),
1 => SeekFrom::Current(offset),
2 => SeekFrom::End(offset),
_ => return -1,
};
match pipe.reader.seek(whence) {
Ok(offset) => offset as i64,
Err(_) => -1,
}
}
unsafe extern "C" fn libarchive_heap_seekableread_callback<R: Read + Seek>(
archive: *mut ffi::archive,
client_data: *mut c_void,
buffer: *mut *const c_void,
) -> ffi::la_ssize_t {
let pipe = (client_data as *mut HeapReadSeekerPipe<R>)
.as_mut()
.unwrap();
*buffer = pipe.buffer.as_ptr() as *const c_void;
match pipe.reader.read(&mut pipe.buffer) {
Ok(size) => size as ffi::la_ssize_t,
Err(e) => {
let description = CString::new(e.to_string()).unwrap();
ffi::archive_set_error(archive, e.raw_os_error().unwrap_or(0), description.as_ptr());
-1
}
}
}
#[must_use]
pub struct ArchiveIteratorBuilder<R>
where
R: Read + Seek,
{
source: R,
decoder: DecodeCallback,
filter: Option<Box<EntryFilterCallbackFn>>,
}
/// A builder to generate an archive iterator over the contents of an
/// archive, streaming the contents of each entry in small chunks.
/// The default configuration is identical to `ArchiveIterator::from_read`.
///
/// # Example
///
/// ```no_run
/// use compress_tools::{ArchiveContents, ArchiveIteratorBuilder};
/// use std::path::Path;
/// use std::ffi::OsStr;
///
/// let source = std::fs::File::open("tests/fixtures/tree.tar").expect("Failed to open file");
/// let decode_utf8 = |bytes: &[u8]| Ok(std::str::from_utf8(bytes)?.to_owned());
///
/// for content in ArchiveIteratorBuilder::new(source)
/// .decoder(decode_utf8)
/// .filter(|name, stat| Path::new(name).file_name() == Some(OsStr::new("foo")) || stat.st_size == 42)
/// .build()
/// .expect("Failed to initialize archive")
/// {
/// if let ArchiveContents::StartOfEntry(name, _stat) = content {
/// println!("{name}");
/// }
/// }
/// ```
impl<R> ArchiveIteratorBuilder<R>
where
R: Read + Seek,
{
/// Create a new builder for an archive iterator. Default configuration is
/// identical to `ArchiveIterator::from_read`.
pub fn new(source: R) -> ArchiveIteratorBuilder<R> {
ArchiveIteratorBuilder {
source,
decoder: crate::decode_utf8,
filter: None,
}
}
/// Use a custom decoder to decode filenames of archive entries.
/// By default an UTF-8 decoder (`decode_utf8`) is used.
pub fn decoder(mut self, decoder: DecodeCallback) -> ArchiveIteratorBuilder<R> {
self.decoder = decoder;
self
}
/// Use a filter to skip unwanted entries and their decompression.
/// By default all entries are iterated.
pub fn filter<F>(mut self, filter: F) -> ArchiveIteratorBuilder<R>
where
F: Fn(&str, &libc::stat) -> bool + 'static,
{
self.filter = Some(Box::new(filter));
self
}
/// Finish the builder and generate the configured `ArchiveIterator`.
pub fn build(self) -> Result<ArchiveIterator<R>> {
ArchiveIterator::new(self.source, self.decoder, self.filter)
}
}