8
8
"github.com/git-lfs/git-lfs/config"
9
9
"github.com/git-lfs/git-lfs/errors"
10
10
"github.com/git-lfs/git-lfs/progress"
11
- "github.com/git-lfs/git-lfs/transfer"
12
11
"github.com/rubyist/tracerx"
13
12
)
14
13
@@ -112,8 +111,8 @@ func (b Batch) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
112
111
// including calling the API, passing the actual transfer request to transfer
113
112
// adapters, and dealing with progress, errors and retries.
114
113
type TransferQueue struct {
115
- direction transfer. Direction
116
- adapter transfer. TransferAdapter
114
+ direction Direction
115
+ adapter TransferAdapter
117
116
adapterInProgress bool
118
117
adapterInitMutex sync.Mutex
119
118
dryRun bool
@@ -133,7 +132,7 @@ type TransferQueue struct {
133
132
// once per unique OID on Add(), and is decremented when that transfer
134
133
// is marked as completed or failed, but not retried.
135
134
wait sync.WaitGroup
136
- manifest * transfer. Manifest
135
+ manifest * Manifest
137
136
rc * retryCounter
138
137
}
139
138
@@ -160,15 +159,15 @@ func WithBufferDepth(depth int) TransferQueueOption {
160
159
}
161
160
162
161
// NewTransferQueue builds a TransferQueue, direction and underlying mechanism determined by adapter
163
- func NewTransferQueue (dir transfer. Direction , options ... TransferQueueOption ) * TransferQueue {
162
+ func NewTransferQueue (dir Direction , options ... TransferQueueOption ) * TransferQueue {
164
163
q := & TransferQueue {
165
164
batchSize : defaultBatchSize ,
166
165
bufferDepth : defaultBatchSize ,
167
166
direction : dir ,
168
167
errorc : make (chan error ),
169
168
transferables : make (map [string ]Transferable ),
170
169
trMutex : & sync.Mutex {},
171
- manifest : transfer . ConfigureManifest (transfer . NewManifest (), config .Config ),
170
+ manifest : ConfigureManifest (NewManifest (), config .Config ),
172
171
rc : newRetryCounter (config .Config ),
173
172
}
174
173
@@ -216,7 +215,7 @@ func (q *TransferQueue) Add(t Transferable) {
216
215
// b. If the read was a Transferable item, go to step 3.
217
216
// 3. Append the item to the batch.
218
217
// 4. Sort the batch by descending object size, make a batch API call, send
219
- // the items to the `*transfer. adapterBase`.
218
+ // the items to the `*adapterBase`.
220
219
// 5. Process the worker results, incrementing and appending retries if
221
220
// possible.
222
221
// 6. If the `q.incoming` channel is open, go to step 2.
@@ -299,7 +298,7 @@ func (q *TransferQueue) enqueueAndCollectRetriesFor(batch Batch) (Batch, error)
299
298
q .useAdapter (adapterName )
300
299
q .startProgress .Do (q .meter .Start )
301
300
302
- toTransfer := make ([]* transfer. Transfer , 0 , len (objs ))
301
+ toTransfer := make ([]* Transfer , 0 , len (objs ))
303
302
304
303
for _ , o := range objs {
305
304
if o .Error != nil {
@@ -325,7 +324,7 @@ func (q *TransferQueue) enqueueAndCollectRetriesFor(batch Batch) (Batch, error)
325
324
t .SetObject (o )
326
325
q .meter .StartTransfer (t .Name ())
327
326
328
- toTransfer = append (toTransfer , transfer . NewTransfer (
327
+ toTransfer = append (toTransfer , NewTransfer (
329
328
t .Name (), t .Object (), t .Path (),
330
329
))
331
330
} else {
@@ -367,7 +366,7 @@ func (q *TransferQueue) makeBatch() Batch { return make(Batch, 0, q.batchSize) }
367
366
// closed.
368
367
//
369
368
// addToAdapter returns immediately, and does not block.
370
- func (q * TransferQueue ) addToAdapter (pending []* transfer. Transfer ) <- chan Transferable {
369
+ func (q * TransferQueue ) addToAdapter (pending []* Transfer ) <- chan Transferable {
371
370
retries := make (chan Transferable , len (pending ))
372
371
373
372
if err := q .ensureAdapterBegun (); err != nil {
@@ -385,7 +384,7 @@ func (q *TransferQueue) addToAdapter(pending []*transfer.Transfer) <-chan Transf
385
384
go func () {
386
385
defer close (retries )
387
386
388
- var results <- chan transfer. TransferResult
387
+ var results <- chan TransferResult
389
388
if q .dryRun {
390
389
results = q .makeDryRunResults (pending )
391
390
} else {
@@ -402,10 +401,10 @@ func (q *TransferQueue) addToAdapter(pending []*transfer.Transfer) <-chan Transf
402
401
403
402
// makeDryRunResults returns a channel populated immediately with "successful"
404
403
// results for all of the given transfers in "ts".
405
- func (q * TransferQueue ) makeDryRunResults (ts []* transfer. Transfer ) <- chan transfer. TransferResult {
406
- results := make (chan transfer. TransferResult , len (ts ))
404
+ func (q * TransferQueue ) makeDryRunResults (ts []* Transfer ) <- chan TransferResult {
405
+ results := make (chan TransferResult , len (ts ))
407
406
for _ , t := range ts {
408
- results <- transfer. TransferResult {t , nil }
407
+ results <- TransferResult {t , nil }
409
408
}
410
409
411
410
close (results )
@@ -416,7 +415,7 @@ func (q *TransferQueue) makeDryRunResults(ts []*transfer.Transfer) <-chan transf
416
415
// handleTransferResult observes the transfer result, sending it on the retries
417
416
// channel if it was able to be retried.
418
417
func (q * TransferQueue ) handleTransferResult (
419
- res transfer. TransferResult , retries chan <- Transferable ,
418
+ res TransferResult , retries chan <- Transferable ,
420
419
) {
421
420
oid := res .Transfer .Object .Oid
422
421
@@ -490,7 +489,7 @@ func (q *TransferQueue) Skip(size int64) {
490
489
}
491
490
492
491
func (q * TransferQueue ) transferKind () string {
493
- if q .direction == transfer . Download {
492
+ if q .direction == Download {
494
493
return "download"
495
494
} else {
496
495
return "upload"
0 commit comments