summaryrefslogtreecommitdiff
path: root/plugins/autotest/testcodeparser.cpp
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2014-12-10 09:41:23 +0100
committerChristian Stenger <christian.stenger@theqtcompany.com>2014-12-18 18:32:01 +0200
commitd778fc5477ae311f7207241ef73459eafae2c83e (patch)
treec903a383c89c1e42d66a4f2ea598fc88ff46bc0e /plugins/autotest/testcodeparser.cpp
parent19f36ebf7822533ed9c775991115ddcc260573e0 (diff)
downloadqt-creator-d778fc5477ae311f7207241ef73459eafae2c83e.tar.gz
Post-pone parsing for test if CppModelManager is parsing
Change-Id: I7af93eb587e55f7d6e4ee14ed9808ceeb41ed8a3 Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
Diffstat (limited to 'plugins/autotest/testcodeparser.cpp')
-rw-r--r--plugins/autotest/testcodeparser.cpp44
1 files changed, 43 insertions, 1 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index a0ba1534ce..e2d342cb48 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -23,15 +23,20 @@
#include "testtreemodel.h"
#include "testvisitor.h"
+#include <coreplugin/progressmanager/progressmanager.h>
+
#include <cplusplus/LookupContext.h>
#include <cplusplus/TypeOfExpression.h>
+#include <cpptools/cpptoolsconstants.h>
#include <cpptools/cppmodelmanager.h>
#include <cpptools/cppworkingcopy.h>
#include <projectexplorer/session.h>
#include <qmakeprojectmanager/qmakeproject.h>
+#include <qmakeprojectmanager/qmakeprojectmanagerconstants.h>
+
#include <qmljs/parser/qmljsast_p.h>
#include <qmljs/qmljsdialect.h>
#include <qmljstools/qmljsmodelmanager.h>
@@ -44,8 +49,15 @@ namespace Internal {
TestCodeParser::TestCodeParser(TestTreeModel *parent)
: QObject(parent),
m_model(parent),
- m_currentProject(0)
+ m_currentProject(0),
+ m_parserEnabled(true),
+ m_pendingUpdate(false)
{
+ // connect to ProgressManager to post-pone test parsing when CppModelManager is parsing
+ Core::ProgressManager *pm = qobject_cast<Core::ProgressManager *>(
+ Core::ProgressManager::instance());
+ connect(pm, &Core::ProgressManager::taskStarted, this, &TestCodeParser::onTaskStarted);
+ connect(pm, &Core::ProgressManager::allTasksFinished, this, &TestCodeParser::onAllTasksFinished);
}
TestCodeParser::~TestCodeParser()
@@ -53,8 +65,19 @@ TestCodeParser::~TestCodeParser()
clearMaps();
}
+void TestCodeParser::emitUpdateTestTree()
+{
+ QTimer::singleShot(1000, this, SLOT(updateTestTree()));
+}
+
void TestCodeParser::updateTestTree()
{
+ if (!m_parserEnabled) {
+ m_pendingUpdate = true;
+ qDebug() << "Skipped update due to running parser or pro file evaluate";
+ return;
+ }
+
qDebug("updating TestTreeModel");
clearMaps();
@@ -84,6 +107,7 @@ void TestCodeParser::updateTestTree()
}
}
scanForTests();
+ m_pendingUpdate = false;
}
/****** scan for QTest related stuff helpers ******/
@@ -721,6 +745,24 @@ void TestCodeParser::removeTestsIfNecessaryByProFile(const QString &proFile)
m_quickDocMap.insert(tr(Constants::UNNAMED_QUICKTESTS), unnamedInfo);
}
+void TestCodeParser::onTaskStarted(Core::Id type)
+{
+ if (type != CppTools::Constants::TASK_INDEX
+ && type != QmakeProjectManager::Constants::PROFILE_EVALUATE)
+ return;
+ m_parserEnabled = false;
+}
+
+void TestCodeParser::onAllTasksFinished(Core::Id type)
+{
+ if (type != CppTools::Constants::TASK_INDEX
+ && type != QmakeProjectManager::Constants::PROFILE_EVALUATE)
+ return;
+ m_parserEnabled = true;
+ if (m_pendingUpdate)
+ updateTestTree();
+}
+
void TestCodeParser::onProFileEvaluated()
{
if (!m_currentProject)