@ -77,7 +77,7 @@ public class DirectoryArchiver {
// S t r e a m - b a s e d d i r e c t o r y t r a v e r s a l a n d c o m p r e s s i o n
let enumerator : FileManager . DirectoryEnumerator ? = FileManager . default . enumerator (
at : sourceUrl ,
includingPropertiesForKeys : [ . isRegularFileKey , . is DirectoryKey]
includingPropertiesForKeys : [ . isRegularFileKey , . is HiddenKey, . is DirectoryKey]
)
let fileUrls : [ URL ] = ( enumerator ? . allObjects
. compactMap { $0 as ? URL }
@ -85,11 +85,14 @@ public class DirectoryArchiver {
guard ! filenamesToExclude . contains ( url . lastPathComponent ) else { return false }
guard
let resourceValues = try ? url . resourceValues (
forKeys : [ . isRegularFileKey , . is DirectoryKey]
forKeys : [ . isRegularFileKey , . is HiddenKey, . is DirectoryKey]
)
else { return true }
return ( resourceValues . isRegularFile = = true )
return (
resourceValues . isRegularFile = = true &&
resourceValues . isHidden != true
)
} )
. defaulting ( to : [ ] )
var index : Int = 0
@ -215,6 +218,7 @@ public class DirectoryArchiver {
var filePaths : [ String ] = [ ]
var additionalFilePaths : [ String ] = [ ]
var skippedFilePaths : [ String ] = [ ]
var fileAmountProcessed : UInt64 = 0
progressChanged ? ( 0 , Int ( expectedFileCount + expectedAdditionalFileCount ) , 0 , encryptedFileSize )
while inputStream . hasBytesAvailable {
@ -224,7 +228,7 @@ public class DirectoryArchiver {
)
fileAmountProcessed += UInt64 ( blockSizeBytesRead )
progressChanged ? (
( filePaths . count + additionalFilePaths. count ) ,
( filePaths . count + skippedFilePaths. count + additionalFilePaths. count ) ,
Int ( expectedFileCount + expectedAdditionalFileCount ) ,
fileAmountProcessed ,
encryptedFileSize
@ -274,12 +278,30 @@ public class DirectoryArchiver {
)
fileAmountProcessed += encryptedSize
progressChanged ? (
( filePaths . count + additionalFilePaths. count ) ,
( filePaths . count + skippedFilePaths. count + additionalFilePaths. count ) ,
Int ( expectedFileCount + expectedAdditionalFileCount ) ,
fileAmountProcessed ,
encryptedFileSize
)
// I f t h e f i l e i s a h i d d e n f i l e ( s h o u l d n ' t b e p o s s i b l e a n y m o r e b u t o l d b a c k u p s h a d t h i s
// i s s u e ) t h e n j u s t s k i p t h e f i l e - a n y h i d d e n f i l e s a r e f r o m A p p l e a n d s e e m t o f a i l t o
// d e c r y p t c a u s i n g t h e e n t i r e i m p o r t t o f a i l
guard ! URL ( fileURLWithPath : relativePath ) . lastPathComponent . starts ( with : " . " ) else {
Log . warn ( . cat , " Skipping hidden file to avoid breaking the import: \( relativePath ) " )
skippedFilePaths . append ( fullPath )
// U p d a t e t h e p r o g r e s s
fileAmountProcessed += fileSize
progressChanged ? (
( filePaths . count + skippedFilePaths . count + additionalFilePaths . count ) ,
Int ( expectedFileCount + expectedAdditionalFileCount ) ,
fileAmountProcessed ,
encryptedFileSize
)
continue
}
// R e a d a n d d e c r y p t f i l e c o n t e n t
guard let outputStream : OutputStream = OutputStream ( toFileAtPath : fullPath , append : false ) else {
Log . error ( . cat , " Failed to create output stream " )
@ -302,7 +324,7 @@ public class DirectoryArchiver {
// U p d a t e t h e p r o g r e s s
fileAmountProcessed += UInt64 ( chunkSizeBytesRead ) + UInt64 ( encryptedSize )
progressChanged ? (
( filePaths . count + additionalFilePaths. count ) ,
( filePaths . count + skippedFilePaths. count + additionalFilePaths. count ) ,
Int ( expectedFileCount + expectedAdditionalFileCount ) ,
fileAmountProcessed ,
encryptedFileSize
@ -315,7 +337,7 @@ public class DirectoryArchiver {
case true : additionalFilePaths . append ( fullPath )
}
progressChanged ? (
( filePaths . count + additionalFilePaths. count ) ,
( filePaths . count + skippedFilePaths. count + additionalFilePaths. count ) ,
Int ( expectedFileCount + expectedAdditionalFileCount ) ,
fileAmountProcessed ,
encryptedFileSize
@ -345,12 +367,12 @@ public class DirectoryArchiver {
throw ArchiveError . importedFileCountMismatch
}
guard
filePaths . count = = expectedFileCount &&
( filePaths . count + skippedFilePaths . count ) = = expectedFileCount &&
additionalFilePaths . count = = expectedAdditionalFileCount
else {
switch ( ( filePaths . count = = expectedFileCount ) , additionalFilePaths . count = = expectedAdditionalFileCount ) {
switch ( ( ( filePaths . count + skippedFilePaths . count ) = = expectedFileCount ) , additionalFilePaths . count = = expectedAdditionalFileCount ) {
case ( false , true ) :
Log . error ( . cat , " The number of main files decrypted ( \( filePaths . count ) ) didn't match the expected number of main files (\( expectedFileCount ) ) " )
Log . error ( . cat , " The number of main files decrypted ( \( filePaths . count ) ) plus skipped files (\( skippedFilePaths . count ) ) didn't match the expected number of main files (\( expectedFileCount ) ) " )
case ( true , false ) :
Log . error ( . cat , " The number of additional files decrypted ( \( additionalFilePaths . count ) ) didn't match the expected number of additional files ( \( expectedAdditionalFileCount ) ) " )