2012-04-18 20:30:57 +03:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2012 BogDan Vatra <bog_dan_ro@yahoo.com>
|
|
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2012-04-18 20:30:57 +03:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "androidrunfactories.h"
|
|
|
|
|
|
|
|
|
|
#include "androidconstants.h"
|
|
|
|
|
#include "androiddebugsupport.h"
|
|
|
|
|
#include "androidrunconfiguration.h"
|
|
|
|
|
#include "androidruncontrol.h"
|
2012-04-24 15:49:09 +02:00
|
|
|
#include "androidmanager.h"
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/project.h>
|
2012-04-18 20:30:57 +03:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2012-04-18 20:30:57 +03:00
|
|
|
#include <debugger/debuggerconstants.h>
|
|
|
|
|
#include <qt4projectmanager/qt4project.h>
|
|
|
|
|
#include <qt4projectmanager/qt4nodes.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <qtsupport/customexecutablerunconfiguration.h>
|
|
|
|
|
#include <qtsupport/qtprofileinformation.h>
|
|
|
|
|
#include <qtsupport/qtsupportconstants.h>
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace Qt4ProjectManager;
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QString pathFromId(const Core::Id id)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
QString pathStr = id.toString();
|
2012-03-15 17:17:40 +01:00
|
|
|
const QString prefix = QLatin1String(ANDROID_RC_ID_PREFIX);
|
|
|
|
|
if (!pathStr.startsWith(prefix))
|
2012-04-18 20:30:57 +03:00
|
|
|
return QString();
|
2012-03-15 17:17:40 +01:00
|
|
|
return pathStr.mid(prefix.size());
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
AndroidRunConfigurationFactory::AndroidRunConfigurationFactory(QObject *parent)
|
2012-04-24 15:49:09 +02:00
|
|
|
: QmakeRunConfigurationFactory(parent)
|
|
|
|
|
{ setObjectName(QLatin1String("AndroidRunConfigurationFactory")); }
|
2012-04-18 20:30:57 +03:00
|
|
|
|
|
|
|
|
AndroidRunConfigurationFactory::~AndroidRunConfigurationFactory()
|
2012-04-24 15:49:09 +02:00
|
|
|
{ }
|
2012-04-18 20:30:57 +03:00
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
bool AndroidRunConfigurationFactory::canCreate(Target *parent, const Core::Id id) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!canHandle(parent))
|
2012-04-18 20:30:57 +03:00
|
|
|
return false;
|
2012-04-24 15:49:09 +02:00
|
|
|
return availableCreationIds(parent).contains(id);
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
bool AndroidRunConfigurationFactory::canRestore(Target *parent, const QVariantMap &map) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!canHandle(parent))
|
2012-04-18 20:30:57 +03:00
|
|
|
return false;
|
2012-04-24 15:49:09 +02:00
|
|
|
QString id = ProjectExplorer::idFromMap(map).toString();
|
|
|
|
|
return id.startsWith(QLatin1String(ANDROID_RC_ID_PREFIX));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AndroidRunConfigurationFactory::canClone(Target *parent,
|
|
|
|
|
RunConfiguration *source) const
|
|
|
|
|
{
|
|
|
|
|
return canCreate(parent, source->id());
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QList<Core::Id> AndroidRunConfigurationFactory::availableCreationIds(Target *parent) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
2012-03-15 17:17:40 +01:00
|
|
|
QList<Core::Id> ids;
|
2012-04-24 15:49:09 +02:00
|
|
|
if (!AndroidManager::supportsAndroid(parent))
|
|
|
|
|
return ids;
|
|
|
|
|
QList<Qt4ProFileNode *> nodes = static_cast<Qt4Project *>(parent->project())->allProFiles();
|
|
|
|
|
foreach (Qt4ProFileNode *node, nodes)
|
|
|
|
|
if (node->projectType() == ApplicationTemplate || node->projectType() == LibraryTemplate)
|
2012-06-20 15:51:28 +02:00
|
|
|
ids << Core::Id(ANDROID_RC_ID_PREFIX + node->targetInformation().target);
|
2012-04-18 20:30:57 +03:00
|
|
|
return ids;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QString AndroidRunConfigurationFactory::displayNameForId(const Core::Id id) const
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
return QFileInfo(pathFromId(id)).completeBaseName();
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
RunConfiguration *AndroidRunConfigurationFactory::create(Target *parent, const Core::Id id)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
|
return 0;
|
2012-04-24 15:49:09 +02:00
|
|
|
return new AndroidRunConfiguration(parent, id, pathFromId(id));
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RunConfiguration *AndroidRunConfigurationFactory::restore(Target *parent,
|
|
|
|
|
const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
if (!canRestore(parent, map))
|
|
|
|
|
return 0;
|
2012-04-24 15:49:09 +02:00
|
|
|
Core::Id id = ProjectExplorer::idFromMap(map);
|
|
|
|
|
AndroidRunConfiguration *rc = new AndroidRunConfiguration(parent, id, pathFromId(id));
|
2012-04-18 20:30:57 +03:00
|
|
|
if (rc->fromMap(map))
|
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
|
|
delete rc;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-24 15:49:09 +02:00
|
|
|
RunConfiguration *AndroidRunConfigurationFactory::clone(Target *parent, RunConfiguration *source)
|
2012-04-18 20:30:57 +03:00
|
|
|
{
|
|
|
|
|
if (!canClone(parent, source))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
AndroidRunConfiguration *old = static_cast<AndroidRunConfiguration *>(source);
|
2012-04-24 15:49:09 +02:00
|
|
|
return new AndroidRunConfiguration(parent, old);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AndroidRunConfigurationFactory::canHandle(Target *t) const
|
|
|
|
|
{
|
|
|
|
|
if (!t->project()->supportsProfile(t->profile()))
|
|
|
|
|
return false;
|
|
|
|
|
return AndroidManager::supportsAndroid(t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<RunConfiguration *> AndroidRunConfigurationFactory::runConfigurationsForNode(Target *t, ProjectExplorer::Node *n)
|
|
|
|
|
{
|
|
|
|
|
QList<ProjectExplorer::RunConfiguration *> result;
|
|
|
|
|
foreach (ProjectExplorer::RunConfiguration *rc, t->runConfigurations())
|
|
|
|
|
if (AndroidRunConfiguration *qt4c = qobject_cast<AndroidRunConfiguration *>(rc))
|
|
|
|
|
if (qt4c->proFilePath() == n->path())
|
|
|
|
|
result << rc;
|
|
|
|
|
return result;
|
2012-04-18 20:30:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #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");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|