tagparser/backuphelper.cpp

298 lines
13 KiB
C++
Raw Normal View History

2015-09-06 19:57:33 +02:00
#include "./backuphelper.h"
#include "./diagnostics.h"
2018-03-07 01:17:50 +01:00
#include "./mediafileinfo.h"
2017-01-27 18:59:22 +01:00
#include <c++utilities/conversion/stringbuilder.h>
2018-03-07 01:17:50 +01:00
#include <c++utilities/conversion/stringconversion.h>
#ifdef PLATFORM_WINDOWS
2018-03-07 01:17:50 +01:00
#include <windows.h>
#else
2018-03-07 01:17:50 +01:00
#include <sys/stat.h>
#endif
2015-04-22 19:22:01 +02:00
#include <cstdio>
2018-03-07 01:17:50 +01:00
#include <fstream>
2015-04-22 19:22:01 +02:00
#include <stdexcept>
2018-03-07 01:17:50 +01:00
#include <string>
2015-04-22 19:22:01 +02:00
using namespace std;
2019-06-10 22:49:11 +02:00
using namespace CppUtilities;
2015-04-22 19:22:01 +02:00
namespace TagParser {
2015-04-22 19:22:01 +02:00
/*!
* \namespace TagParser::BackupHelper
2015-04-22 19:22:01 +02:00
* \brief Helps to create and restore backup files when rewriting
* files to apply changed tag information.
*
2018-02-04 23:55:52 +01:00
* Methods in this namespace are internally used eg. in implementations of AbstractContainer::internalMakeFile().
2015-04-22 19:22:01 +02:00
*/
namespace BackupHelper {
/*!
* \brief Restores the original file from the specified backup file.
* \param originalPath Specifies the path to the original file.
* \param backupPath Specifies the path to the backup file.
* \param originalStream Specifies a std::fstream instance for the original file.
* \param backupStream Specifies a std::fstream instance for the backup file.
2015-04-22 19:22:01 +02:00
*
* This helper function is used by MediaFileInfo and container implementations
* to restore the original file from the specified backup file in the case a Failure
2015-04-22 19:22:01 +02:00
* or an IO error occurs. The specified streams will be closed if
* currently open.
*
* If moving isn't possible (eg. \a originalPath and \a backupPath refer to different partitions) the backup
* file will be restored by copying.
*
2015-04-22 19:22:01 +02:00
* \throws Throws std::ios_base::failure on failure.
2017-08-17 19:04:58 +02:00
* \todo Implement callback for progress updates (copy).
2015-04-22 19:22:01 +02:00
*/
2018-03-07 01:17:50 +01:00
void restoreOriginalFileFromBackupFile(
const std::string &originalPath, const std::string &backupPath, NativeFileStream &originalStream, NativeFileStream &backupStream)
2015-04-22 19:22:01 +02:00
{
// ensure the orignal stream is closed
2018-03-07 01:17:50 +01:00
if (originalStream.is_open()) {
2015-04-22 19:22:01 +02:00
originalStream.close();
}
// check wether backup file actually exists and close the backup stream afterwards
backupStream.exceptions(ios_base::goodbit);
backupStream.close();
backupStream.clear();
backupStream.open(backupPath, ios_base::in | ios_base::binary);
2018-03-07 01:17:50 +01:00
if (backupStream.is_open()) {
2015-04-22 19:22:01 +02:00
backupStream.close();
} else {
2019-03-13 19:06:42 +01:00
throw std::ios_base::failure("Backup/temporary file has not been created.");
2015-04-22 19:22:01 +02:00
}
// remove original file and restore backup
2015-04-22 19:22:01 +02:00
std::remove(originalPath.c_str());
if (std::rename(BasicFileInfo::pathForOpen(backupPath).data(), BasicFileInfo::pathForOpen(originalPath).data()) == 0) {
return;
}
// can't rename/move the file (maybe backup dir on another partition) -> make a copy instead
try {
// need to open all streams again
backupStream.exceptions(ios_base::failbit | ios_base::badbit);
originalStream.exceptions(ios_base::failbit | ios_base::badbit);
backupStream.open(backupPath, ios_base::in | ios_base::binary);
originalStream.open(originalPath, ios_base::out | ios_base::binary);
originalStream << backupStream.rdbuf();
originalStream.flush();
// TODO: callback for progress updates
} catch (const std::ios_base::failure &failure) {
throw std::ios_base::failure("Unable to restore original file from backup file \"" % backupPath % "\" after failure: " + failure.what());
2015-04-22 19:22:01 +02:00
}
}
2018-02-04 23:55:52 +01:00
/*!
* \brief Returns whether the specified \a path is relative.
*/
static bool isRelative(const std::string &path)
{
return path.empty() || (path.front() != '/' && (path.size() < 2 || path[1] != ':'));
}
2015-04-22 19:22:01 +02:00
/*!
* \brief Creates a backup file for the specified file.
* \param backupDir Specifies the directory to store backup files. If empty, the directory of the file
* to be backuped is used.
2015-04-22 19:22:01 +02:00
* \param originalPath Specifies the path of the file to be backuped.
* \param backupPath Contains the path of the created backup file when this function returns.
* \param originalStream Specifies a std::fstream for the original file.
2015-04-22 19:22:01 +02:00
* \param backupStream Specifies a std::fstream for creating the backup file.
*
* This helper function is used by MediaFileInfo and container implementations to create a backup file
2017-08-17 19:04:58 +02:00
* when applying changes. The specified \a backupPath is set to the path of the created backup file.
2017-03-01 18:21:00 +01:00
* The specified \a backupStream will be closed if currently open. Then it is
2015-04-22 19:22:01 +02:00
* used to open the backup file using the flags ios_base::in and ios_base::binary.
*
* The specified \a originalStream is closed before performing the move operation.
*
* If moving isn't possible (eg. \a originalPath and \a backupPath refer to different partitions) the backup
* file will be created by copying.
*
2015-04-22 19:22:01 +02:00
* The original file can now be rewritten to apply changes. When this operation fails
* the created backup file can be restored using restoreOriginalFileFromBackupFile().
*
* \throws Throws std::ios_base::failure on failure.
2017-08-17 19:04:58 +02:00
* \todo Implement callback for progress updates (copy).
2015-04-22 19:22:01 +02:00
*/
void createBackupFile(const std::string &backupDir, const std::string &originalPath, std::string &backupPath, NativeFileStream &originalStream,
NativeFileStream &backupStream)
2015-04-22 19:22:01 +02:00
{
2018-02-04 23:55:52 +01:00
// determine dirs
const auto backupDirRelative(isRelative(backupDir));
const auto originalDir(backupDirRelative ? BasicFileInfo::containingDirectory(originalPath) : string());
// determine the backup path
2018-03-07 01:17:50 +01:00
for (unsigned int i = 0;; ++i) {
if (backupDir.empty()) {
if (i) {
2017-01-30 00:42:35 +01:00
backupPath = originalPath % '.' % i + ".bak";
} else {
backupPath = originalPath + ".bak";
}
2015-04-22 19:22:01 +02:00
} else {
2018-02-04 23:55:52 +01:00
const auto fileName(BasicFileInfo::fileName(originalPath, i));
2018-03-07 01:17:50 +01:00
if (i) {
2018-02-04 23:55:52 +01:00
const auto ext(BasicFileInfo::extension(originalPath));
2018-03-07 01:17:50 +01:00
if (backupDirRelative) {
2018-02-04 23:55:52 +01:00
backupPath = originalDir % '/' % backupDir % '/' % fileName % '.' % i + ext;
} else {
2018-02-04 23:55:52 +01:00
backupPath = backupDir % '/' % fileName % '.' % i + ext;
}
} else {
2018-03-07 01:17:50 +01:00
if (backupDirRelative) {
2018-02-04 23:55:52 +01:00
backupPath = originalDir % '/' % backupDir % '/' + fileName;
} else {
2018-02-04 23:55:52 +01:00
backupPath = backupDir % '/' + fileName;
}
}
2015-04-22 19:22:01 +02:00
}
2018-02-04 23:55:52 +01:00
2018-04-29 17:19:33 +02:00
// test whether the backup path is still unused; otherwise continue loop
#ifdef PLATFORM_WINDOWS
if (GetFileAttributes(BasicFileInfo::pathForOpen(backupPath).data()) == INVALID_FILE_ATTRIBUTES) {
#else
2018-02-04 23:55:52 +01:00
struct stat backupStat;
if (stat(BasicFileInfo::pathForOpen(backupPath).data(), &backupStat)) {
#endif
break;
2018-02-04 23:55:52 +01:00
}
2015-04-22 19:22:01 +02:00
}
// ensure original file is closed
2018-03-07 01:17:50 +01:00
if (originalStream.is_open()) {
originalStream.close();
}
2018-02-04 23:55:52 +01:00
2015-04-22 19:22:01 +02:00
// rename original file
if (std::rename(BasicFileInfo::pathForOpen(originalPath).data(), BasicFileInfo::pathForOpen(backupPath).data())) {
2018-02-04 23:55:52 +01:00
// can't rename/move the file (maybe backup dir on another partition) -> make a copy instead
try {
backupStream.exceptions(ios_base::failbit | ios_base::badbit);
originalStream.exceptions(ios_base::failbit | ios_base::badbit);
// ensure backupStream is opened as write-only
2018-03-07 01:17:50 +01:00
if (backupStream.is_open()) {
backupStream.close();
}
backupStream.open(BasicFileInfo::pathForOpen(backupPath).data(), ios_base::out | ios_base::binary);
// ensure originalStream is opened with read permissions
originalStream.open(BasicFileInfo::pathForOpen(originalPath).data(), ios_base::in | ios_base::binary);
// do the actual copying
backupStream << originalStream.rdbuf();
backupStream.flush();
// streams are closed in the next try-block
// TODO: callback for progress updates
2019-03-13 19:06:42 +01:00
} catch (const std::ios_base::failure &failure) {
throw std::ios_base::failure(argsToString("Unable to rename original file before rewriting it: ", failure.what()));
}
2015-04-22 19:22:01 +02:00
}
2018-02-04 23:55:52 +01:00
// manage streams
2015-04-22 19:22:01 +02:00
try {
2018-02-04 23:55:52 +01:00
// ensure there is no file associated with the originalStream object
2018-03-07 01:17:50 +01:00
if (originalStream.is_open()) {
originalStream.close();
}
// ensure there is no file associated with the backupStream object
2018-03-07 01:17:50 +01:00
if (backupStream.is_open()) {
2015-04-22 19:22:01 +02:00
backupStream.close();
}
// open backup stream
backupStream.exceptions(ios_base::failbit | ios_base::badbit);
backupStream.open(BasicFileInfo::pathForOpen(backupPath).data(), ios_base::in | ios_base::binary);
2019-03-13 19:06:42 +01:00
} catch (const std::ios_base::failure &failure) {
// can't open the new file
// -> try to re-rename backup file in the error case to restore previous state
if (std::rename(BasicFileInfo::pathForOpen(backupPath).data(), BasicFileInfo::pathForOpen(originalPath).data())) {
2019-03-13 19:06:42 +01:00
throw std::ios_base::failure("Unable to restore original file from backup file \"" % backupPath % "\" after failure: " + failure.what());
2015-04-22 19:22:01 +02:00
} else {
2019-03-13 19:06:42 +01:00
throw std::ios_base::failure(argsToString("Unable to open backup file: ", failure.what()));
2015-04-22 19:22:01 +02:00
}
}
}
/*!
2018-07-23 14:44:06 +02:00
* \brief Handles a failure/abort which occurred after the file has been modified.
*
* - Restores the backup file using restoreOriginalFileFromBackupFile() if one has been created.
* - Adds appropriate notifications to the specified \a fileInfo.
* - Re-throws the exception.
*
* \remarks Must only be called when an exception derived from Failure or ios_base::failure
* has been catched; this method uses the "exception dispatcher" idiom.
*
* \param fileInfo Specifies the MediaFileInfo instace which has been modified.
* \param backupPath Specifies the path of the backup file; might be empty if none has been created.
* \param outputStream Specifies the stream used to write the output file. This is usually just the stream
* of \a fileInfo, but is specified here explicitly for higher flexibility.
* \param backupStream Specifies the stream assembled using createBackupFile(); might be a default fstream if
* no backup file has been created.
2018-07-09 12:40:14 +02:00
* \param diag Specifies the container to add diagnostic messages to.
* \param context Specifies the context used to add notifications.
*/
2018-03-07 01:17:50 +01:00
void handleFailureAfterFileModified(MediaFileInfo &fileInfo, const std::string &backupPath, NativeFileStream &outputStream,
NativeFileStream &backupStream, Diagnostics &diag, const std::string &context)
{
// reset the associated container in any case
2018-03-07 01:17:50 +01:00
if (fileInfo.container()) {
fileInfo.container()->reset();
}
// re-throw the current exception
try {
throw;
2018-03-07 01:17:50 +01:00
} catch (const OperationAbortedException &) {
if (!backupPath.empty()) {
// a temp/backup file has been created -> restore original file
diag.emplace_back(DiagLevel::Information, "Rewriting the file to apply changed tag information has been aborted.", context);
try {
restoreOriginalFileFromBackupFile(fileInfo.path(), backupPath, outputStream, backupStream);
diag.emplace_back(DiagLevel::Information, "The original file has been restored.", context);
2019-03-13 19:06:42 +01:00
} catch (const std::ios_base::failure &failure) {
diag.emplace_back(DiagLevel::Critical, failure.what(), context);
}
} else {
diag.emplace_back(DiagLevel::Information, "Applying new tag information has been aborted.", context);
}
throw;
2018-03-07 01:17:50 +01:00
} catch (const Failure &) {
if (!backupPath.empty()) {
// a temp/backup file has been created -> restore original file
diag.emplace_back(DiagLevel::Critical, "Rewriting the file to apply changed tag information failed.", context);
try {
restoreOriginalFileFromBackupFile(fileInfo.path(), backupPath, outputStream, backupStream);
diag.emplace_back(DiagLevel::Information, "The original file has been restored.", context);
2019-03-13 19:06:42 +01:00
} catch (const std::ios_base::failure &failure) {
diag.emplace_back(DiagLevel::Critical, failure.what(), context);
}
} else {
diag.emplace_back(DiagLevel::Critical, "Applying new tag information failed.", context);
}
throw;
2019-03-13 19:06:42 +01:00
} catch (const std::ios_base::failure &) {
2018-03-07 01:17:50 +01:00
if (!backupPath.empty()) {
// a temp/backup file has been created -> restore original file
2018-07-23 14:44:06 +02:00
diag.emplace_back(DiagLevel::Critical, "An IO error occurred when rewriting the file to apply changed tag information.", context);
try {
restoreOriginalFileFromBackupFile(fileInfo.path(), backupPath, outputStream, backupStream);
diag.emplace_back(DiagLevel::Information, "The original file has been restored.", context);
2019-03-13 19:06:42 +01:00
} catch (const std::ios_base::failure &failure) {
diag.emplace_back(DiagLevel::Critical, failure.what(), context);
}
} else {
2018-07-23 14:44:06 +02:00
diag.emplace_back(DiagLevel::Critical, "An IO error occurred when applying tag information.", context);
}
2019-03-13 19:06:42 +01:00
throw;
}
}
2018-03-07 01:17:50 +01:00
} // namespace BackupHelper
2015-04-22 19:22:01 +02:00
2018-03-07 01:17:50 +01:00
} // namespace TagParser