63 Star 183 Fork 3

Gitee 极速下载/hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
write_syncer.go 3.66 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
)
type WriteSyncer struct {
WriteStub func(p []byte) (n int, err error)
writeMutex sync.RWMutex
writeArgsForCall []struct {
p []byte
}
writeReturns struct {
result1 int
result2 error
}
writeReturnsOnCall map[int]struct {
result1 int
result2 error
}
SyncStub func() error
syncMutex sync.RWMutex
syncArgsForCall []struct{}
syncReturns struct {
result1 error
}
syncReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *WriteSyncer) Write(p []byte) (n int, err error) {
var pCopy []byte
if p != nil {
pCopy = make([]byte, len(p))
copy(pCopy, p)
}
fake.writeMutex.Lock()
ret, specificReturn := fake.writeReturnsOnCall[len(fake.writeArgsForCall)]
fake.writeArgsForCall = append(fake.writeArgsForCall, struct {
p []byte
}{pCopy})
fake.recordInvocation("Write", []interface{}{pCopy})
fake.writeMutex.Unlock()
if fake.WriteStub != nil {
return fake.WriteStub(p)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.writeReturns.result1, fake.writeReturns.result2
}
func (fake *WriteSyncer) WriteCallCount() int {
fake.writeMutex.RLock()
defer fake.writeMutex.RUnlock()
return len(fake.writeArgsForCall)
}
func (fake *WriteSyncer) WriteArgsForCall(i int) []byte {
fake.writeMutex.RLock()
defer fake.writeMutex.RUnlock()
return fake.writeArgsForCall[i].p
}
func (fake *WriteSyncer) WriteReturns(result1 int, result2 error) {
fake.WriteStub = nil
fake.writeReturns = struct {
result1 int
result2 error
}{result1, result2}
}
func (fake *WriteSyncer) WriteReturnsOnCall(i int, result1 int, result2 error) {
fake.WriteStub = nil
if fake.writeReturnsOnCall == nil {
fake.writeReturnsOnCall = make(map[int]struct {
result1 int
result2 error
})
}
fake.writeReturnsOnCall[i] = struct {
result1 int
result2 error
}{result1, result2}
}
func (fake *WriteSyncer) Sync() error {
fake.syncMutex.Lock()
ret, specificReturn := fake.syncReturnsOnCall[len(fake.syncArgsForCall)]
fake.syncArgsForCall = append(fake.syncArgsForCall, struct{}{})
fake.recordInvocation("Sync", []interface{}{})
fake.syncMutex.Unlock()
if fake.SyncStub != nil {
return fake.SyncStub()
}
if specificReturn {
return ret.result1
}
return fake.syncReturns.result1
}
func (fake *WriteSyncer) SyncCallCount() int {
fake.syncMutex.RLock()
defer fake.syncMutex.RUnlock()
return len(fake.syncArgsForCall)
}
func (fake *WriteSyncer) SyncReturns(result1 error) {
fake.SyncStub = nil
fake.syncReturns = struct {
result1 error
}{result1}
}
func (fake *WriteSyncer) SyncReturnsOnCall(i int, result1 error) {
fake.SyncStub = nil
if fake.syncReturnsOnCall == nil {
fake.syncReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.syncReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *WriteSyncer) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.writeMutex.RLock()
defer fake.writeMutex.RUnlock()
fake.syncMutex.RLock()
defer fake.syncMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *WriteSyncer) 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)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v1.4.0

搜索帮助