From d530ba080d0cb3c99b4a2203c1e86a0289f9944c Mon Sep 17 00:00:00 2001 From: Christian Ebner Date: Mon, 12 Aug 2024 12:31:36 +0200 Subject: [PATCH] client: add helper to dump catalog from metadata archive Implements the methods to dump the contents of a metadata pxar archive using the same output format as used by the catalog dump. The helper function has been split into 2 for async recursion to work. Signed-off-by: Christian Ebner --- pbs-client/src/pxar/tools.rs | 66 ++++++++++++++++++++++++++++++++++-- 1 file changed, 63 insertions(+), 3 deletions(-) diff --git a/pbs-client/src/pxar/tools.rs b/pbs-client/src/pxar/tools.rs index 68207cd3..c99cf46f 100644 --- a/pbs-client/src/pxar/tools.rs +++ b/pbs-client/src/pxar/tools.rs @@ -1,19 +1,21 @@ //! Some common methods used within the pxar code. use std::ffi::OsStr; +use std::future::Future; use std::os::unix::ffi::OsStrExt; use std::path::{Path, PathBuf}; +use std::pin::Pin; use std::sync::Arc; use anyhow::{bail, format_err, Context, Error}; use nix::sys::stat::Mode; -use pxar::accessor::aio::{Accessor, FileEntry}; +use pxar::accessor::aio::{Accessor, Directory, FileEntry}; use pxar::accessor::ReadAt; -use pxar::format::{SignedDuration, StatxTimestamp}; +use pxar::format::StatxTimestamp; use pxar::{mode, Entry, EntryKind, Metadata}; -use pbs_datastore::catalog::{ArchiveEntry, DirEntryAttribute}; +use pbs_datastore::catalog::{ArchiveEntry, CatalogEntryType, DirEntryAttribute}; use pbs_datastore::dynamic_index::{BufferedDynamicReader, LocalDynamicReadAt}; use pbs_datastore::index::IndexFile; @@ -397,3 +399,61 @@ pub(crate) fn entry_path_with_prefix( PathBuf::from(entry.path()) } } + +/// Read a sorted list of pxar archive entries from given parent entry via the pxar accessor. +pub(crate) async fn pxar_metadata_read_dir( + parent_dir: Directory, +) -> Result>, Error> { + let mut entries_iter = parent_dir.read_dir(); + let mut entries = Vec::new(); + while let Some(entry) = entries_iter.next().await { + let entry = entry?.decode_entry().await?; + entries.push(entry); + } + entries.sort_unstable_by(|a, b| a.path().cmp(b.path())); + Ok(entries) +} + +/// Dump pxar archive entry by using the same format used to dump entries from a catalog. +fn pxar_metadata_catalog_dump_entry<'future, T: Clone + Send + Sync + ReadAt + 'future>( + entry: FileEntry, + path_prefix: Option<&'future str>, +) -> Pin> + Send + 'future>> { + let entry_path = entry_path_with_prefix(&entry, path_prefix); + + Box::pin(async move { + if let Ok(attr) = DirEntryAttribute::try_from(&entry) { + let etype = CatalogEntryType::from(&attr); + match attr { + DirEntryAttribute::File { size, mtime } => { + let mut mtime_string = mtime.to_string(); + if let Ok(s) = proxmox_time::strftime_local("%FT%TZ", mtime) { + mtime_string = s; + } + log::info!("{etype} {entry_path:?} {size} {mtime_string}"); + } + DirEntryAttribute::Directory { .. } => { + log::info!("{etype} {entry_path:?}"); + let dir = entry.enter_directory().await?; + pxar_metadata_catalog_dump_dir(dir, path_prefix).await?; + } + _ => log::info!("{etype} {entry_path:?}"), + } + } + + Ok(()) + }) +} + +/// Recursively iterate over pxar archive entries and dump them using the same format used to dump +/// entries from a catalog. +pub async fn pxar_metadata_catalog_dump_dir( + parent_dir: Directory, + path_prefix: Option<&str>, +) -> Result<(), Error> { + let entries = pxar_metadata_read_dir(parent_dir).await?; + for entry in entries { + pxar_metadata_catalog_dump_entry(entry, path_prefix).await?; + } + Ok(()) +}