forked from qt-creator/qt-creator
Change-Id: I5e173900a4008c72c67a30eaa9c101027c1b43af Reviewed-by: Eike Ziller <eike.ziller@digia.com> Reviewed-by: David Schulz <david.schulz@digia.com>
168 lines
5.5 KiB
C++
168 lines
5.5 KiB
C++
/**************************************************************************
|
|
**
|
|
** Copyright (c) 2013 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
** 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 "androidrunconfiguration.h"
|
|
#include "androiddeploystep.h"
|
|
#include "androidglobal.h"
|
|
#include "androidtoolchain.h"
|
|
#include "androidmanager.h"
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
#include <projectexplorer/target.h>
|
|
#include <qtsupport/qtoutputformatter.h>
|
|
#include <qtsupport/qtkitinformation.h>
|
|
#include <qt4projectmanager/qmakeproject.h>
|
|
#include <qt4projectmanager/qmakenodes.h>
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
namespace {
|
|
const char PRO_FILE_KEY[] = "Qt4ProjectManager.Qt4RunConfiguration.ProFile";
|
|
}
|
|
|
|
using namespace ProjectExplorer;
|
|
using QmakeProjectManager::Qt4Project;
|
|
|
|
namespace Android {
|
|
namespace Internal {
|
|
|
|
AndroidRunConfiguration::AndroidRunConfiguration(Target *parent, Core::Id id, const QString &path)
|
|
: RunConfiguration(parent, id)
|
|
, m_proFilePath(path)
|
|
{
|
|
Qt4Project *project = static_cast<Qt4Project *>(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::Qt4ProFileNode*,bool,bool)),
|
|
this, SLOT(proFileUpdated(QmakeProjectManager::Qt4ProFileNode*,bool,bool)));
|
|
}
|
|
|
|
bool AndroidRunConfiguration::fromMap(const QVariantMap &map)
|
|
{
|
|
const QDir projectDir = QDir(target()->project()->projectDirectory());
|
|
m_proFilePath = QDir::cleanPath(projectDir.filePath(map.value(QLatin1String(PRO_FILE_KEY)).toString()));
|
|
m_parseSuccess = static_cast<Qt4Project *>(target()->project())->validParse(m_proFilePath);
|
|
m_parseInProgress = static_cast<Qt4Project *>(target()->project())->parseInProgress(m_proFilePath);
|
|
|
|
return RunConfiguration::fromMap(map);
|
|
}
|
|
|
|
QVariantMap AndroidRunConfiguration::toMap() const
|
|
{
|
|
const QDir projectDir = QDir(target()->project()->projectDirectory());
|
|
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<Qt4Project *>(target()->project())->disabledReasonForRunConfiguration(m_proFilePath);
|
|
return QString();
|
|
}
|
|
|
|
void AndroidRunConfiguration::proFileUpdated(QmakeProjectManager::Qt4ProFileNode *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");
|
|
}
|
|
|
|
AndroidConfig AndroidRunConfiguration::config() const
|
|
{
|
|
return AndroidConfigurations::instance().config();
|
|
}
|
|
|
|
const QString AndroidRunConfiguration::remoteChannel() const
|
|
{
|
|
return QLatin1String(":5039");
|
|
}
|
|
|
|
const QString AndroidRunConfiguration::dumperLib() const
|
|
{
|
|
QtSupport::BaseQtVersion *version = QtSupport::QtKitInformation::qtVersion(target()->kit());
|
|
if (!version)
|
|
return QString();
|
|
return version->gdbDebuggingHelperLibrary();
|
|
}
|
|
|
|
QString AndroidRunConfiguration::proFilePath() const
|
|
{
|
|
return m_proFilePath;
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Android
|