This file is indexed.

/usr/share/gocode/src/gopkg.in/retry.v1/regular.go is in golang-gopkg-retry.v1-dev 0.0~git20161025.0.c09f6b8-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
// Copyright 2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.

package retry // import "gopkg.in/retry.v1"

import (
	"time"
)

// Regular represents a strategy that repeats at regular intervals.
type Regular struct {
	// Total specifies the total duration of the attempt.
	Total time.Duration

	// Delay specifies the interval between the start of each try
	// in the burst. If an try takes longer than Delay, the
	// next try will happen immediately.
	Delay time.Duration

	// Min holds the minimum number of retries. It overrides Total.
	// To limit the maximum number of retries, use LimitCount.
	Min int
}

// regularTimer holds a running instantiation of the Regular timer.
type regularTimer struct {
	strategy Regular
	count    int
	// start holds when the current try started.
	start time.Time
	end   time.Time
}

// Start is short for Start(r, clk, nil)
func (r Regular) Start(clk Clock) *Attempt {
	return Start(r, clk)
}

// NewTimer implements Strategy.NewTimer.
func (r Regular) NewTimer(now time.Time) Timer {
	return &regularTimer{
		strategy: r,
		start:    now,
		end:      now.Add(r.Total),
	}
}

// NextSleep implements Timer.NextSleep.
func (a *regularTimer) NextSleep(now time.Time) (time.Duration, bool) {
	sleep := a.strategy.Delay - now.Sub(a.start)
	if sleep <= 0 {
		sleep = 0
	}
	a.count++
	// Set the start of the next try.
	a.start = now.Add(sleep)
	if a.count < a.strategy.Min {
		return sleep, true
	}
	// The next try is after the end - no more attempts.
	if a.start.After(a.end) {
		return 0, false
	}
	return sleep, true
}