8 #include "filedata.hpp"
12 vector<string> split( const string &line, char c, int limit = -1 ) {
13 string::size_type start = 0, end = 0;
16 while( 0 != limit-- && end != line.size() ) {
20 end = line.find( c, start );
21 if( end == string::npos ) {
25 out.push_back( line.substr( start, end-start ) );
31 // Callback function for getting files from the database
32 int populate_set( void *files_v, int, char **vals, char ** ) {
33 file_set *files = reinterpret_cast<file_set*>( files_v );
34 files->insert( new FileData( vals[0][0],
49 // Parse the list of files on stdin
52 for( int c = cin.get(); 0 != c && ! cin.eof(); c = cin.get() ) {
53 file_string.push_back( c );
55 if( 0 != file_string.size() ) {
57 // type perms user group size datemodified name (7 total)
58 // f 0600 cnb cnb 424 20051015205340 ./.git/index
59 vector<string> vals = split( file_string, ' ', 7 );
60 current.insert( new FileData( vals[0][0],
64 atoi( vals[4].c_str() ),
65 atoi( vals[5].c_str() ),
68 } while( ! cin.eof() );
70 // Get the list of previously backed up files from the database.
73 const char *dbname = "test.db";
74 int rc = sqlite3_open( dbname, &db );
75 assert( SQLITE_OK == rc );
77 char *sqliteErrMsg = 0;
79 rc = sqlite3_exec( db, "select * from filedata;", populate_set, &backed_up, &sqliteErrMsg );
80 assert( SQLITE_OK == rc );
82 rc = sqlite3_close( db );
83 assert( SQLITE_OK == rc );
85 // Now divide the two sets into three sets (new, deleted and updated )
89 set_difference( current.begin(), current.end(),
90 backed_up.begin(), backed_up.end(),
91 inserter( new_set, new_set.begin() ),
95 set_difference( backed_up.begin(), backed_up.end(),
96 current.begin(), current.end(),
97 inserter( deleted, deleted.begin() ),
100 // backed_up should *definitely* be the first set here
102 set_difference( backed_up.begin(), backed_up.end(),
103 current.begin(), current.end(),
104 inserter( updated, updated.begin() ),
107 // Now find the list of files to backup.
108 file_set backup_list;
110 // backup all new files
111 copy( new_set.begin(), new_set.end(), inserter( backup_list, backup_list.begin() ) );
113 // backup already backed-up files that have changed since the last backup date.
114 for( file_set::iterator i = updated.begin(); i != updated.end(); ++i ) {
115 if( (*i)->getLastBackupDate() < (*i)->getModifiedDate() ) {
116 backup_list.insert( *i );
120 // Now, sort the backup_list by filesize and build a list of up to SIZE
122 // Now, sort the non-backed-up list my last_backup_date and back-fill
124 // Remove deleted files from the database.
125 // TODO CNB You were working in here.
126 const char *delete_sql = "delete from filedata where filename = :filename";
127 sqlite3_stmt *ppStmt;
129 sqlite3_prepare( db, delete_sql, -1, &ppStmt, NULL );
130 assert( NULL != ppStmt );
132 for( file_set::iterator i = deleted.begin(); i != deleted.end(); ++i ) {
133 const string &name = (*i)->getFileName();
135 rc = sqlite3_bind_text( ppStmt, 1, name.data(), name.size(), SQLITE_TRANSIENT );
136 assert( SQLITE_OK == rc );
138 rc = sqlite3_step( ppStmt );
139 assert( SQLITE_OK == rc );
141 rc = sqlite3_finalize( ppStmt );
142 assert( SQLITE_OK == rc );
144 // Now, use the current set to update values in the database. You should copy
145 // last_backup_date dates from the backed_up set first. This will get all of
146 // the latest permissions but include the last_backup_date.
148 // Now, update the last_backup_date for all of the files that are in the list
151 for( file_set::iterator i = backed_up.begin(); i != backed_up.end(); ++i ) { delete *i; }
152 for( file_set::iterator i = current.begin(); i != current.end(); ++i ) { delete *i; }