Skip to content
Snippets Groups Projects
Commit f66be995 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Remove autosave directory on successfull project close.

parent 75c65cc6
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,16 @@ QString AutosaveService::autosaveDir() const
return m_document->projectDir() + "/" + autosave_subdir;
}
void AutosaveService::removeAutosaveDir()
{
if(autosaveDir().isEmpty())
return;
qDebug() << "AutosaveService::removeAutosaveDir()" << autosaveDir();
QDir dir(autosaveDir());
dir.removeRecursively();
}
void AutosaveService::onTimerTimeout()
{
qDebug() << "AutosaveService::onTimerTimeout()" << m_document << m_document->isModified();
......@@ -120,3 +130,4 @@ QString AutosaveService::autosaveName() const
return autosaveDir() + "/" + m_document->projectName() + m_document->projectFileExtension();
}
......@@ -38,6 +38,10 @@ public:
QString autosaveDir() const;
QString autosaveName() const;
// remove auto save directory for given project and all its content
void removeAutosaveDir();
signals:
void autosaved();
......
......@@ -355,6 +355,9 @@ void ProjectManager::riseProjectLoadWarningDialog()
void ProjectManager::deleteCurrentProject()
{
if(m_autosaveService)
m_autosaveService->removeAutosaveDir();
delete m_project_document;
m_project_document = 0;
m_mainWindow->models()->resetModels();
......
......@@ -72,6 +72,10 @@ inline void TestAutosave::test_autoSave()
QVERIFY(spyAutosave.wait(autosave_time * 1.5));
QCOMPARE(spyAutosave.count(), 2);
// remove autosave dir
autosave.removeAutosaveDir();
QVERIFY(autosaveDir.exists() == false);
}
inline void TestAutosave::test_autoSaveIncludingData()
......
......@@ -55,7 +55,7 @@ int main(int argc, char** argv) {
TestLinkInstrument testLinkInstrument;
TestUpdateTimer testUpdateTimer;
TestProjectDocument testProjectDocument;
// TestAutosave testAutosave;
TestAutosave testAutosave;
bool status(false);
......@@ -84,7 +84,7 @@ int main(int argc, char** argv) {
status |= QTest::qExec(&testLinkInstrument, argc, argv);
status |= QTest::qExec(&testUpdateTimer, argc, argv);
status |= QTest::qExec(&testProjectDocument, argc, argv);
// status |= QTest::qExec(&testAutosave, argc, argv);
status |= QTest::qExec(&testAutosave, argc, argv);
return status;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment