summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/backup/backuprestore.cpp44
-rw-r--r--noncore/settings/backup/backuprestore.h1
2 files changed, 38 insertions, 7 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp
index 6b83bc9..164055e 100644
--- a/noncore/settings/backup/backuprestore.cpp
+++ b/noncore/settings/backup/backuprestore.cpp
@@ -243,28 +243,29 @@ void BackupAndRestore::backup()
243 while(QFile::exists(outputFile + EXTENSION)) 243 while(QFile::exists(outputFile + EXTENSION))
244 { 244 {
245 outputFile = t + QString("%1").arg(c); 245 outputFile = t + QString("%1").arg(c);
246 c++; 246 c++;
247 } 247 }
248 248
249 // We execute tar and compressing its output with gzip.. 249 // We execute tar and compressing its output with gzip..
250 // The error output will be written into a temp-file which could be provided 250 // The error output will be written into a temp-file which could be provided
251 // for debugging.. 251 // for debugging..
252 qDebug( "Storing file: %s", outputFile.latin1() ); 252 qDebug( "Storing file: %s", outputFile.latin1() );
253 outputFile += EXTENSION; 253 outputFile += EXTENSION;
254 254
255 QString commandLine = QString( "(tar -C %1 -z --exclude=*.bck -c %2 > %3 ) 2> %4" ).arg( QDir::homeDirPath() ) 255 QString commandLine = QString( "cd %1 && (tar -X %1 -cz %2 -f %3 ) 2> %4" ).arg( QDir::homeDirPath() )
256 .arg( backupFiles ) 256 .arg( getExcludeFile() )
257 .arg( outputFile.latin1() ) 257 .arg( backupFiles )
258 .arg( tempFileName.latin1() ); 258 .arg( outputFile.latin1() )
259 .arg( tempFileName.latin1() );
259 260
260 qDebug( commandLine ); 261 qDebug( commandLine );
261 262
262 int r = system( commandLine ); 263 int r = system( commandLine );
263 264
264 if(r != 0) 265 if(r != 0)
265 { 266 {
266 perror("Error: "); 267 perror("Error: ");
267 QString errorMsg= tr( "Error from System:\n" ) + (QString)strerror( errno ); 268 QString errorMsg= tr( "Error from System:\n" ) + (QString)strerror( errno );
268 269
269 switch( QMessageBox::critical(this, tr( "Message" ), tr( "Backup Failed!" ) + "\n" 270 switch( QMessageBox::critical(this, tr( "Message" ), tr( "Backup Failed!" ) + "\n"
270 + errorMsg, QString( tr( "Ok" ) ), QString( tr( "Details" ) ) ) ) 271 + errorMsg, QString( tr( "Ok" ) ), QString( tr( "Details" ) ) ) )
@@ -411,27 +412,27 @@ void BackupAndRestore::restore()
411 QMessageBox::critical(this, tr( "Message" ), 412 QMessageBox::critical(this, tr( "Message" ),
412 tr( "Please select something to restore." ),QString( tr( "Ok") ) ); 413 tr( "Please select something to restore." ),QString( tr( "Ok") ) );
413 return; 414 return;
414 } 415 }
415 setCaption(tr("Backup and Restore... working...")); 416 setCaption(tr("Backup and Restore... working..."));
416 417
417 QString restoreFile = backupLocations[restoreSource->currentText()]; 418 QString restoreFile = backupLocations[restoreSource->currentText()];
418 419
419 restoreFile += "/" + restoreItem->text(0); 420 restoreFile += "/" + restoreItem->text(0);
420 421
421 qDebug( restoreFile ); 422 qDebug( restoreFile );
422 423
423 QString commandLine = QString( "tar -C %1 -zxf %2 2> %3" ).arg( QDir::homeDirPath() ) 424 QString commandLine = QString( "cd %1 && tar -zxf %2 2> %3" ).arg( QDir::homeDirPath() )
424 .arg( restoreFile.latin1() ) 425 .arg( restoreFile.latin1() )
425 .arg( tempFileName.latin1() ); 426 .arg( tempFileName.latin1() );
426 427
427 qDebug( commandLine ); 428 qDebug( commandLine );
428 429
429 int r = system( commandLine ); 430 int r = system( commandLine );
430 431
431 if(r != 0) 432 if(r != 0)
432 { 433 {
433 QString errorMsg= tr( "Error from System:\n" ) + (QString)strerror( errno ); 434 QString errorMsg= tr( "Error from System:\n" ) + (QString)strerror( errno );
434 switch( QMessageBox::critical(this, tr( "Message" ), tr( "Restore Failed." ) + "\n" 435 switch( QMessageBox::critical(this, tr( "Message" ), tr( "Restore Failed." ) + "\n"
435 + errorMsg, QString( tr( "Ok") ), QString( tr( "Details" ) ) ) ) 436 + errorMsg, QString( tr( "Ok") ), QString( tr( "Details" ) ) ) )
436 { 437 {
437 case 1: 438 case 1:
@@ -468,14 +469,43 @@ void BackupAndRestore::restore()
468 { 469 {
469 QMessageBox::information(this, tr( "Message" ), tr( "Restore Successful." ), QString( tr( "Ok") ) ); 470 QMessageBox::information(this, tr( "Message" ), tr( "Restore Successful." ), QString( tr( "Ok") ) );
470 } 471 }
471 472
472 //write restore-location 473 //write restore-location
473 Config config( "BackupAndRestore" ); 474 Config config( "BackupAndRestore" );
474 config.setGroup( "LastLocation" ); 475 config.setGroup( "LastLocation" );
475 config.writeEntry( "LastRestoreLocation", restoreSource->currentText() ); 476 config.writeEntry( "LastRestoreLocation", restoreSource->currentText() );
476 477
477 setCaption(tr("Backup and Restore")); 478 setCaption(tr("Backup and Restore"));
478} 479}
479 480
481
482/**
483 * Check for exclude in Applications/backup
484 * If it does not exist, the function will create the file with *.bck as content
485 * The exclude_files is read by tar and will provide to exclude special files out from backup.
486 * e.g. alle *.bck files (backup-files) will not be backed up by default
487 */
488
489QString BackupAndRestore::getExcludeFile()
490{
491 QString excludeFileName = Global::applicationFileName( "backup", "exclude" );
492 if ( !QFile::exists( excludeFileName ) )
493 {
494 QFile excludeFile( excludeFileName);
495 if ( excludeFile.open( IO_WriteOnly ) == true )
496 {
497 QTextStream writeStream( &excludeFile );
498 writeStream << "*.bck" << "\n";
499 excludeFile.close();
500 }
501 else
502 {
503 return QString::null;
504 }
505 }
506
507 return excludeFileName;
508}
509
480// backuprestore.cpp 510// backuprestore.cpp
481 511
diff --git a/noncore/settings/backup/backuprestore.h b/noncore/settings/backup/backuprestore.h
index fdc2bf2..0d88f8d 100644
--- a/noncore/settings/backup/backuprestore.h
+++ b/noncore/settings/backup/backuprestore.h
@@ -22,24 +22,25 @@ public:
22 22
23private slots: 23private slots:
24 void backup(); 24 void backup();
25 void restore(); 25 void restore();
26 void selectItem(QListViewItem *currentItem); 26 void selectItem(QListViewItem *currentItem);
27 void sourceDirChanged(int); 27 void sourceDirChanged(int);
28 void rescanFolder(QString directory); 28 void rescanFolder(QString directory);
29 void fileListUpdate(); 29 void fileListUpdate();
30 30
31private: 31private:
32 void scanForApplicationSettings(); 32 void scanForApplicationSettings();
33 int getBackupFiles(QString &backupFiles, QListViewItem *parent); 33 int getBackupFiles(QString &backupFiles, QListViewItem *parent);
34 QString getExcludeFile();
34 QMap<QString, QString> backupLocations; 35 QMap<QString, QString> backupLocations;
35 QList<QListViewItem> getAllItems(QListViewItem *item, QList<QListViewItem> &list); 36 QList<QListViewItem> getAllItems(QListViewItem *item, QList<QListViewItem> &list);
36 37
37 QListViewItem *systemSettings; 38 QListViewItem *systemSettings;
38 QListViewItem *applicationSettings; 39 QListViewItem *applicationSettings;
39 QListViewItem *documents; 40 QListViewItem *documents;
40 41
41}; 42};
42 43
43#endif 44#endif
44 45
45// backuprestore.h 46// backuprestore.h