git2wrapC++20 wrapper for libgit2 |
git clone git://git.dimitrijedobrota.com/git2wrap.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
commit.cpp (2256B)
1 #include "git2wrap/commit.hpp" 2 3 #include "git2wrap/buf.hpp" 4 #include "git2wrap/error.hpp" 5 #include "git2wrap/signature.hpp" 6 7 namespace git2wrap 8 { 9 10 commit::commit(git_commit* cmt, repositoryPtr repo) 11 : m_commit(cmt, git_commit_free) 12 , m_repo(std::move(repo)) 13 { 14 } 15 16 commit commit::dup() const 17 { 18 git_commit* cmt = nullptr; 19 git_commit_dup(&cmt, m_commit.get()); 20 return {cmt, m_repo}; 21 } 22 23 oid commit::get_id() const 24 { 25 return oid(git_commit_id(m_commit.get())); 26 } 27 28 const char* commit::get_summary() const 29 { 30 return git_commit_summary(m_commit.get()); 31 } 32 33 const char* commit::get_message_encoding() const 34 { 35 return git_commit_message_encoding(m_commit.get()); 36 } 37 38 const char* commit::get_message() const 39 { 40 return git_commit_message(m_commit.get()); 41 } 42 43 const char* commit::get_message_raw() const 44 { 45 return git_commit_message_raw(m_commit.get()); 46 } 47 48 const char* commit::get_body() const 49 { 50 return git_commit_body(m_commit.get()); 51 } 52 53 time_t commit::get_time() const 54 { 55 return git_commit_time(m_commit.get()); 56 } 57 58 int commit::get_time_offset() const 59 { 60 return git_commit_time_offset(m_commit.get()); 61 } 62 63 signature commit::get_signature() const 64 { 65 return signature(git_commit_committer(m_commit.get())); 66 } 67 68 signature commit::get_author() const 69 { 70 return signature(git_commit_author(m_commit.get())); 71 } 72 73 const char* commit::get_raw_header() const 74 { 75 return git_commit_raw_header(m_commit.get()); 76 } 77 78 unsigned commit::get_parentcount() const 79 { 80 return git_commit_parentcount(m_commit.get()); 81 } 82 83 commit commit::get_parent(unsigned n) const 84 { 85 git_commit* cmt = nullptr; 86 87 if (git_commit_parent(&cmt, m_commit.get(), n) != 0) { 88 throw error<error_code_t::ERROR>(); 89 } 90 91 return {cmt, m_repo}; 92 } 93 94 buf commit::get_header_field(const char* field) const 95 { 96 buf bufr; 97 98 switch (git_commit_header_field(bufr.get(), m_commit.get(), field)) { 99 case error_code_t::OK: 100 break; 101 case error_code_t::ENOTFOUND: 102 throw error<error_code_t::ENOTFOUND>(); 103 default: 104 throw error<error_code_t::ERROR>(); 105 } 106 107 return bufr; 108 } 109 110 tree commit::get_tree() const 111 { 112 git_tree* tre = nullptr; 113 114 if (git_commit_tree(&tre, m_commit.get()) != 0) { 115 throw error<error_code_t::ERROR>(); 116 } 117 118 return {tre, m_repo}; 119 } 120 121 } // namespace git2wrap