X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=main.cpp;h=2dd8048575903ac09b9214e56538db323c149158;hb=f6fdaebaa32fa96fe0f63143846d7db56f382084;hp=fb7d522798909ef1d6c90533fed9fec48157adcc;hpb=57e1b1e3e188c9ad22ef891cdd38e83a094ece39;p=backups%2F.git diff --git a/main.cpp b/main.cpp index fb7d522..2dd8048 100644 --- a/main.cpp +++ b/main.cpp @@ -35,7 +35,7 @@ bool copy_until_full( I begin, I end, O out, INT &space ) { if( blocksize <= space ) { space -= blocksize; - out = *begin; + *out = *begin; ++out; } else { // We missed a file that should be included so the backup is not complete @@ -62,27 +62,25 @@ void populate_set( istream &in, SET &files ) { template void partition_sets( const SET ¤t, const SET &old, SET &added, SET &common, SET &old_common, SET &deleted ) { - FileDataNameCmp cmp; - set_difference( current.begin(), current.end(), old.begin(), old.end(), inserter( added, added.begin() ), - cmp ); + FileData::namecmp ); set_difference( old.begin(), old.end(), current.begin(), current.end(), inserter( deleted, deleted.begin() ), - cmp ); + FileData::namecmp ); set_intersection( current.begin(), current.end(), old.begin(), old.end(), inserter( common, common.begin() ), - cmp ); + FileData::namecmp ); set_intersection( old.begin(), old.end(), common.begin(), common.end(), inserter( old_common, old_common.begin() ), - cmp ); + FileData::namecmp ); } template @@ -177,12 +175,12 @@ int main() { unsigned long long modified_blocks, modified_bytes; sizes( modified_v.begin(), modified_v.end(), modified_blocks, modified_bytes ); - // Now, sort the backups by filesize and build a list that'll fit on a DVD + // Now, sort the backups by filesize (decreasing) and build a list that'll fit + // on a DVD file_vector backups_s; copy( backups.begin(), backups.end(), back_inserter( backups_s ) ); - FileDataSizeCmp sizecmp; - sort( backups_s.begin(), backups_s.end(), sizecmp ); + sort( backups_s.rbegin(), backups_s.rend(), FileData::sizecmp ); file_set final; unsigned long long space = 0x100000000ULL; @@ -191,23 +189,26 @@ int main() { // Copy files over until full or out of files bool complete - = copy_until_full( backups_s.rbegin(), backups_s.rend(), final_i, space ); + = copy_until_full( backups_s.begin(), backups_s.end(), final_i, space ); // Track the size filled up by essential backups unsigned long long essential_blocks, essential_bytes; sizes( final.begin(), final.end(), essential_blocks, essential_bytes ); - // Now, sort the non-backed-up list by last_backup_date and back-fill + // Now, sort the non-backed-up list by last_backup_date, then by filesize + // (decreasing) and back-fill. This should minimize the number of DVDs in the + // collection left with actual content. if( 0 != space ) { file_vector leftovers; - FileDataNameCmp cmp; set_difference( current.begin(), current.end(), final.begin(), final.end(), back_inserter( leftovers ), - cmp ); + FileData::namecmp ); - FileDataLastBackupCmp lastbackupcmp; - sort( leftovers.begin(), leftovers.end(), lastbackupcmp ); + // Achieve 'last backup date then by filesize' by first sorting by filesize + // and then running stable sort by last backup date. + sort( leftovers.rbegin(), leftovers.rend(), FileData::sizecmp ); + stable_sort( leftovers.begin(), leftovers.end(), FileData::lastbackupcmp ); copy_until_full( leftovers.begin(), leftovers.end(), final_i, space ); }