/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, 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, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "localapplicationruncontrol.h" #include "localapplicationrunconfiguration.h" #include #include #include #include namespace ProjectExplorer { namespace Internal { LocalApplicationRunControlFactory::LocalApplicationRunControlFactory() { } LocalApplicationRunControlFactory::~LocalApplicationRunControlFactory() { } bool LocalApplicationRunControlFactory::canRun(RunConfiguration *runConfiguration, RunMode mode) const { return mode == NormalRunMode && qobject_cast(runConfiguration); } RunControl *LocalApplicationRunControlFactory::create(RunConfiguration *runConfiguration, RunMode mode, QString *errorMessage) { Q_UNUSED(errorMessage) QTC_ASSERT(canRun(runConfiguration, mode), return 0); LocalApplicationRunConfiguration *localRunConfiguration = qobject_cast(runConfiguration); return new LocalApplicationRunControl(localRunConfiguration, mode); } // ApplicationRunControl LocalApplicationRunControl::LocalApplicationRunControl(LocalApplicationRunConfiguration *rc, RunMode mode) : RunControl(rc, mode), m_running(false) { setIcon(QLatin1String(ProjectExplorer::Constants::ICON_RUN_SMALL)); EnvironmentAspect *environment = rc->extraAspect(); Utils::Environment env; if (environment) env = environment->environment(); QString dir = rc->workingDirectory(); m_applicationLauncher.setEnvironment(env); m_applicationLauncher.setWorkingDirectory(dir); m_executable = rc->executable(); m_runMode = static_cast(rc->runMode()); m_commandLineArguments = rc->commandLineArguments(); connect(&m_applicationLauncher, SIGNAL(appendMessage(QString,Utils::OutputFormat)), this, SLOT(slotAppendMessage(QString,Utils::OutputFormat))); connect(&m_applicationLauncher, SIGNAL(processStarted()), this, SLOT(processStarted())); connect(&m_applicationLauncher, SIGNAL(processExited(int,QProcess::ExitStatus)), this, SLOT(processExited(int,QProcess::ExitStatus))); connect(&m_applicationLauncher, SIGNAL(bringToForegroundRequested(qint64)), this, SLOT(bringApplicationToForeground(qint64))); } LocalApplicationRunControl::~LocalApplicationRunControl() { } void LocalApplicationRunControl::start() { emit started(); if (m_executable.isEmpty()) { appendMessage(tr("No executable specified.") + QLatin1Char('\n'), Utils::ErrorMessageFormat); emit finished(); } else if (!QFileInfo(m_executable).exists()){ appendMessage(tr("Executable %1 does not exist.").arg(QDir::toNativeSeparators(m_executable)) + QLatin1Char('\n'), Utils::ErrorMessageFormat); emit finished(); } else { m_running = true; QString msg = tr("Starting %1...").arg(QDir::toNativeSeparators(m_executable)) + QLatin1Char('\n'); appendMessage(msg, Utils::NormalMessageFormat); m_applicationLauncher.start(m_runMode, m_executable, m_commandLineArguments); setApplicationProcessHandle(ProcessHandle(m_applicationLauncher.applicationPID())); } } LocalApplicationRunControl::StopResult LocalApplicationRunControl::stop() { m_applicationLauncher.stop(); return StoppedSynchronously; } bool LocalApplicationRunControl::isRunning() const { return m_running; } void LocalApplicationRunControl::slotAppendMessage(const QString &err, Utils::OutputFormat format) { appendMessage(err, format); } void LocalApplicationRunControl::processStarted() { // Console processes only know their pid after being started setApplicationProcessHandle(ProcessHandle(m_applicationLauncher.applicationPID())); } void LocalApplicationRunControl::processExited(int exitCode, QProcess::ExitStatus status) { m_running = false; setApplicationProcessHandle(ProcessHandle()); QString msg; if (status == QProcess::CrashExit) { msg = tr("%1 crashed") .arg(QDir::toNativeSeparators(m_executable)); } else { msg = tr("%1 exited with code %2") .arg(QDir::toNativeSeparators(m_executable)).arg(exitCode); } appendMessage(msg + QLatin1Char('\n'), Utils::NormalMessageFormat); emit finished(); } } // namespace Internal } // namespace ProjectExplorer