pbs-client: pxar: fmt

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2022-04-13 10:17:20 +02:00
parent 055eab54ff
commit 84d3af3a0e

View File

@ -7,11 +7,11 @@ use std::io;
use std::os::unix::ffi::{OsStrExt, OsStringExt}; use std::os::unix::ffi::{OsStrExt, OsStringExt};
use std::os::unix::io::{AsRawFd, FromRawFd, RawFd}; use std::os::unix::io::{AsRawFd, FromRawFd, RawFd};
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::sync::{Arc, Mutex};
use std::pin::Pin; use std::pin::Pin;
use std::sync::{Arc, Mutex};
use futures::future::Future;
use anyhow::{bail, format_err, Error}; use anyhow::{bail, format_err, Error};
use futures::future::Future;
use nix::dir::Dir; use nix::dir::Dir;
use nix::fcntl::OFlag; use nix::fcntl::OFlag;
use nix::sys::stat::Mode; use nix::sys::stat::Mode;
@ -22,9 +22,9 @@ use pxar::decoder::{aio::Decoder, Contents};
use pxar::format::Device; use pxar::format::Device;
use pxar::{Entry, EntryKind, Metadata}; use pxar::{Entry, EntryKind, Metadata};
use proxmox_io::{sparse_copy, sparse_copy_async};
use proxmox_sys::c_result; use proxmox_sys::c_result;
use proxmox_sys::fs::{create_path, CreateOptions}; use proxmox_sys::fs::{create_path, CreateOptions};
use proxmox_io::{sparse_copy, sparse_copy_async};
use proxmox_compression::zip::{ZipEncoder, ZipEntry}; use proxmox_compression::zip::{ZipEncoder, ZipEntry};
@ -33,7 +33,7 @@ use crate::pxar::metadata;
use crate::pxar::Flags; use crate::pxar::Flags;
pub struct PxarExtractOptions<'a> { pub struct PxarExtractOptions<'a> {
pub match_list: &'a[MatchEntry], pub match_list: &'a [MatchEntry],
pub extract_match_default: bool, pub extract_match_default: bool,
pub allow_existing_dirs: bool, pub allow_existing_dirs: bool,
pub on_error: Option<ErrorHandler>, pub on_error: Option<ErrorHandler>,
@ -721,7 +721,8 @@ where
{ {
let root = decoder.open_root().await?; let root = decoder.open_root().await?;
let file = root let file = root
.lookup(&path).await? .lookup(&path)
.await?
.ok_or(format_err!("error opening '{:?}'", path.as_ref()))?; .ok_or(format_err!("error opening '{:?}'", path.as_ref()))?;
let mut prefix = PathBuf::new(); let mut prefix = PathBuf::new();
@ -740,10 +741,7 @@ where
err err
})?; })?;
zipencoder zipencoder.finish().await.map_err(|err| {
.finish()
.await
.map_err(|err| {
eprintln!("error during finishing of zip: {}", err); eprintln!("error during finishing of zip: {}", err);
err err
}) })