baremetal: add support for generic projects

Change-Id: I35729c88414cf69f87252500262aee240c87019b
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
Tim Sander
2015-02-06 01:05:28 +01:00
committed by hjk
parent 81684ccf63
commit e6104777d7
6 changed files with 292 additions and 6 deletions

View File

@@ -4,6 +4,7 @@ include(../../qtcreatorplugin.pri)
# BareMetal files # BareMetal files
SOURCES += baremetalplugin.cpp \ SOURCES += baremetalplugin.cpp \
baremetalcustomrunconfiguration.cpp\
baremetaldevice.cpp \ baremetaldevice.cpp \
baremetalrunconfigurationfactory.cpp \ baremetalrunconfigurationfactory.cpp \
baremetalrunconfiguration.cpp \ baremetalrunconfiguration.cpp \
@@ -26,6 +27,7 @@ SOURCES += baremetalplugin.cpp \
HEADERS += baremetalplugin.h \ HEADERS += baremetalplugin.h \
baremetalconstants.h \ baremetalconstants.h \
baremetalcustomrunconfiguration.h \
baremetaldevice.h \ baremetaldevice.h \
baremetalrunconfigurationfactory.h \ baremetalrunconfigurationfactory.h \
baremetalrunconfiguration.h \ baremetalrunconfiguration.h \

View File

