githandler.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #ifndef GITHANDLER_H
  2. #define GITHANDLER_H
  3. #include <QObject>
  4. #include <repositorymodel.h>
  5. #include <QFutureWatcher>
  6. class CommitModel;
  7. class CommitGraph;
  8. class BranchListModel;
  9. class TagListModel;
  10. class QFileSystemWatcher;
  11. class GitConsole;
  12. using CommitModelContainer = QHash<QString, QPointer<CommitModel>>;
  13. class GitHandler : public QObject
  14. {
  15. Q_OBJECT
  16. Q_PROPERTY(RepositoryModel* repositories READ repositories NOTIFY repositoriesChanged)
  17. Q_PROPERTY(CommitGraph* graph READ graph NOTIFY graphChanged)
  18. Q_PROPERTY(GitRepository* activeRepo READ activeRepo NOTIFY activeRepoChanged)
  19. Q_PROPERTY(GitDiff* activeDiff READ activeDiff WRITE setActiveDiff NOTIFY activeDiffChanged)
  20. Q_PROPERTY(CommitModel* commits READ commits WRITE setCommits NOTIFY commitsChanged)
  21. Q_PROPERTY(BranchListModel* branchList READ branchList CONSTANT)
  22. Q_PROPERTY(TagListModel* tagList READ tagList CONSTANT)
  23. Q_PROPERTY(GitConsole* console READ console CONSTANT)
  24. Q_PROPERTY(bool isBusy READ isBusy NOTIFY isBusyChanged)
  25. Q_PROPERTY(QUrl homePath READ homePath CONSTANT)
  26. public:
  27. GitHandler();
  28. virtual ~GitHandler();
  29. Q_INVOKABLE void open(const QString &path, bool activate = false);
  30. Q_INVOKABLE void open(const QUrl &url, bool activate = false);
  31. Q_INVOKABLE void activateRepository(int i);
  32. Q_INVOKABLE void diff(GitCommit* a, GitCommit* b);
  33. Q_INVOKABLE void diff(); //Dif of workdir
  34. Q_INVOKABLE void diffReset();
  35. void onDiffReady();
  36. Q_INVOKABLE void copy(const QString& sha1);
  37. RepositoryModel* repositories() const
  38. {
  39. return m_repositories;
  40. }
  41. CommitGraph* graph() const
  42. {
  43. return m_graph;
  44. }
  45. GitRepository* activeRepo() const
  46. {
  47. return m_activeRepo;
  48. }
  49. GitDiff* activeDiff() const;
  50. CommitModel* commits() const
  51. {
  52. return m_commits;
  53. }
  54. void pull() const;
  55. BranchListModel* branchList() const
  56. {
  57. return m_branchList;
  58. }
  59. TagListModel* tagList() const
  60. {
  61. return m_tagList;
  62. }
  63. GitConsole* console() const
  64. {
  65. return m_console;
  66. }
  67. bool isBusy() const
  68. {
  69. return !m_graphTask.isCanceled() && !m_graphTask.isFinished();
  70. }
  71. QUrl homePath() const
  72. {
  73. return m_homePath;
  74. }
  75. public slots:
  76. void setActiveDiff(GitDiff* activeDiff);
  77. void setCommits(CommitModel* commits)
  78. {
  79. if (m_commits == commits)
  80. return;
  81. m_commits = commits;
  82. emit commitsChanged(commits);
  83. }
  84. void setActiveRepo(GitRepository* repo);
  85. signals:
  86. void activeRepoChanged(GitRepository* activeRepo);
  87. void repositoriesChanged(RepositoryModel* repositories);
  88. void graphChanged(CommitGraph* graph);
  89. void activeDiffChanged(GitDiff* activeDiff);
  90. void commitsChanged(CommitModel* commits);
  91. void isBusyChanged();
  92. protected:
  93. QString lastError() const;
  94. private:
  95. void updateModels();
  96. static CommitGraph* updateGraph(const GitOid& head, const BranchContainer &branches);
  97. void onGraphReady();
  98. void loadCachedRepos();
  99. RepositoryModel* m_repositories;
  100. CommitModel* m_commits;
  101. CommitGraph* m_graph;
  102. GitRepository* m_activeRepo;
  103. QPointer<GitDiff> m_activeDiff;
  104. BranchListModel* m_branchList;
  105. TagListModel* m_tagList;
  106. QFileSystemWatcher* m_activeRepoWatcher;
  107. GitConsole* m_console;
  108. QFutureWatcher<GitDiff*> m_diffTask;
  109. QFutureWatcher<CommitGraph*> m_graphTask;
  110. bool m_isBusy;
  111. QUrl m_homePath;
  112. // GitOid m_constantHead; //TODO:
  113. };
  114. #endif // GITHANDLER_H