2013-01-30 18:19:31 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** 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 "qbsnodes.h"
|
|
|
|
|
|
|
|
|
|
#include "qbsproject.h"
|
2013-05-16 16:31:07 +02:00
|
|
|
#include "qbsrunconfiguration.h"
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-04-17 13:07:43 +02:00
|
|
|
#include <coreplugin/fileiconprovider.h>
|
2013-05-16 16:24:37 +02:00
|
|
|
#include <coreplugin/idocument.h>
|
2013-06-18 14:05:31 +02:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2013-05-16 16:31:07 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2013-04-17 13:07:43 +02:00
|
|
|
#include <qtsupport/qtsupportconstants.h>
|
2013-03-25 12:03:37 +01:00
|
|
|
#include <utils/hostosinfo.h>
|
2013-01-30 18:19:31 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
#include <qbs.h>
|
|
|
|
|
|
|
|
|
|
#include <QDir>
|
2013-04-17 13:07:43 +02:00
|
|
|
#include <QStyle>
|
2013-01-30 18:19:31 +01:00
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
|
// Helpers:
|
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
static QString displayNameFromPath(const QString &path, const QString &base)
|
|
|
|
|
{
|
|
|
|
|
QString dir = base;
|
|
|
|
|
if (!base.endsWith(QLatin1Char('/')))
|
|
|
|
|
dir.append(QLatin1Char('/'));
|
|
|
|
|
|
|
|
|
|
QString name = path;
|
2013-05-27 17:02:52 +02:00
|
|
|
if (name.startsWith(dir)) {
|
2013-05-17 13:16:09 +02:00
|
|
|
name = name.mid(dir.count());
|
2013-05-27 17:02:52 +02:00
|
|
|
} else {
|
|
|
|
|
QFileInfo fi = QFileInfo(path);
|
|
|
|
|
name = QCoreApplication::translate("Qbs::QbsProjectNode", "%1 in %2")
|
|
|
|
|
.arg(fi.fileName(), fi.absolutePath());
|
|
|
|
|
}
|
2013-05-17 13:16:09 +02:00
|
|
|
|
|
|
|
|
return name;
|
|
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
static QIcon generateIcon()
|
2013-04-17 13:07:43 +02:00
|
|
|
{
|
|
|
|
|
const QSize desiredSize = QSize(16, 16);
|
|
|
|
|
const QIcon projectBaseIcon(QString::fromLatin1(QtSupport::Constants::ICON_QT_PROJECT));
|
|
|
|
|
const QPixmap projectPixmap = Core::FileIconProvider::overlayIcon(QStyle::SP_DirIcon,
|
|
|
|
|
projectBaseIcon,
|
|
|
|
|
desiredSize);
|
|
|
|
|
|
|
|
|
|
QIcon result;
|
|
|
|
|
result.addPixmap(projectPixmap);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
namespace QbsProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2013-04-17 13:07:43 +02:00
|
|
|
QIcon QbsProjectNode::m_projectIcon = generateIcon();
|
2013-06-18 14:05:31 +02:00
|
|
|
QIcon QbsProductNode::m_productIcon = QIcon(QString::fromLatin1(ProjectExplorer::Constants::ICON_REBUILD_SMALL));
|
|
|
|
|
QIcon QbsGroupNode::m_groupIcon = QIcon(QString::fromLatin1(ProjectExplorer::Constants::ICON_BUILD_SMALL));
|
2013-04-17 13:07:43 +02:00
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
class FileTreeNode {
|
|
|
|
|
public:
|
2013-05-28 18:01:19 +02:00
|
|
|
explicit FileTreeNode(const QString &n = QString(), FileTreeNode *p = 0, bool f = false) :
|
|
|
|
|
parent(p), name(n), m_isFile(f)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
|
|
|
|
if (p)
|
|
|
|
|
p->children.append(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~FileTreeNode()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(children);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-28 18:01:19 +02:00
|
|
|
FileTreeNode *addPart(const QString &n, bool isFile)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
|
|
|
|
foreach (FileTreeNode *c, children) {
|
|
|
|
|
if (c->name == n)
|
|
|
|
|
return c;
|
|
|
|
|
}
|
2013-05-28 18:01:19 +02:00
|
|
|
return new FileTreeNode(n, this, isFile);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-05-28 18:01:19 +02:00
|
|
|
bool isFile() { return m_isFile; }
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-05-27 15:54:54 +02:00
|
|
|
static FileTreeNode *moveChildrenUp(FileTreeNode *node)
|
2013-04-16 16:19:11 +02:00
|
|
|
{
|
2013-05-27 15:54:54 +02:00
|
|
|
QTC_ASSERT(node, return 0);
|
2013-05-17 13:16:09 +02:00
|
|
|
|
|
|
|
|
FileTreeNode *newParent = node->parent;
|
2013-05-27 15:54:54 +02:00
|
|
|
if (!newParent)
|
|
|
|
|
return 0;
|
2013-05-17 13:16:09 +02:00
|
|
|
|
|
|
|
|
// disconnect node and parent:
|
|
|
|
|
node->parent = 0;
|
|
|
|
|
newParent->children.removeOne(node);
|
|
|
|
|
|
|
|
|
|
foreach (FileTreeNode *c, node->children) {
|
|
|
|
|
// update path, make sure there will be no / before "C:" on windows:
|
|
|
|
|
if (Utils::HostOsInfo::isWindowsHost() && node->name.isEmpty())
|
|
|
|
|
c->name = node->name;
|
|
|
|
|
else
|
|
|
|
|
c->name = node->name + QLatin1Char('/') + c->name;
|
|
|
|
|
|
|
|
|
|
newParent->children.append(c);
|
|
|
|
|
c->parent = newParent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete node
|
|
|
|
|
node->children.clear();
|
|
|
|
|
delete node;
|
2013-05-27 15:54:54 +02:00
|
|
|
return newParent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Moves the children of the node pointing to basedir to the root of the tree.
|
|
|
|
|
static void reorder(FileTreeNode *node, const QString &basedir)
|
|
|
|
|
{
|
|
|
|
|
QTC_CHECK(!basedir.isEmpty());
|
2013-05-28 18:01:19 +02:00
|
|
|
QString prefix = basedir;
|
|
|
|
|
if (basedir.startsWith(QLatin1Char('/')))
|
|
|
|
|
prefix = basedir.mid(1);
|
|
|
|
|
prefix.append(QLatin1Char('/'));
|
2013-05-27 15:54:54 +02:00
|
|
|
|
|
|
|
|
if (node->path() == basedir) {
|
|
|
|
|
// Find root node:
|
|
|
|
|
FileTreeNode *root = node;
|
|
|
|
|
while (root->parent)
|
|
|
|
|
root = root->parent;
|
|
|
|
|
|
|
|
|
|
foreach (FileTreeNode *c, node->children) {
|
|
|
|
|
// Update children names by prepending basedir
|
2013-05-28 18:01:19 +02:00
|
|
|
c->name = prefix + c->name;
|
2013-05-27 15:54:54 +02:00
|
|
|
// Update parent information:
|
|
|
|
|
c->parent = root;
|
|
|
|
|
|
|
|
|
|
root->children.append(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Clean up node:
|
|
|
|
|
node->children.clear();
|
|
|
|
|
node->parent->children.removeOne(node);
|
|
|
|
|
node->parent = 0;
|
|
|
|
|
delete node;
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (FileTreeNode *n, node->children)
|
|
|
|
|
reorder(n, basedir);
|
2013-05-17 13:16:09 +02:00
|
|
|
}
|
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
static void simplify(FileTreeNode *node)
|
|
|
|
|
{
|
|
|
|
|
foreach (FileTreeNode *c, node->children)
|
|
|
|
|
simplify(c);
|
|
|
|
|
|
2013-04-16 16:19:11 +02:00
|
|
|
if (!node->parent)
|
|
|
|
|
return;
|
|
|
|
|
|
2013-05-28 18:01:19 +02:00
|
|
|
if (node->children.isEmpty() && !node->isFile()) {
|
2013-05-27 15:54:54 +02:00
|
|
|
// Clean up empty folder nodes:
|
|
|
|
|
node->parent->children.removeOne(node);
|
|
|
|
|
node->parent = 0;
|
|
|
|
|
delete node;
|
|
|
|
|
} else if (node->children.count() == 1 && !node->children.at(0)->isFile()) {
|
|
|
|
|
// Compact folder nodes with one child only:
|
|
|
|
|
moveChildrenUp(node);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString path()
|
|
|
|
|
{
|
|
|
|
|
QString p = name;
|
|
|
|
|
FileTreeNode *node = parent;
|
|
|
|
|
while (node) {
|
2013-03-25 12:03:37 +01:00
|
|
|
if (!Utils::HostOsInfo::isWindowsHost() || !node->name.isEmpty())
|
|
|
|
|
p = node->name + QLatin1Char('/') + p;
|
2013-01-30 18:19:31 +01:00
|
|
|
node = node->parent;
|
|
|
|
|
}
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<FileTreeNode *> children;
|
|
|
|
|
FileTreeNode *parent;
|
|
|
|
|
QString name;
|
2013-05-28 18:01:19 +02:00
|
|
|
bool m_isFile;
|
2013-01-30 18:19:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
|
// QbsFileNode:
|
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
QbsFileNode::QbsFileNode(const QString &filePath, const ProjectExplorer::FileType fileType,
|
|
|
|
|
bool generated, int line) :
|
|
|
|
|
ProjectExplorer::FileNode(filePath, fileType, generated),
|
|
|
|
|
m_line(line)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
void QbsFileNode::setLine(int l)
|
|
|
|
|
{
|
|
|
|
|
m_line = l;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-05 15:50:24 +02:00
|
|
|
QString QbsFileNode::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return ProjectExplorer::FileNode::displayName() + QLatin1Char(':') + QString::number(m_line);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
bool QbsFileNode::update(const qbs::CodeLocation &loc)
|
|
|
|
|
{
|
|
|
|
|
const QString oldPath = path();
|
|
|
|
|
const int oldLine = line();
|
|
|
|
|
|
|
|
|
|
setPath(loc.fileName());
|
|
|
|
|
setLine(loc.line());
|
|
|
|
|
return (line() != oldLine || path() != oldPath);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
// QbsBaseProjectNode:
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
QbsBaseProjectNode::QbsBaseProjectNode(const QString &path) :
|
|
|
|
|
ProjectExplorer::ProjectNode(path)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::hasBuildTargets() const
|
|
|
|
|
{
|
|
|
|
|
foreach (ProjectNode *n, subProjectNodes())
|
|
|
|
|
if (n->hasBuildTargets())
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ProjectExplorer::ProjectNode::ProjectAction> QbsBaseProjectNode::supportedActions(ProjectExplorer::Node *node) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(node);
|
|
|
|
|
return QList<ProjectExplorer::ProjectNode::ProjectAction>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::canAddSubProject(const QString &proFilePath) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(proFilePath);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::addSubProjects(const QStringList &proFilePaths)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(proFilePaths);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::removeSubProjects(const QStringList &proFilePaths)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(proFilePaths);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::addFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths, QStringList *notAdded)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(fileType);
|
|
|
|
|
Q_UNUSED(filePaths);
|
|
|
|
|
Q_UNUSED(notAdded);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::removeFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths, QStringList *notRemoved)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(fileType);
|
|
|
|
|
Q_UNUSED(filePaths);
|
|
|
|
|
Q_UNUSED(notRemoved);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::deleteFiles(const ProjectExplorer::FileType fileType, const QStringList &filePaths)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(fileType);
|
|
|
|
|
Q_UNUSED(filePaths);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsBaseProjectNode::renameFile(const ProjectExplorer::FileType fileType, const QString &filePath, const QString &newFilePath)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(fileType);
|
|
|
|
|
Q_UNUSED(filePath);
|
|
|
|
|
Q_UNUSED(newFilePath);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ProjectExplorer::RunConfiguration *> QbsBaseProjectNode::runConfigurationsFor(ProjectExplorer::Node *node)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(node);
|
|
|
|
|
return QList<ProjectExplorer::RunConfiguration *>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
// QbsGroupNode:
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
2013-04-16 16:19:11 +02:00
|
|
|
QbsGroupNode::QbsGroupNode(const qbs::GroupData *grp, const QString &productPath) :
|
2013-01-30 18:19:31 +01:00
|
|
|
QbsBaseProjectNode(QString()),
|
2013-05-16 16:20:06 +02:00
|
|
|
m_qbsGroupData(0)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-04-17 13:07:43 +02:00
|
|
|
setIcon(m_groupIcon);
|
2013-05-17 13:16:09 +02:00
|
|
|
|
2013-05-24 16:20:10 +02:00
|
|
|
QbsFileNode *idx = new QbsFileNode(grp->location().fileName(),
|
2013-05-17 13:16:09 +02:00
|
|
|
ProjectExplorer::ProjectFileType, false,
|
2013-05-24 16:20:10 +02:00
|
|
|
grp->location().line());
|
2013-05-17 13:16:09 +02:00
|
|
|
addFileNodes(QList<ProjectExplorer::FileNode *>() << idx, this);
|
|
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
updateQbsGroupData(grp, productPath, true, true);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsGroupNode::isEnabled() const
|
|
|
|
|
{
|
2013-05-29 16:35:57 +02:00
|
|
|
if (!parentFolderNode() || !m_qbsGroupData)
|
|
|
|
|
return false;
|
|
|
|
|
return static_cast<QbsProductNode *>(parentFolderNode())->isEnabled()
|
|
|
|
|
&& m_qbsGroupData->isEnabled();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
void QbsGroupNode::updateQbsGroupData(const qbs::GroupData *grp, const QString &productPath,
|
|
|
|
|
bool productWasEnabled, bool productIsEnabled)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-05-29 16:35:57 +02:00
|
|
|
Q_ASSERT(grp);
|
|
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
if (grp == m_qbsGroupData && productPath == m_productPath)
|
2013-01-30 18:19:31 +01:00
|
|
|
return;
|
|
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
bool groupWasEnabled = productWasEnabled && m_qbsGroupData && m_qbsGroupData->isEnabled();
|
|
|
|
|
bool groupIsEnabled = productIsEnabled && grp->isEnabled();
|
|
|
|
|
bool updateExisting = groupWasEnabled != groupIsEnabled;
|
|
|
|
|
|
2013-04-16 16:19:11 +02:00
|
|
|
m_productPath = productPath;
|
2013-05-17 13:16:09 +02:00
|
|
|
m_qbsGroupData = grp;
|
2013-04-16 16:19:11 +02:00
|
|
|
|
2013-05-24 16:20:10 +02:00
|
|
|
setPath(grp->location().fileName());
|
2013-05-17 13:16:09 +02:00
|
|
|
setDisplayName(grp->name());
|
|
|
|
|
|
|
|
|
|
QbsFileNode *idx = 0;
|
|
|
|
|
foreach (ProjectExplorer::FileNode *fn, fileNodes()) {
|
|
|
|
|
idx = qobject_cast<QbsFileNode *>(fn);
|
|
|
|
|
if (idx)
|
|
|
|
|
break;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
2013-05-29 16:35:57 +02:00
|
|
|
if (idx->update(grp->location()) || updateExisting)
|
|
|
|
|
idx->emitNodeUpdated();
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
setupFiles(this, grp->allFilePaths(), productPath, updateExisting);
|
2013-04-16 16:35:53 +02:00
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
if (updateExisting)
|
|
|
|
|
emitNodeUpdated();
|
2013-04-16 16:35:53 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
void QbsGroupNode::setupFiles(QbsBaseProjectNode *root, const QStringList &files,
|
2013-05-29 16:35:57 +02:00
|
|
|
const QString &productPath, bool updateExisting)
|
2013-04-16 16:35:53 +02:00
|
|
|
{
|
2013-01-30 18:19:31 +01:00
|
|
|
// Build up a tree of nodes:
|
2013-05-17 13:16:09 +02:00
|
|
|
FileTreeNode tree;
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
foreach (const QString &path, files) {
|
2013-01-30 18:19:31 +01:00
|
|
|
QStringList pathSegments = path.split(QLatin1Char('/'), QString::SkipEmptyParts);
|
|
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
FileTreeNode *root = &tree;
|
2013-05-28 18:01:19 +02:00
|
|
|
while (!pathSegments.isEmpty()) {
|
|
|
|
|
bool isFile = pathSegments.count() == 1;
|
|
|
|
|
root = root->addPart(pathSegments.takeFirst(), isFile);
|
|
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-05-27 15:54:54 +02:00
|
|
|
FileTreeNode::reorder(&tree, productPath);
|
2013-05-17 13:16:09 +02:00
|
|
|
FileTreeNode::simplify(&tree);
|
|
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
setupFolder(root, &tree, productPath, updateExisting);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
void QbsGroupNode::setupFolder(ProjectExplorer::FolderNode *root,
|
2013-05-29 16:35:57 +02:00
|
|
|
const FileTreeNode *fileTree, const QString &baseDir,
|
|
|
|
|
bool updateExisting)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-05-17 13:16:09 +02:00
|
|
|
// We only need to care about FileNodes and FolderNodes here. Everything else is
|
|
|
|
|
// handled elsewhere.
|
|
|
|
|
// QbsGroupNodes are managed by the QbsProductNode.
|
|
|
|
|
// The buildsystem file is either managed by QbsProductNode or by updateQbsGroupData(...).
|
|
|
|
|
|
2013-04-16 16:19:11 +02:00
|
|
|
QList<ProjectExplorer::FileNode *> filesToRemove;
|
|
|
|
|
foreach (ProjectExplorer::FileNode *fn, root->fileNodes()) {
|
2013-05-17 13:16:09 +02:00
|
|
|
if (!qobject_cast<QbsFileNode *>(fn))
|
|
|
|
|
filesToRemove << fn;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
QList<ProjectExplorer::FileNode *> filesToAdd;
|
|
|
|
|
|
2013-04-16 16:19:11 +02:00
|
|
|
QList<ProjectExplorer::FolderNode *> foldersToRemove;
|
|
|
|
|
foreach (ProjectExplorer::FolderNode *fn, root->subFolderNodes()) {
|
2013-05-17 13:16:09 +02:00
|
|
|
if (fn->nodeType() == ProjectExplorer::ProjectNodeType)
|
|
|
|
|
continue; // Skip ProjectNodes mixed into the folders...
|
|
|
|
|
foldersToRemove.append(fn);
|
2013-04-16 16:19:11 +02:00
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-05-17 13:16:09 +02:00
|
|
|
foreach (FileTreeNode *c, fileTree->children) {
|
2013-01-30 18:19:31 +01:00
|
|
|
QString path = c->path();
|
2013-05-17 13:16:09 +02:00
|
|
|
|
|
|
|
|
// Handle files:
|
2013-01-30 18:19:31 +01:00
|
|
|
if (c->isFile()) {
|
|
|
|
|
ProjectExplorer::FileNode *fn = root->findFile(path);
|
|
|
|
|
if (fn) {
|
|
|
|
|
filesToRemove.removeOne(fn);
|
2013-05-29 16:35:57 +02:00
|
|
|
if (updateExisting)
|
|
|
|
|
fn->emitNodeUpdated();
|
2013-01-30 18:19:31 +01:00
|
|
|
} else {
|
|
|
|
|
fn = new ProjectExplorer::FileNode(path, ProjectExplorer::UnknownFileType, false);
|
|
|
|
|
filesToAdd.append(fn);
|
|
|
|
|
}
|
2013-04-16 16:19:11 +02:00
|
|
|
continue;
|
2013-01-30 18:19:31 +01:00
|
|
|
} else {
|
2013-05-17 13:16:09 +02:00
|
|
|
FolderNode *fn = root->findSubFolder(c->path());
|
|
|
|
|
if (!fn) {
|
|
|
|
|
fn = new FolderNode(c->path());
|
|
|
|
|
root->projectNode()->addFolderNodes(QList<FolderNode *>() << fn, root);
|
|
|
|
|
} else {
|
|
|
|
|
foldersToRemove.removeOne(fn);
|
2013-05-29 16:35:57 +02:00
|
|
|
if (updateExisting)
|
|
|
|
|
fn->emitNodeUpdated();
|
2013-05-17 13:16:09 +02:00
|
|
|
}
|
|
|
|
|
fn->setDisplayName(displayNameFromPath(c->path(), baseDir));
|
|
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
setupFolder(fn, c, c->path(), updateExisting);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
2013-05-17 13:16:09 +02:00
|
|
|
root->projectNode()->removeFileNodes(filesToRemove, root);
|
|
|
|
|
root->projectNode()->removeFolderNodes(foldersToRemove, root);
|
|
|
|
|
root->projectNode()->addFileNodes(filesToAdd, root);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
// QbsProductNode:
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
2013-06-21 15:09:01 +02:00
|
|
|
QbsProductNode::QbsProductNode(const qbs::ProductData &prd) :
|
|
|
|
|
QbsBaseProjectNode(prd.location().fileName())
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-04-17 13:07:43 +02:00
|
|
|
setIcon(m_productIcon);
|
2013-05-29 16:35:57 +02:00
|
|
|
|
2013-06-21 15:09:01 +02:00
|
|
|
ProjectExplorer::FileNode *idx = new QbsFileNode(prd.location().fileName(),
|
2013-05-29 16:35:57 +02:00
|
|
|
ProjectExplorer::ProjectFileType, false,
|
2013-06-21 15:09:01 +02:00
|
|
|
prd.location().line());
|
2013-05-29 16:35:57 +02:00
|
|
|
addFileNodes(QList<ProjectExplorer::FileNode *>() << idx, this);
|
|
|
|
|
|
2013-05-16 16:20:06 +02:00
|
|
|
setQbsProductData(prd);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QbsProductNode::isEnabled() const
|
|
|
|
|
{
|
2013-06-21 15:09:01 +02:00
|
|
|
return m_qbsProductData.isEnabled();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-06-21 15:09:01 +02:00
|
|
|
void QbsProductNode::setQbsProductData(const qbs::ProductData prd)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-05-16 16:20:06 +02:00
|
|
|
if (m_qbsProductData == prd)
|
2013-01-30 18:19:31 +01:00
|
|
|
return;
|
|
|
|
|
|
2013-06-21 15:09:01 +02:00
|
|
|
bool productWasEnabled = m_qbsProductData.isEnabled();
|
|
|
|
|
bool productIsEnabled = prd.isEnabled();
|
2013-05-29 16:35:57 +02:00
|
|
|
bool updateExisting = productWasEnabled != productIsEnabled;
|
|
|
|
|
|
2013-06-21 15:09:01 +02:00
|
|
|
setDisplayName(prd.name());
|
|
|
|
|
setPath(prd.location().fileName());
|
|
|
|
|
const QString &productPath = QFileInfo(prd.location().fileName()).absolutePath();
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-05-29 16:35:57 +02:00
|
|
|
// Find the QbsFileNode we added earlier:
|
2013-05-17 13:16:09 +02:00
|
|
|
QbsFileNode *idx = 0;
|
2013-05-29 16:35:57 +02:00
|
|
|
foreach (ProjectExplorer::FileNode *fn, fileNodes()) {
|
|
|
|
|
idx = qobject_cast<QbsFileNode *>(fn);
|
|
|
|
|
if (idx)
|
|
|
|
|
break;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
2013-06-21 15:09:01 +02:00
|
|
|
if (idx->update(prd.location()) || updateExisting)
|
2013-05-29 16:35:57 +02:00
|
|
|
idx->emitNodeUpdated();
|
2013-01-30 18:19:31 +01:00
|
|
|
|
|
|
|
|
QList<ProjectExplorer::ProjectNode *> toAdd;
|
|
|
|
|
QList<ProjectExplorer::ProjectNode *> toRemove = subProjectNodes();
|
|
|
|
|
|
2013-06-21 15:09:01 +02:00
|
|
|
foreach (const qbs::GroupData &grp, prd.groups()) {
|
|
|
|
|
if (grp.name() == prd.name() && grp.location() == prd.location()) {
|
2013-04-16 16:35:53 +02:00
|
|
|
// Set implicit product group right onto this node:
|
2013-05-29 16:35:57 +02:00
|
|
|
QbsGroupNode::setupFiles(this, grp.allFilePaths(), productPath, updateExisting);
|
2013-04-16 16:35:53 +02:00
|
|
|
continue;
|
|
|
|
|
}
|
2013-05-17 13:16:09 +02:00
|
|
|
QbsGroupNode *gn = findGroupNode(grp.name());
|
|
|
|
|
if (gn) {
|
|
|
|
|
toRemove.removeOne(gn);
|
2013-05-29 16:35:57 +02:00
|
|
|
gn->updateQbsGroupData(&grp, productPath, productWasEnabled, productIsEnabled);
|
2013-01-30 18:19:31 +01:00
|
|
|
} else {
|
2013-05-17 13:16:09 +02:00
|
|
|
gn = new QbsGroupNode(&grp, productPath);
|
|
|
|
|
toAdd.append(gn);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
addProjectNodes(toAdd);
|
|
|
|
|
removeProjectNodes(toRemove);
|
|
|
|
|
|
2013-05-16 16:20:06 +02:00
|
|
|
m_qbsProductData = prd;
|
2013-05-29 16:35:57 +02:00
|
|
|
if (updateExisting)
|
|
|
|
|
emitNodeUpdated();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-05-16 16:31:07 +02:00
|
|
|
QList<ProjectExplorer::RunConfiguration *> QbsProductNode::runConfigurationsFor(ProjectExplorer::Node *node)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(node);
|
|
|
|
|
QList<ProjectExplorer::RunConfiguration *> result;
|
|
|
|
|
QbsProjectNode *pn = qobject_cast<QbsProjectNode *>(projectNode());
|
2013-06-21 15:09:01 +02:00
|
|
|
if (!isEnabled() || !pn || pn->qbsProject()->targetExecutable(m_qbsProductData,
|
2013-05-24 16:20:10 +02:00
|
|
|
qbs::InstallOptions()).isEmpty()) {
|
2013-05-16 16:31:07 +02:00
|
|
|
return result;
|
2013-05-24 16:20:10 +02:00
|
|
|
}
|
2013-05-16 16:31:07 +02:00
|
|
|
|
|
|
|
|
foreach (ProjectExplorer::RunConfiguration *rc, pn->project()->activeTarget()->runConfigurations()) {
|
|
|
|
|
QbsRunConfiguration *qbsRc = qobject_cast<QbsRunConfiguration *>(rc);
|
|
|
|
|
if (!qbsRc)
|
|
|
|
|
continue;
|
2013-06-21 15:09:01 +02:00
|
|
|
if (qbsRc->qbsProduct() == qbsProductData().name())
|
2013-05-16 16:31:07 +02:00
|
|
|
result << qbsRc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
QbsGroupNode *QbsProductNode::findGroupNode(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
foreach (ProjectExplorer::ProjectNode *n, subProjectNodes()) {
|
|
|
|
|
QbsGroupNode *qn = static_cast<QbsGroupNode *>(n);
|
2013-05-16 16:20:06 +02:00
|
|
|
if (qn->qbsGroupData()->name() == name)
|
2013-01-30 18:19:31 +01:00
|
|
|
return qn;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
// QbsProjectNode:
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
2013-05-16 16:24:37 +02:00
|
|
|
QbsProjectNode::QbsProjectNode(QbsProject *project) :
|
|
|
|
|
QbsBaseProjectNode(project->document()->fileName()),
|
2013-06-21 15:09:01 +02:00
|
|
|
m_project(project), m_qbsProject(0)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-06-18 13:09:06 +02:00
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QbsProjectNode::QbsProjectNode(const QString &path) :
|
|
|
|
|
QbsBaseProjectNode(path),
|
2013-06-21 15:09:01 +02:00
|
|
|
m_project(0), m_qbsProject(0)
|
2013-06-18 13:09:06 +02:00
|
|
|
{
|
|
|
|
|
ctor();
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QbsProjectNode::~QbsProjectNode()
|
|
|
|
|
{
|
2013-05-16 16:24:37 +02:00
|
|
|
// do not delete m_project
|
2013-05-16 16:20:06 +02:00
|
|
|
delete m_qbsProject;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QbsProjectNode::update(const qbs::Project *prj)
|
2013-06-18 13:09:06 +02:00
|
|
|
{
|
2013-06-21 15:09:01 +02:00
|
|
|
update(prj ? prj->projectData() : qbs::ProjectData());
|
2013-06-18 13:09:06 +02:00
|
|
|
|
|
|
|
|
delete m_qbsProject;
|
|
|
|
|
m_qbsProject = prj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QbsProjectNode::update(const qbs::ProjectData &prjData)
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
|
|
|
|
QList<ProjectExplorer::ProjectNode *> toAdd;
|
|
|
|
|
QList<ProjectExplorer::ProjectNode *> toRemove = subProjectNodes();
|
|
|
|
|
|
2013-06-18 13:09:06 +02:00
|
|
|
foreach (const qbs::ProjectData &subData, prjData.subProjects()) {
|
|
|
|
|
QbsProjectNode *qn = findProjectNode(subData.name());
|
|
|
|
|
if (!qn) {
|
|
|
|
|
QbsProjectNode *subProject = new QbsProjectNode(prjData.location().fileName());
|
|
|
|
|
subProject->update(subData);
|
|
|
|
|
toAdd << subProject;
|
|
|
|
|
} else {
|
|
|
|
|
qn->update(subData);
|
|
|
|
|
toRemove.removeOne(qn);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-01-30 18:19:31 +01:00
|
|
|
|
2013-06-18 13:09:06 +02:00
|
|
|
foreach (const qbs::ProductData &prd, prjData.products()) {
|
|
|
|
|
QbsProductNode *qn = findProductNode(prd.name());
|
|
|
|
|
if (!qn) {
|
2013-06-21 15:09:01 +02:00
|
|
|
toAdd << new QbsProductNode(prd);
|
2013-06-18 13:09:06 +02:00
|
|
|
} else {
|
2013-06-21 15:09:01 +02:00
|
|
|
qn->setQbsProductData(prd);
|
2013-06-18 13:09:06 +02:00
|
|
|
toRemove.removeOne(qn);
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-18 13:09:06 +02:00
|
|
|
setDisplayName(prjData.name());
|
2013-01-30 18:19:31 +01:00
|
|
|
|
|
|
|
|
removeProjectNodes(toRemove);
|
|
|
|
|
addProjectNodes(toAdd);
|
2013-06-21 15:09:01 +02:00
|
|
|
|
|
|
|
|
m_qbsProjectData = prjData;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-05-16 16:24:37 +02:00
|
|
|
QbsProject *QbsProjectNode::project() const
|
|
|
|
|
{
|
2013-06-18 13:09:06 +02:00
|
|
|
if (!m_project && projectNode())
|
|
|
|
|
return static_cast<QbsProjectNode *>(projectNode())->project();
|
2013-05-16 16:24:37 +02:00
|
|
|
return m_project;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-16 16:20:06 +02:00
|
|
|
const qbs::Project *QbsProjectNode::qbsProject() const
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-06-18 13:09:06 +02:00
|
|
|
QbsProjectNode *parent = qobject_cast<QbsProjectNode *>(projectNode());
|
|
|
|
|
if (!m_qbsProject && parent != this)
|
|
|
|
|
return parent->qbsProject();
|
2013-05-16 16:20:06 +02:00
|
|
|
return m_qbsProject;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-06-21 15:09:01 +02:00
|
|
|
const qbs::ProjectData QbsProjectNode::qbsProjectData() const
|
2013-01-30 18:19:31 +01:00
|
|
|
{
|
2013-05-16 16:20:06 +02:00
|
|
|
return m_qbsProjectData;
|
2013-01-30 18:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
2013-06-18 13:09:06 +02:00
|
|
|
void QbsProjectNode::ctor()
|
|
|
|
|
{
|
|
|
|
|
setIcon(m_projectIcon);
|
|
|
|
|
addFileNodes(QList<ProjectExplorer::FileNode *>()
|
|
|
|
|
<< new ProjectExplorer::FileNode(path(), ProjectExplorer::ProjectFileType, false), this);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-30 18:19:31 +01:00
|
|
|
QbsProductNode *QbsProjectNode::findProductNode(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
foreach (ProjectExplorer::ProjectNode *n, subProjectNodes()) {
|
2013-06-18 13:09:06 +02:00
|
|
|
QbsProductNode *qn = qobject_cast<QbsProductNode *>(n);
|
2013-06-21 15:09:01 +02:00
|
|
|
if (qn && qn->qbsProductData().name() == name)
|
2013-06-18 13:09:06 +02:00
|
|
|
return qn;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QbsProjectNode *QbsProjectNode::findProjectNode(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
foreach (ProjectExplorer::ProjectNode *n, subProjectNodes()) {
|
|
|
|
|
QbsProjectNode *qn = qobject_cast<QbsProjectNode *>(n);
|
2013-06-21 15:09:01 +02:00
|
|
|
if (qn && qn->qbsProjectData().name() == name)
|
2013-01-30 18:19:31 +01:00
|
|
|
return qn;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QbsProjectManager
|