Ai
1 Star 0 Fork 0

妥協/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
chaincode_info_cache.go 3.58 KB
一键复制 编辑 原始数据 按行查看 历史
Jason Yellick 提交于 2019-02-22 12:49 +08:00 . FAB-14378 Rewire chaincode lifecycle to cache
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/core/chaincode/lifecycle"
)
type ChaincodeInfoCache struct {
ChaincodeInfoStub func(string, string) (*lifecycle.LocalChaincodeInfo, error)
chaincodeInfoMutex sync.RWMutex
chaincodeInfoArgsForCall []struct {
arg1 string
arg2 string
}
chaincodeInfoReturns struct {
result1 *lifecycle.LocalChaincodeInfo
result2 error
}
chaincodeInfoReturnsOnCall map[int]struct {
result1 *lifecycle.LocalChaincodeInfo
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *ChaincodeInfoCache) ChaincodeInfo(arg1 string, arg2 string) (*lifecycle.LocalChaincodeInfo, error) {
fake.chaincodeInfoMutex.Lock()
ret, specificReturn := fake.chaincodeInfoReturnsOnCall[len(fake.chaincodeInfoArgsForCall)]
fake.chaincodeInfoArgsForCall = append(fake.chaincodeInfoArgsForCall, struct {
arg1 string
arg2 string
}{arg1, arg2})
fake.recordInvocation("ChaincodeInfo", []interface{}{arg1, arg2})
fake.chaincodeInfoMutex.Unlock()
if fake.ChaincodeInfoStub != nil {
return fake.ChaincodeInfoStub(arg1, arg2)
}
if specificReturn {
return ret.result1, ret.result2
}
fakeReturns := fake.chaincodeInfoReturns
return fakeReturns.result1, fakeReturns.result2
}
func (fake *ChaincodeInfoCache) ChaincodeInfoCallCount() int {
fake.chaincodeInfoMutex.RLock()
defer fake.chaincodeInfoMutex.RUnlock()
return len(fake.chaincodeInfoArgsForCall)
}
func (fake *ChaincodeInfoCache) ChaincodeInfoCalls(stub func(string, string) (*lifecycle.LocalChaincodeInfo, error)) {
fake.chaincodeInfoMutex.Lock()
defer fake.chaincodeInfoMutex.Unlock()
fake.ChaincodeInfoStub = stub
}
func (fake *ChaincodeInfoCache) ChaincodeInfoArgsForCall(i int) (string, string) {
fake.chaincodeInfoMutex.RLock()
defer fake.chaincodeInfoMutex.RUnlock()
argsForCall := fake.chaincodeInfoArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *ChaincodeInfoCache) ChaincodeInfoReturns(result1 *lifecycle.LocalChaincodeInfo, result2 error) {
fake.chaincodeInfoMutex.Lock()
defer fake.chaincodeInfoMutex.Unlock()
fake.ChaincodeInfoStub = nil
fake.chaincodeInfoReturns = struct {
result1 *lifecycle.LocalChaincodeInfo
result2 error
}{result1, result2}
}
func (fake *ChaincodeInfoCache) ChaincodeInfoReturnsOnCall(i int, result1 *lifecycle.LocalChaincodeInfo, result2 error) {
fake.chaincodeInfoMutex.Lock()
defer fake.chaincodeInfoMutex.Unlock()
fake.ChaincodeInfoStub = nil
if fake.chaincodeInfoReturnsOnCall == nil {
fake.chaincodeInfoReturnsOnCall = make(map[int]struct {
result1 *lifecycle.LocalChaincodeInfo
result2 error
})
}
fake.chaincodeInfoReturnsOnCall[i] = struct {
result1 *lifecycle.LocalChaincodeInfo
result2 error
}{result1, result2}
}
func (fake *ChaincodeInfoCache) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.chaincodeInfoMutex.RLock()
defer fake.chaincodeInfoMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *ChaincodeInfoCache) 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 _ lifecycle.ChaincodeInfoCache = new(ChaincodeInfoCache)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liurenhao/fabric.git
git@gitee.com:liurenhao/fabric.git
liurenhao
fabric
fabric
v2.1.1

搜索帮助