2008-12-02 12:01:29 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
|
|
|
#include "session.h"
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "dependenciesdialog.h"
|
|
|
|
|
#include "project.h"
|
|
|
|
|
#include "projectexplorer.h"
|
|
|
|
|
#include "projectexplorerconstants.h"
|
|
|
|
|
#include "nodesvisitor.h"
|
|
|
|
|
#include "editorconfiguration.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/imode.h>
|
|
|
|
|
#include <coreplugin/filemanager.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
|
|
|
|
#include <coreplugin/progressmanager/progressmanagerinterface.h>
|
|
|
|
|
#include <coreplugin/modemanager.h>
|
|
|
|
|
|
|
|
|
|
#include <texteditor/itexteditor.h>
|
|
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/listutils.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QDebug>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <QtCore/QDir>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QFuture>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtGui/QMainWindow>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <QtGui/QMessageBox>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
bool debug = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* SessionFile definitions */
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class SessionFile
|
|
|
|
|
: public Core::IFile
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
SessionFile(Core::ICore *core);
|
|
|
|
|
|
|
|
|
|
bool load(const QString &fileName);
|
|
|
|
|
bool save(const QString &fileName = QString());
|
|
|
|
|
|
|
|
|
|
QString fileName() const;
|
|
|
|
|
void setFileName(const QString &fileName);
|
|
|
|
|
|
|
|
|
|
QString defaultPath() const;
|
|
|
|
|
QString suggestedFileName() const;
|
|
|
|
|
virtual QString mimeType() const;
|
|
|
|
|
|
|
|
|
|
bool isModified() const;
|
|
|
|
|
bool isReadOnly() const;
|
|
|
|
|
bool isSaveAsAllowed() const;
|
|
|
|
|
|
|
|
|
|
void modified(Core::IFile::ReloadBehavior *behavior);
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void sessionLoadingProgress();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const QString m_mimeType;
|
|
|
|
|
Core::ICore *m_core;
|
|
|
|
|
|
|
|
|
|
QString m_fileName;
|
|
|
|
|
QList<Project *> m_projects;
|
|
|
|
|
Project *m_startupProject;
|
|
|
|
|
QMap<QString, QStringList> m_depMap;
|
|
|
|
|
|
|
|
|
|
QMap<QString, QVariant> m_values;
|
|
|
|
|
|
|
|
|
|
QFutureInterface<void> future;
|
|
|
|
|
friend class ProjectExplorer::SessionManager;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ProjectExplorer
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using Internal::SessionFile;
|
|
|
|
|
using Internal::DependenciesDialog;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SessionFile::sessionLoadingProgress()
|
|
|
|
|
{
|
|
|
|
|
future.setProgressValue(future.progressValue() + 1);
|
|
|
|
|
QCoreApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SessionFile::SessionFile(Core::ICore *core) :
|
|
|
|
|
m_mimeType(QLatin1String(ProjectExplorer::Constants::SESSIONFILE_MIMETYPE)),
|
|
|
|
|
m_core(core),
|
|
|
|
|
m_startupProject(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SessionFile::mimeType() const
|
|
|
|
|
{
|
|
|
|
|
return m_mimeType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionFile::load(const QString &fileName)
|
|
|
|
|
{
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(!fileName.isEmpty(), return false);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionFile::load " << fileName;
|
|
|
|
|
|
|
|
|
|
m_fileName = fileName;
|
|
|
|
|
|
|
|
|
|
// NPE: Load the session in the background?
|
|
|
|
|
// NPE: Let FileManager monitor filename
|
|
|
|
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
|
|
|
|
|
|
|
|
|
PersistentSettingsReader reader;
|
|
|
|
|
if (!reader.load(m_fileName)) {
|
|
|
|
|
qWarning() << "SessionManager::load failed!" << fileName;
|
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_core->progressManager()->addTask(future.future(), tr("Session"),
|
2008-12-09 15:25:01 +01:00
|
|
|
QLatin1String("ProjectExplorer.SessionFile.Load"),
|
|
|
|
|
Core::ProgressManagerInterface::CloseOnSuccess);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
const QStringList &keys = reader.restoreValue(QLatin1String("valueKeys")).toStringList();
|
|
|
|
|
foreach (const QString &key, keys) {
|
|
|
|
|
QVariant value = reader.restoreValue("value-" + key);
|
|
|
|
|
m_values.insert(key, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList fileList =
|
|
|
|
|
reader.restoreValue(QLatin1String("ProjectList")).toStringList();
|
|
|
|
|
QString configDir = QFileInfo(m_core->settings()->fileName()).path();
|
|
|
|
|
QMutableStringListIterator it(fileList);
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
const QString &file = it.next();
|
|
|
|
|
if (QFileInfo(file).isRelative()) {
|
|
|
|
|
// We used to write relative paths into the session file
|
|
|
|
|
// relative to the session files, and those were stored in the
|
|
|
|
|
// config dir
|
|
|
|
|
it.setValue(configDir + "/" + file);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int openEditorsCount = reader.restoreValue(QLatin1String("OpenEditors")).toInt();
|
|
|
|
|
|
|
|
|
|
future.setProgressRange(0, fileList.count() + openEditorsCount + 2);
|
|
|
|
|
future.setProgressValue(1);
|
|
|
|
|
|
|
|
|
|
// indirectly adds projects to session
|
|
|
|
|
if (!fileList.isEmpty())
|
|
|
|
|
ProjectExplorerPlugin::instance()->openProjects(fileList);
|
|
|
|
|
|
|
|
|
|
sessionLoadingProgress();
|
|
|
|
|
|
|
|
|
|
// convert the relative paths in the dependency map to absolute paths
|
|
|
|
|
QMap<QString, QVariant> depMap = reader.restoreValue(QLatin1String("ProjectDependencies")).toMap();
|
|
|
|
|
QMap<QString, QVariant>::const_iterator i = depMap.constBegin();
|
|
|
|
|
while (i != depMap.constEnd()) {
|
|
|
|
|
const QString &key = i.key();
|
|
|
|
|
QStringList values;
|
|
|
|
|
foreach (const QString &value, i.value().toStringList()) {
|
|
|
|
|
values << value;
|
|
|
|
|
}
|
|
|
|
|
m_depMap.insert(key, values);
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// find and set the startup project
|
|
|
|
|
const QString startupProject = reader.restoreValue(QLatin1String("StartupProject")).toString();
|
|
|
|
|
if (!startupProject.isEmpty()) {
|
|
|
|
|
const QString startupProjectPath = startupProject;
|
|
|
|
|
foreach (Project *pro, m_projects) {
|
|
|
|
|
if (QDir::cleanPath(pro->file()->fileName()) == startupProjectPath) {
|
|
|
|
|
m_startupProject = pro;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!m_startupProject)
|
|
|
|
|
qWarning() << "Could not find startup project" << startupProjectPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const QVariant &editorsettings = reader.restoreValue(QLatin1String("EditorSettings"));
|
|
|
|
|
if (editorsettings.isValid()) {
|
|
|
|
|
connect(m_core->editorManager(), SIGNAL(editorOpened(Core::IEditor *)),
|
|
|
|
|
this, SLOT(sessionLoadingProgress()));
|
|
|
|
|
m_core->editorManager()->restoreState(
|
|
|
|
|
QByteArray::fromBase64(editorsettings.toByteArray()));
|
|
|
|
|
disconnect(m_core->editorManager(), SIGNAL(editorOpened(Core::IEditor *)),
|
|
|
|
|
this, SLOT(sessionLoadingProgress()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionFile::load finished" << fileName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
future.reportFinished();
|
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionFile::save(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
if (!fileName.isEmpty())
|
|
|
|
|
m_fileName = fileName;
|
|
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(!m_fileName.isEmpty(), return false);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionFile - saving " << m_fileName;
|
|
|
|
|
|
|
|
|
|
PersistentSettingsWriter writer;
|
|
|
|
|
|
|
|
|
|
// save the startup project
|
|
|
|
|
if (m_startupProject) {
|
|
|
|
|
writer.saveValue(QLatin1String("StartupProject"), m_startupProject->file()->fileName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList projectFiles;
|
|
|
|
|
foreach (Project *pro, m_projects) {
|
|
|
|
|
projectFiles << pro->file()->fileName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writer.saveValue(QLatin1String("ProjectList"), projectFiles);
|
|
|
|
|
|
|
|
|
|
QMap<QString, QVariant> depMap;
|
|
|
|
|
QMap<QString, QStringList>::const_iterator i = m_depMap.constBegin();
|
|
|
|
|
while (i != m_depMap.constEnd()) {
|
|
|
|
|
QString key = i.key();
|
|
|
|
|
QStringList values;
|
|
|
|
|
foreach (const QString &value, i.value()) {
|
|
|
|
|
values << value;
|
|
|
|
|
}
|
|
|
|
|
depMap.insert(key, values);
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
writer.saveValue(QLatin1String("ProjectDependencies"), QVariant(depMap));
|
|
|
|
|
|
|
|
|
|
writer.saveValue(QLatin1String("OpenEditors"),
|
|
|
|
|
m_core->editorManager()->openedEditors().count());
|
|
|
|
|
writer.saveValue(QLatin1String("EditorSettings"),
|
|
|
|
|
m_core->editorManager()->saveState().toBase64());
|
|
|
|
|
|
|
|
|
|
QMap<QString, QVariant>::const_iterator it, end;
|
|
|
|
|
end = m_values.constEnd();
|
|
|
|
|
QStringList keys;
|
|
|
|
|
for (it = m_values.constBegin(); it != end; ++it) {
|
|
|
|
|
writer.saveValue("value-" + it.key(), it.value());
|
|
|
|
|
keys << it.key();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writer.saveValue("valueKeys", keys);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (writer.save(m_fileName, "QtCreatorSession"))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SessionFile::fileName() const
|
|
|
|
|
{
|
|
|
|
|
return m_fileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionFile::setFileName(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
m_fileName = fileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionFile::isModified() const
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionFile::isReadOnly() const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionFile::isSaveAsAllowed() const
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionFile::modified(Core::IFile::ReloadBehavior *)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SessionFile::defaultPath() const
|
|
|
|
|
{
|
|
|
|
|
if (!m_projects.isEmpty()) {
|
|
|
|
|
const QFileInfo fi(m_projects.first()->file()->fileName());
|
|
|
|
|
return fi.absolutePath();
|
|
|
|
|
}
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SessionFile::suggestedFileName() const
|
|
|
|
|
{
|
|
|
|
|
if (m_startupProject)
|
|
|
|
|
return m_startupProject->name();
|
|
|
|
|
|
|
|
|
|
return tr("Untitled", "default file name to display");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Internal::SessionNodeImpl::SessionNodeImpl(SessionManager *manager)
|
|
|
|
|
: ProjectExplorer::SessionNode(manager->file()->fileName(), manager)
|
|
|
|
|
{
|
|
|
|
|
setFileName("session");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Internal::SessionNodeImpl::addProjectNode(ProjectNode *projectNode)
|
|
|
|
|
{
|
|
|
|
|
addProjectNodes(QList<ProjectNode*>() << projectNode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Internal::SessionNodeImpl::removeProjectNode(ProjectNode *projectNode)
|
|
|
|
|
{
|
|
|
|
|
removeProjectNodes(QList<ProjectNode*>() << projectNode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Internal::SessionNodeImpl::setFileName(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
setPath(fileName);
|
|
|
|
|
setFolderName(fileName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* --------------------------------- */
|
|
|
|
|
|
|
|
|
|
SessionManager::SessionManager(Core::ICore *core, QObject *parent)
|
|
|
|
|
: QObject(parent),
|
|
|
|
|
m_core(core),
|
|
|
|
|
m_file(new SessionFile(core)),
|
|
|
|
|
m_sessionNode(new Internal::SessionNodeImpl(this))
|
|
|
|
|
{
|
|
|
|
|
// Create qtcreator dir if it doesn't yet exist
|
|
|
|
|
QString configDir = QFileInfo(m_core->settings()->fileName()).path();
|
|
|
|
|
|
|
|
|
|
QFileInfo fi(configDir + "/qtcreator/");
|
|
|
|
|
if (!fi.exists()) {
|
|
|
|
|
QDir dir;
|
|
|
|
|
dir.mkpath(configDir + "/qtcreator");
|
|
|
|
|
|
|
|
|
|
// Move sessions to that directory
|
2008-12-09 11:07:24 +01:00
|
|
|
foreach (const QString &session, sessions()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
QFile file(configDir + "/" + session + ".qws");
|
|
|
|
|
if (file.exists())
|
2008-12-09 11:07:24 +01:00
|
|
|
if (file.copy(configDir + "/qtcreator/" + session + ".qws"))
|
2008-12-02 12:01:29 +01:00
|
|
|
file.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
connect(m_core->modeManager(), SIGNAL(currentModeChanged(Core::IMode*)),
|
|
|
|
|
this, SLOT(saveActiveMode(Core::IMode*)));
|
|
|
|
|
connect(core->editorManager(), SIGNAL(editorCreated(Core::IEditor *, QString)),
|
|
|
|
|
this, SLOT(setEditorCodec(Core::IEditor *, QString)));
|
|
|
|
|
connect(ProjectExplorerPlugin::instance(), SIGNAL(currentProjectChanged(ProjectExplorer::Project *)),
|
|
|
|
|
this, SLOT(updateWindowTitle()));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SessionManager::~SessionManager()
|
|
|
|
|
{
|
|
|
|
|
delete m_file;
|
|
|
|
|
emit sessionUnloaded();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool SessionManager::isDefaultVirgin() const
|
|
|
|
|
{
|
2008-12-09 11:07:24 +01:00
|
|
|
return isDefaultSession(m_sessionName)
|
2008-12-02 12:01:29 +01:00
|
|
|
&& projects().isEmpty()
|
2008-12-09 11:07:24 +01:00
|
|
|
&& m_core->editorManager()->openedEditors().isEmpty();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool SessionManager::isDefaultSession(const QString &session) const
|
|
|
|
|
{
|
2008-12-09 11:07:24 +01:00
|
|
|
return session == QLatin1String("default");
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SessionManager::saveActiveMode(Core::IMode *mode)
|
|
|
|
|
{
|
|
|
|
|
setValue(QLatin1String("ActiveMode"), mode->uniqueModeName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::clearProjectFileCache()
|
|
|
|
|
{
|
|
|
|
|
// If triggered by the fileListChanged signal of one project
|
|
|
|
|
// only invalidate cache for this project
|
|
|
|
|
Project *pro = qobject_cast<Project*>(sender());
|
|
|
|
|
if (pro)
|
|
|
|
|
m_projectFileCache.remove(pro);
|
|
|
|
|
else
|
|
|
|
|
m_projectFileCache.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::recursiveDependencyCheck(const QString &newDep, const QString &checkDep) const
|
|
|
|
|
{
|
|
|
|
|
if (newDep == checkDep)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
foreach (const QString &dependency, m_file->m_depMap.value(checkDep)) {
|
|
|
|
|
if (!recursiveDependencyCheck(newDep, dependency))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::hasDependency(Project *project, Project *depProject) const
|
|
|
|
|
{
|
|
|
|
|
const QString &proName = project->file()->fileName();
|
|
|
|
|
const QString &depName = depProject->file()->fileName();
|
|
|
|
|
|
|
|
|
|
const QStringList &proDeps = m_file->m_depMap.value(proName);
|
|
|
|
|
return proDeps.contains(depName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::canAddDependency(Project *project, Project *depProject) const
|
|
|
|
|
{
|
|
|
|
|
const QString &newDep = project->file()->fileName();
|
|
|
|
|
const QString &checkDep = depProject->file()->fileName();
|
|
|
|
|
|
|
|
|
|
return recursiveDependencyCheck(newDep, checkDep);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::addDependency(Project *project, Project *depProject)
|
|
|
|
|
{
|
|
|
|
|
const QString &proName = project->file()->fileName();
|
|
|
|
|
const QString &depName = depProject->file()->fileName();
|
|
|
|
|
|
|
|
|
|
// check if this dependency is valid
|
|
|
|
|
if (!recursiveDependencyCheck(proName, depName))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
QStringList proDeps = m_file->m_depMap.value(proName);
|
|
|
|
|
if (!proDeps.contains(depName)) {
|
|
|
|
|
proDeps.append(depName);
|
|
|
|
|
m_file->m_depMap[proName] = proDeps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::setStartupProject(Project *startupProject)
|
|
|
|
|
{
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << Q_FUNC_INFO << (startupProject ? startupProject->name() : "0");
|
|
|
|
|
|
|
|
|
|
if (startupProject) {
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(m_file->m_projects.contains(startupProject), return);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_file->m_startupProject = startupProject;
|
|
|
|
|
emit startupProjectChanged(startupProject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Project *SessionManager::startupProject() const
|
|
|
|
|
{
|
|
|
|
|
return m_file->m_startupProject;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::removeDependency(Project *project,
|
|
|
|
|
Project *depProject)
|
|
|
|
|
{
|
|
|
|
|
const QString &proName = project->file()->fileName();
|
|
|
|
|
const QString &depName = depProject->file()->fileName();
|
|
|
|
|
|
|
|
|
|
QStringList proDeps = m_file->m_depMap.value(proName);
|
|
|
|
|
proDeps.removeAll(depName);
|
|
|
|
|
if (proDeps.isEmpty()) {
|
|
|
|
|
m_file->m_depMap.remove(proName);
|
|
|
|
|
} else {
|
|
|
|
|
m_file->m_depMap[proName] = proDeps;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::addProject(Project *project)
|
|
|
|
|
{
|
|
|
|
|
addProjects(QList<Project*>() << project);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::addProjects(const QList<Project*> &projects)
|
|
|
|
|
{
|
|
|
|
|
QList<Project*> clearedList;
|
|
|
|
|
foreach (Project *pro, projects) {
|
|
|
|
|
if (!m_file->m_projects.contains(pro)) {
|
|
|
|
|
clearedList.append(pro);
|
|
|
|
|
m_file->m_projects.append(pro);
|
|
|
|
|
m_sessionNode->addProjectNode(pro->rootProjectNode());
|
|
|
|
|
|
|
|
|
|
connect(pro, SIGNAL(fileListChanged()),
|
|
|
|
|
this, SLOT(clearProjectFileCache()));
|
|
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - adding project " << pro->name();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (Project *pro, clearedList) {
|
|
|
|
|
emit projectAdded(pro);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (clearedList.count() == 1)
|
|
|
|
|
emit singleProjectAdded(clearedList.first());
|
|
|
|
|
|
|
|
|
|
// maybe we have a new startup project?
|
|
|
|
|
if (!startupProject())
|
|
|
|
|
if (Project *newStartupProject = defaultStartupProject())
|
|
|
|
|
setStartupProject(newStartupProject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::removeProject(Project *project)
|
|
|
|
|
{
|
|
|
|
|
if (project == 0) {
|
|
|
|
|
qDebug() << "SessionManager::removeProject(0) ... THIS SHOULD NOT HAPPEN";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
removeProjects(QList<Project*>() << project);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::createImpl(const QString &fileName)
|
|
|
|
|
{
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(!fileName.isEmpty(), return false);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - creating new session " << fileName << " ...";
|
|
|
|
|
|
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
|
|
if (!m_file->fileName().isEmpty()) {
|
2008-12-09 15:25:01 +01:00
|
|
|
if (!save() || !clear())
|
2008-12-02 12:01:29 +01:00
|
|
|
success = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
|
delete m_file;
|
|
|
|
|
emit sessionUnloaded();
|
|
|
|
|
m_file = new SessionFile(m_core);
|
|
|
|
|
m_file->setFileName(fileName);
|
|
|
|
|
setStartupProject(defaultStartupProject());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - creating new session returns " << success;
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
emit sessionLoaded();
|
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::loadImpl(const QString &fileName)
|
|
|
|
|
{
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(!fileName.isEmpty(), return false);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - loading session " << fileName << " ...";
|
|
|
|
|
|
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
|
|
if (!m_file->fileName().isEmpty()) {
|
|
|
|
|
|
|
|
|
|
if (isDefaultVirgin()) {
|
|
|
|
|
// do not save initial and virgin default session
|
|
|
|
|
} else if (!save() || !clear()) {
|
|
|
|
|
success = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
|
delete m_file;
|
|
|
|
|
emit sessionUnloaded();
|
|
|
|
|
m_file = new SessionFile(m_core);
|
|
|
|
|
if (!m_file->load(fileName)) {
|
|
|
|
|
QMessageBox::warning(0, tr("Error while loading session"), \
|
|
|
|
|
tr("Could not load session %1").arg(fileName));
|
|
|
|
|
success = false;
|
|
|
|
|
}
|
|
|
|
|
setStartupProject(m_file->m_startupProject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
|
// restore the active mode
|
|
|
|
|
const QString &modeIdentifier = value(QLatin1String("ActiveMode")).toString();
|
2008-12-10 16:48:28 +01:00
|
|
|
if (!modeIdentifier.isEmpty()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
m_core->modeManager()->activateMode(modeIdentifier);
|
2008-12-10 16:48:28 +01:00
|
|
|
m_core->modeManager()->setFocusToCurrentMode();
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - loading session returned " << success;
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
emit sessionLoaded();
|
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::save()
|
|
|
|
|
{
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - saving session" << m_sessionName;
|
|
|
|
|
|
|
|
|
|
emit aboutToSaveSession();
|
|
|
|
|
|
|
|
|
|
bool result = m_file->save();
|
|
|
|
|
|
|
|
|
|
if (!result) {
|
|
|
|
|
QMessageBox::warning(0, tr("Error while saving session"),
|
|
|
|
|
tr("Could not save session to file %1").arg(m_file->fileName()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - saving session returned " << result;
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn bool SessionManager::clear()
|
|
|
|
|
|
|
|
|
|
Returns whether the clear operation has been not cancelled & all projects could be closed.
|
|
|
|
|
*/
|
|
|
|
|
bool SessionManager::clear()
|
|
|
|
|
{
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - clearing session ...";
|
|
|
|
|
|
|
|
|
|
bool cancelled;
|
|
|
|
|
QList<Project *> notClosed = requestCloseOfAllFiles(&cancelled);
|
|
|
|
|
|
|
|
|
|
bool success = !cancelled;
|
|
|
|
|
|
|
|
|
|
if (success) {
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - Removing projects ...";
|
|
|
|
|
|
|
|
|
|
QList<Project *> toClose;
|
|
|
|
|
foreach (Project *pro, projects()) {
|
|
|
|
|
if (!notClosed.contains(pro))
|
|
|
|
|
toClose << pro;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setStartupProject(0);
|
|
|
|
|
removeProjects(toClose);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!notClosed.isEmpty())
|
|
|
|
|
success = false;
|
|
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - clearing session result is " << success;
|
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::editDependencies()
|
|
|
|
|
{
|
|
|
|
|
DependenciesDialog dlg(0, this);
|
|
|
|
|
dlg.exec();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-05 15:58:19 +01:00
|
|
|
const QList<Project *> &SessionManager::projects() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return m_file->m_projects;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList SessionManager::dependencies(const QString &proName) const
|
|
|
|
|
{
|
|
|
|
|
QStringList result;
|
|
|
|
|
foreach (const QString &dep, m_file->m_depMap.value(proName))
|
|
|
|
|
result += dependencies(dep);
|
|
|
|
|
|
|
|
|
|
result << proName;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList SessionManager::dependenciesOrder() const
|
|
|
|
|
{
|
|
|
|
|
QList<QPair<QString, QStringList> > unordered;
|
|
|
|
|
QStringList ordered;
|
|
|
|
|
|
|
|
|
|
// copy the map to a temporary list
|
|
|
|
|
foreach (Project *pro, projects()) {
|
|
|
|
|
const QString &proName = pro->file()->fileName();
|
|
|
|
|
unordered << QPair<QString, QStringList>
|
|
|
|
|
(proName, m_file->m_depMap.value(proName));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (!unordered.isEmpty()) {
|
|
|
|
|
for (int i=(unordered.count()-1); i>=0; --i) {
|
|
|
|
|
if (unordered.at(i).second.isEmpty()) {
|
|
|
|
|
ordered << unordered.at(i).first;
|
|
|
|
|
unordered.removeAt(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// remove the handled projects from the dependency lists
|
|
|
|
|
// of the remaining unordered projects
|
|
|
|
|
for (int i = 0; i < unordered.count(); ++i) {
|
|
|
|
|
foreach (const QString &pro, ordered) {
|
|
|
|
|
QStringList depList = unordered.at(i).second;
|
|
|
|
|
depList.removeAll(pro);
|
|
|
|
|
unordered[i].second = depList;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ordered;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Project *SessionManager::defaultStartupProject() const
|
|
|
|
|
{
|
|
|
|
|
// Just take first one
|
|
|
|
|
foreach (Project *p, m_file->m_projects) {
|
|
|
|
|
if (p->isApplication())
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<Project *> SessionManager::projectOrder(Project *project) const
|
|
|
|
|
{
|
|
|
|
|
QList<Project *> result;
|
|
|
|
|
|
|
|
|
|
QStringList pros;
|
|
|
|
|
if (project) {
|
|
|
|
|
pros = dependencies(project->file()->fileName());
|
|
|
|
|
} else {
|
|
|
|
|
pros = dependenciesOrder();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (const QString &proFile, pros) {
|
|
|
|
|
foreach (Project *pro, projects()) {
|
|
|
|
|
if (pro->file()->fileName() == proFile) {
|
|
|
|
|
result << pro;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Project *SessionManager::projectForNode(Node *node) const
|
|
|
|
|
{
|
|
|
|
|
if (!node)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
Project *project = 0;
|
|
|
|
|
|
|
|
|
|
FolderNode *rootProjectNode = qobject_cast<FolderNode*>(node);
|
|
|
|
|
if (!rootProjectNode)
|
|
|
|
|
rootProjectNode = node->parentFolderNode();
|
|
|
|
|
while (rootProjectNode && rootProjectNode->parentFolderNode() != m_sessionNode)
|
|
|
|
|
rootProjectNode = rootProjectNode->parentFolderNode();
|
|
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(rootProjectNode, return 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QList<Project *> projectList = projects();
|
|
|
|
|
foreach (Project *p, projectList) {
|
|
|
|
|
if (p->rootProjectNode() == rootProjectNode) {
|
|
|
|
|
project = p;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return project;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Node *SessionManager::nodeForFile(const QString &fileName) const
|
|
|
|
|
{
|
|
|
|
|
Node *node = 0;
|
|
|
|
|
if (Project *project = projectForFile(fileName)) {
|
|
|
|
|
FindNodesForFileVisitor findNodes(fileName);
|
|
|
|
|
project->rootProjectNode()->accept(&findNodes);
|
|
|
|
|
|
|
|
|
|
foreach (Node *n, findNodes.nodes()) {
|
|
|
|
|
// prefer file nodes
|
|
|
|
|
if (!node || (node->nodeType() != FileNodeType && n->nodeType() == FileNodeType))
|
|
|
|
|
node = n;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return node;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Project *SessionManager::projectForFile(const QString &fileName) const
|
|
|
|
|
{
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager::projectForFile(" << fileName << ")";
|
|
|
|
|
|
2008-12-05 15:58:19 +01:00
|
|
|
const QList<Project *> &projectList = projects();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-05 15:58:19 +01:00
|
|
|
// Check current project first
|
|
|
|
|
Project *currentProject = ProjectExplorerPlugin::instance()->currentProject();
|
|
|
|
|
if (currentProject && projectContainsFile(currentProject, fileName))
|
|
|
|
|
return currentProject;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-05 15:58:19 +01:00
|
|
|
foreach (Project *p, projectList)
|
|
|
|
|
if (p != currentProject && projectContainsFile(p, fileName))
|
|
|
|
|
return p;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-05 15:58:19 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::projectContainsFile(Project *p, const QString &fileName) const
|
|
|
|
|
{
|
|
|
|
|
if (!m_projectFileCache.contains(p))
|
|
|
|
|
m_projectFileCache.insert(p, p->files(Project::AllFiles));
|
|
|
|
|
|
|
|
|
|
return m_projectFileCache.value(p).contains(fileName);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::setEditorCodec(Core::IEditor *editor, const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
if (TextEditor::ITextEditor *textEditor = qobject_cast<TextEditor::ITextEditor*>(editor))
|
|
|
|
|
if (Project *project = projectForFile(fileName))
|
|
|
|
|
textEditor->setTextCodec(project->editorConfiguration()->defaultTextCodec());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QList<Project *> SessionManager::requestCloseOfAllFiles(bool *cancelled)
|
|
|
|
|
{
|
|
|
|
|
*cancelled = false;
|
|
|
|
|
QList<Core::IFile*> filesToClose;
|
|
|
|
|
foreach (Project *pro, projects())
|
|
|
|
|
filesToClose << pro->file();
|
|
|
|
|
foreach (Core::IEditor *editor, m_core->editorManager()->openedEditors())
|
|
|
|
|
filesToClose << editor->file();
|
|
|
|
|
QList<Core::IFile*> notClosed;
|
|
|
|
|
if (!filesToClose.isEmpty())
|
|
|
|
|
notClosed = m_core->fileManager()->saveModifiedFiles(filesToClose, cancelled);
|
|
|
|
|
// close editors here by hand
|
|
|
|
|
if (!*cancelled) {
|
|
|
|
|
QList<Core::IEditor*> editorsToClose;
|
|
|
|
|
foreach (Core::IEditor *editor, m_core->editorManager()->openedEditors())
|
|
|
|
|
if (!notClosed.contains(editor->file()))
|
|
|
|
|
editorsToClose << editor;
|
|
|
|
|
m_core->editorManager()->closeEditors(editorsToClose, false);
|
|
|
|
|
// project files are closed/removed later (in this::clear)
|
|
|
|
|
}
|
|
|
|
|
return Core::Utils::qwConvertList<Project*>(notClosed);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core::IFile *SessionManager::file() const
|
|
|
|
|
{
|
|
|
|
|
return m_file;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::updateWindowTitle()
|
|
|
|
|
{
|
|
|
|
|
QString windowTitle = tr("Qt Creator");
|
|
|
|
|
if (!isDefaultSession(m_sessionName)) {
|
|
|
|
|
QString sessionName = m_sessionName;
|
|
|
|
|
if (sessionName.isEmpty())
|
|
|
|
|
sessionName = tr("Untitled");
|
|
|
|
|
windowTitle.prepend(sessionName + " - ");
|
|
|
|
|
} else {
|
|
|
|
|
if (Project *currentProject = ProjectExplorerPlugin::instance()->currentProject())
|
|
|
|
|
windowTitle.prepend(currentProject->name() + " - ");
|
|
|
|
|
}
|
|
|
|
|
m_core->mainWindow()->setWindowTitle(windowTitle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::updateName(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
m_sessionName = session;
|
|
|
|
|
QString sessionName = m_sessionName;
|
|
|
|
|
|
|
|
|
|
if (sessionName.isEmpty())
|
|
|
|
|
sessionName = tr("Untitled");
|
|
|
|
|
|
|
|
|
|
m_displayName = tr("Session (\'%1\')").arg(sessionName);
|
|
|
|
|
updateWindowTitle();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SessionManager::removeProjects(QList<Project *> remove)
|
|
|
|
|
{
|
|
|
|
|
QMap<QString, QStringList> resMap;
|
|
|
|
|
|
|
|
|
|
foreach (Project *pro, remove) {
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - emitting aboutToRemoveProject(" << pro->name() << ")";
|
|
|
|
|
emit aboutToRemoveProject(pro);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Clear m_modelProjectHash
|
|
|
|
|
|
|
|
|
|
// Delete projects
|
|
|
|
|
foreach (Project *pro, remove) {
|
2008-12-03 13:53:11 +01:00
|
|
|
pro->saveSettings();
|
2008-12-02 12:01:29 +01:00
|
|
|
m_file->m_projects.removeOne(pro);
|
|
|
|
|
|
|
|
|
|
if (pro == m_file->m_startupProject)
|
|
|
|
|
setStartupProject(0);
|
|
|
|
|
|
|
|
|
|
disconnect(pro, SIGNAL(fileListChanged()),
|
|
|
|
|
this, SLOT(clearProjectFileCache()));
|
|
|
|
|
m_projectFileCache.remove(pro);
|
|
|
|
|
|
|
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "SessionManager - emitting projectRemoved(" << pro->name() << ")";
|
|
|
|
|
m_sessionNode->removeProjectNode(pro->rootProjectNode());
|
|
|
|
|
emit projectRemoved(pro);
|
|
|
|
|
delete pro;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Refresh dependencies
|
|
|
|
|
QSet<QString> projectFiles;
|
|
|
|
|
foreach (Project *pro, projects()) {
|
|
|
|
|
if (!remove.contains(pro))
|
|
|
|
|
projectFiles.insert(pro->file()->fileName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSet<QString>::const_iterator i = projectFiles.begin();
|
|
|
|
|
while (i != projectFiles.end()) {
|
|
|
|
|
QStringList dependencies;
|
|
|
|
|
foreach (const QString &dependency, m_file->m_depMap.value(*i)) {
|
|
|
|
|
if (projectFiles.contains(dependency))
|
|
|
|
|
dependencies << dependency;
|
|
|
|
|
}
|
|
|
|
|
if (!dependencies.isEmpty())
|
|
|
|
|
resMap.insert(*i, dependencies);
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_file->m_depMap = resMap;
|
|
|
|
|
|
|
|
|
|
if (startupProject() == 0)
|
|
|
|
|
if (Project *newStartupProject = defaultStartupProject())
|
|
|
|
|
setStartupProject(newStartupProject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::setValue(const QString &name, const QVariant &value)
|
|
|
|
|
{
|
|
|
|
|
m_file->m_values.insert(name, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant SessionManager::value(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
QMap<QString, QVariant>::const_iterator it = m_file->m_values.find(name);
|
|
|
|
|
if (it != m_file->m_values.constEnd())
|
|
|
|
|
return *it;
|
|
|
|
|
else
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SessionManager::activeSession() const
|
|
|
|
|
{
|
|
|
|
|
return m_sessionName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList SessionManager::sessions() const
|
|
|
|
|
{
|
|
|
|
|
QStringList result = m_core->settings()->value("Sessions").toStringList();
|
|
|
|
|
|
|
|
|
|
if (!result.contains("default"))
|
|
|
|
|
result.prepend("default");
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SessionManager::sessionNameToFileName(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
QString sn = session;
|
|
|
|
|
return QFileInfo(m_core->settings()->fileName()).path() + "/qtcreator/" + sn + ".qws";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::createAndLoadNewDefaultSession()
|
|
|
|
|
{
|
|
|
|
|
updateName("default");
|
|
|
|
|
createImpl(sessionNameToFileName(m_sessionName));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::createSession(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
if (sessions().contains(session))
|
|
|
|
|
return false;
|
|
|
|
|
QStringList list = m_core->settings()->value("Sessions").toStringList();
|
|
|
|
|
list.append(session);
|
|
|
|
|
m_core->settings()->setValue("Sessions", list);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::deleteSession(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
QStringList list = m_core->settings()->value("Sessions").toStringList();
|
|
|
|
|
if (!list.contains(session))
|
|
|
|
|
return false;
|
|
|
|
|
list.removeOne(session);
|
|
|
|
|
m_core->settings()->setValue("Sessions", list);
|
|
|
|
|
QFile fi(sessionNameToFileName(session));
|
|
|
|
|
if (fi.exists())
|
|
|
|
|
return fi.remove();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::cloneSession(const QString &original, const QString &clone)
|
|
|
|
|
{
|
|
|
|
|
QStringList list = m_core->settings()->value("Sessions").toStringList();
|
|
|
|
|
list.append(clone);
|
|
|
|
|
|
|
|
|
|
if (!sessions().contains(original))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
QFile fi(sessionNameToFileName(original));
|
|
|
|
|
|
|
|
|
|
// If the file does not exist, we can still clone
|
|
|
|
|
if (!fi.exists() || fi.copy(sessionNameToFileName(clone))) {
|
|
|
|
|
m_core->settings()->setValue("Sessions", list);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool SessionManager::loadSession(const QString &session)
|
|
|
|
|
{
|
|
|
|
|
// Do nothing if we have that session already loaded,
|
|
|
|
|
// exception if the session is the default virgin session
|
|
|
|
|
// we still want to be able to load the default session
|
|
|
|
|
if (session == m_sessionName && !isDefaultVirgin())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
if (!sessions().contains(session))
|
|
|
|
|
return false;
|
|
|
|
|
QString fileName = sessionNameToFileName(session);
|
|
|
|
|
if (QFileInfo(fileName).exists()) {
|
|
|
|
|
if (loadImpl(fileName)) {
|
|
|
|
|
updateName(session);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// Create a new session with that name
|
2008-12-09 11:07:24 +01:00
|
|
|
if (!createImpl(sessionNameToFileName(session)))
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
updateName(session);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString SessionManager::lastSession() const
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = m_core->settings();
|
|
|
|
|
QString fileName = settings->value("ProjectExplorer/StartupSession").toString();
|
|
|
|
|
return QFileInfo(fileName).baseName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SessionNode *SessionManager::sessionNode() const
|
|
|
|
|
{
|
|
|
|
|
return m_sessionNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SessionManager::reportProjectLoadingProgress()
|
|
|
|
|
{
|
|
|
|
|
m_file->sessionLoadingProgress();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "session.moc"
|