2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2016-02-02 18:26:51 +01:00
|
|
|
#pragma once
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include "projectexplorer_export.h"
|
|
|
|
|
|
2020-06-26 13:59:38 +02:00
|
|
|
#include <utils/id.h>
|
2012-02-13 13:29:58 +01:00
|
|
|
#include <utils/persistentsettings.h>
|
|
|
|
|
|
2017-12-04 13:53:38 +01:00
|
|
|
#include <QDateTime>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QString>
|
|
|
|
|
#include <QStringList>
|
2009-09-29 11:39:55 +02:00
|
|
|
|
2016-03-25 20:00:19 +01:00
|
|
|
namespace Core { class IEditor; }
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
|
|
|
|
|
class Project;
|
2015-07-28 18:29:52 +02:00
|
|
|
class Target;
|
|
|
|
|
class BuildConfiguration;
|
2019-10-25 09:55:32 +02:00
|
|
|
class BuildSystem;
|
2015-07-28 18:29:52 +02:00
|
|
|
class DeployConfiguration;
|
2019-11-21 16:32:50 +01:00
|
|
|
class RunConfiguration;
|
2019-10-25 09:55:32 +02:00
|
|
|
|
2015-07-28 18:29:52 +02:00
|
|
|
enum class SetActive { Cascade, NoCascade };
|
|
|
|
|
|
2009-01-20 17:14:00 +01:00
|
|
|
class PROJECTEXPLORER_EXPORT SessionManager : public QObject
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2016-04-13 15:52:14 +02:00
|
|
|
explicit SessionManager(QObject *parent = nullptr);
|
2016-02-02 18:26:51 +01:00
|
|
|
~SessionManager() override;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-10-09 16:46:13 +02:00
|
|
|
static SessionManager *instance();
|
2013-09-05 11:46:07 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
// higher level session management
|
2013-09-05 11:46:07 +02:00
|
|
|
static QString activeSession();
|
|
|
|
|
static QString lastSession();
|
2020-01-07 12:34:31 +01:00
|
|
|
static QString startupSession();
|
2013-09-05 11:46:07 +02:00
|
|
|
static QStringList sessions();
|
2016-09-23 19:14:50 +02:00
|
|
|
static QDateTime sessionDateTime(const QString &session);
|
2022-10-20 17:53:09 +02:00
|
|
|
static QDateTime lastActiveTime(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool createSession(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2019-05-09 16:21:42 +02:00
|
|
|
static bool confirmSessionDelete(const QStringList &sessions);
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool deleteSession(const QString &session);
|
2019-05-09 16:21:42 +02:00
|
|
|
static void deleteSessions(const QStringList &sessions);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool cloneSession(const QString &original, const QString &clone);
|
|
|
|
|
static bool renameSession(const QString &original, const QString &newName);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2019-12-12 11:27:22 +01:00
|
|
|
static bool loadSession(const QString &session, bool initial = false);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool save();
|
|
|
|
|
static void closeAllProjects();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static void addProject(Project *project);
|
|
|
|
|
static void removeProject(Project *project);
|
2017-09-29 12:50:19 +02:00
|
|
|
static void removeProjects(const QList<Project *> &remove);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static void setStartupProject(Project *startupProject);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static QList<Project *> dependencies(const Project *project);
|
|
|
|
|
static bool hasDependency(const Project *project, const Project *depProject);
|
|
|
|
|
static bool canAddDependency(const Project *project, const Project *depProject);
|
|
|
|
|
static bool addDependency(Project *project, Project *depProject);
|
|
|
|
|
static void removeDependency(Project *project, Project *depProject);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2015-07-28 18:29:52 +02:00
|
|
|
static bool isProjectConfigurationCascading();
|
|
|
|
|
static void setProjectConfigurationCascading(bool b);
|
|
|
|
|
|
|
|
|
|
static void setActiveTarget(Project *p, Target *t, SetActive cascade);
|
|
|
|
|
static void setActiveBuildConfiguration(Target *t, BuildConfiguration *bc, SetActive cascade);
|
|
|
|
|
static void setActiveDeployConfiguration(Target *t, DeployConfiguration *dc, SetActive cascade);
|
|
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
static Utils::FilePath sessionNameToFileName(const QString &session);
|
2013-09-05 11:46:07 +02:00
|
|
|
static Project *startupProject();
|
2019-10-25 09:55:32 +02:00
|
|
|
static Target *startupTarget();
|
|
|
|
|
static BuildSystem *startupBuildSystem();
|
2019-11-21 16:32:50 +01:00
|
|
|
static RunConfiguration *startupRunConfiguration();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2017-03-01 17:53:15 +01:00
|
|
|
static const QList<Project *> projects();
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool hasProjects();
|
2017-03-01 17:53:15 +01:00
|
|
|
static bool hasProject(Project *p);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static bool isDefaultVirgin();
|
|
|
|
|
static bool isDefaultSession(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// Let other plugins store persistent values within the session file
|
2013-09-05 11:46:07 +02:00
|
|
|
static void setValue(const QString &name, const QVariant &value);
|
|
|
|
|
static QVariant value(const QString &name);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// NBS rewrite projectOrder (dependency management)
|
2017-12-04 13:53:38 +01:00
|
|
|
static QList<Project *> projectOrder(const Project *project = nullptr);
|
2013-09-05 11:46:07 +02:00
|
|
|
|
2019-05-28 13:49:26 +02:00
|
|
|
static Project *projectForFile(const Utils::FilePath &fileName);
|
2021-05-07 16:10:07 +02:00
|
|
|
static Project *projectWithProjectFilePath(const Utils::FilePath &filePath);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static QStringList projectsForSessionName(const QString &session);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
static void reportProjectLoadingProgress();
|
|
|
|
|
static bool loadingSession();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
signals:
|
2019-10-25 09:55:32 +02:00
|
|
|
void targetAdded(ProjectExplorer::Target *target);
|
|
|
|
|
void targetRemoved(ProjectExplorer::Target *target);
|
2018-12-11 17:53:48 +01:00
|
|
|
void projectAdded(ProjectExplorer::Project *project);
|
|
|
|
|
void aboutToRemoveProject(ProjectExplorer::Project *project);
|
2012-04-16 19:18:26 +04:00
|
|
|
void projectDisplayNameChanged(ProjectExplorer::Project *project);
|
2008-12-02 12:01:29 +01:00
|
|
|
void projectRemoved(ProjectExplorer::Project *project);
|
|
|
|
|
|
|
|
|
|
void startupProjectChanged(ProjectExplorer::Project *project);
|
|
|
|
|
|
2012-02-10 12:46:33 +01:00
|
|
|
void aboutToUnloadSession(QString sessionName);
|
2011-11-09 17:03:00 +01:00
|
|
|
void aboutToLoadSession(QString sessionName);
|
2012-02-10 12:46:33 +01:00
|
|
|
void sessionLoaded(QString sessionName);
|
2008-12-02 12:01:29 +01:00
|
|
|
void aboutToSaveSession();
|
2009-08-06 15:31:32 +02:00
|
|
|
void dependencyChanged(ProjectExplorer::Project *a, ProjectExplorer::Project *b);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2021-11-23 17:04:13 +01:00
|
|
|
void sessionRenamed(const QString &oldName, const QString &newName);
|
|
|
|
|
void sessionRemoved(const QString &name);
|
|
|
|
|
|
|
|
|
|
// for tests only
|
2016-10-20 13:18:54 +02:00
|
|
|
void projectFinishedParsing(ProjectExplorer::Project *project);
|
|
|
|
|
|
2016-01-29 16:38:37 +02:00
|
|
|
private:
|
2020-06-26 13:59:38 +02:00
|
|
|
static void saveActiveMode(Utils::Id mode);
|
2013-09-05 11:46:07 +02:00
|
|
|
static void configureEditor(Core::IEditor *editor, const QString &fileName);
|
2018-05-25 17:06:42 +02:00
|
|
|
static void markSessionFileDirty();
|
2014-11-04 17:40:29 +01:00
|
|
|
static void configureEditors(Project *project);
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace ProjectExplorer
|