-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
counter.go
129 lines (115 loc) · 3.15 KB
/
counter.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
// Code generated by counterfeiter. DO NOT EDIT.
package metricsfakes
import (
"sync"
"github.com/hyperledger/fabric/common/metrics"
)
type Counter struct {
WithStub func(labelValues ...string) metrics.Counter
withMutex sync.RWMutex
withArgsForCall []struct {
labelValues []string
}
withReturns struct {
result1 metrics.Counter
}
withReturnsOnCall map[int]struct {
result1 metrics.Counter
}
AddStub func(delta float64)
addMutex sync.RWMutex
addArgsForCall []struct {
delta float64
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Counter) With(labelValues ...string) metrics.Counter {
fake.withMutex.Lock()
ret, specificReturn := fake.withReturnsOnCall[len(fake.withArgsForCall)]
fake.withArgsForCall = append(fake.withArgsForCall, struct {
labelValues []string
}{labelValues})
fake.recordInvocation("With", []interface{}{labelValues})
fake.withMutex.Unlock()
if fake.WithStub != nil {
return fake.WithStub(labelValues...)
}
if specificReturn {
return ret.result1
}
return fake.withReturns.result1
}
func (fake *Counter) WithCallCount() int {
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
return len(fake.withArgsForCall)
}
func (fake *Counter) WithArgsForCall(i int) []string {
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
return fake.withArgsForCall[i].labelValues
}
func (fake *Counter) WithReturns(result1 metrics.Counter) {
fake.WithStub = nil
fake.withReturns = struct {
result1 metrics.Counter
}{result1}
}
func (fake *Counter) WithReturnsOnCall(i int, result1 metrics.Counter) {
fake.WithStub = nil
if fake.withReturnsOnCall == nil {
fake.withReturnsOnCall = make(map[int]struct {
result1 metrics.Counter
})
}
fake.withReturnsOnCall[i] = struct {
result1 metrics.Counter
}{result1}
}
func (fake *Counter) Add(delta float64) {
fake.addMutex.Lock()
fake.addArgsForCall = append(fake.addArgsForCall, struct {
delta float64
}{delta})
fake.recordInvocation("Add", []interface{}{delta})
fake.addMutex.Unlock()
if fake.AddStub != nil {
fake.AddStub(delta)
}
}
func (fake *Counter) AddCallCount() int {
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
return len(fake.addArgsForCall)
}
func (fake *Counter) AddArgsForCall(i int) float64 {
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
return fake.addArgsForCall[i].delta
}
func (fake *Counter) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Counter) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ metrics.Counter = new(Counter)