summaryrefslogtreecommitdiff
path: root/noncore/settings
Unidiff
Diffstat (limited to 'noncore/settings') (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
@@ -231,52 +231,53 @@ void BackupAndRestore::backup()
231 231
232 setCaption(tr("Backup and Restore... working...")); 232 setCaption(tr("Backup and Restore... working..."));
233 QString outputFile = backupLocations[storeToLocation->currentText()]; 233 QString outputFile = backupLocations[storeToLocation->currentText()];
234 234
235 QDateTime datetime = QDateTime::currentDateTime(); 235 QDateTime datetime = QDateTime::currentDateTime();
236 QString dateString = QString::number( datetime.date().year() ) + QString::number( datetime.date().month() ).rightJustify(2, '0') + 236 QString dateString = QString::number( datetime.date().year() ) + QString::number( datetime.date().month() ).rightJustify(2, '0') +
237 QString::number( datetime.date().day() ).rightJustify(2, '0'); 237 QString::number( datetime.date().day() ).rightJustify(2, '0');
238 238
239 outputFile += "/" + dateString; 239 outputFile += "/" + dateString;
240 240
241 QString t = outputFile; 241 QString t = outputFile;
242 int c = 1; 242 int c = 1;
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" ) ) ) )
271 { 272 {
272 273
273 case 1: 274 case 1:
274 qWarning("Details pressed !"); 275 qWarning("Details pressed !");
275 ErrorDialog* pErrDialog = new ErrorDialog( this, NULL, true ); 276 ErrorDialog* pErrDialog = new ErrorDialog( this, NULL, true );
276 QFile errorFile( tempFileName ); 277 QFile errorFile( tempFileName );
277 if ( errorFile.open(IO_ReadOnly) ) 278 if ( errorFile.open(IO_ReadOnly) )
278 { 279 {
279 QTextStream t( &errorFile ); 280 QTextStream t( &errorFile );
280 QString s; 281 QString s;
281 while ( !t.eof() ) 282 while ( !t.eof() )
282 { // until end of file... 283 { // until end of file...
@@ -399,51 +400,51 @@ void BackupAndRestore::rescanFolder(QString directory)
399 } 400 }
400} 401}
401 402
402/** 403/**
403 * Restore a backup file. 404 * Restore a backup file.
404 * Report errors or success 405 * Report errors or success
405 */ 406 */
406void BackupAndRestore::restore() 407void BackupAndRestore::restore()
407{ 408{
408 QListViewItem *restoreItem = restoreList->currentItem(); 409 QListViewItem *restoreItem = restoreList->currentItem();
409 if(!restoreItem) 410 if(!restoreItem)
410 { 411 {
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:
438 qWarning("Details pressed !"); 439 qWarning("Details pressed !");
439 ErrorDialog* pErrDialog = new ErrorDialog( this, NULL, true ); 440 ErrorDialog* pErrDialog = new ErrorDialog( this, NULL, true );
440 QFile errorFile( tempFileName ); 441 QFile errorFile( tempFileName );
441 if ( errorFile.open(IO_ReadOnly) ) 442 if ( errorFile.open(IO_ReadOnly) )
442 { 443 {
443 QTextStream t( &errorFile ); 444 QTextStream t( &errorFile );
444 QString s; 445 QString s;
445 while ( !t.eof() ) 446 while ( !t.eof() )
446 { // until end of file... 447 { // until end of file...
447 s += t.readLine(); // line of text excluding '\n' 448 s += t.readLine(); // line of text excluding '\n'
448 } 449 }
449 errorFile.close(); 450 errorFile.close();
@@ -456,26 +457,55 @@ void BackupAndRestore::restore()
456 } 457 }
457 QPEApplication::execDialog( pErrDialog ); 458 QPEApplication::execDialog( pErrDialog );
458 delete pErrDialog; 459 delete pErrDialog;
459 460
460 setCaption(tr("Backup and Restore.. Failed !!")); 461 setCaption(tr("Backup and Restore.. Failed !!"));
461 return; 462 return;
462 463
463 break; 464 break;
464 465
465 } 466 }
466 } 467 }
467 else 468 else
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
@@ -10,37 +10,38 @@ class QListViewItem;
10 10
11class BackupAndRestore : public BackupAndRestoreBase 11class BackupAndRestore : public BackupAndRestoreBase
12{ 12{
13 13
14 Q_OBJECT 14 Q_OBJECT
15 15
16public: 16public:
17 17
18 BackupAndRestore( QWidget* parent = 0, const char* name = 0, WFlags fl = 0); 18 BackupAndRestore( QWidget* parent = 0, const char* name = 0, WFlags fl = 0);
19 ~BackupAndRestore(); 19 ~BackupAndRestore();
20 20
21 static QString appName() { return QString::fromLatin1("backup"); } 21 static QString appName() { return QString::fromLatin1("backup"); }
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
46 47