mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-08-14 00:50:31 +00:00
client: tools: factor out pxar entry to dir entry mapping
Perform the conversion from pxar file entries to catalog entry attributes by implementing `TryFrom<&FileEntry<T>>` for `DirEntryAttribute` and use that. Allows the reuse for the catalog shell, when using the split pxar archive instead of the catalog. Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
parent
50d20e9b64
commit
0a32544585
@ -299,30 +299,12 @@ pub async fn pxar_metadata_catalog_lookup<T: Clone + ReadAt>(
|
|||||||
while let Some(entry) = entries_iter.next().await {
|
while let Some(entry) = entries_iter.next().await {
|
||||||
let entry = entry?.decode_entry().await?;
|
let entry = entry?.decode_entry().await?;
|
||||||
|
|
||||||
let entry_attr = match entry.kind() {
|
let entry_attr = match DirEntryAttribute::try_from(&entry) {
|
||||||
EntryKind::Version(_) | EntryKind::Prelude(_) | EntryKind::GoodbyeTable => continue,
|
Ok(attr) => attr,
|
||||||
EntryKind::Directory => DirEntryAttribute::Directory {
|
Err(_) => continue,
|
||||||
start: entry.entry_range_info().entry_range.start,
|
|
||||||
},
|
|
||||||
EntryKind::File { size, .. } => {
|
|
||||||
let mtime = match entry.metadata().mtime_as_duration() {
|
|
||||||
SignedDuration::Positive(val) => i64::try_from(val.as_secs())?,
|
|
||||||
SignedDuration::Negative(val) => -i64::try_from(val.as_secs())?,
|
|
||||||
};
|
|
||||||
DirEntryAttribute::File { size: *size, mtime }
|
|
||||||
}
|
|
||||||
EntryKind::Device(_) => match entry.metadata().file_type() {
|
|
||||||
mode::IFBLK => DirEntryAttribute::BlockDevice,
|
|
||||||
mode::IFCHR => DirEntryAttribute::CharDevice,
|
|
||||||
_ => bail!("encountered unknown device type"),
|
|
||||||
},
|
|
||||||
EntryKind::Symlink(_) => DirEntryAttribute::Symlink,
|
|
||||||
EntryKind::Hardlink(_) => DirEntryAttribute::Hardlink,
|
|
||||||
EntryKind::Fifo => DirEntryAttribute::Fifo,
|
|
||||||
EntryKind::Socket => DirEntryAttribute::Socket,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
let entry_path = entry_path_with_prefix(&entry, path_prefix);
|
let entry_path = crate::pxar::tools::entry_path_with_prefix(&entry, path_prefix);
|
||||||
entries.push(ArchiveEntry::new(
|
entries.push(ArchiveEntry::new(
|
||||||
entry_path.as_os_str().as_bytes(),
|
entry_path.as_os_str().as_bytes(),
|
||||||
Some(&entry_attr),
|
Some(&entry_attr),
|
||||||
|
@ -7,6 +7,10 @@ use anyhow::{bail, format_err, Error};
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use pathpatterns::{MatchList, MatchType};
|
use pathpatterns::{MatchList, MatchType};
|
||||||
|
use pxar::accessor::aio::FileEntry;
|
||||||
|
use pxar::accessor::ReadAt;
|
||||||
|
use pxar::format::SignedDuration;
|
||||||
|
use pxar::{mode, EntryKind};
|
||||||
|
|
||||||
use proxmox_io::ReadExt;
|
use proxmox_io::ReadExt;
|
||||||
use proxmox_schema::api;
|
use proxmox_schema::api;
|
||||||
@ -104,6 +108,42 @@ pub enum DirEntryAttribute {
|
|||||||
Socket,
|
Socket,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<T> TryFrom<&FileEntry<T>> for DirEntryAttribute
|
||||||
|
where
|
||||||
|
T: Clone + ReadAt,
|
||||||
|
{
|
||||||
|
type Error = Error;
|
||||||
|
|
||||||
|
fn try_from(entry: &FileEntry<T>) -> Result<Self, Self::Error> {
|
||||||
|
let attr = match entry.kind() {
|
||||||
|
EntryKind::Version(_) | EntryKind::Prelude(_) | EntryKind::GoodbyeTable => bail!(
|
||||||
|
"cannot convert pxar entry kind {:?} to catalog directory entry attribute",
|
||||||
|
entry.kind(),
|
||||||
|
),
|
||||||
|
EntryKind::Directory => DirEntryAttribute::Directory {
|
||||||
|
start: entry.entry_range_info().entry_range.start,
|
||||||
|
},
|
||||||
|
EntryKind::File { size, .. } => {
|
||||||
|
let mtime = match entry.metadata().mtime_as_duration() {
|
||||||
|
SignedDuration::Positive(val) => i64::try_from(val.as_secs())?,
|
||||||
|
SignedDuration::Negative(val) => -i64::try_from(val.as_secs())?,
|
||||||
|
};
|
||||||
|
DirEntryAttribute::File { size: *size, mtime }
|
||||||
|
}
|
||||||
|
EntryKind::Device(_) => match entry.metadata().file_type() {
|
||||||
|
mode::IFBLK => DirEntryAttribute::BlockDevice,
|
||||||
|
mode::IFCHR => DirEntryAttribute::CharDevice,
|
||||||
|
_ => bail!("encountered unknown device type"),
|
||||||
|
},
|
||||||
|
EntryKind::Symlink(_) => DirEntryAttribute::Symlink,
|
||||||
|
EntryKind::Hardlink(_) => DirEntryAttribute::Hardlink,
|
||||||
|
EntryKind::Fifo => DirEntryAttribute::Fifo,
|
||||||
|
EntryKind::Socket => DirEntryAttribute::Socket,
|
||||||
|
};
|
||||||
|
Ok(attr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl DirEntry {
|
impl DirEntry {
|
||||||
fn new(etype: CatalogEntryType, name: Vec<u8>, start: u64, size: u64, mtime: i64) -> Self {
|
fn new(etype: CatalogEntryType, name: Vec<u8>, start: u64, size: u64, mtime: i64) -> Self {
|
||||||
match etype {
|
match etype {
|
||||||
|
Loading…
Reference in New Issue
Block a user