2013-09-12 18:46:35 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Tim Sander <tim@krieglstein.org>
|
2013-09-12 18:46:35 +02:00
|
|
|
** 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 "baremetalrunconfiguration.h"
|
|
|
|
|
|
|
|
|
|
#include "baremetalrunconfigurationwidget.h"
|
|
|
|
|
|
|
|
|
|
#include <debugger/debuggerrunconfigurationaspect.h>
|
|
|
|
|
#include <projectexplorer/buildtargetinfo.h>
|
|
|
|
|
#include <projectexplorer/deploymentdata.h>
|
|
|
|
|
#include <projectexplorer/project.h>
|
|
|
|
|
#include <projectexplorer/target.h>
|
|
|
|
|
#include <qtsupport/qtoutputformatter.h>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
namespace BareMetal {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
const char ArgumentsKey[] = "Qt4ProjectManager.MaemoRunConfiguration.Arguments";
|
|
|
|
|
const char ProFileKey[] = "Qt4ProjectManager.MaemoRunConfiguration.ProFile";
|
|
|
|
|
const char WorkingDirectoryKey[] = "BareMetal.RunConfig.WorkingDirectory";
|
|
|
|
|
|
|
|
|
|
|
2014-06-19 19:14:56 +02:00
|
|
|
BareMetalRunConfiguration::BareMetalRunConfiguration(Target *parent, BareMetalRunConfiguration *other)
|
|
|
|
|
: RunConfiguration(parent, other),
|
|
|
|
|
m_projectFilePath(other->m_projectFilePath),
|
|
|
|
|
m_gdbPath(other->m_gdbPath),
|
|
|
|
|
m_arguments(other->m_arguments),
|
|
|
|
|
m_workingDirectory(other->m_workingDirectory)
|
2013-09-12 18:46:35 +02:00
|
|
|
{
|
|
|
|
|
init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BareMetalRunConfiguration::BareMetalRunConfiguration(Target *parent,
|
|
|
|
|
const Core::Id id,
|
|
|
|
|
const QString &projectFilePath)
|
2014-06-19 19:14:56 +02:00
|
|
|
: RunConfiguration(parent, id),
|
|
|
|
|
m_projectFilePath(projectFilePath)
|
2013-09-12 18:46:35 +02:00
|
|
|
{
|
|
|
|
|
init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BareMetalRunConfiguration::init()
|
|
|
|
|
{
|
|
|
|
|
setDefaultDisplayName(defaultDisplayName());
|
|
|
|
|
|
|
|
|
|
connect(target(), SIGNAL(deploymentDataChanged()), SLOT(handleBuildSystemDataUpdated()));
|
|
|
|
|
connect(target(), SIGNAL(applicationTargetsChanged()), SLOT(handleBuildSystemDataUpdated()));
|
|
|
|
|
connect(target(), SIGNAL(kitChanged()),
|
|
|
|
|
this, SLOT(handleBuildSystemDataUpdated())); // Handles device changes, etc.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BareMetalRunConfiguration::isEnabled() const
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
m_disabledReason.clear(); // FIXME: Check this makes sense.
|
2013-09-12 18:46:35 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BareMetalRunConfiguration::disabledReason() const
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
return m_disabledReason;
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *BareMetalRunConfiguration::createConfigurationWidget()
|
|
|
|
|
{
|
|
|
|
|
return new BareMetalRunConfigurationWidget(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OutputFormatter *BareMetalRunConfiguration::createOutputFormatter() const
|
|
|
|
|
{
|
|
|
|
|
return new QtSupport::QtOutputFormatter(target()->project());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariantMap BareMetalRunConfiguration::toMap() const
|
|
|
|
|
{
|
|
|
|
|
QVariantMap map(RunConfiguration::toMap());
|
2014-06-19 19:14:56 +02:00
|
|
|
map.insert(QLatin1String(ArgumentsKey), m_arguments);
|
2014-05-02 12:53:36 +02:00
|
|
|
const QDir dir = QDir(target()->project()->projectDirectory().toString());
|
2014-06-19 19:14:56 +02:00
|
|
|
map.insert(QLatin1String(ProFileKey), dir.relativeFilePath(m_projectFilePath));
|
|
|
|
|
map.insert(QLatin1String(WorkingDirectoryKey), m_workingDirectory);
|
2013-09-12 18:46:35 +02:00
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool BareMetalRunConfiguration::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
|
|
|
|
if (!RunConfiguration::fromMap(map))
|
|
|
|
|
return false;
|
|
|
|
|
|
2014-06-19 19:14:56 +02:00
|
|
|
m_arguments = map.value(QLatin1String(ArgumentsKey)).toString();
|
2014-05-02 12:53:36 +02:00
|
|
|
const QDir dir = QDir(target()->project()->projectDirectory().toString());
|
2014-06-19 19:14:56 +02:00
|
|
|
m_projectFilePath
|
2013-09-12 18:46:35 +02:00
|
|
|
= QDir::cleanPath(dir.filePath(map.value(QLatin1String(ProFileKey)).toString()));
|
2014-06-19 19:14:56 +02:00
|
|
|
m_workingDirectory = map.value(QLatin1String(WorkingDirectoryKey)).toString();
|
2013-09-12 18:46:35 +02:00
|
|
|
|
|
|
|
|
setDefaultDisplayName(defaultDisplayName());
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BareMetalRunConfiguration::defaultDisplayName()
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
if (!m_projectFilePath.isEmpty())
|
2013-09-12 18:46:35 +02:00
|
|
|
//: %1 is the name of the project run via hardware debugger
|
2014-06-19 19:14:56 +02:00
|
|
|
return tr("%1 (via GDB server or hardware debugger)").arg(QFileInfo(m_projectFilePath).completeBaseName());
|
2013-09-12 18:46:35 +02:00
|
|
|
//: Bare Metal run configuration default run name
|
2013-10-04 13:51:53 +02:00
|
|
|
return tr("Run on GDB server or hardware debugger");
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BareMetalRunConfiguration::localExecutableFilePath() const
|
|
|
|
|
{
|
|
|
|
|
return target()->applicationTargets()
|
2014-06-19 19:14:56 +02:00
|
|
|
.targetForProject(Utils::FileName::fromString(m_projectFilePath)).toString();
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BareMetalRunConfiguration::arguments() const
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
return m_arguments;
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BareMetalRunConfiguration::setArguments(const QString &args)
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
m_arguments = args;
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BareMetalRunConfiguration::workingDirectory() const
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
return m_workingDirectory;
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BareMetalRunConfiguration::setWorkingDirectory(const QString &wd)
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
m_workingDirectory = wd;
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BareMetalRunConfiguration::projectFilePath() const
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
return m_projectFilePath;
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BareMetalRunConfiguration::setDisabledReason(const QString &reason) const
|
|
|
|
|
{
|
2014-06-19 19:14:56 +02:00
|
|
|
m_disabledReason = reason;
|
2013-09-12 18:46:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BareMetalRunConfiguration::handleBuildSystemDataUpdated()
|
|
|
|
|
{
|
|
|
|
|
emit targetInformationChanged();
|
|
|
|
|
updateEnableState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *BareMetalRunConfiguration::IdPrefix = "BareMetalRunConfiguration";
|
|
|
|
|
|
2014-06-19 19:14:56 +02:00
|
|
|
} // namespace Internal
|
2013-09-12 18:46:35 +02:00
|
|
|
} // namespace BareMetal
|
|
|
|
|
|