X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=main.cc;h=07868bcd65199d14e2a43da88dbf3740018bb672;hb=7f06c56f69c8bfda925dd6b28d73201f0a7ea311;hp=89c17429f0338f29891e8c5feb0f0cc4864d678b;hpb=ec3f8dcca4d2a3db11684ee48417890fd3b02ecb;p=backups%2F.git diff --git a/main.cc b/main.cc index 89c1742..07868bc 100644 --- a/main.cc +++ b/main.cc @@ -1,144 +1,166 @@ #include +#include #include -#include #include - -#include +#include +#include #include "filedata.hpp" using namespace std; -vector split( const string &line, char c, int limit = -1 ) { - string::size_type start = 0, end = 0; +unsigned long long current_time() { + unsigned long long rc = 0; + time_t now_tt = time( 0 ); + tm *now = localtime( &now_tt ); + rc += ( now->tm_year + 1900ULL ) * 10000000000ULL; + rc += ( now->tm_mon + 1ULL ) * 100000000ULL; + rc += now->tm_mday * 1000000ULL; + rc += now->tm_hour * 10000ULL; + rc += now->tm_min * 100ULL; + rc += now->tm_sec; + + return rc; +} - vector out; - while( 0 != limit-- && end != line.size() ) { - if( 0 == limit ) { - end = line.size(); +template +bool copy_until_full( I begin, I end, O out, unsigned long long &space ) { + const unsigned long long block_size = 0x200ULL; + bool complete = true; + + I i = begin; + while( 0 != space && i != end ) { + unsigned long long size = (*i)->getFileSize(); + unsigned long long blocks = size & ( ~(block_size-1) ); + if( blocks < size ) blocks += block_size; + + if( blocks <= space ) { + space -= blocks; + out = *i; + ++out; } else { - end = line.find( c, start ); - if( end == string::npos ) { - end = line.size(); - } + // We missed a file that should be included so the backup is not complete + complete = false; } - out.push_back( line.substr( start, end-start ) ); - start = end + 1; + ++i; } - return out; + return complete; } -// Callback function for getting files from the database -int populate_set( void *files_v, int, char **vals, char ** ) { - file_set *files = reinterpret_cast( files_v ); - files->insert( new FileData( vals[0][0], - vals[1], - vals[2], - vals[3], - atoi( vals[4] ), - atoi( vals[5] ), - vals[6]) ); - return 0; +template +void populate_set( istream &in, SET &files ) { + do { + FileData *data = new FileData(); + in >> data; + if( data->getFileName().size() ) { + files.insert( data ); + } else { + delete data; + } + } while( ! in.eof() ); } -int main() { - string file_string; +template +void partition_sets( const SET ¤t, const SET &old, + SET &added, SET &common, SET &old_common, SET &deleted ) { + FileDataNameCmp cmp; - file_set current; + set_difference( current.begin(), current.end(), + old.begin(), old.end(), + inserter( added, added.begin() ), + cmp ); - // Parse the list of files on stdin - do { - file_string.clear(); - for( int c = cin.get(); 0 != c && ! cin.eof(); c = cin.get() ) { - file_string.push_back( c ); - } - if( 0 != file_string.size() ) { - // Example entry - // type perms user group size datemodified name (7 total) - // f 0600 cnb cnb 424 20051015205340 ./.git/index - vector vals = split( file_string, ' ', 7 ); - current.insert( new FileData( vals[0][0], - vals[1], - vals[2], - vals[3], - atoi( vals[4].c_str() ), - atoi( vals[5].c_str() ), - vals[6]) ); - } - } while( ! cin.eof() ); + set_difference( old.begin(), old.end(), + current.begin(), current.end(), + inserter( deleted, deleted.begin() ), + cmp ); - // Get the list of previously backed up files from the database. - sqlite3 *db; + set_union( current.begin(), current.end(), + old.begin(), old.end(), + inserter( common, common.begin() ), + cmp ); - const char *dbname = "test.db"; - int rc = sqlite3_open( dbname, &db ); - if( SQLITE_OK != rc ) { - cerr << "Cannot open database: " << dbname << ". Error message is..." << endl; - cerr << sqlite3_errmsg(db) << endl; - } + set_union( old.begin(), old.end(), + common.begin(), common.end(), + inserter( old_common, old_common.begin() ), + cmp ); +} + +int main() { + // Parse the list of current files on stdin + file_set current; + populate_set( cin, current ); - char *sqliteErrMsg = 0; file_set backed_up; - rc = sqlite3_exec( db, "select * from filedata;", populate_set, &backed_up, &sqliteErrMsg ); - if( SQLITE_OK != rc ) { - cerr << "Problem with database. Message is..." << endl; - cerr << sqliteErrMsg << endl; + ifstream db( "test.db" ); + if( db && db.good() ) { + populate_set( db, backed_up ); } - sqlite3_close( db ); + // Now divide the two sets into three sets (added, deleted and common ) + file_set added, deleted, common, old_common; + partition_sets( current, backed_up, added, common, old_common, deleted ); + + // Now find the list of files to backup. + file_set backups; + + // backup all added files + copy( added.begin(), added.end(), inserter( backups, backups.begin() ) ); - for( file_set::iterator i = backed_up.begin(); i != backed_up.end(); ++i ) { - cout << (*i)->getFileName() << endl; + // Backup files that have been modified + file_set::iterator i = common.begin(), j = old_common.begin(); + for( ; i != common.end(); ++i, ++j ) { + (*i)->setLastBackupDate( (*j)->getLastBackupDate() ); + + if( needs_backup( *j, *i ) ) backups.insert( *i ); } - // Now divide the two sets into three sets (new, deleted and updated ) - FileDataPtrCmp cmp; + // Now, sort the backups by filesize and build a list that'll fit on a DVD + file_vector backups_s; + copy( backups.begin(), backups.end(), back_inserter( backups_s ) ); - file_set new_set; - set_difference( current.begin(), current.end(), - backed_up.begin(), backed_up.end(), - inserter( new_set, new_set.begin() ), - cmp ); + FileDataSizeCmp sizecmp; + sort( backups_s.begin(), backups_s.end(), sizecmp ); - file_set deleted; - set_difference( backed_up.begin(), backed_up.end(), - current.begin(), current.end(), - inserter( deleted, deleted.begin() ), - cmp ); + file_set final; + unsigned long long space = 0x107c00000ULL; // 4220 MBytes - // 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 ); + insert_iterator final_i( final, final.begin() ); - // Now find the list of files to backup. - file_set backup_list; + // Copy files over until full or out of files + bool complete = copy_until_full( backups_s.rbegin(), + backups_s.rend(), + final_i, + space ); - // backup all new files - copy( new_set.begin(), new_set.end(), inserter( backup_list, backup_list.begin() ) ); + // Now, sort the non-backed-up list by last_backup_date and back-fill + if( 0 != space ) { + file_vector leftovers; + FileDataNameCmp cmp; + set_difference( current.begin(), current.end(), + final.begin(), final.end(), + back_inserter( leftovers ), + cmp ); - // backup all the already backed-up files that have changed since the last - // backup date. - for( file_set::iterator i = updated.begin(); i != updated.end(); ++i ) { - if( (*i)->getLastBackupDate() < (*i)->getModifiedDate() ) { - backup_list.insert( *i ); - } - } + FileDataLastBackupCmp lastbackupcmp; + sort( leftovers.begin(), leftovers.end(), lastbackupcmp ); - // Now, sort the backup_list by filesize and build a list of up to SIZE + copy_until_full( leftovers.begin(), leftovers.end(), final_i, space ); + } - // - // Now, sort the non-backed-up list my last_backup_date and back-fill + unsigned long long now = current_time(); + for( file_set::iterator k = final.begin(); k != final.end(); ++k ) { + (*k)->setLastBackupDate( now ); + } - // Remove deleted files from the database. + // Write the 'current' list to the dbfile + ofstream dbout( "test.db" ); + copy( current.begin(), current.end(), ostream_iterator( dbout, "" ) ); - // Now, use the current set to update values in the database. You should copy - // last_backup_date dates from the backed_up set first. This will get all of - // the latest permissions but include the last_backup_date. + // Write the 'final' list to stdout + copy( final.begin(), final.end(), ostream_iterator( cout, "" ) ); - // Now, update the last_backup_date for all of the files that are in the list + if( ! complete ) { cerr << "incomplete" << endl; } // Clean-up for( file_set::iterator i = backed_up.begin(); i != backed_up.end(); ++i ) { delete *i; }