Files
qt-creator/src/plugins/qt4projectmanager/qt4projectmanager.cpp

244 lines
7.0 KiB
C++
Raw Normal View History

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)
**
**
** 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
** 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
** rights. These rights are described in the Nokia Qt GPL Exception
** version 1.3, included in the file GPL_EXCEPTION.txt in this package.
**
***************************************************************************/
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#include "qt4projectmanager.h"
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#include "qt4projectmanagerconstants.h"
#include "qt4projectmanagerplugin.h"
#include "qt4nodes.h"
#include "qt4project.h"
#include "profilereader.h"
#include "qtversionmanager.h"
#include "qmakestep.h"
#include <extensionsystem/pluginmanager.h>
#include <coreplugin/icore.h>
2008-12-02 12:01:29 +01:00
#include <coreplugin/basefilewizard.h>
#include <coreplugin/messagemanager.h>
#include <coreplugin/uniqueidmanager.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/iversioncontrol.h>
#include <coreplugin/vcsmanager.h>
#include <projectexplorer/buildmanager.h>
2008-12-02 12:01:29 +01:00
#include <projectexplorer/project.h>
#include <projectexplorer/projectexplorerconstants.h>
2008-12-02 12:01:29 +01:00
#include <utils/listutils.h>
#include <QtCore/QCoreApplication>
#include <QtCore/QDir>
#include <QtCore/QFileInfo>
2008-12-02 12:01:29 +01:00
#include <QtCore/QLinkedList>
#include <QtCore/QVariant>
2008-12-02 12:01:29 +01:00
#include <QtGui/QFileDialog>
#include <QtGui/QMenu>
2008-12-02 12:01:29 +01:00
#include <QtGui/QMessageBox>
using namespace Qt4ProjectManager;
using namespace Qt4ProjectManager::Internal;
using ProjectExplorer::BuildStep;
using ProjectExplorer::FileType;
using ProjectExplorer::HeaderType;
using ProjectExplorer::SourceType;
using ProjectExplorer::FormType;
using ProjectExplorer::ResourceType;
using ProjectExplorer::UnknownFileType;
// Known file types of a Qt 4 project
static const char* qt4FileTypes[] = {
"CppHeaderFiles",
"CppSourceFiles",
"Qt4FormFiles",
"Qt4ResourceFiles"
};
2008-12-02 12:01:29 +01:00
Qt4Manager::Qt4Manager(Qt4ProjectManagerPlugin *plugin)
: m_mimeType(QLatin1String(Qt4ProjectManager::Constants::PROFILE_MIMETYPE)),
2008-12-02 12:01:29 +01:00
m_plugin(plugin),
m_projectExplorer(0),
m_contextProject(0),
m_languageID(0)
2008-12-02 12:01:29 +01:00
{
m_languageID = Core::ICore::instance()->uniqueIDManager()->
2008-12-02 12:01:29 +01:00
uniqueIdentifier(ProjectExplorer::Constants::LANG_CXX);
}
Qt4Manager::~Qt4Manager()
{
}
void Qt4Manager::registerProject(Qt4Project *project)
{
m_projects.append(project);
}
void Qt4Manager::unregisterProject(Qt4Project *project)
{
m_projects.removeOne(project);
}
void Qt4Manager::notifyChanged(const QString &name)
{
2008-12-09 11:07:24 +01:00
foreach (Qt4Project *pro, m_projects)
pro->notifyChanged(name);
}
2008-12-02 12:01:29 +01:00
void Qt4Manager::init()
{
m_projectExplorer = ExtensionSystem::PluginManager::instance()
->getObject<ProjectExplorer::ProjectExplorerPlugin>();
2008-12-02 12:01:29 +01:00
}
int Qt4Manager::projectContext() const
{
return m_plugin->projectContext();
}
int Qt4Manager::projectLanguage() const
{
return m_languageID;
}
QString Qt4Manager::mimeType() const
{
return m_mimeType;
}
ProjectExplorer::Project* Qt4Manager::openProject(const QString &fileName)
{
typedef QMultiMap<QString, QString> DependencyMap;
const QString dotSubDir = QLatin1String(".subdir");
const QString dotDepends = QLatin1String(".depends");
const QChar slash = QLatin1Char('/');
QString errorMessage;
Core::MessageManager *messageManager = Core::ICore::instance()->messageManager();
messageManager->displayStatusBarMessage(tr("Loading project %1 ...").arg(fileName), 50000);
2008-12-02 12:01:29 +01:00
// TODO Make all file paths relative & remove this hack
// We convert the path to an absolute one here because qt4project.cpp
// && profileevaluator use absolute/canonical file paths all over the place
// Correct fix would be to remove these calls ...
QString canonicalFilePath = QFileInfo(fileName).canonicalFilePath();
if (canonicalFilePath.isEmpty()) {
messageManager->printToOutputPane(tr("Failed opening project '%1': Project file does not exist").arg(canonicalFilePath));
messageManager->displayStatusBarMessage(tr("Failed opening project"), 5000);
2008-12-02 12:01:29 +01:00
return 0;
}
foreach (ProjectExplorer::Project *pi, projectExplorer()->session()->projects()) {
if (canonicalFilePath == pi->file()->fileName()) {
messageManager->printToOutputPane(tr("Failed opening project '%1': Project already open").arg(canonicalFilePath));
messageManager->displayStatusBarMessage(tr("Failed opening project"), 5000);
2008-12-02 12:01:29 +01:00
return 0;
}
}
messageManager->displayStatusBarMessage(tr("Opening %1 ...").arg(fileName));
2008-12-02 12:01:29 +01:00
QCoreApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
Qt4Project *pro = new Qt4Project(this, canonicalFilePath);
messageManager->displayStatusBarMessage(tr("Done opening project"), 5000);
2008-12-02 12:01:29 +01:00
return pro;
}
ProjectExplorer::ProjectExplorerPlugin *Qt4Manager::projectExplorer() const
{
return m_projectExplorer;
}
ProjectExplorer::Node *Qt4Manager::contextNode() const
{
return m_contextNode;
}
void Qt4Manager::setContextNode(ProjectExplorer::Node *node)
{
m_contextNode = node;
}
void Qt4Manager::setContextProject(ProjectExplorer::Project *project)
{
m_contextProject = project;
}
ProjectExplorer::Project *Qt4Manager::contextProject() const
{
return m_contextProject;
}
QtVersionManager *Qt4Manager::versionManager() const
{
return m_plugin->versionManager();
}
void Qt4Manager::runQMake()
{
runQMake(m_projectExplorer->currentProject());
}
void Qt4Manager::runQMakeContextMenu()
{
runQMake(m_contextProject);
}
void Qt4Manager::runQMake(ProjectExplorer::Project *p)
{
QMakeStep *qmakeStep = qobject_cast<Qt4Project *>(p)->qmakeStep();
//found qmakeStep, now use it
qmakeStep->setForced(true);
const QString &config = p->activeBuildConfiguration();
m_projectExplorer->buildManager()->appendStep(qmakeStep, config);
}
QString Qt4Manager::fileTypeId(ProjectExplorer::FileType type)
{
switch (type) {
case HeaderType:
return QLatin1String(qt4FileTypes[0]);
case SourceType:
return QLatin1String(qt4FileTypes[1]);
case FormType:
return QLatin1String(qt4FileTypes[2]);
case ResourceType:
return QLatin1String(qt4FileTypes[3]);
case UnknownFileType:
default:
break;
}
return QString();
}