/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Author: Andreas Hartmetz, KDAB (andreas.hartmetz@kdab.com) ** ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this file. ** Please review the following information to ensure the GNU Lesser General ** Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** **************************************************************************/ #include "analyzerruncontrol.h" #include "analyzerconstants.h" #include "ianalyzerengine.h" #include "ianalyzertool.h" #include "analyzermanager.h" #include "analyzerstartparameters.h" #include #include #include #include #include #include #include using namespace ProjectExplorer; ////////////////////////////////////////////////////////////////////////// // // AnalyzerRunControl::Private // ////////////////////////////////////////////////////////////////////////// namespace Analyzer { class AnalyzerRunControl::Private { public: Private(); bool m_isRunning; IAnalyzerEngine *m_engine; }; AnalyzerRunControl::Private::Private() : m_isRunning(false), m_engine(0) {} ////////////////////////////////////////////////////////////////////////// // // AnalyzerRunControl // ////////////////////////////////////////////////////////////////////////// AnalyzerRunControl::AnalyzerRunControl(IAnalyzerTool *tool, const AnalyzerStartParameters &sp, RunConfiguration *runConfiguration) : RunControl(runConfiguration, tool->id()), d(new Private) { d->m_engine = tool->createEngine(sp, runConfiguration); if (!d->m_engine) return; connect(d->m_engine, SIGNAL(outputReceived(QString,Utils::OutputFormat)), SLOT(receiveOutput(QString,Utils::OutputFormat))); connect(d->m_engine, SIGNAL(taskToBeAdded(ProjectExplorer::Task::TaskType,QString,QString,int)), SLOT(addTask(ProjectExplorer::Task::TaskType,QString,QString,int))); connect(d->m_engine, SIGNAL(finished()), SLOT(engineFinished())); connect(this, SIGNAL(finished()), SLOT(runControlFinished()), Qt::QueuedConnection); } AnalyzerRunControl::~AnalyzerRunControl() { if (d->m_isRunning) stop(); delete d->m_engine; d->m_engine = 0; delete d; } void AnalyzerRunControl::start() { if (!d->m_engine) { emit finished(); return; } // clear about-to-be-outdated tasks ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); TaskHub *hub = pm->getObject(); hub->clearTasks(Constants::ANALYZERTASK_ID); if (d->m_engine->start()) { d->m_isRunning = true; emit started(); } } RunControl::StopResult AnalyzerRunControl::stop() { if (!d->m_engine || !d->m_isRunning) return StoppedSynchronously; d->m_engine->stop(); d->m_isRunning = false; return AsynchronousStop; } void AnalyzerRunControl::stopIt() { if (stop() == RunControl::StoppedSynchronously) AnalyzerManager::handleToolFinished(); } void AnalyzerRunControl::engineFinished() { d->m_isRunning = false; emit finished(); } void AnalyzerRunControl::runControlFinished() { AnalyzerManager::handleToolFinished(); } bool AnalyzerRunControl::isRunning() const { return d->m_isRunning; } QString AnalyzerRunControl::displayName() const { if (!d->m_engine) return QString(); if (d->m_engine->runConfiguration()) return d->m_engine->runConfiguration()->displayName(); else return d->m_engine->startParameters().displayName; } QIcon AnalyzerRunControl::icon() const { return QIcon(QLatin1String(":/images/analyzer_start_small.png")); } void AnalyzerRunControl::receiveOutput(const QString &text, Utils::OutputFormat format) { appendMessage(text, format); } void AnalyzerRunControl::addTask(Task::TaskType type, const QString &description, const QString &file, int line) { ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); TaskHub *hub = pm->getObject(); hub->addTask(Task(type, description, file, line, Constants::ANALYZERTASK_ID)); hub->popup(false); } } // namespace Analyzer