-
Notifications
You must be signed in to change notification settings - Fork 377
/
repo_blame.go
88 lines (78 loc) · 2.4 KB
/
repo_blame.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright (c) 2021 Terminus, Inc.
//
// This program is free software: you can use, redistribute, and/or modify
// it under the terms of the GNU Affero General Public License, version 3
// or later ("AGPL"), as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// +build !codeanalysis
package gitmodule
import (
git "github.com/libgit2/git2go/v30"
)
type Blame struct {
StartLineNo int `json:"startLineNo"`
EndLineNo int `json:"endLineNo"`
Commit *Commit `json:"commit"`
}
// BlameFile
func (repo *Repository) BlameFile(commit *Commit, filePath string) ([]*Blame, error) {
rawRepo, err := repo.GetRawRepo()
if err != nil {
return nil, err
}
opts := git.BlameOptions{
NewestCommit: commit.Git2Oid(),
OldestCommit: nil,
MinLine: 1,
MaxLine: 10000,
}
blame, err := rawRepo.BlameFile(filePath, &opts)
if err != nil {
return nil, err
}
defer blame.Free()
count := blame.HunkCount()
blames := []*Blame{}
if count > 0 {
preHunk, err := blame.HunkByIndex(0)
if err != nil {
return nil, err
}
blameLineCommit, err := repo.GetCommit(preHunk.FinalCommitId.String())
if err != nil {
return nil, err
}
blames = append(blames, &Blame{
StartLineNo: int(preHunk.FinalStartLineNumber),
EndLineNo: int(preHunk.FinalStartLineNumber),
Commit: blameLineCommit,
})
for i := 1; i < count; i++ {
currentHunk, _ := blame.HunkByIndex(i)
blameLineCommit, err := repo.GetCommit(currentHunk.FinalCommitId.String())
if err != nil {
return nil, err
}
blameCount := len(blames)
//前后2个hunk的commit一样,自动合并
if blameCount > 0 && blameLineCommit.ID == blames[blameCount-1].Commit.ID {
blames[len(blames)-1].EndLineNo = int(currentHunk.FinalStartLineNumber) - 1
} else {
blames[len(blames)-1].EndLineNo = int(currentHunk.FinalStartLineNumber) - 1
blames = append(blames, &Blame{
StartLineNo: int(currentHunk.FinalStartLineNumber),
EndLineNo: int(currentHunk.FinalStartLineNumber),
Commit: blameLineCommit,
})
}
preHunk = currentHunk
}
}
return blames, nil
}