forked from qt-creator/qt-creator
Android plugin
Change-Id: Iad58914f067a6ef6d3412ccd42f757d821e39e45 Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
This commit is contained in:
committed by
Daniel Teske
parent
cf4ecad4bc
commit
50e8f7bb7b
198
src/plugins/android/androidrunfactories.cpp
Normal file
198
src/plugins/android/androidrunfactories.cpp
Normal file
@@ -0,0 +1,198 @@
|
||||
/**************************************************************************
|
||||
**
|
||||
** This file is part of Qt Creator
|
||||
**
|
||||
** Copyright (c) 2012 BogDan Vatra <bog_dan_ro@yahoo.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 "androidrunfactories.h"
|
||||
|
||||
#include "androidconstants.h"
|
||||
#include "androiddebugsupport.h"
|
||||
#include "androidrunconfiguration.h"
|
||||
#include "androidruncontrol.h"
|
||||
#include "androidtarget.h"
|
||||
|
||||
#include <projectexplorer/projectexplorerconstants.h>
|
||||
#include <debugger/debuggerconstants.h>
|
||||
#include <qt4projectmanager/qt4project.h>
|
||||
#include <qt4projectmanager/qt4nodes.h>
|
||||
#include <qt4projectmanager/qt4projectmanagerconstants.h>
|
||||
|
||||
|
||||
namespace Android {
|
||||
namespace Internal {
|
||||
|
||||
using namespace ProjectExplorer;
|
||||
using namespace Qt4ProjectManager;
|
||||
|
||||
namespace {
|
||||
|
||||
QString pathFromId(const QString &id)
|
||||
{
|
||||
if (!id.startsWith(ANDROID_RC_ID_PREFIX))
|
||||
return QString();
|
||||
return id.mid(QString(ANDROID_RC_ID_PREFIX).size());
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
AndroidRunConfigurationFactory::AndroidRunConfigurationFactory(QObject *parent)
|
||||
: IRunConfigurationFactory(parent)
|
||||
{
|
||||
}
|
||||
|
||||
AndroidRunConfigurationFactory::~AndroidRunConfigurationFactory()
|
||||
{
|
||||
}
|
||||
|
||||
bool AndroidRunConfigurationFactory::canCreate(Target *parent,
|
||||
const QString &/*id*/) const
|
||||
{
|
||||
AndroidTarget *target = qobject_cast<AndroidTarget *>(parent);
|
||||
if (!target
|
||||
|| target->id() != QLatin1String(Qt4ProjectManager::Constants::ANDROID_DEVICE_TARGET_ID)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool AndroidRunConfigurationFactory::canRestore(Target *parent,
|
||||
const QVariantMap &map) const
|
||||
{
|
||||
Q_UNUSED(parent)
|
||||
Q_UNUSED(map)
|
||||
if (!qobject_cast<AndroidTarget *>(parent))
|
||||
return false;
|
||||
return ProjectExplorer::idFromMap(map)
|
||||
.startsWith(QLatin1String(ANDROID_RC_ID));
|
||||
}
|
||||
|
||||
bool AndroidRunConfigurationFactory::canClone(Target *parent,
|
||||
RunConfiguration *source) const
|
||||
{
|
||||
return canCreate(parent, source->id());
|
||||
}
|
||||
|
||||
QStringList AndroidRunConfigurationFactory::availableCreationIds(Target *parent) const
|
||||
{
|
||||
QStringList ids;
|
||||
if (AndroidTarget *t = qobject_cast<AndroidTarget *>(parent)) {
|
||||
if (t->id() == QLatin1String(Qt4ProjectManager::Constants::ANDROID_DEVICE_TARGET_ID)) {
|
||||
QList<Qt4ProFileNode *> nodes = t->qt4Project()->allProFiles();
|
||||
foreach (Qt4ProFileNode *node, nodes)
|
||||
if (node->projectType() == ApplicationTemplate || node->projectType() == LibraryTemplate)
|
||||
ids << node->targetInformation().target;
|
||||
}
|
||||
}
|
||||
return ids;
|
||||
}
|
||||
|
||||
QString AndroidRunConfigurationFactory::displayNameForId(const QString &id) const
|
||||
{
|
||||
return QFileInfo(pathFromId(id)).completeBaseName();
|
||||
}
|
||||
|
||||
RunConfiguration *AndroidRunConfigurationFactory::create(Target *parent,
|
||||
const QString &id)
|
||||
{
|
||||
if (!canCreate(parent, id))
|
||||
return 0;
|
||||
AndroidTarget *pqt4parent = static_cast<AndroidTarget *>(parent);
|
||||
return new AndroidRunConfiguration(pqt4parent, pathFromId(id));
|
||||
|
||||
}
|
||||
|
||||
RunConfiguration *AndroidRunConfigurationFactory::restore(Target *parent,
|
||||
const QVariantMap &map)
|
||||
{
|
||||
if (!canRestore(parent, map))
|
||||
return 0;
|
||||
AndroidTarget *target = static_cast<AndroidTarget *>(parent);
|
||||
AndroidRunConfiguration *rc = new AndroidRunConfiguration(target, QString());
|
||||
if (rc->fromMap(map))
|
||||
return rc;
|
||||
|
||||
delete rc;
|
||||
return 0;
|
||||
}
|
||||
|
||||
RunConfiguration *AndroidRunConfigurationFactory::clone(Target *parent,
|
||||
RunConfiguration *source)
|
||||
{
|
||||
if (!canClone(parent, source))
|
||||
return 0;
|
||||
|
||||
AndroidRunConfiguration *old = static_cast<AndroidRunConfiguration *>(source);
|
||||
return new AndroidRunConfiguration(static_cast<AndroidTarget *>(parent), old);
|
||||
}
|
||||
|
||||
// #pragma mark -- AndroidRunControlFactory
|
||||
|
||||
AndroidRunControlFactory::AndroidRunControlFactory(QObject *parent)
|
||||
: IRunControlFactory(parent)
|
||||
{
|
||||
}
|
||||
|
||||
AndroidRunControlFactory::~AndroidRunControlFactory()
|
||||
{
|
||||
}
|
||||
|
||||
bool AndroidRunControlFactory::canRun(RunConfiguration *runConfiguration,
|
||||
ProjectExplorer::RunMode mode) const
|
||||
{
|
||||
if (mode != NormalRunMode && mode != DebugRunMode)
|
||||
return false;
|
||||
return qobject_cast<AndroidRunConfiguration *>(runConfiguration);
|
||||
}
|
||||
|
||||
RunControl *AndroidRunControlFactory::create(RunConfiguration *runConfig,
|
||||
ProjectExplorer::RunMode mode)
|
||||
{
|
||||
Q_ASSERT(canRun(runConfig, mode));
|
||||
AndroidRunConfiguration *rc = qobject_cast<AndroidRunConfiguration *>(runConfig);
|
||||
Q_ASSERT(rc);
|
||||
if (mode == NormalRunMode)
|
||||
return new AndroidRunControl(rc);
|
||||
else
|
||||
return AndroidDebugSupport::createDebugRunControl(rc);
|
||||
}
|
||||
|
||||
QString AndroidRunControlFactory::displayName() const
|
||||
{
|
||||
return tr("Run on Android device/emulator");
|
||||
}
|
||||
|
||||
RunConfigWidget *AndroidRunControlFactory::createConfigurationWidget(RunConfiguration *config)
|
||||
{
|
||||
Q_UNUSED(config)
|
||||
return 0;
|
||||
}
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Qt4ProjectManager
|
||||
Reference in New Issue
Block a user