gitcommit.cpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. #include "gitcommit.h"
  2. #include <gitoid.h>
  3. #include <gitdiff.h>
  4. #include <QDebug>
  5. #include <git2/commit.h>
  6. #include <git2/tag.h>
  7. #include <git2/diff.h>
  8. #include <git2/patch.h>
  9. #include <git2/buffer.h>
  10. GitCommit::GitCommit(git_commit* raw, GitRepository* parent) : GitBaseOid(raw, parent)
  11. ,m_diff(nullptr)
  12. {
  13. m_oid = GitOid(git_commit_id(m_raw), m_repository);
  14. }
  15. GitCommit::GitCommit() : GitBaseOid(nullptr, nullptr)
  16. {
  17. }
  18. GitCommit* GitCommit::fromOid(const GitOid& oid)
  19. {
  20. if(!oid.isValid()) {
  21. return nullptr;
  22. }
  23. git_commit *commit;
  24. if(git_commit_lookup(&commit, oid.repository()->raw(), oid.raw()) != 0) {
  25. return nullptr;
  26. }
  27. return new GitCommit(commit, oid.repository());
  28. }
  29. GitCommit::~GitCommit()
  30. {
  31. git_commit_free(m_raw);
  32. }
  33. QString GitCommit::author() const
  34. {
  35. return QString(git_commit_author(m_raw)->name);
  36. }
  37. QDateTime GitCommit::time() const
  38. {
  39. return QDateTime::fromTime_t(git_commit_time(m_raw), Qt::OffsetFromUTC, git_commit_time_offset(m_raw));
  40. }
  41. QString GitCommit::message() const
  42. {
  43. return QString(git_commit_message(m_raw));
  44. }
  45. QString GitCommit::email() const
  46. {
  47. return QString(git_commit_author(m_raw)->email);
  48. }
  49. QString GitCommit::sha1() const
  50. {
  51. return oid().toString();
  52. }
  53. QString GitCommit::shortSha1() const
  54. {
  55. return oid().toShorten();
  56. }
  57. bool GitCommit::isMerge() const
  58. {
  59. return git_commit_parentcount(m_raw) > 1;
  60. }
  61. QString GitCommit::summary() const
  62. {
  63. return QString(git_commit_summary(m_raw));
  64. }
  65. GitDiff* GitCommit::diff()
  66. {
  67. if(m_diff.isNull()) {
  68. git_commit *parent = nullptr;
  69. git_commit_parent(&parent, raw(), 0);
  70. m_diff = new GitDiff(parent, raw(), repository());
  71. git_commit_free(parent);
  72. }
  73. return m_diff.data();
  74. }
  75. void GitCommit::setAuthor(QString author)
  76. {
  77. Q_UNUSED(author)
  78. //TODO
  79. }
  80. void GitCommit::setTime(QDateTime time)
  81. {
  82. Q_UNUSED(time)
  83. //TODO
  84. }
  85. void GitCommit::setMessage(QString message)
  86. {
  87. Q_UNUSED(message)
  88. //TODO
  89. }
  90. void GitCommit::setEmail(QString email)
  91. {
  92. Q_UNUSED(email)
  93. //TODO
  94. }
  95. void GitCommit::setSummary(QString summary)
  96. {
  97. Q_UNUSED(summary)
  98. //TODO
  99. }