2008-12-02 12:01:29 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-01-13 19:21:51 +01:00
|
|
|
** Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
|
|
|
|
** Non-Open Source Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Licensees may use this file in accordance with the Qt Beta Version
|
|
|
|
|
** License Agreement, Agreement version 2.2 provided with the Software or,
|
|
|
|
|
** alternatively, in accordance with the terms contained in a written
|
2008-12-02 14:17:16 +01:00
|
|
|
** agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
|
|
|
** Public License versions 2.0 or 3.0 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the packaging
|
|
|
|
|
** of this file. Please review the following information to ensure GNU
|
|
|
|
|
** General Public Licensing requirements will be met:
|
|
|
|
|
**
|
|
|
|
|
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
|
|
|
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2008-12-02 14:17:16 +01:00
|
|
|
** rights. These rights are described in the Nokia Qt GPL Exception
|
2008-12-16 17:20:00 +01:00
|
|
|
** version 1.3, included in the file GPL_EXCEPTION.txt in this package.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
|
|
|
|
***************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "projectfilewizardextension.h"
|
|
|
|
|
#include "projectexplorer.h"
|
|
|
|
|
#include "projectnodes.h"
|
|
|
|
|
#include "nodesvisitor.h"
|
|
|
|
|
#include "projectwizardpage.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/basefilewizard.h>
|
|
|
|
|
#include <coreplugin/dialogs/iwizard.h>
|
|
|
|
|
#include <coreplugin/filemanager.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/iversioncontrol.h>
|
|
|
|
|
#include <coreplugin/vcsmanager.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QVariant>
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QMultiMap>
|
|
|
|
|
|
|
|
|
|
enum { debugExtension = 0 };
|
|
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
|
|
|
|
|
typedef QList<ProjectNode *> ProjectNodeList;
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
// --------- AllProjectNodesVisitor. Figure out all projects.
|
|
|
|
|
// No sooner said then done.
|
|
|
|
|
class AllProjectNodesVisitor : public NodesVisitor
|
|
|
|
|
{
|
|
|
|
|
AllProjectNodesVisitor(ProjectNodeList &l) : m_projectNodes(l) {}
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
static ProjectNodeList allProjects(const ProjectExplorerPlugin *pe);
|
|
|
|
|
|
|
|
|
|
virtual void visitProjectNode(ProjectNode *node);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
ProjectNodeList &m_projectNodes;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ProjectNodeList AllProjectNodesVisitor::allProjects(const ProjectExplorerPlugin *pe)
|
|
|
|
|
{
|
|
|
|
|
ProjectNodeList rc;
|
|
|
|
|
AllProjectNodesVisitor visitor(rc);
|
|
|
|
|
pe->session()->sessionNode()->accept(&visitor);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AllProjectNodesVisitor::visitProjectNode(ProjectNode *node)
|
|
|
|
|
{
|
|
|
|
|
if (node->supportedActions().contains(ProjectNode::AddFile))
|
|
|
|
|
m_projectNodes << node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------- ProjectWizardContext
|
2009-01-20 15:31:33 +01:00
|
|
|
struct ProjectWizardContext
|
|
|
|
|
{
|
2008-12-02 12:01:29 +01:00
|
|
|
Core::IVersionControl *versionControl;
|
|
|
|
|
ProjectNodeList projects;
|
|
|
|
|
ProjectWizardPage *page;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// ---- ProjectFileWizardExtension
|
2009-01-20 15:31:33 +01:00
|
|
|
ProjectFileWizardExtension::ProjectFileWizardExtension()
|
|
|
|
|
: m_context(0)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectFileWizardExtension::~ProjectFileWizardExtension()
|
|
|
|
|
{
|
|
|
|
|
delete m_context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProjectFileWizardExtension::firstExtensionPageShown(const QList<Core::GeneratedFile> &files)
|
|
|
|
|
{
|
|
|
|
|
if (debugExtension)
|
|
|
|
|
qDebug() << Q_FUNC_INFO << files.size();
|
|
|
|
|
// Setup files display and version control depending on path
|
|
|
|
|
QStringList fileNames;
|
|
|
|
|
foreach (const Core::GeneratedFile &f, files)
|
|
|
|
|
fileNames.push_back(f.path());
|
|
|
|
|
|
|
|
|
|
const QString directory = QFileInfo(fileNames.front()).absolutePath();
|
2009-01-20 15:31:33 +01:00
|
|
|
m_context->versionControl = Core::ICore::instance()->vcsManager()->findVersionControlForDirectory(directory);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
m_context->page->setFilesDisplay(fileNames);
|
2008-12-03 15:04:51 +01:00
|
|
|
|
|
|
|
|
const bool canAddToVCS = m_context->versionControl && m_context->versionControl->supportsOperation(Core::IVersionControl::AddOperation);
|
|
|
|
|
if (m_context->versionControl)
|
|
|
|
|
m_context->page->setVCSDisplay(m_context->versionControl->name());
|
|
|
|
|
m_context->page->setAddToVersionControlEnabled(canAddToVCS);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static ProjectNode *currentProject()
|
|
|
|
|
{
|
|
|
|
|
if (Node *currentNode = ProjectExplorerPlugin::instance()->currentNode())
|
|
|
|
|
if (ProjectNode *currentProjectNode = qobject_cast<ProjectNode *>(currentNode))
|
|
|
|
|
return currentProjectNode;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<QWizardPage *> ProjectFileWizardExtension::extensionPages(const Core::IWizard *wizard)
|
|
|
|
|
{
|
|
|
|
|
if (!m_context)
|
|
|
|
|
m_context = new ProjectWizardContext;
|
|
|
|
|
// Init context with page and projects
|
|
|
|
|
m_context->page = new ProjectWizardPage;
|
|
|
|
|
m_context->versionControl = 0;
|
|
|
|
|
m_context->projects = AllProjectNodesVisitor::allProjects(ProjectExplorerPlugin::instance());
|
|
|
|
|
// Set up project list which remains the same over duration of wizard execution
|
|
|
|
|
// Disable "add project to project"
|
|
|
|
|
const bool hasProjects = !m_context->projects.empty();
|
|
|
|
|
if (hasProjects) {
|
|
|
|
|
// Compile list of names and find current project if there is one
|
|
|
|
|
QStringList projectNames;
|
|
|
|
|
ProjectNode *current = currentProject();
|
|
|
|
|
int currentIndex = -1;
|
|
|
|
|
const int count = m_context->projects.size();
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
|
ProjectNode *pn = m_context->projects.at(i);
|
2009-02-23 14:30:19 +01:00
|
|
|
projectNames.push_back(QFileInfo(pn->path()).fileName());
|
2008-12-02 12:01:29 +01:00
|
|
|
if (current == pn)
|
|
|
|
|
currentIndex = i;
|
|
|
|
|
}
|
|
|
|
|
m_context->page->setProjects(projectNames);
|
|
|
|
|
if (currentIndex != -1)
|
|
|
|
|
m_context->page->setCurrentProjectIndex(currentIndex);
|
|
|
|
|
}
|
|
|
|
|
m_context->page->setAddToProjectEnabled(hasProjects && wizard->kind() != Core::IWizard::ProjectWizard);
|
|
|
|
|
|
|
|
|
|
return QList<QWizardPage *>() << m_context->page;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProjectFileWizardExtension::process(const QList<Core::GeneratedFile> &files, QString *errorMessage)
|
|
|
|
|
{
|
|
|
|
|
typedef QMultiMap<FileType, QString> TypeFileMap;
|
|
|
|
|
// Add files to project && version control
|
|
|
|
|
if (m_context->page->addToProject()) {
|
|
|
|
|
ProjectNode *project = m_context->projects.at(m_context->page->currentProjectIndex());
|
|
|
|
|
// Split into lists by file type and add
|
|
|
|
|
TypeFileMap typeFileMap;
|
|
|
|
|
foreach (const Core::GeneratedFile &generatedFile, files) {
|
|
|
|
|
const QString path = generatedFile.path();
|
2009-01-20 15:31:33 +01:00
|
|
|
typeFileMap.insert(typeForFileName(Core::ICore::instance()->mimeDatabase(), path), path);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
foreach (FileType type, typeFileMap.uniqueKeys()) {
|
|
|
|
|
const QStringList files = typeFileMap.values(type);
|
|
|
|
|
if (!project->addFiles(type, files)) {
|
|
|
|
|
*errorMessage = tr("Failed to add one or more files to project\n'%1' (%2).").
|
|
|
|
|
arg(project->path(), files.join(QLatin1String(",")));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Add files to version control
|
|
|
|
|
if (m_context->page->addToVersionControl()) {
|
|
|
|
|
foreach (const Core::GeneratedFile &generatedFile, files) {
|
|
|
|
|
if (!m_context->versionControl->vcsAdd(generatedFile.path())) {
|
|
|
|
|
*errorMessage = tr("Failed to add '%1' to the version control system.").arg(generatedFile.path());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ProjectExplorer
|