githandler.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. typedef QHash<QString, QPointer<CommitModel>> CommitModelContainer;
  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. public:
  26. GitHandler();
  27. virtual ~GitHandler();
  28. Q_INVOKABLE GitRepository *open(const QString &path);
  29. Q_INVOKABLE GitRepository *open(const QUrl &url);
  30. Q_INVOKABLE void activateRepository(int i);
  31. Q_INVOKABLE void diff(GitCommit* a, GitCommit* b);
  32. Q_INVOKABLE void diff(); //Dif of workdir
  33. Q_INVOKABLE void diffReset();
  34. void onDiffReady();
  35. Q_INVOKABLE void copy(const QString& sha1);
  36. RepositoryModel* repositories() const
  37. {
  38. return m_repositories;
  39. }
  40. CommitGraph* graph() const
  41. {
  42. return m_graph;
  43. }
  44. GitRepository* activeRepo() const
  45. {
  46. return m_activeRepo;
  47. }
  48. GitDiff* activeDiff() const;
  49. CommitModel* commits() const
  50. {
  51. return m_commits;
  52. }
  53. void pull() const;
  54. BranchListModel* branchList() const
  55. {
  56. return m_branchList;
  57. }
  58. TagListModel* tagList() const
  59. {
  60. return m_tagList;
  61. }
  62. GitConsole* console() const
  63. {
  64. return m_console;
  65. }
  66. bool isBusy() const
  67. {
  68. return !m_graphTask.isCanceled() && !m_graphTask.isFinished();
  69. }
  70. public slots:
  71. void setActiveDiff(GitDiff* activeDiff);
  72. void setCommits(CommitModel* commits)
  73. {
  74. if (m_commits == commits)
  75. return;
  76. m_commits = commits;
  77. emit commitsChanged(commits);
  78. }
  79. void setActiveRepo(GitRepository* repo);
  80. signals:
  81. void activeRepoChanged(GitRepository* activeRepo);
  82. void repositoriesChanged(RepositoryModel* repositories);
  83. void graphChanged(CommitGraph* graph);
  84. void activeDiffChanged(GitDiff* activeDiff);
  85. void commitsChanged(CommitModel* commits);
  86. void isBusyChanged();
  87. protected:
  88. QString lastError() const;
  89. private:
  90. void updateModels();
  91. static CommitGraph* updateGraph(const GitOid& head, const BranchContainer &branches);
  92. void onGraphReady();
  93. void loadCachedRepos();
  94. RepositoryModel* m_repositories;
  95. CommitModel* m_commits;
  96. CommitGraph* m_graph;
  97. GitRepository* m_activeRepo;
  98. QPointer<GitDiff> m_activeDiff;
  99. BranchListModel* m_branchList;
  100. TagListModel* m_tagList;
  101. QFileSystemWatcher* m_activeRepoWatcher;
  102. GitConsole* m_console;
  103. GitOid m_constantHead;
  104. QFutureWatcher<GitDiff*> m_diffTask;
  105. QFutureWatcher<CommitGraph*> m_graphTask;
  106. bool m_isBusy;
  107. };
  108. #endif // GITHANDLER_H