githandler.cpp 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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. if(m_activeRepo) {
  61. m_activeRepoWatcher->removePath(m_activeRepo->root());
  62. }
  63. m_activeRepo = new GitRepository(QString::fromUtf8(root.ptr, root.size));
  64. if(!m_activeRepo->isValid()) {
  65. qDebug() << lastError();
  66. return;
  67. }
  68. ColorHandler::instance().updateColors(m_activeRepo);
  69. m_constantHead = m_activeRepo->head();
  70. m_console->setRepository(m_activeRepo);
  71. connect(m_activeRepo, &GitRepository::branchesChanged, this, &GitHandler::updateModels);
  72. updateModels();
  73. m_activeRepoWatcher->addPath(m_activeRepo->root());
  74. connect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, m_activeRepo, &GitRepository::readBranches);
  75. connect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, m_activeRepo, &GitRepository::readRemotes);
  76. connect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, m_activeRepo, &GitRepository::readTags);
  77. connect(m_activeRepoWatcher, &QFileSystemWatcher::directoryChanged, this, &GitHandler::updateModels);
  78. //TODO: opened repositories configuraion TBD
  79. // m_repositories->add(m_activeRepo);
  80. }
  81. QString GitHandler::lastError() const
  82. {
  83. const git_error *e = giterr_last();
  84. if(e) {
  85. return QString("(%1): %2").arg(e->klass).arg(e->message);
  86. giterr_clear();
  87. }
  88. giterr_clear();
  89. return QString();
  90. }
  91. void GitHandler::diff(GitCommit* a, GitCommit* b)
  92. {
  93. if(!m_activeDiff.isNull()) {
  94. m_activeDiff->deleteLater();
  95. }
  96. Q_ASSERT_X(a->repository() == b->repository(), "GitHandler", "Cross repository diff requested");
  97. if(m_diffTask.isRunning()) {
  98. m_diffTask.cancel();
  99. }
  100. qDebug() << "Diff start thread: " << QThread::currentThreadId();
  101. QFuture<GitDiff*> future = QtConcurrent::run(&GitDiff::diff, a, b);
  102. m_diffTask.setFuture(future);
  103. }
  104. void GitHandler::diff()
  105. {
  106. if(!m_activeDiff.isNull()) {
  107. m_activeDiff->deleteLater();
  108. }
  109. GitCommit* commit = GitCommit::fromOid(activeRepo()->head());
  110. QFuture<GitDiff*> future = QtConcurrent::run(&GitDiff::diff, commit);
  111. m_diffTask.setFuture(future);
  112. }
  113. void GitHandler::diffReset()
  114. {
  115. delete m_activeDiff;
  116. }
  117. void GitHandler::onDiffReady()
  118. {
  119. setActiveDiff(m_diffTask.result());
  120. }
  121. void GitHandler::setActiveDiff(GitDiff* activeDiff)
  122. {
  123. if (m_activeDiff == activeDiff)
  124. return;
  125. m_activeDiff = activeDiff;
  126. emit activeDiffChanged(activeDiff);
  127. }
  128. GitDiff* GitHandler::activeDiff() const
  129. {
  130. return m_activeDiff.data();
  131. }
  132. void GitHandler::pull() const
  133. {
  134. // git_remote_fetch(m_activeRepo->remote)
  135. }
  136. void GitHandler::updateModels()
  137. {
  138. if(!m_activeRepo) {
  139. return;
  140. }
  141. BranchContainer &branches = m_activeRepo->branches();
  142. m_activeRepo->updateHead();
  143. m_graphTask.cancel();
  144. m_graphTask.setFuture(QtConcurrent::run(&GitHandler::updateGraph, m_activeRepo->head(), branches));
  145. m_branchList->reset(branches.values());
  146. m_tagList->reset(m_activeRepo->tags().values());
  147. }
  148. void GitHandler::copy(const QString& sha1)
  149. {
  150. QGuiApplication::clipboard()->setText(sha1);
  151. }
  152. CommitGraph* GitHandler::updateGraph(const GitOid &head, const BranchContainer &branches)
  153. {
  154. CommitGraph* graph = new CommitGraph();
  155. bool headIsBranch = false;
  156. //TODO: Need to think about constant head more deeply
  157. // foreach(GitBranch* branch, branches) {
  158. // if(branch->oid() == m_constantHead) {
  159. // graph->addHead(branch);
  160. // headIsBranch = true;
  161. // break;
  162. // }
  163. // }
  164. if(!headIsBranch) {
  165. graph->addHead(head);
  166. }
  167. foreach(GitBranch* branch, branches) {
  168. qDebug() << "Next head " << branch->fullName();
  169. graph->addHead(branch);
  170. }
  171. graph->addWorkdir();
  172. graph->moveToThread(head.repository()->thread());
  173. return graph;
  174. }
  175. void GitHandler::onGraphReady()
  176. {
  177. m_graph->deleteLater();
  178. m_graph = m_graphTask.result();
  179. emit graphChanged(m_graph);
  180. m_commits = CommitModel::fromGraph(m_graph);
  181. emit commitsChanged(m_commits);
  182. }