Files
GoldenCheetah/src/FileIO/AthleteBackup.cpp
Alejandro Martinez f51a6a6cb1 Remove Conditional Compilation for Qt < 5.9 (#3464)
This is a clean up to remove conditional compilation for all Qt versions
older than the last known to work: Qt 5.9 with Qt WebEngine and Qt Charts.
Includes an update note to INSTALL documents.
2020-05-27 09:26:25 -03:00

209 lines
7.3 KiB
C++

/*
* Copyright (c) 2015 Joern Rischmueller (joern.rm@gmail.com)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <QProgressDialog>
#include <QMessageBox>
#include <QFileDialog>
#include <QStorageInfo>
#include "Athlete.h"
#include "AthleteBackup.h"
#include "Settings.h"
#include "GcUpgrade.h"
#include "../qzip/zipwriter.h"
#include "../qzip/zipreader.h"
AthleteBackup::AthleteBackup(QDir athleteHome)
{
this->athleteDirs = new AthleteDirectoryStructure(athleteHome);
this->athlete = athleteHome.dirName();
this->backupFolder = "";
// set the directories to be backed up
// for a FULL backup basically all data folders
sourceFolderList.append(athleteDirs->activities());
sourceFolderList.append(athleteDirs->imports());
sourceFolderList.append(athleteDirs->records());
sourceFolderList.append(athleteDirs->downloads());
sourceFolderList.append(athleteDirs->fileBackup());
sourceFolderList.append(athleteDirs->config());
sourceFolderList.append(athleteDirs->calendar());
sourceFolderList.append(athleteDirs->workouts());
sourceFolderList.append(athleteDirs->media());
}
AthleteBackup::~AthleteBackup()
{
delete athleteDirs;
}
void
AthleteBackup::backupOnClose()
{
int backupPeriod = appsettings->cvalue(athlete, GC_AUTOBACKUP_PERIOD, 0).toInt();
backupFolder = appsettings->cvalue(athlete, GC_AUTOBACKUP_FOLDER, "").toString();
if (backupPeriod == 0 || backupFolder == "" ) return;
int backupCounter = appsettings->cvalue(athlete, GC_AUTOBACKUP_COUNTER, 0).toInt();
backupCounter++;
if (backupCounter < backupPeriod) {
appsettings->setCValue(athlete, GC_AUTOBACKUP_COUNTER, backupCounter);
return;
}
backup(tr("Abort Backup and Reset Counter"));
appsettings->setCValue(athlete, GC_AUTOBACKUP_COUNTER, 0);
}
void
AthleteBackup::backupImmediate()
{
backupFolder = appsettings->cvalue(athlete, GC_AUTOBACKUP_FOLDER, "").toString();
QString dir = QFileDialog::getExistingDirectory(NULL, tr("Select Backup Directory"),
backupFolder, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
if (dir == "") {
QMessageBox::information(NULL, tr("Athlete Backup"), tr("No backup directory selected - backup aborted"));
return;
}
// do the backup
backupFolder = dir;
QMessageBox msgBox;
msgBox.setWindowTitle(tr("Athlete Backup"));
msgBox.setText( tr("Any unsaved data will not be included into the backup .zip file."));
msgBox.setInformativeText(tr("Do you want to proceed?"));
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::Yes);
int ret = msgBox.exec();
switch (ret) {
case QMessageBox::No:
return; // No Backup
break;
default:
// Ok - let's backup
break;
}
if (backup(tr("Abort Backup"))) {
QMessageBox::information(NULL, tr("Athlete Backup"), tr("Backup successfully stored in \n%1").arg(backupFolder));
}
}
// -- private methods
bool
AthleteBackup::backup(QString progressText)
{
// backup requested so lets see if we have something to backup and if yes, how much
int fileCount = 0;
qint64 fileSize = 0;
// count the files for the progress bar and the calculate the overall size
foreach (QDir folder, sourceFolderList) {
// get all files
foreach (QFileInfo fileName, folder.entryInfoList(QDir::Files | QDir::NoDotAndDotDot | QDir::NoSymLinks)) {
fileCount++;
fileSize += fileName.size();
}
}
if (fileCount == 0) {
QMessageBox::information(NULL, tr("Athlete Backup"), tr("No files found for athlete %1 - all athlete sub-directories are empty.").arg(athlete));
return false;
}
// if if there is enough space available for the backup
QStorageInfo storage(backupFolder);
if (storage.isValid() && storage.isReady()) {
// let's assume a 1:5 Zip compression to have enough space available for the ZIP
if (storage.bytesAvailable() < fileSize / 5) {
QMessageBox::warning(NULL, tr("Athlete Backup"), tr("Not enough space available on disk: %1 - no backup .zip file created").arg(storage.rootPath()));
return false;
}
} else {
QMessageBox::warning(NULL, tr("Athlete Backup"), tr("Directory %1 not available. No backup .zip file created for athlete %2.").arg(backupFolder).arg(athlete));
return false;
}
QChar zero = QLatin1Char('0');
QString targetFileName = QString( "GC_%1_%2_%3_%4_%5_%6_%7_%8.zip" )
.arg ( VERSION_LATEST )
.arg ( athlete )
.arg ( QDate::currentDate().year(), 4, 10, zero )
.arg ( QDate::currentDate().month(), 2, 10, zero )
.arg ( QDate::currentDate().day(), 2, 10, zero )
.arg ( QTime::currentTime().hour(), 2, 10, zero )
.arg ( QTime::currentTime().minute(), 2, 10, zero )
.arg ( QTime::currentTime().second(), 2, 10, zero );
// add files using zip writer
QFile zipFile(backupFolder+"/"+targetFileName);
if (!zipFile.open(QIODevice::WriteOnly)) {
QMessageBox::warning(NULL, tr("Athlete Backup"), tr("Backup file %1 cannot be created.").arg(zipFile.fileName()));
return false;
}
zipFile.close();
ZipWriter writer(zipFile.fileName());
QProgressDialog progress(tr("Adding files to backup %1 for athlete %2 ...").arg(targetFileName).arg(athlete), progressText, 0, fileCount, NULL);
progress.setWindowModality(Qt::WindowModal);
// now do the Zipping
bool userCanceled = false;
int fileCounter = 0;
foreach (QDir folder, sourceFolderList) {
// get all files
writer.addDirectory(folder.dirName());
foreach (QFileInfo fileName, folder.entryInfoList(QDir::Files | QDir::NoDotAndDotDot | QDir::NoSymLinks)) {
QFile file(fileName.canonicalFilePath());
if (file.open(QIODevice::ReadOnly)) {
if (progress.wasCanceled()) {
userCanceled = true;
break;
}
writer.addFile(folder.dirName()+"/"+fileName.fileName(), file.readAll());
progress.setValue(fileCounter);
fileCounter++;
file.close();
}
}
if (userCanceled) break;
}
// final processing
writer.close();
// delete the .ZIP file if the user canceled the backup
if (userCanceled) {
zipFile.remove();
return false;
}
// we are done, full progress
progress.setValue(fileCount);
return true;
}