Files
qt-creator/src/plugins/genericprojectmanager/genericprojectnodes.cpp

238 lines
7.1 KiB
C++
Raw Normal View History

2009-03-10 14:20:07 +01:00
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
2009-03-10 14:20:07 +01:00
**
** Contact: http://www.qt-project.org/
2009-03-10 14:20:07 +01:00
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** 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.
2009-03-10 14:20:07 +01:00
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** 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.
**
2009-03-10 14:20:07 +01:00
**
**************************************************************************/
#include "genericprojectnodes.h"
2009-03-12 15:07:54 +01:00
#include "genericproject.h"
#include <coreplugin/idocument.h>
2009-03-12 16:31:40 +01:00
#include <projectexplorer/projectexplorer.h>
#include <QFileInfo>
2009-03-10 14:20:07 +01:00
using namespace ProjectExplorer;
namespace GenericProjectManager {
namespace Internal {
2009-03-10 14:20:07 +01:00
GenericProjectNode::GenericProjectNode(GenericProject *project, Core::IDocument *projectFile)
: ProjectNode(projectFile->fileName()), m_project(project), m_projectFile(projectFile)
{
setDisplayName(QFileInfo(projectFile->fileName()).completeBaseName());
}
2009-03-10 14:20:07 +01:00
Core::IDocument *GenericProjectNode::projectFile() const
2011-04-12 08:20:54 +02:00
{
return m_projectFile;
}
2009-03-10 14:20:07 +01:00
QString GenericProjectNode::projectFilePath() const
2011-04-12 08:20:54 +02:00
{
return m_projectFile->fileName();
}
2009-03-10 14:20:07 +01:00
void GenericProjectNode::refresh()
{
// remove the existing nodes.
removeFileNodes(fileNodes(), this);
removeFolderNodes(subFolderNodes(), this);
//ProjectExplorerPlugin::instance()->setCurrentNode(0); // ### remove me
2009-03-12 16:31:40 +01:00
FileNode *projectFilesNode = new FileNode(m_project->filesFileName(),
2009-03-16 11:49:57 +01:00
ProjectFileType,
/* generated = */ false);
FileNode *projectIncludesNode = new FileNode(m_project->includesFileName(),
2009-03-16 11:49:57 +01:00
ProjectFileType,
/* generated = */ false);
FileNode *projectConfigNode = new FileNode(m_project->configFileName(),
2009-03-16 11:49:57 +01:00
ProjectFileType,
/* generated = */ false);
QStringList files = m_project->files();
files.removeAll(m_project->filesFileName());
files.removeAll(m_project->includesFileName());
files.removeAll(m_project->configFileName());
2009-03-16 11:49:57 +01:00
addFileNodes(QList<FileNode *>()
<< projectFilesNode
<< projectIncludesNode
<< projectConfigNode,
this);
QStringList filePaths;
QHash<QString, QStringList> filesInPath;
const QString base = QFileInfo(path()).absolutePath();
const QDir baseDir(base);
foreach (const QString &absoluteFileName, files) {
QFileInfo fileInfo(absoluteFileName);
const QString absoluteFilePath = fileInfo.path();
QString relativeFilePath;
if (absoluteFilePath.startsWith(base)) {
relativeFilePath = absoluteFilePath.mid(base.length() + 1);
} else {
// `file' is not part of the project.
relativeFilePath = baseDir.relativeFilePath(absoluteFilePath);
}
if (! filePaths.contains(relativeFilePath))
filePaths.append(relativeFilePath);
filesInPath[relativeFilePath].append(absoluteFileName);
}
FolderByName folderByName;
foreach (const QString &filePath, filePaths) {
QStringList components = filePath.split(QLatin1Char('/'));
FolderNode *folder = findOrCreateFolderByName(&folderByName, components, components.size());
QList<FileNode *> fileNodes;
foreach (const QString &file, filesInPath.value(filePath)) {
FileType fileType = SourceType; // ### FIXME
FileNode *fileNode = new FileNode(file, fileType, /*generated = */ false);
fileNodes.append(fileNode);
}
addFileNodes(fileNodes, folder);
}
}
FolderNode *GenericProjectNode::findOrCreateFolderByName
(FolderByName *folderByName, const QStringList &components, int end)
{
if (!end)
return 0;
QString folderName;
for (int i = 0; i < end; ++i) {
folderName.append(components.at(i));
folderName += QLatin1Char('/'); // ### FIXME
}
2009-03-13 15:12:54 +01:00
const QString component = components.at(end - 1);
if (component.isEmpty())
return this;
else if (FolderNode *folder = folderByName->value(folderName))
2009-03-13 15:12:54 +01:00
return folder;
const QString baseDir = QFileInfo(path()).path();
FolderNode *folder = new FolderNode(baseDir + QLatin1Char('/') + folderName);
folder->setDisplayName(component);
folderByName->insert(folderName, folder);
2009-03-13 15:12:54 +01:00
FolderNode *parent = findOrCreateFolderByName(folderByName, components, end - 1);
if (!parent)
2009-03-13 15:12:54 +01:00
parent = this;
addFolderNodes(QList<FolderNode*>() << folder, parent);
return folder;
}
bool GenericProjectNode::hasBuildTargets() const
2009-03-10 14:20:07 +01:00
{
return true;
}
QList<ProjectNode::ProjectAction> GenericProjectNode::supportedActions(Node *node) const
2009-03-10 14:20:07 +01:00
{
Q_UNUSED(node);
return QList<ProjectAction>()
<< AddNewFile
<< AddExistingFile
<< RemoveFile
<< Rename;
2009-03-10 14:20:07 +01:00
}
bool GenericProjectNode::canAddSubProject(const QString &proFilePath) const
{
Q_UNUSED(proFilePath)
return false;
}
2009-03-10 14:20:07 +01:00
bool GenericProjectNode::addSubProjects(const QStringList &proFilePaths)
{
Q_UNUSED(proFilePaths)
2009-03-10 14:20:07 +01:00
return false;
}
bool GenericProjectNode::removeSubProjects(const QStringList &proFilePaths)
{
Q_UNUSED(proFilePaths)
2009-03-10 14:20:07 +01:00
return false;
}
bool GenericProjectNode::addFiles(const FileType fileType,
2009-03-10 14:20:07 +01:00
const QStringList &filePaths, QStringList *notAdded)
{
Q_UNUSED(fileType)
Q_UNUSED(notAdded)
return m_project->addFiles(filePaths);
2009-03-10 14:20:07 +01:00
}
bool GenericProjectNode::removeFiles(const FileType fileType,
2009-03-10 14:20:07 +01:00
const QStringList &filePaths, QStringList *notRemoved)
{
Q_UNUSED(fileType)
Q_UNUSED(notRemoved)
return m_project->removeFiles(filePaths);
2009-03-10 14:20:07 +01:00
}
bool GenericProjectNode::deleteFiles(const FileType fileType,
const QStringList &filePaths)
{
Q_UNUSED(fileType)
Q_UNUSED(filePaths)
return false;
}
bool GenericProjectNode::renameFile(const FileType fileType,
2009-03-10 14:20:07 +01:00
const QString &filePath, const QString &newFilePath)
{
Q_UNUSED(fileType)
return m_project->renameFile(filePath, newFilePath);
2009-03-10 14:20:07 +01:00
}
QList<RunConfiguration *> GenericProjectNode::runConfigurationsFor(Node *node)
{
Q_UNUSED(node)
return QList<RunConfiguration *>();
}
} // namespace Internal
} // namespace GenericProjectManager