#include <iterator>
#include <vector>
#include <algorithm>
+#include <cassert>
#include <sqlite3.h>
// Now divide the two sets into three sets (new, deleted and updated )
FileDataPtrCmp cmp;
- file_set new_set;
- set_difference( current.begin(), current.end(),
+ file_set added;
+ set_difference( current.begin(), current.end(),
backed_up.begin(), backed_up.end(),
- inserter( new_set, new_set.begin() ),
+ inserter( added, added.begin() ),
cmp );
file_set deleted;
set_difference( backed_up.begin(), backed_up.end(),
- current.begin(), current.end(),
+ current.begin(), current.end(),
inserter( deleted, deleted.begin() ),
cmp );
- // backed_up should *definitely* be the first set here
file_set updated;
- set_difference( backed_up.begin(), backed_up.end(),
- current.begin(), current.end(),
- inserter( updated, updated.begin() ),
- cmp );
+ set_union( current.begin(), current.end(),
+ backed_up.begin(), backed_up.end(),
+ inserter( updated, updated.begin() ),
+ cmp );
+
+ { // This little block will copy the last_backup_date from the second set to the first
+ file_set updated_mirror;
+ set_union( current.begin(), current.end(),
+ backed_up.begin(), backed_up.end(),
+ inserter( updated_mirror, updated_mirror.begin() ),
+ cmp );
+
+ // TODO Now we need to copy the last_backup_date from
+ file_set::iterator i = updated.begin(), j = updated_mirror.begin();
+ for( ; i != updated.end(); ++i, ++j ) {
+ (*i)->setLastBackupDate( (*j)->getLastBackupDate() );
+ }
+ }
// Now find the list of files to backup.
file_set backup_list;
// backup all new files
- copy( new_set.begin(), new_set.end(), inserter( backup_list, backup_list.begin() ) );
+ copy( added.begin(), added.end(), inserter( backup_list, backup_list.begin() ) );
// backup already backed-up files that have changed since the last backup date.
for( file_set::iterator i = updated.begin(); i != updated.end(); ++i ) {
// Now, sort the non-backed-up list my last_backup_date and back-fill
// Remove deleted files from the database.
- // TODO CNB You were working in here.
+ // TODO CNB You were working in here. Actually, just delete all records in
+ // the database and re-populate with the current list.
const char *delete_sql = "delete from filedata where filename = :filename";
sqlite3_stmt *ppStmt;