@@ -0,0 +1,201 @@
/****************************************************************************
**
** Copyright (C) 2015 Tim Sander <tim@krieglstein.org>
** 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 "baremetalcustomrunconfiguration.h"
#include <projectexplorer/target.h>
#include <qtsupport/qtoutputformatter.h>
#include <utils/detailswidget.h>
#include <utils/qtcprocess.h>
#include <utils/pathchooser.h>
#include <QDir>
#include <QFileInfo>
#include <QVBoxLayout>
#include <QLabel>
#include <QString>
#include <QLineEdit>
using namespace Utils;
namespace BareMetal {
namespace Internal {
class BareMetalCustomRunConfigWidget : public ProjectExplorer::RunConfigWidget
{
Q_OBJECT
public:
BareMetalCustomRunConfigWidget(BareMetalCustomRunConfiguration *runConfig)
: m_runConfig(runConfig)
{
auto const mainLayout = new QVBoxLayout(this);
mainLayout->setMargin(0);
auto const detailsContainer = new DetailsWidget(this);
mainLayout->addWidget(detailsContainer);
detailsContainer->setState(DetailsWidget::NoSummary);
auto const detailsWidget = new QWidget(this);
detailsContainer->setWidget(detailsWidget);
auto exeLabel = new QLabel(tr("Executable:"));
auto executableChooser = new PathChooser;
executableChooser->setExpectedKind(PathChooser::File);
executableChooser->setPath(m_runConfig->localExecutableFilePath());
auto argumentsLabel = new QLabel(tr("Arguments:"));
auto arguments = new QLineEdit();
arguments->setText(m_runConfig->arguments());
auto wdirLabel = new QLabel(tr("Work directory:"));
auto workdirChooser = new PathChooser;
workdirChooser->setExpectedKind(PathChooser::Directory);
workdirChooser->setPath(m_runConfig->workingDirectory());
auto clayout = new QGridLayout(this);
detailsWidget->setLayout(clayout);
clayout->addWidget(exeLabel, 0, 0);
clayout->addWidget(executableChooser, 0, 1);
clayout->addWidget(argumentsLabel, 1, 0);
clayout->addWidget(arguments, 1, 1);
clayout->addWidget(wdirLabel, 2, 0);
clayout->addWidget(workdirChooser, 2, 1);
connect(executableChooser, &PathChooser::pathChanged,
this, &BareMetalCustomRunConfigWidget::handleLocalExecutableChanged);
connect(arguments, &QLineEdit::textChanged,
this, &BareMetalCustomRunConfigWidget::handleArgumentsChanged);
connect(workdirChooser, &PathChooser::pathChanged,
this, &BareMetalCustomRunConfigWidget::handleWorkingDirChanged);
connect(this, &BareMetalCustomRunConfigWidget::setWorkdir,
workdirChooser, &PathChooser::setPath);
}
signals:
void setWorkdir(const QString workdir);
private:
void handleLocalExecutableChanged(const QString &path)
{
m_runConfig->setLocalExecutableFilePath(path.trimmed());
if (m_runConfig->workingDirectory().isEmpty()) {
QFileInfo fi(path);
emit setWorkdir(fi.dir().canonicalPath());
handleWorkingDirChanged(fi.dir().canonicalPath());
}
}
void handleArgumentsChanged(const QString &arguments)
{
m_runConfig->setArguments(arguments.trimmed());
}
void handleWorkingDirChanged(const QString &wd)
{
m_runConfig->setWorkingDirectory(wd.trimmed());
}
private:
QString displayName() const { return m_runConfig->displayName(); }
BareMetalCustomRunConfiguration * const m_runConfig;
};
BareMetalCustomRunConfiguration::BareMetalCustomRunConfiguration(ProjectExplorer::Target *parent)
: BareMetalRunConfiguration(parent, runConfigId(), QString())
{
}
BareMetalCustomRunConfiguration::BareMetalCustomRunConfiguration(ProjectExplorer::Target *parent,
BareMetalCustomRunConfiguration *source)
: BareMetalRunConfiguration(parent, source)
, m_localExecutable(source->m_localExecutable)
{
}
bool BareMetalCustomRunConfiguration::isConfigured() const
{
return !m_localExecutable.isEmpty();
}
ProjectExplorer::RunConfiguration::ConfigurationState
BareMetalCustomRunConfiguration::ensureConfigured(QString *errorMessage)
{
if (!isConfigured()) {
if (errorMessage) {
*errorMessage = tr("The remote executable must be set "
"in order to run a custom remote run configuration.");
}
return UnConfigured;
}
return Configured;
}
QWidget *BareMetalCustomRunConfiguration::createConfigurationWidget()
{
return new BareMetalCustomRunConfigWidget(this);
}
Utils::OutputFormatter *BareMetalCustomRunConfiguration::createOutputFormatter() const
{
return new QtSupport::QtOutputFormatter(target()->project());
}
Core::Id BareMetalCustomRunConfiguration::runConfigId()
{
return "BareMetal.CustomRunConfig";
}
QString BareMetalCustomRunConfiguration::runConfigDefaultDisplayName()
{
return tr("Custom Executable (on GDB server or hardware debugger)");
}
static QString exeKey()
{
return QLatin1String("BareMetal.CustomRunConfig.Executable");
}
bool BareMetalCustomRunConfiguration::fromMap(const QVariantMap &map)
{
if (!BareMetalRunConfiguration::fromMap(map))
return false;
m_localExecutable = map.value(exeKey()).toString();
return true;
}
QVariantMap BareMetalCustomRunConfiguration::toMap() const
{
QVariantMap map = BareMetalRunConfiguration::toMap();
map.insert(exeKey(), m_localExecutable);
return map;
}
} // namespace Internal
} // namespace BareMetal
#include "baremetalcustomrunconfiguration.moc"

View File

@@ -0,0 +1,72 @@
/****************************************************************************
**
** Copyright (C) 2015 Tim Sander <tim@krieglstein.org>
** 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.
**
****************************************************************************/
#ifndef BAREMETALCUSTOMRUNCONFIGURATION_H
#define BAREMETALCUSTOMRUNCONFIGURATION_H
#include "baremetalrunconfiguration.h"
namespace Utils { class Environment; }
namespace BareMetal {
namespace Internal {
class BareMetalCustomRunConfiguration : public BareMetalRunConfiguration
{
Q_OBJECT
public:
BareMetalCustomRunConfiguration(ProjectExplorer::Target *parent);
BareMetalCustomRunConfiguration(ProjectExplorer::Target *parent,
BareMetalCustomRunConfiguration *source);
bool isEnabled() const { return true; }
bool isConfigured() const;
ConfigurationState ensureConfigured(QString *errorMessage);
QWidget *createConfigurationWidget();
Utils::OutputFormatter *createOutputFormatter() const;
virtual QString localExecutableFilePath() const { return m_localExecutable; }
void setLocalExecutableFilePath(const QString &executable) { m_localExecutable = executable; }
static Core::Id runConfigId();
static QString runConfigDefaultDisplayName();
bool fromMap(const QVariantMap &map);
QVariantMap toMap() const;
private:
QString m_localExecutable;
};
} // namespace Internal
} // namespace BareMetal
#endif // Include guard.

View File

@@ -176,7 +176,7 @@ void BareMetalRunConfiguration::handleBuildSystemDataUpdated()
updateEnableState(); updateEnableState();
} }
const char *BareMetalRunConfiguration::IdPrefix = "BareMetalRunConfiguration"; const char *BareMetalRunConfiguration::IdPrefix = "BareMetal";
} // namespace Internal } // namespace Internal
} // namespace BareMetal } // namespace BareMetal

View File

@@ -55,7 +55,7 @@ public:
QWidget *createConfigurationWidget(); QWidget *createConfigurationWidget();
Utils::OutputFormatter *createOutputFormatter() const; Utils::OutputFormatter *createOutputFormatter() const;
QString localExecutableFilePath() const; virtual QString localExecutableFilePath() const;
QString arguments() const; QString arguments() const;
void setArguments(const QString &args); void setArguments(const QString &args);
QString workingDirectory() const; QString workingDirectory() const;

View File

