githandler.cpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. #include "githandler.h"
  2. #include <QDebug>
  3. #include <QUrl>
  4. #include <QFileSystemWatcher>
  5. #include <QGuiApplication>
  6. #include <QClipboard>
  7. #include <QtConcurrentRun>
  8. #include <qqml.h>
  9. #include <gitrepository.h>
  10. #include <gitbranch.h>
  11. #include <gitdiff.h>
  12. #include <commitmodel.h>
  13. #include <tagmodel.h>
  14. #include <git2.h>
  15. #include <colorhandler.h>
  16. #include <commitgraph.h>
  17. #include <graphpoint.h>
  18. #include <branchlistmodel.h>
  19. #include <taglistmodel.h>
  20. #include <gitconsole.h>
  21. #include <graphpoint.h>
  22. GitHandler::GitHandler() : QObject()
  23. ,m_repositories(new RepositoryModel(this))
  24. ,m_commits(nullptr)
  25. ,m_graph(nullptr)
  26. ,m_activeRepo(nullptr)
  27. ,m_activeDiff(nullptr)
  28. ,m_branchList(new BranchListModel(this))
  29. ,m_tagList(new TagListModel(this))
  30. ,m_activeRepoWatcher(new QFileSystemWatcher(this))
  31. ,m_console(new GitConsole(this))
  32. {
  33. git_libgit2_init();
  34. connect(&m_diffTask, &QFutureWatcher<GitDiff*>::finished, this, &GitHandler::onDiffReady);
  35. connect(&m_graphTask, &QFutureWatcher<CommitGraph*>::finished, this, &GitHandler::onGraphReady);
  36. connect(&m_graphTask, &QFutureWatcher<CommitGraph*>::started, this, &GitHandler::isBusyChanged);
  37. connect(&m_graphTask, &QFutureWatcher<CommitGraph*>::finished, this, &GitHandler::isBusyChanged);
  38. connect(&m_graphTask, &QFutureWatcher<CommitGraph*>::canceled, this, &GitHandler::isBusyChanged);
  39. connect(&m_graphTask, &QFutureWatcher<CommitGraph*>::paused, this, &GitHandler::isBusyChanged);
  40. connect(&m_graphTask, &QFutureWatcher<CommitGraph*>::resumed, this, &GitHandler::isBusyChanged);
  41. }
  42. GitHandler::~GitHandler()
  43. {
  44. git_libgit2_shutdown();
  45. }
  46. void GitHandler::open(const QUrl &url)
  47. {
  48. if(url.isLocalFile()) {
  49. open(url.toLocalFile());
  50. }
  51. }
  52. void GitHandler::open(const QString &path)
  53. {
  54. qDebug() << "path" << path;
  55. git_buf root = {0,0,0};
  56. if(git_repository_discover(&root, path.toUtf8().data(), 0, NULL) != 0) {
  57. qDebug() << lastError();
  58. return;
  59. }
  60. GitRepository* repo = new GitRepository(QString::fromUtf8(root.ptr, root.size));
  61. setActiveRepo(repo);
  62. m_repositories->addRepository(repo);
  63. }
  64. void GitHandler::activateRepository(int i)
  65. {
  66. GitRepository* repo = m_repositories->at(i);
  67. setActiveRepo(repo);
  68. m_repositories->setActiveRepositoryIndex(i);
  69. }
  70. void GitHandler::setActiveRepo(GitRepository* repo)
  71. {
  72. if(repo == nullptr || !repo->isValid()) {
  73. qDebug() << lastError();
  74. return;
  75. }
  76. if(m_activeRepo) {
  77. disconnect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, m_activeRepo, &GitRepository::readBranches);
  78. disconnect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, m_activeRepo, &GitRepository::readRemotes);
  79. disconnect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, m_activeRepo, &GitRepository::readTags);
  80. disconnect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, this, &GitHandler::updateModels);
  81. m_activeRepoWatcher->removePath(m_activeRepo->root());
  82. disconnect(m_activeRepo, &GitRepository::branchesChanged, this, &GitHandler::updateModels);
  83. }
  84. m_activeRepo = repo;
  85. ColorHandler::instance().updateColors(m_activeRepo);
  86. m_constantHead = m_activeRepo->head();
  87. m_console->setRepository(m_activeRepo);
  88. connect(m_activeRepo, &GitRepository::branchesChanged, this, &GitHandler::updateModels);
  89. updateModels();
  90. m_activeRepoWatcher->addPath(m_activeRepo->root());
  91. activeRepoChanged(m_activeRepo);
  92. }
  93. QString GitHandler::lastError() const
  94. {
  95. const git_error *e = giterr_last();
  96. if(e) {
  97. return QString("(%1): %2").arg(e->klass).arg(e->message);
  98. giterr_clear();
  99. }
  100. giterr_clear();
  101. return QString();
  102. }
  103. void GitHandler::diff(GitCommit* a, GitCommit* b)
  104. {
  105. if(!m_activeDiff.isNull()) {
  106. m_activeDiff->deleteLater();
  107. }
  108. Q_ASSERT_X(a->repository() == b->repository(), "GitHandler", "Cross repository diff requested");
  109. if(m_diffTask.isRunning()) {
  110. m_diffTask.cancel();
  111. }
  112. qDebug() << "Diff start thread: " << QThread::currentThreadId();
  113. QFuture<GitDiff*> future = QtConcurrent::run(&GitDiff::diff, a, b);
  114. m_diffTask.setFuture(future);
  115. }
  116. void GitHandler::diff()
  117. {
  118. if(!m_activeDiff.isNull()) {
  119. m_activeDiff->deleteLater();
  120. }
  121. GitCommit* commit = GitCommit::fromOid(activeRepo()->head());
  122. QFuture<GitDiff*> future = QtConcurrent::run(&GitDiff::diff, commit);
  123. m_diffTask.setFuture(future);
  124. }
  125. void GitHandler::diffReset()
  126. {
  127. delete m_activeDiff;
  128. }
  129. void GitHandler::onDiffReady()
  130. {
  131. setActiveDiff(m_diffTask.result());
  132. }
  133. void GitHandler::setActiveDiff(GitDiff* activeDiff)
  134. {
  135. if (m_activeDiff == activeDiff)
  136. return;
  137. m_activeDiff = activeDiff;
  138. emit activeDiffChanged(activeDiff);
  139. }
  140. GitDiff* GitHandler::activeDiff() const
  141. {
  142. return m_activeDiff.data();
  143. }
  144. void GitHandler::pull() const
  145. {
  146. // git_remote_fetch(m_activeRepo->remote)
  147. }
  148. void GitHandler::updateModels()
  149. {
  150. if(!m_activeRepo) {
  151. return;
  152. }
  153. BranchContainer &branches = m_activeRepo->branches();
  154. m_activeRepo->updateHead();
  155. m_graphTask.cancel();
  156. m_graphTask.setFuture(QtConcurrent::run(&GitHandler::updateGraph, m_activeRepo->head(), branches));
  157. m_branchList->reset(branches.values());
  158. m_tagList->reset(m_activeRepo->tags().values());
  159. }
  160. void GitHandler::copy(const QString& sha1)
  161. {
  162. QGuiApplication::clipboard()->setText(sha1);
  163. }
  164. CommitGraph* GitHandler::updateGraph(const GitOid &head, const BranchContainer &branches)
  165. {
  166. CommitGraph* graph = new CommitGraph();
  167. bool headIsBranch = false;
  168. //TODO: Need to think about constant head more deeply
  169. // foreach(GitBranch* branch, branches) {
  170. // if(branch->oid() == m_constantHead) {
  171. // graph->addHead(branch);
  172. // headIsBranch = true;
  173. // break;
  174. // }
  175. // }
  176. if(!headIsBranch) {
  177. graph->addHead(head);
  178. }
  179. foreach(GitBranch* branch, branches) {
  180. qDebug() << "Next head " << branch->fullName();
  181. graph->addHead(branch);
  182. }
  183. graph->addWorkdir();
  184. graph->moveToThread(head.repository()->thread());
  185. return graph;
  186. }
  187. void GitHandler::onGraphReady()
  188. {
  189. m_graph->deleteLater();
  190. m_graph = m_graphTask.result();
  191. emit graphChanged(m_graph);
  192. m_commits = CommitModel::fromGraph(m_graph);
  193. emit commitsChanged(m_commits);
  194. }