/************************************************************************** ** ** Copyright (c) 2014 BogDan Vatra ** 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://www.qt.io/licensing. For further information ** use the contact form at http://www.qt.io/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 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** 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 "androidrunconfiguration.h" #include "androiddeploystep.h" #include "androidglobal.h" #include "androidtoolchain.h" #include "androidmanager.h" #include #include #include #include #include #include #include namespace { const char PRO_FILE_KEY[] = "Qt4ProjectManager.Qt4RunConfiguration.ProFile"; } using namespace ProjectExplorer; using QmakeProjectManager::QmakeProject; namespace Android { namespace Internal { AndroidRunConfiguration::AndroidRunConfiguration(Target *parent, Core::Id id, const QString &path) : RunConfiguration(parent, id) , m_proFilePath(path) { QmakeProject *project = static_cast(parent->project()); m_parseSuccess = project->validParse(m_proFilePath); m_parseInProgress = project->parseInProgress(m_proFilePath); init(); } AndroidRunConfiguration::AndroidRunConfiguration(Target *parent, AndroidRunConfiguration *source) : RunConfiguration(parent, source) , m_proFilePath(source->m_proFilePath) , m_parseSuccess(source->m_parseSuccess) , m_parseInProgress(source->m_parseInProgress) { init(); } void AndroidRunConfiguration::init() { setDefaultDisplayName(defaultDisplayName()); connect(target()->project(), SIGNAL(proFileUpdated(QmakeProjectManager::QmakeProFileNode*,bool,bool)), this, SLOT(proFileUpdated(QmakeProjectManager::QmakeProFileNode*,bool,bool))); } bool AndroidRunConfiguration::fromMap(const QVariantMap &map) { const QDir projectDir = QDir(target()->project()->projectDirectory().toString()); m_proFilePath = QDir::cleanPath(projectDir.filePath(map.value(QLatin1String(PRO_FILE_KEY)).toString())); m_parseSuccess = static_cast(target()->project())->validParse(m_proFilePath); m_parseInProgress = static_cast(target()->project())->parseInProgress(m_proFilePath); return RunConfiguration::fromMap(map); } QVariantMap AndroidRunConfiguration::toMap() const { const QDir projectDir = QDir(target()->project()->projectDirectory().toString()); QVariantMap map(RunConfiguration::toMap()); map.insert(QLatin1String(PRO_FILE_KEY), projectDir.relativeFilePath(m_proFilePath)); return map; } bool AndroidRunConfiguration::isEnabled() const { return m_parseSuccess && !m_parseInProgress; } QString AndroidRunConfiguration::disabledReason() const { if (m_parseInProgress) return tr("The .pro file \"%1\" is currently being parsed.") .arg(QFileInfo(m_proFilePath).fileName()); if (!m_parseSuccess) return static_cast(target()->project())->disabledReasonForRunConfiguration(m_proFilePath); return QString(); } void AndroidRunConfiguration::proFileUpdated(QmakeProjectManager::QmakeProFileNode *pro, bool success, bool parseInProgress) { if (m_proFilePath != pro->path()) return; bool enabled = isEnabled(); QString reason = disabledReason(); m_parseSuccess = success; m_parseInProgress = parseInProgress; if (enabled != isEnabled() || reason != disabledReason()) emit enabledChanged(); } QWidget *AndroidRunConfiguration::createConfigurationWidget() { return 0;// no special running configurations } Utils::OutputFormatter *AndroidRunConfiguration::createOutputFormatter() const { return new QtSupport::QtOutputFormatter(target()->project()); } QString AndroidRunConfiguration::defaultDisplayName() { return tr("Run on Android device"); } const QString AndroidRunConfiguration::remoteChannel() const { return QLatin1String(":5039"); } QString AndroidRunConfiguration::proFilePath() const { return m_proFilePath; } } // namespace Internal } // namespace Android