pxar: add PxarDir and PxarDirBuf to buffer directory metadata

In order to restore only directories when some of their content fully matched
a match pattern on partial restores, these directories and their metadata are
pushed onto this buffer and only restored successivley on demand.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
Christian Ebner
2019-08-01 16:23:46 +02:00
committed by Dietmar Maurer
parent 27e6e180b6
commit 6a584cfd76
2 changed files with 115 additions and 0 deletions

View File

@ -65,4 +65,7 @@ pub use decoder::*;
mod exclude_pattern;
pub use exclude_pattern::*;
mod dir_buffer;
pub use dir_buffer::*;
mod helper;