diff --git a/MantidPlot/src/ApplicationWindow.cpp b/MantidPlot/src/ApplicationWindow.cpp index 57e65aaba0aa848d0315e796ec3aedd9267c0630..3ae5f1653c0c094ae3b046bcf5a8b58f795d26db 100644 --- a/MantidPlot/src/ApplicationWindow.cpp +++ b/MantidPlot/src/ApplicationWindow.cpp @@ -16813,9 +16813,6 @@ void ApplicationWindow::checkForProjectRecovery() { m_projectRecovery.repairCheckpointDirectory(); - // Mantid crashed during writing to this checkpoint so remove it - m_projectRecovery.removeLockedCheckpoints(); - if (!m_projectRecovery.checkForRecovery()) { m_projectRecovery.startProjectSaving(); return; diff --git a/MantidPlot/src/ProjectRecovery.cpp b/MantidPlot/src/ProjectRecovery.cpp index ca52d9c64f6557a5c0a9bfef10c00fb21b215e76..646bb71ca63a858b61ca23759189248a40827fa4 100644 --- a/MantidPlot/src/ProjectRecovery.cpp +++ b/MantidPlot/src/ProjectRecovery.cpp @@ -629,61 +629,6 @@ void ProjectRecovery::saveWsHistories(const Poco::Path &historyDestFolder) { } } -void ProjectRecovery::removeOlderCheckpoints() { - // Currently set to a month in microseconds - const int64_t timeToDeleteAfter = 2592000000000; - std::string recoverFolder = getRecoveryFolderCheck(); - // Get the PIDS - std::vector<Poco::Path> possiblePidsPaths = - getListOfFoldersInDirectory(recoverFolder); - // Order pids based on date last modified descending - std::vector<int> possiblePids = orderProcessIDs(possiblePidsPaths); - // check if pid exists - std::vector<std::string> folderPaths; - for (auto i = 0u; i < possiblePids.size(); ++i) { - if (!isPIDused(possiblePids[i])) { - std::string folder = recoverFolder; - folder.append(std::to_string(possiblePids[i]) + "/"); - if (olderThanAGivenTime(Poco::Path(folder), timeToDeleteAfter)) { - folderPaths.emplace_back(folder); - } - } - } - - bool recurse = true; - for (size_t i = 0; i < folderPaths.size(); i++) { - Poco::File(folderPaths[i]).remove(recurse); - } -} - -void ProjectRecovery::removeLockedCheckpoints() { - std::string recoverFolder = getRecoveryFolderCheck(); - // Get the PIDS - std::vector<Poco::Path> possiblePidsPaths = - getListOfFoldersInDirectory(recoverFolder); - // Order pids based on date last modified descending - std::vector<int> possiblePids = orderProcessIDs(possiblePidsPaths); - // check if pid exists - std::vector<Poco::Path> files; - for (auto i = 0u; i < possiblePids.size(); ++i) { - if (!isPIDused(possiblePids[i])) { - std::string folder = recoverFolder; - folder.append(std::to_string(possiblePids[i]) + "/"); - auto checkpointsInsidePIDs = getListOfFoldersInDirectory(folder); - for (auto c : checkpointsInsidePIDs) { - if (Poco::File(c.setFileName(LOCK_FILE_NAME)).exists()) { - files.emplace_back(c.setFileName("")); - } - } - } - } - - bool recurse = true; - for (auto c : files) { - Poco::File(c).remove(recurse); - } -} - bool ProjectRecovery::olderThanAGivenTime(const Poco::Path &path, int64_t elapsedTime) { return Poco::File(path).getLastModified().isElapsed(elapsedTime); diff --git a/MantidPlot/src/ProjectRecovery.h b/MantidPlot/src/ProjectRecovery.h index 034d7ecc3f38f50bdfbd221989450ee78776fe5e..c48f67b0d4a639cfe51f62db70a72501b5a2541b 100644 --- a/MantidPlot/src/ProjectRecovery.h +++ b/MantidPlot/src/ProjectRecovery.h @@ -88,9 +88,6 @@ public: /// Looks at the recovery checkpoints and repairs some faults void repairCheckpointDirectory(); - /// Remove checkpoints if it has lock file - void removeLockedCheckpoints(); - private: /// Captures the current object in the background thread std::thread createBackgroundThread();