-
Notifications
You must be signed in to change notification settings - Fork 127
/
tree_entry.go
270 lines (227 loc) · 6.04 KB
/
tree_entry.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// Copyright 2015 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package git
import (
"fmt"
"path"
"runtime"
"sort"
"strconv"
"strings"
"sync"
"sync/atomic"
"time"
)
// EntryMode is the unix file mode of a tree entry.
type EntryMode int
// There are only a few file modes in Git. They look like unix file modes, but
// they can only be one of these.
const (
EntryTree EntryMode = 0040000
EntryBlob EntryMode = 0100644
EntryExec EntryMode = 0100755
EntrySymlink EntryMode = 0120000
EntryCommit EntryMode = 0160000
)
type TreeEntry struct {
mode EntryMode
typ ObjectType
id *SHA1
name string
parent *Tree
size int64
sizeOnce sync.Once
}
// Mode returns the entry mode if the tree entry.
func (e *TreeEntry) Mode() EntryMode {
return e.mode
}
// IsTree returns tree if the entry itself is another tree (i.e. a directory).
func (e *TreeEntry) IsTree() bool {
return e.mode == EntryTree
}
// IsBlob returns true if the entry is a blob.
func (e *TreeEntry) IsBlob() bool {
return e.mode == EntryBlob
}
// IsExec returns tree if the entry is an executable.
func (e *TreeEntry) IsExec() bool {
return e.mode == EntryExec
}
// IsSymlink returns true if the entry is a symbolic link.
func (e *TreeEntry) IsSymlink() bool {
return e.mode == EntrySymlink
}
// IsCommit returns true if the entry is a commit (i.e. a submodule).
func (e *TreeEntry) IsCommit() bool {
return e.mode == EntryCommit
}
// Type returns the object type of the entry.
func (e *TreeEntry) Type() ObjectType {
return e.typ
}
// ID returns the SHA-1 hash of the entry.
func (e *TreeEntry) ID() *SHA1 {
return e.id
}
// Name returns name of the entry.
func (e *TreeEntry) Name() string {
return e.name
}
// Size returns the size of thr entry.
func (e *TreeEntry) Size() int64 {
e.sizeOnce.Do(func() {
if e.IsTree() {
return
}
stdout, err := NewCommand("cat-file", "-s", e.id.String()).RunInDir(e.parent.repo.path)
if err != nil {
return
}
e.size, _ = strconv.ParseInt(strings.TrimSpace(string(stdout)), 10, 64)
})
return e.size
}
// Blob returns a blob object from the entry.
func (e *TreeEntry) Blob() *Blob {
return &Blob{
TreeEntry: e,
}
}
// Entries is a sortable list of tree entries.
type Entries []*TreeEntry
var sorters = []func(t1, t2 *TreeEntry) bool{
func(t1, t2 *TreeEntry) bool {
return (t1.IsTree() || t1.IsCommit()) && !t2.IsTree() && !t2.IsCommit()
},
func(t1, t2 *TreeEntry) bool {
return t1.name < t2.name
},
}
func (es Entries) Len() int { return len(es) }
func (es Entries) Swap(i, j int) { es[i], es[j] = es[j], es[i] }
func (es Entries) Less(i, j int) bool {
t1, t2 := es[i], es[j]
var k int
for k = 0; k < len(sorters)-1; k++ {
sorter := sorters[k]
switch {
case sorter(t1, t2):
return true
case sorter(t2, t1):
return false
}
}
return sorters[k](t1, t2)
}
func (es Entries) Sort() {
sort.Sort(es)
}
// EntryCommitInfo contains a tree entry with its commit information.
type EntryCommitInfo struct {
Entry *TreeEntry
Index int
Commit *Commit
Submodule *Submodule
}
// CommitsInfoOptions contains optional arguments for getting commits
// information.
type CommitsInfoOptions struct {
// The relative path of the repository.
Path string
// The maximum number of goroutines to be used for getting commits information.
// When not set (i.e. <=0), runtime.GOMAXPROCS is used to determine the value.
MaxConcurrency int
// The timeout duration before giving up for each shell command execution.
// The default timeout duration will be used when not supplied.
Timeout time.Duration
}
var defaultConcurrency = runtime.GOMAXPROCS(0)
// CommitsInfo returns a list of commit information for these tree entries in
// the state of given commit and subpath. It takes advantages of concurrency to
// speed up the process. The returned list has the same number of items as tree
// entries, so the caller can access them via slice indices.
func (es Entries) CommitsInfo(commit *Commit, opts ...CommitsInfoOptions) ([]*EntryCommitInfo, error) {
if len(es) == 0 {
return []*EntryCommitInfo{}, nil
}
var opt CommitsInfoOptions
if len(opts) > 0 {
opt = opts[0]
}
if opt.MaxConcurrency <= 0 {
opt.MaxConcurrency = defaultConcurrency
}
// Length of bucket determines how many goroutines (subprocesses) can run at the same time.
bucket := make(chan struct{}, opt.MaxConcurrency)
results := make(chan *EntryCommitInfo, len(es))
errs := make(chan error, 1)
var errored int64
hasErrored := func() bool {
return atomic.LoadInt64(&errored) != 0
}
// Only count for the first error, discard the rest
setError := func(err error) {
if !atomic.CompareAndSwapInt64(&errored, 0, 1) {
return
}
errs <- err
}
var wg sync.WaitGroup
wg.Add(len(es))
go func() {
for i, e := range es {
// Shrink down the counter and exit when there is an error
if hasErrored() {
wg.Add(i - len(es))
return
}
// Block until there is an empty slot to control the maximum concurrency
bucket <- struct{}{}
go func(e *TreeEntry, i int) {
defer func() {
wg.Done()
<-bucket
}()
// Avoid expensive operations if has errored
if hasErrored() {
return
}
info := &EntryCommitInfo{
Entry: e,
Index: i,
}
epath := path.Join(opt.Path, e.Name())
var err error
info.Commit, err = commit.CommitByPath(CommitByRevisionOptions{
Path: epath,
Timeout: opt.Timeout,
})
if err != nil {
setError(fmt.Errorf("get commit by path %q: %v", epath, err))
return
}
// Get extra information for submodules
if e.IsCommit() {
// Be tolerant to implicit submodules
info.Submodule, err = commit.Submodule(epath)
if err != nil {
info.Submodule = &Submodule{Name: epath}
}
}
results <- info
}(e, i)
}
}()
wg.Wait()
if hasErrored() {
return nil, <-errs
}
close(results)
commitsInfo := make([]*EntryCommitInfo, len(es))
for info := range results {
commitsInfo[info.Index] = info
}
return commitsInfo, nil
}