forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metrics_gauge.go
184 lines (165 loc) · 4.4 KB
/
metrics_gauge.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/common/metrics"
)
type MetricsGauge struct {
AddStub func(float64)
addMutex sync.RWMutex
addArgsForCall []struct {
arg1 float64
}
SetStub func(float64)
setMutex sync.RWMutex
setArgsForCall []struct {
arg1 float64
}
WithStub func(...string) metrics.Gauge
withMutex sync.RWMutex
withArgsForCall []struct {
arg1 []string
}
withReturns struct {
result1 metrics.Gauge
}
withReturnsOnCall map[int]struct {
result1 metrics.Gauge
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *MetricsGauge) Add(arg1 float64) {
fake.addMutex.Lock()
fake.addArgsForCall = append(fake.addArgsForCall, struct {
arg1 float64
}{arg1})
fake.recordInvocation("Add", []interface{}{arg1})
fake.addMutex.Unlock()
if fake.AddStub != nil {
fake.AddStub(arg1)
}
}
func (fake *MetricsGauge) AddCallCount() int {
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
return len(fake.addArgsForCall)
}
func (fake *MetricsGauge) AddCalls(stub func(float64)) {
fake.addMutex.Lock()
defer fake.addMutex.Unlock()
fake.AddStub = stub
}
func (fake *MetricsGauge) AddArgsForCall(i int) float64 {
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
argsForCall := fake.addArgsForCall[i]
return argsForCall.arg1
}
func (fake *MetricsGauge) Set(arg1 float64) {
fake.setMutex.Lock()
fake.setArgsForCall = append(fake.setArgsForCall, struct {
arg1 float64
}{arg1})
fake.recordInvocation("Set", []interface{}{arg1})
fake.setMutex.Unlock()
if fake.SetStub != nil {
fake.SetStub(arg1)
}
}
func (fake *MetricsGauge) SetCallCount() int {
fake.setMutex.RLock()
defer fake.setMutex.RUnlock()
return len(fake.setArgsForCall)
}
func (fake *MetricsGauge) SetCalls(stub func(float64)) {
fake.setMutex.Lock()
defer fake.setMutex.Unlock()
fake.SetStub = stub
}
func (fake *MetricsGauge) SetArgsForCall(i int) float64 {
fake.setMutex.RLock()
defer fake.setMutex.RUnlock()
argsForCall := fake.setArgsForCall[i]
return argsForCall.arg1
}
func (fake *MetricsGauge) With(arg1 ...string) metrics.Gauge {
fake.withMutex.Lock()
ret, specificReturn := fake.withReturnsOnCall[len(fake.withArgsForCall)]
fake.withArgsForCall = append(fake.withArgsForCall, struct {
arg1 []string
}{arg1})
fake.recordInvocation("With", []interface{}{arg1})
fake.withMutex.Unlock()
if fake.WithStub != nil {
return fake.WithStub(arg1...)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.withReturns
return fakeReturns.result1
}
func (fake *MetricsGauge) WithCallCount() int {
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
return len(fake.withArgsForCall)
}
func (fake *MetricsGauge) WithCalls(stub func(...string) metrics.Gauge) {
fake.withMutex.Lock()
defer fake.withMutex.Unlock()
fake.WithStub = stub
}
func (fake *MetricsGauge) WithArgsForCall(i int) []string {
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
argsForCall := fake.withArgsForCall[i]
return argsForCall.arg1
}
func (fake *MetricsGauge) WithReturns(result1 metrics.Gauge) {
fake.withMutex.Lock()
defer fake.withMutex.Unlock()
fake.WithStub = nil
fake.withReturns = struct {
result1 metrics.Gauge
}{result1}
}
func (fake *MetricsGauge) WithReturnsOnCall(i int, result1 metrics.Gauge) {
fake.withMutex.Lock()
defer fake.withMutex.Unlock()
fake.WithStub = nil
if fake.withReturnsOnCall == nil {
fake.withReturnsOnCall = make(map[int]struct {
result1 metrics.Gauge
})
}
fake.withReturnsOnCall[i] = struct {
result1 metrics.Gauge
}{result1}
}
func (fake *MetricsGauge) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.addMutex.RLock()
defer fake.addMutex.RUnlock()
fake.setMutex.RLock()
defer fake.setMutex.RUnlock()
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *MetricsGauge) 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)
}