@@ -30,6 +30,7 @@
#include "baremetalrunconfigurationfactory.h" #include "baremetalrunconfigurationfactory.h"
#include "baremetalconstants.h" #include "baremetalconstants.h"
#include "baremetalcustomrunconfiguration.h"
#include "baremetalrunconfiguration.h" #include "baremetalrunconfiguration.h"
#include <projectexplorer/buildtargetinfo.h> #include <projectexplorer/buildtargetinfo.h>
@@ -68,14 +69,17 @@ bool BareMetalRunConfigurationFactory::canCreate(Target *parent, Core::Id id) co
{ {
if (!canHandle(parent)) if (!canHandle(parent))
return false; return false;
return !parent->applicationTargets().targetForProject(pathFromId(id)).isEmpty(); return id == BareMetalCustomRunConfiguration::runConfigId()
|| !parent->applicationTargets().targetForProject(pathFromId(id)).isEmpty();
} }
bool BareMetalRunConfigurationFactory::canRestore(Target *parent, const QVariantMap &map) const bool BareMetalRunConfigurationFactory::canRestore(Target *parent, const QVariantMap &map) const
{ {
if (!canHandle(parent)) if (!canHandle(parent))
return false; return false;
return idFromMap(map).name().startsWith(BareMetalRunConfiguration::IdPrefix); const Core::Id id = idFromMap(map);
return id == BareMetalCustomRunConfiguration::runConfigId()
|| idFromMap(map).name().startsWith(BareMetalRunConfiguration::IdPrefix);
} }
bool BareMetalRunConfigurationFactory::canClone(Target *parent, RunConfiguration *source) const bool BareMetalRunConfigurationFactory::canClone(Target *parent, RunConfiguration *source) const
@@ -95,30 +99,37 @@ QList<Core::Id> BareMetalRunConfigurationFactory::availableCreationIds(Target *p
const Core::Id base = Core::Id(BareMetalRunConfiguration::IdPrefix); const Core::Id base = Core::Id(BareMetalRunConfiguration::IdPrefix);
foreach (const BuildTargetInfo &bti, parent->applicationTargets().list) foreach (const BuildTargetInfo &bti, parent->applicationTargets().list)
result << base.withSuffix(bti.projectFilePath.toString()); result << base.withSuffix(bti.projectFilePath.toString());
result << BareMetalCustomRunConfiguration::runConfigId();
return result; return result;
} }
QString BareMetalRunConfigurationFactory::displayNameForId(Core::Id id) const QString BareMetalRunConfigurationFactory::displayNameForId(Core::Id id) const
{ {
if (id == BareMetalCustomRunConfiguration::runConfigId())
return BareMetalCustomRunConfiguration::runConfigDefaultDisplayName();
return tr("%1 (on GDB server or hardware debugger)") return tr("%1 (on GDB server or hardware debugger)")
.arg(QFileInfo(pathFromId(id)).completeBaseName()); .arg(QFileInfo(pathFromId(id)).completeBaseName());
} }
RunConfiguration *BareMetalRunConfigurationFactory::doCreate(Target *parent, Core::Id id) RunConfiguration *BareMetalRunConfigurationFactory::doCreate(Target *parent, Core::Id id)
{ {
Q_UNUSED(id); if (id == BareMetalCustomRunConfiguration::runConfigId())
return new BareMetalCustomRunConfiguration(parent);
return new BareMetalRunConfiguration(parent, id, pathFromId(id)); return new BareMetalRunConfiguration(parent, id, pathFromId(id));
} }
RunConfiguration *BareMetalRunConfigurationFactory::doRestore(Target *parent, const QVariantMap &map) RunConfiguration *BareMetalRunConfigurationFactory::doRestore(Target *parent, const QVariantMap &map)
{ {
Q_UNUSED(map); if (idFromMap(map) == BareMetalCustomRunConfiguration::runConfigId())
return new BareMetalCustomRunConfiguration(parent);
return doCreate(parent,Core::Id(BareMetalRunConfiguration::IdPrefix)); return doCreate(parent,Core::Id(BareMetalRunConfiguration::IdPrefix));
} }
RunConfiguration *BareMetalRunConfigurationFactory::clone(Target *parent, RunConfiguration *source) RunConfiguration *BareMetalRunConfigurationFactory::clone(Target *parent, RunConfiguration *source)
{ {
QTC_ASSERT(canClone(parent, source), return 0); QTC_ASSERT(canClone(parent, source), return 0);
if (BareMetalCustomRunConfiguration *old = qobject_cast<BareMetalCustomRunConfiguration *>(source))
return new BareMetalCustomRunConfiguration(parent, old);
BareMetalRunConfiguration *old = static_cast<BareMetalRunConfiguration*>(source); BareMetalRunConfiguration *old = static_cast<BareMetalRunConfiguration*>(source);
return new BareMetalRunConfiguration(parent,old); return new BareMetalRunConfiguration(parent,old);
} }