RedPanda-CPP/RedPandaIDE/project.h

323 lines
10 KiB
C
Raw Normal View History

2021-12-26 23:18:28 +08:00
/*
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2021-09-05 23:45:05 +08:00
#ifndef PROJECT_H
#define PROJECT_H
2021-09-11 09:21:44 +08:00
#include <QAbstractItemModel>
2022-10-01 08:54:44 +08:00
#include <QHash>
#include <QSet>
#include <QSortFilterProxyModel>
2021-09-05 23:45:05 +08:00
#include <memory>
2021-09-16 12:03:10 +08:00
#include "projectoptions.h"
#include "utils.h"
2021-09-05 23:45:05 +08:00
class Project;
class Editor;
2021-09-06 08:45:53 +08:00
class CppParser;
class EditorList;
class QFileSystemWatcher;
2021-09-06 08:45:53 +08:00
enum ProjectModelNodeType {
DUMMY_HEADERS_FOLDER,
DUMMY_SOURCES_FOLDER,
DUMMY_OTHERS_FOLDER,
Folder,
File
};
2022-10-01 08:54:44 +08:00
struct ProjectModelItemRecord {
ProjectModelNodeType type;
QString fullPath;
};
2022-02-08 00:24:08 +08:00
struct ProjectModelNode;
using PProjectModelNode = std::shared_ptr<ProjectModelNode>;
struct ProjectModelNode {
2021-09-07 00:32:16 +08:00
QString text;
2022-02-08 00:24:08 +08:00
std::weak_ptr<ProjectModelNode> parent;
2021-09-07 00:32:16 +08:00
int unitIndex;
int priority;
2022-02-08 00:24:08 +08:00
QList<PProjectModelNode> children;
ProjectModelNodeType folderNodeType;
2021-09-10 21:37:52 +08:00
int level;
2021-09-07 00:32:16 +08:00
};
2021-09-05 23:45:05 +08:00
class ProjectUnit {
public:
2021-09-07 00:32:16 +08:00
explicit ProjectUnit(Project* parent);
Project* parent() const;
void setParent(Project* newParent);
2021-09-05 23:45:05 +08:00
const QString &fileName() const;
void setFileName(QString newFileName);
2021-09-05 23:45:05 +08:00
bool isNew() const;
void setNew(bool newNew);
const QString &folder() const;
void setFolder(const QString &newFolder);
bool compile() const;
void setCompile(bool newCompile);
bool compileCpp() const;
void setCompileCpp(bool newCompileCpp);
bool overrideBuildCmd() const;
void setOverrideBuildCmd(bool newOverrideBuildCmd);
const QString &buildCmd() const;
void setBuildCmd(const QString &newBuildCmd);
bool link() const;
void setLink(bool newLink);
int priority() const;
void setPriority(int newPriority);
const QByteArray &encoding() const;
void setEncoding(const QByteArray &newEncoding);
2021-09-06 12:58:29 +08:00
bool modified() const;
2021-09-05 23:45:05 +08:00
void setModified(bool value);
bool save();
2022-02-08 00:24:08 +08:00
PProjectModelNode &node();
void setNode(const PProjectModelNode &newNode);
2021-09-07 10:28:40 +08:00
bool FileMissing() const;
void setFileMissing(bool newDontSave);
2022-10-01 08:54:44 +08:00
int id() const;
void setId(int newId);
2021-09-05 23:45:05 +08:00
private:
2021-09-07 00:32:16 +08:00
Project* mParent;
2021-09-05 23:45:05 +08:00
QString mFileName;
bool mNew;
QString mFolder;
bool mCompile;
bool mCompileCpp;
bool mOverrideBuildCmd;
QString mBuildCmd;
bool mLink;
int mPriority;
QByteArray mEncoding;
2022-02-08 00:24:08 +08:00
PProjectModelNode mNode;
bool mFileMissing;
2022-10-01 08:54:44 +08:00
int mId;
static int mIdGenerator;
2021-09-05 23:45:05 +08:00
};
2021-09-06 08:45:53 +08:00
using PProjectUnit = std::shared_ptr<ProjectUnit>;
class GitRepository;
class CustomFileIconProvider;
2022-02-08 00:24:08 +08:00
class ProjectModel : public QAbstractItemModel {
Q_OBJECT
public:
2022-02-08 00:24:08 +08:00
explicit ProjectModel(Project* project, QObject* parent=nullptr);
~ProjectModel();
2021-09-11 09:21:44 +08:00
void beginUpdate();
void endUpdate();
private:
Project* mProject;
int mUpdateCount;
CustomFileIconProvider* mIconProvider;
2021-09-11 09:21:44 +08:00
2021-09-11 09:21:44 +08:00
// QAbstractItemModel interface
public:
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
QModelIndex parent(const QModelIndex &child) const override;
int rowCount(const QModelIndex &parent) const override;
int columnCount(const QModelIndex &parent) const override;
QVariant data(const QModelIndex &index, int role) const override;
Qt::ItemFlags flags(const QModelIndex &index) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role) override;
QModelIndex getNodeIndex(ProjectModelNode *node) const;
2022-10-01 08:54:44 +08:00
QModelIndex getParentIndex(ProjectModelNode * node) const;
private:
// QAbstractItemModel interface
public:
bool canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const override;
2021-10-24 00:17:08 +08:00
Qt::DropActions supportedDropActions() const override;
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override;
QMimeData *mimeData(const QModelIndexList &indexes) const override;
Project *project() const;
2022-02-15 21:39:17 +08:00
CustomFileIconProvider *iconProvider() const;
2022-10-01 08:54:44 +08:00
// QAbstractItemModel interface
public:
bool insertRows(int row, int count, const QModelIndex &parent) override;
bool removeRows(int row, int count, const QModelIndex &parent) override;
};
class ProjectModelSortFilterProxy : public QSortFilterProxyModel
{
Q_OBJECT
public:
explicit ProjectModelSortFilterProxy(QObject *parent = nullptr);
// QSortFilterProxyModel interface
protected:
bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override;
2021-09-11 09:21:44 +08:00
};
2021-09-16 23:51:05 +08:00
class ProjectTemplate;
2021-09-05 23:45:05 +08:00
class Project : public QObject
{
Q_OBJECT
public:
explicit Project(const QString& filename, const QString& name,
EditorList* editorList,
QFileSystemWatcher* fileSystemWatcher,
QObject *parent = nullptr);
2021-09-11 18:42:49 +08:00
~Project();
2021-09-09 11:47:04 +08:00
QString directory() const;
QString executable() const;
2021-09-06 08:45:53 +08:00
QString makeFileName();
2021-09-09 11:47:04 +08:00
bool modified() const;
void setFileName(QString value);
2021-09-07 00:32:16 +08:00
void setModified(bool value);
2021-09-07 10:28:40 +08:00
void addFolder(const QString& s);
2021-09-07 00:32:16 +08:00
PProjectUnit addUnit(const QString& inFileName,
2022-02-08 00:24:08 +08:00
PProjectModelNode parentNode,
2021-09-07 00:32:16 +08:00
bool rebuild);
QString folder();
2021-09-12 22:45:00 +08:00
void buildPrivateResource(bool forceSave=false);
2022-10-01 08:54:44 +08:00
void closeUnit(int id);
2021-09-07 16:49:35 +08:00
void doAutoOpen();
2021-09-09 00:15:12 +08:00
bool fileAlreadyExists(const QString& s);
2022-05-12 15:28:08 +08:00
2022-10-01 08:54:44 +08:00
QString getNodePath(PProjectModelNode node);
2021-09-09 11:47:04 +08:00
int getUnitFromString(const QString& s);
2021-09-09 18:36:54 +08:00
void incrementBuildNumber();
2022-10-01 08:54:44 +08:00
2022-02-08 00:24:08 +08:00
PProjectUnit newUnit(PProjectModelNode parentNode,
2021-09-17 13:35:50 +08:00
const QString& customFileName="");
Editor* openUnit(int index, bool forceOpen=true);
Editor* unitEditor(const PProjectUnit& unit) const;
Editor* unitEditor(const ProjectUnit* unit) const;
2022-10-01 08:54:44 +08:00
Editor* unitEditor(int id) const {
PProjectUnit unit=mUnits.value(id,PProjectUnit());
if (!unit)
return nullptr;
2022-10-01 08:54:44 +08:00
return unitEditor(unit);
}
2022-10-01 08:54:44 +08:00
QList<PProjectUnit> unitList();
PProjectModelNode pointerToNode(ProjectModelNode * p, PProjectModelNode parent=PProjectModelNode());
2021-09-10 15:03:47 +08:00
void rebuildNodes();
2022-10-01 08:54:44 +08:00
bool removeUnit(int id, bool doClose, bool removeFile = false);
2022-02-08 00:24:08 +08:00
bool removeFolder(PProjectModelNode node);
2021-09-11 18:42:49 +08:00
void resetParserProjectFiles();
2021-09-10 21:37:52 +08:00
void saveAll(); // save [Project] and all [UnitX]
void saveLayout(); // save all [UnitX]
2021-09-10 23:41:38 +08:00
void saveOptions();
2022-10-01 08:54:44 +08:00
void renameUnit(int idx, const QString& sFileName);
2021-09-07 10:28:40 +08:00
bool saveUnits();
2022-04-08 21:15:10 +08:00
2022-10-01 08:54:44 +08:00
PProjectUnit findUnitById(int id);
PProjectUnit findUnit(const QString& filename);
PProjectUnit findUnit(const Editor* editor);
int findUnitId(const QString& fileName) const;
int findUnitId(const Editor* editor) const;
void associateEditor(Editor* editor);
void associateEditorToUnit(Editor* editor, PProjectUnit unit);
2022-05-12 15:28:08 +08:00
bool setCompileOption(const QString &key, const QString &value);
QString getCompileOption(const QString &key) const;
2022-05-12 15:28:08 +08:00
2021-09-10 23:41:38 +08:00
void updateFolders();
void setCompilerSet(int compilerSetIndex);
2021-09-09 00:15:12 +08:00
bool assignTemplate(const std::shared_ptr<ProjectTemplate> aTemplate, bool useCpp);
2022-08-07 21:41:57 +08:00
bool saveAsTemplate(const QString& templateFolder,
const QString& name,
const QString& description,
const QString& category);
2021-09-07 16:49:35 +08:00
std::shared_ptr<CppParser> cppParser();
2021-09-09 00:15:12 +08:00
const QString &filename() const;
2021-09-10 12:37:02 +08:00
const QString &name() const;
void setName(const QString &newName);
2022-02-08 00:24:08 +08:00
const PProjectModelNode &rootNode() const;
2021-09-10 12:37:02 +08:00
2021-09-14 17:33:47 +08:00
ProjectOptions &options();
2021-09-10 15:03:47 +08:00
2022-02-08 00:24:08 +08:00
ProjectModel* model() ;
2021-09-11 11:42:20 +08:00
ProjectModelType modelType() const;
void setModelType(ProjectModelType type);
EditorList *editorList() const;
QFileSystemWatcher *fileSystemWatcher() const;
QString fileSystemNodeFolderPath(const PProjectModelNode& node);
QStringList binDirs();
2021-09-05 23:45:05 +08:00
signals:
2021-09-07 10:28:40 +08:00
void nodesChanged();
void modifyChanged(bool value);
2021-09-07 00:32:16 +08:00
private:
void checkProjectFileForUpdate(SimpleIni& ini);
void createFolderNodes();
void createFileSystemFolderNodes();
void createFileSystemFolderNode(ProjectModelNodeType folderType, const QString& folderName, PProjectModelNode parent, const QSet<QString>& validFolders);
PProjectModelNode getParentFolderNode(const QString& filename);
PProjectModelNode findFolderNode(const QString& folderPath, ProjectModelNodeType nodeType);
PProjectModelNode folderNodeFromName(const QString& name);
void loadOptions(SimpleIni& ini);
void loadLayout(); // load all [UnitX]
void loadUnitLayout(Editor *e, int index); // load single [UnitX] cursor positions
2022-10-01 08:54:44 +08:00
PProjectModelNode makeNewFolderNode(
const QString& folderName,
PProjectModelNode newParent,
ProjectModelNodeType nodeType=ProjectModelNodeType::Folder,
int priority=0);
PProjectModelNode makeNewFileNode(
const QString& fileName,
int unitId,
int priority,
PProjectModelNode newParent);
PProjectModelNode makeProjectNode();
2021-09-07 00:32:16 +08:00
void open();
2022-02-08 00:24:08 +08:00
void removeFolderRecurse(PProjectModelNode node);
void updateFolderNode(PProjectModelNode node);
void updateCompilerSetType();
2021-09-06 08:45:53 +08:00
private:
2022-10-01 08:54:44 +08:00
QHash<int,PProjectUnit> mUnits;
2021-09-06 08:45:53 +08:00
ProjectOptions mOptions;
QString mFilename;
QString mName;
bool mModified;
QStringList mFolders;
std::shared_ptr<CppParser> mParser;
2022-02-08 00:24:08 +08:00
QList<PProjectModelNode> mFolderNodes;
PProjectModelNode mRootNode;
QHash<ProjectModelNodeType, PProjectModelNode> mSpecialNodes;
QHash<QString, PProjectModelNode> mFileSystemFolderNodes;
2022-02-08 00:24:08 +08:00
ProjectModel mModel;
EditorList *mEditorList;
QFileSystemWatcher* mFileSystemWatcher;
2021-09-05 23:45:05 +08:00
};
#endif // PROJECT_H