This file is indexed.

/usr/share/gocode/src/gopkg.in/redis.v2/rate_limit.go is in golang-gopkg-redis.v2-dev 2.3.2-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
package redis

import (
	"sync/atomic"
	"time"
)

type rateLimiter struct {
	v int64

	_closed int64
}

func newRateLimiter(limit time.Duration, bucketSize int) *rateLimiter {
	rl := &rateLimiter{
		v: int64(bucketSize),
	}
	go rl.loop(limit, int64(bucketSize))
	return rl
}

func (rl *rateLimiter) loop(limit time.Duration, bucketSize int64) {
	for {
		if rl.closed() {
			break
		}
		if v := atomic.LoadInt64(&rl.v); v < bucketSize {
			atomic.AddInt64(&rl.v, 1)
		}
		time.Sleep(limit)
	}
}

func (rl *rateLimiter) Check() bool {
	for {
		if v := atomic.LoadInt64(&rl.v); v > 0 {
			if atomic.CompareAndSwapInt64(&rl.v, v, v-1) {
				return true
			}
		} else {
			return false
		}
	}
}

func (rl *rateLimiter) Close() error {
	atomic.StoreInt64(&rl._closed, 1)
	return nil
}

func (rl *rateLimiter) closed() bool {
	return atomic.LoadInt64(&rl._closed) == 1
}