-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcommit_node.go
129 lines (110 loc) · 2.81 KB
/
commit_node.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package versionmgr
import (
"context"
"errors"
"io"
"github.com/GitDataAI/jiaozifs/models"
"github.com/GitDataAI/jiaozifs/utils/hash"
"github.com/google/uuid"
)
var (
ErrStop = errors.New("stop iter")
)
type WrapCommitNode struct {
commit *models.Commit
commitRepo models.ICommitRepo
}
func NewWrapCommitNode(commitRepo models.ICommitRepo, commit *models.Commit) *WrapCommitNode {
return &WrapCommitNode{commit: commit, commitRepo: commitRepo}
}
func (c *WrapCommitNode) Commit() *models.Commit {
return c.commit
}
func (c *WrapCommitNode) RepoID() uuid.UUID {
return c.commit.RepositoryID
}
// TreeHash returns the TreeHash in the commit.
func (c *WrapCommitNode) TreeHash() hash.Hash {
return c.commit.TreeHash
}
// Hash returns the Hash in the commit.
func (c *WrapCommitNode) Hash() hash.Hash {
return c.commit.Hash
}
// Parents return a CommitIter to the parent Commits.
func (c *WrapCommitNode) Parents(ctx context.Context) ([]*WrapCommitNode, error) {
parentNodes := make([]*WrapCommitNode, len(c.commit.ParentHashes))
for index, hash := range c.commit.ParentHashes {
commit, err := c.commitRepo.Commit(ctx, hash)
if err != nil {
return nil, err
}
parentNodes[index] = &WrapCommitNode{
commit: commit,
commitRepo: c.commitRepo,
}
}
return parentNodes, nil
}
func (c *WrapCommitNode) GetCommit(ctx context.Context, hash hash.Hash) (*WrapCommitNode, error) {
commit, err := c.commitRepo.Commit(ctx, hash)
if err != nil {
return nil, err
}
return &WrapCommitNode{
commit: commit,
commitRepo: c.commitRepo,
}, nil
}
func (c *WrapCommitNode) GetCommits(ctx context.Context, hashes []hash.Hash) ([]*WrapCommitNode, error) {
commits := make([]*WrapCommitNode, len(hashes))
for i, hash := range hashes {
commit, err := c.commitRepo.Commit(ctx, hash)
if err != nil {
return nil, err
}
commits[i] = &WrapCommitNode{
commit: commit,
commitRepo: c.commitRepo,
}
}
return commits, nil
}
// CommitIter is a generic closable interface for iterating over commits.
type CommitIter interface {
Next() (*WrapCommitNode, error)
ForEach(func(*WrapCommitNode) error) error
}
var _ CommitIter = (*arraryCommitIter)(nil)
type arraryCommitIter struct {
commits []*WrapCommitNode
idx int
}
func newArrayCommitIter(commits []*WrapCommitNode) *arraryCommitIter {
return &arraryCommitIter{
commits: commits,
idx: -1,
}
}
func (a *arraryCommitIter) Next() (*WrapCommitNode, error) {
if a.idx < len(a.commits)-1 {
a.idx++
return a.commits[a.idx], nil
}
return nil, io.EOF
}
func (a *arraryCommitIter) ForEach(f func(*WrapCommitNode) error) error {
for _, commit := range a.commits {
err := f(commit)
if errors.Is(err, ErrStop) {
break
}
if err != nil {
return err
}
}
return nil
}
func (a *arraryCommitIter) Has() bool {
return a.idx < len(a.commits)-1
}