/************************************************************************** ** ** 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 (info@qt.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 info@qt.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 Analyzer; using namespace Analyzer::Internal; // AnalyzerRunControl::Private /////////////////////////////////////////// class AnalyzerRunControl::Private { public: Private(); bool m_isRunning; IAnalyzerEngine *m_engine; }; AnalyzerRunControl::Private::Private() : m_isRunning(false) , m_engine(0) { } // AnalyzerRunControl //////////////////////////////////////////////////// AnalyzerRunControl::AnalyzerRunControl(const AnalyzerStartParameters &sp, RunConfiguration *runConfiguration) : RunControl(runConfiguration, Constants::MODE_ANALYZE), d(new Private) { IAnalyzerTool *tool = AnalyzerManager::instance()->currentTool(); d->m_engine = tool->createEngine(sp, runConfiguration); connect(d->m_engine, SIGNAL(standardErrorReceived(QString)), SLOT(receiveStandardError(QString))); connect(d->m_engine, SIGNAL(standardOutputReceived(QString)), SLOT(receiveStandardOutput(QString))); 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())); } AnalyzerRunControl::~AnalyzerRunControl() { if (d->m_isRunning) stop(); delete d->m_engine; d->m_engine = 0; } void AnalyzerRunControl::start() { // clear about-to-be-outdated tasks ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); ProjectExplorer::TaskHub *hub = pm->getObject(); hub->clearTasks(Constants::ANALYZERTASK_ID); d->m_isRunning = true; emit started(); d->m_engine->start(); } ProjectExplorer::RunControl::StopResult AnalyzerRunControl::stop() { if (!d->m_isRunning) return StoppedSynchronously; d->m_engine->stop(); d->m_isRunning = false; return AsynchronousStop; } void AnalyzerRunControl::engineFinished() { d->m_isRunning = false; emit finished(); } bool AnalyzerRunControl::isRunning() const { return d->m_isRunning; } QString AnalyzerRunControl::displayName() const { return d->m_engine->startParameters().displayName; } QIcon AnalyzerRunControl::icon() const { return QIcon(QLatin1String(":/images/analyzer_start_small.png")); } void AnalyzerRunControl::receiveStandardOutput(const QString &text) { appendMessage(text, Utils::StdOutFormat); } void AnalyzerRunControl::receiveStandardError(const QString &text) { appendMessage(text, Utils::StdErrFormat); } void AnalyzerRunControl::addTask(ProjectExplorer::Task::TaskType type, const QString &description, const QString &file, int line) { ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); ProjectExplorer::TaskHub *hub = pm->getObject(); hub->addTask(ProjectExplorer::Task(type, description, file, line, Constants::ANALYZERTASK_ID)); ///FIXME: get a better API for this into Qt Creator QList panes = pm->getObjects(); foreach (Core::IOutputPane *pane, panes) { if (pane->displayName() == tr("Build Issues")) { pane->popup(false); break; } } }