89c17429f0338f29891e8c5feb0f0cc4864d678b
[backups/.git] / main.cc
1 #include <iostream>
2 #include <iterator>
3 #include <vector>
4 #include <algorithm>
5
6 #include <sqlite3.h>
7
8 #include "filedata.hpp"
9
10 using namespace std;
11
12 vector<string> split( const string &line, char c, int limit = -1 ) {
13   string::size_type start = 0, end = 0;
14
15   vector<string> out;
16   while( 0 != limit-- && end != line.size() ) {
17     if( 0 == limit ) {
18       end = line.size();
19     } else {
20       end = line.find( c, start );
21       if( end == string::npos ) {
22         end = line.size();
23       }
24     }
25     out.push_back( line.substr( start, end-start ) );
26     start = end + 1;
27   }
28   return out;
29 }
30
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],
35         vals[1],
36         vals[2],
37         vals[3],
38         atoi( vals[4] ),
39         atoi( vals[5] ),
40         vals[6]) );
41   return 0;
42 }
43
44 int main() {
45   string file_string;
46
47   file_set current;
48
49   // Parse the list of files on stdin
50   do {
51     file_string.clear();
52     for( int c = cin.get(); 0 != c && ! cin.eof(); c = cin.get() ) {
53       file_string.push_back( c );
54     }
55     if( 0 != file_string.size() ) {
56       // Example entry
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],
61             vals[1],
62             vals[2],
63             vals[3],
64             atoi( vals[4].c_str() ),
65             atoi( vals[5].c_str() ),
66             vals[6]) );
67     }
68   } while( ! cin.eof() );
69
70   // Get the list of previously backed up files from the database.
71   sqlite3 *db;
72
73   const char *dbname = "test.db";
74   int rc = sqlite3_open( dbname, &db );
75   if( SQLITE_OK != rc ) {
76     cerr << "Cannot open database: " << dbname << ".  Error message is..." << endl;
77     cerr << sqlite3_errmsg(db) << endl;
78   }
79
80   char *sqliteErrMsg = 0;
81   file_set backed_up;
82   rc = sqlite3_exec( db, "select * from filedata;", populate_set, &backed_up, &sqliteErrMsg );
83   if( SQLITE_OK != rc ) {
84     cerr << "Problem with database.  Message is..." << endl;
85     cerr << sqliteErrMsg << endl;
86   }
87
88   sqlite3_close( db );
89
90   for( file_set::iterator i = backed_up.begin(); i != backed_up.end(); ++i ) {
91     cout << (*i)->getFileName() << endl;
92   }
93
94   // Now divide the two sets into three sets (new, deleted and updated )
95   FileDataPtrCmp cmp;
96
97   file_set new_set;
98   set_difference( current.begin(),  current.end(),
99                   backed_up.begin(), backed_up.end(),
100                   inserter( new_set, new_set.begin() ),
101                   cmp );
102
103   file_set deleted;
104   set_difference( backed_up.begin(), backed_up.end(),
105                   current.begin(),  current.end(),
106                   inserter( deleted, deleted.begin() ),
107                   cmp );
108
109   // backed_up should *definitely* be the first set here
110   file_set updated;
111   set_difference( backed_up.begin(), backed_up.end(),
112                   current.begin(),  current.end(),
113                   inserter( updated, updated.begin() ),
114                   cmp );
115
116   // Now find the list of files to backup.
117   file_set backup_list;
118
119   // backup all new files
120   copy( new_set.begin(), new_set.end(), inserter( backup_list, backup_list.begin() ) );
121
122   // backup all the already backed-up files that have changed since the last
123   // backup date.
124   for( file_set::iterator i = updated.begin(); i != updated.end(); ++i ) {
125     if( (*i)->getLastBackupDate() < (*i)->getModifiedDate() ) {
126       backup_list.insert( *i );
127     }
128   }
129
130   // Now, sort the backup_list by filesize and build a list of up to SIZE
131
132   //
133   // Now, sort the non-backed-up list my last_backup_date and back-fill
134
135   // Remove deleted files from the database.
136
137   // Now, use the current set to update values in the database.  You should copy
138   // last_backup_date dates from the backed_up set first.  This will get all of
139   // the latest permissions but include the last_backup_date.
140
141   // Now, update the last_backup_date for all of the files that are in the list
142
143   // Clean-up
144   for( file_set::iterator i = backed_up.begin(); i != backed_up.end(); ++i ) { delete *i; }
145   for( file_set::iterator i = current.begin();   i != current.end();   ++i ) { delete *i; }
146 }