2009-05-04 12:19:22 +02:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-05-04 12:19:22 +02:00
|
|
|
**
|
|
|
|
** Commercial Usage
|
|
|
|
**
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
**
|
|
|
|
** 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.
|
|
|
|
**
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-06-17 00:01:27 +10:00
|
|
|
** contact the sales department at http://www.qtsoftware.com/contact.
|
2009-05-04 12:19:22 +02:00
|
|
|
**
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include "qmlprojectnodes.h"
|
2009-05-07 15:43:59 +02:00
|
|
|
#include "qmlprojectmanager.h"
|
2009-05-04 12:19:22 +02:00
|
|
|
#include "qmlproject.h"
|
|
|
|
|
|
|
|
#include <coreplugin/ifile.h>
|
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
|
|
|
|
#include <QFileInfo>
|
2009-05-08 13:00:05 +02:00
|
|
|
#include <QDir>
|
2009-05-04 12:19:22 +02:00
|
|
|
|
|
|
|
using namespace QmlProjectManager;
|
|
|
|
using namespace QmlProjectManager::Internal;
|
|
|
|
|
|
|
|
QmlProjectNode::QmlProjectNode(QmlProject *project, Core::IFile *projectFile)
|
|
|
|
: ProjectExplorer::ProjectNode(QFileInfo(projectFile->fileName()).absolutePath()),
|
|
|
|
m_project(project),
|
|
|
|
m_projectFile(projectFile)
|
|
|
|
{
|
|
|
|
setFolderName(QFileInfo(projectFile->fileName()).completeBaseName());
|
|
|
|
}
|
|
|
|
|
|
|
|
QmlProjectNode::~QmlProjectNode()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
Core::IFile *QmlProjectNode::projectFile() const
|
|
|
|
{ return m_projectFile; }
|
|
|
|
|
|
|
|
QString QmlProjectNode::projectFilePath() const
|
|
|
|
{ return m_projectFile->fileName(); }
|
|
|
|
|
|
|
|
void QmlProjectNode::refresh()
|
|
|
|
{
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
// remove the existing nodes.
|
|
|
|
removeFileNodes(fileNodes(), this);
|
|
|
|
removeFolderNodes(subFolderNodes(), this);
|
|
|
|
|
|
|
|
//ProjectExplorerPlugin::instance()->setCurrentNode(0); // ### remove me
|
|
|
|
|
|
|
|
FileNode *projectFilesNode = new FileNode(m_project->filesFileName(),
|
|
|
|
ProjectFileType,
|
|
|
|
/* generated = */ false);
|
|
|
|
|
|
|
|
QStringList files = m_project->files();
|
|
|
|
files.removeAll(m_project->filesFileName());
|
|
|
|
|
|
|
|
addFileNodes(QList<FileNode *>()
|
|
|
|
<< projectFilesNode,
|
|
|
|
this);
|
|
|
|
|
|
|
|
QStringList filePaths;
|
|
|
|
QHash<QString, QStringList> filesInPath;
|
|
|
|
|
|
|
|
foreach (const QString &absoluteFileName, files) {
|
|
|
|
QFileInfo fileInfo(absoluteFileName);
|
|
|
|
const QString absoluteFilePath = fileInfo.path();
|
|
|
|
|
|
|
|
if (! absoluteFilePath.startsWith(path()))
|
|
|
|
continue; // `file' is not part of the project.
|
|
|
|
|
|
|
|
const QString relativeFilePath = absoluteFilePath.mid(path().length() + 1);
|
|
|
|
|
|
|
|
if (! filePaths.contains(relativeFilePath))
|
|
|
|
filePaths.append(relativeFilePath);
|
|
|
|
|
|
|
|
filesInPath[relativeFilePath].append(absoluteFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (const QString &filePath, filePaths) {
|
|
|
|
FolderNode *folder = findOrCreateFolderByName(filePath);
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_folderByName.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::FolderNode *QmlProjectNode::findOrCreateFolderByName(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
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString component = components.at(end - 1);
|
|
|
|
|
|
|
|
if (component.isEmpty())
|
|
|
|
return this;
|
|
|
|
|
|
|
|
else if (FolderNode *folder = m_folderByName.value(folderName))
|
|
|
|
return folder;
|
|
|
|
|
|
|
|
FolderNode *folder = new FolderNode(component);
|
|
|
|
m_folderByName.insert(folderName, folder);
|
|
|
|
|
|
|
|
FolderNode *parent = findOrCreateFolderByName(components, end - 1);
|
|
|
|
if (! parent)
|
|
|
|
parent = this;
|
|
|
|
addFolderNodes(QList<FolderNode*>() << folder, parent);
|
|
|
|
|
|
|
|
return folder;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::FolderNode *QmlProjectNode::findOrCreateFolderByName(const QString &filePath)
|
|
|
|
{
|
|
|
|
QStringList components = filePath.split(QLatin1Char('/'));
|
|
|
|
return findOrCreateFolderByName(components, components.length());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlProjectNode::hasTargets() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QList<ProjectExplorer::ProjectNode::ProjectAction> QmlProjectNode::supportedActions() const
|
|
|
|
{
|
2009-05-07 15:43:59 +02:00
|
|
|
QList<ProjectAction> actions;
|
|
|
|
actions.append(AddFile);
|
|
|
|
return actions;
|
2009-05-04 12:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlProjectNode::addSubProjects(const QStringList &proFilePaths)
|
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(proFilePaths)
|
2009-05-04 12:19:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlProjectNode::removeSubProjects(const QStringList &proFilePaths)
|
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(proFilePaths)
|
2009-05-04 12:19:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-07 15:43:59 +02:00
|
|
|
bool QmlProjectNode::addFiles(const ProjectExplorer::FileType,
|
|
|
|
const QStringList &filePaths, QStringList *notAdded)
|
2009-05-04 12:19:22 +02:00
|
|
|
{
|
2009-05-08 15:36:53 +02:00
|
|
|
QDir projectDir = QFileInfo(projectFilePath()).dir();
|
2009-05-07 15:43:59 +02:00
|
|
|
|
|
|
|
QFile file(projectFilePath());
|
|
|
|
if (! file.open(QFile::WriteOnly | QFile::Append))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
QStringList failedFiles;
|
|
|
|
|
|
|
|
bool first = true;
|
|
|
|
foreach (const QString &filePath, filePaths) {
|
|
|
|
const QString rel = projectDir.relativeFilePath(filePath);
|
|
|
|
|
|
|
|
if (rel.isEmpty() || rel.startsWith(QLatin1Char('.'))) {
|
|
|
|
failedFiles.append(rel);
|
|
|
|
} else {
|
|
|
|
if (first) {
|
|
|
|
stream << endl;
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream << rel << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (notAdded)
|
|
|
|
*notAdded += failedFiles;
|
|
|
|
|
|
|
|
if (! first)
|
|
|
|
m_project->projectManager()->notifyChanged(projectFilePath());
|
|
|
|
|
|
|
|
return failedFiles.isEmpty();
|
2009-05-04 12:19:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlProjectNode::removeFiles(const ProjectExplorer::FileType fileType,
|
2009-05-07 15:43:59 +02:00
|
|
|
const QStringList &filePaths, QStringList *notRemoved)
|
2009-05-04 12:19:22 +02:00
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(fileType)
|
|
|
|
Q_UNUSED(filePaths)
|
|
|
|
Q_UNUSED(notRemoved)
|
2009-05-04 12:19:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool QmlProjectNode::renameFile(const ProjectExplorer::FileType fileType,
|
|
|
|
const QString &filePath, const QString &newFilePath)
|
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(fileType)
|
|
|
|
Q_UNUSED(filePath)
|
|
|
|
Q_UNUSED(newFilePath)
|
2009-05-04 12:19:22 +02:00
|
|
|
return false;
|
|
|
|
}
|