X-Git-Url: http://git.pippins.net/embedvideo/.git/static/git-logo.png?a=blobdiff_plain;f=main.cc;h=8ffd418cc9ec289ae0ab8dc8eaa33dc23ad1ed3c;hb=10f79645bbc320f9b1375e7143079c953f63ab23;hp=bd744b67b6ac59a488f7783e18d99c471f4d5b37;hpb=8182442be7a7baca39cf2d0acae84407e8768ae4;p=backups%2F.git diff --git a/main.cc b/main.cc index bd744b6..8ffd418 100644 --- a/main.cc +++ b/main.cc @@ -1,17 +1,89 @@ #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; + + vector out; + while( 0 != limit-- && end != line.size() ) { + if( 0 == limit ) { + end = line.size(); + } else { + end = line.find( c, start ); + if( end == string::npos ) { + end = line.size(); + } + } + out.push_back( line.substr( start, end-start ) ); + start = end + 1; + } + return out; +} + +int callback( void *NotUsed, int argc, char **argv, char **azColName ) { + int i; + for( int i = 0; i < argc; ++i ) { + cout << azColName[i] << " = " << ( argv[i] ? argv[i] : "NULL" ) << endl; + } + cout << endl; + return 0; +} + +void sql_experimenting() { + sqlite3 *db; + char *sqliteErrMsg = 0; + int rc; + + const char *dbname = "test.db"; + rc = sqlite3_open( dbname, &db ); + if( SQLITE_OK != rc ) { + cerr << "Cannot open database: " << dbname << ". Error message is..." << endl; + cerr << sqlite3_errmsg(db) << endl; + } + + rc = sqlite3_exec( db, "select * from filedata;", callback, 0, &sqliteErrMsg ); + if( SQLITE_OK != rc ) { + cerr << "Problem with database. Message is..." << endl; + cerr << sqliteErrMsg << endl; + } + + sqlite3_close( db ); +} + int main() { string file_string; + set current_files; + + // 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() ) { - cout << file_string << endl; + // 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_files.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 previous_files; }