-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocker.go
135 lines (123 loc) · 3.18 KB
/
locker.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
// Code generated by counterfeiter. DO NOT EDIT.
package fakes
import (
"sync"
)
type Locker struct {
LockStub func() error
lockMutex sync.RWMutex
lockArgsForCall []struct{}
lockReturns struct {
result1 error
}
lockReturnsOnCall map[int]struct {
result1 error
}
UnlockStub func() error
unlockMutex sync.RWMutex
unlockArgsForCall []struct{}
unlockReturns struct {
result1 error
}
unlockReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Locker) Lock() error {
fake.lockMutex.Lock()
ret, specificReturn := fake.lockReturnsOnCall[len(fake.lockArgsForCall)]
fake.lockArgsForCall = append(fake.lockArgsForCall, struct{}{})
fake.recordInvocation("Lock", []interface{}{})
fake.lockMutex.Unlock()
if fake.LockStub != nil {
return fake.LockStub()
}
if specificReturn {
return ret.result1
}
return fake.lockReturns.result1
}
func (fake *Locker) LockCallCount() int {
fake.lockMutex.RLock()
defer fake.lockMutex.RUnlock()
return len(fake.lockArgsForCall)
}
func (fake *Locker) LockReturns(result1 error) {
fake.LockStub = nil
fake.lockReturns = struct {
result1 error
}{result1}
}
func (fake *Locker) LockReturnsOnCall(i int, result1 error) {
fake.LockStub = nil
if fake.lockReturnsOnCall == nil {
fake.lockReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.lockReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *Locker) Unlock() error {
fake.unlockMutex.Lock()
ret, specificReturn := fake.unlockReturnsOnCall[len(fake.unlockArgsForCall)]
fake.unlockArgsForCall = append(fake.unlockArgsForCall, struct{}{})
fake.recordInvocation("Unlock", []interface{}{})
fake.unlockMutex.Unlock()
if fake.UnlockStub != nil {
return fake.UnlockStub()
}
if specificReturn {
return ret.result1
}
return fake.unlockReturns.result1
}
func (fake *Locker) UnlockCallCount() int {
fake.unlockMutex.RLock()
defer fake.unlockMutex.RUnlock()
return len(fake.unlockArgsForCall)
}
func (fake *Locker) UnlockReturns(result1 error) {
fake.UnlockStub = nil
fake.unlockReturns = struct {
result1 error
}{result1}
}
func (fake *Locker) UnlockReturnsOnCall(i int, result1 error) {
fake.UnlockStub = nil
if fake.unlockReturnsOnCall == nil {
fake.unlockReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.unlockReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *Locker) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.lockMutex.RLock()
defer fake.lockMutex.RUnlock()
fake.unlockMutex.RLock()
defer fake.unlockMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Locker) 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)
}