3 Star 6 Fork 7

Gitee 极速下载/Hyperledger fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
protobuf.go 4.44 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/golang/protobuf/proto"
)
type Protobuf struct {
MarshalStub func(msg proto.Message) (marshaled []byte, err error)
marshalMutex sync.RWMutex
marshalArgsForCall []struct {
msg proto.Message
}
marshalReturns struct {
result1 []byte
result2 error
}
marshalReturnsOnCall map[int]struct {
result1 []byte
result2 error
}
UnmarshalStub func(marshaled []byte, msg proto.Message) error
unmarshalMutex sync.RWMutex
unmarshalArgsForCall []struct {
marshaled []byte
msg proto.Message
}
unmarshalReturns struct {
result1 error
}
unmarshalReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Protobuf) Marshal(msg proto.Message) (marshaled []byte, err error) {
fake.marshalMutex.Lock()
ret, specificReturn := fake.marshalReturnsOnCall[len(fake.marshalArgsForCall)]
fake.marshalArgsForCall = append(fake.marshalArgsForCall, struct {
msg proto.Message
}{msg})
fake.recordInvocation("Marshal", []interface{}{msg})
fake.marshalMutex.Unlock()
if fake.MarshalStub != nil {
return fake.MarshalStub(msg)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.marshalReturns.result1, fake.marshalReturns.result2
}
func (fake *Protobuf) MarshalCallCount() int {
fake.marshalMutex.RLock()
defer fake.marshalMutex.RUnlock()
return len(fake.marshalArgsForCall)
}
func (fake *Protobuf) MarshalArgsForCall(i int) proto.Message {
fake.marshalMutex.RLock()
defer fake.marshalMutex.RUnlock()
return fake.marshalArgsForCall[i].msg
}
func (fake *Protobuf) MarshalReturns(result1 []byte, result2 error) {
fake.MarshalStub = nil
fake.marshalReturns = struct {
result1 []byte
result2 error
}{result1, result2}
}
func (fake *Protobuf) MarshalReturnsOnCall(i int, result1 []byte, result2 error) {
fake.MarshalStub = nil
if fake.marshalReturnsOnCall == nil {
fake.marshalReturnsOnCall = make(map[int]struct {
result1 []byte
result2 error
})
}
fake.marshalReturnsOnCall[i] = struct {
result1 []byte
result2 error
}{result1, result2}
}
func (fake *Protobuf) Unmarshal(marshaled []byte, msg proto.Message) error {
var marshaledCopy []byte
if marshaled != nil {
marshaledCopy = make([]byte, len(marshaled))
copy(marshaledCopy, marshaled)
}
fake.unmarshalMutex.Lock()
ret, specificReturn := fake.unmarshalReturnsOnCall[len(fake.unmarshalArgsForCall)]
fake.unmarshalArgsForCall = append(fake.unmarshalArgsForCall, struct {
marshaled []byte
msg proto.Message
}{marshaledCopy, msg})
fake.recordInvocation("Unmarshal", []interface{}{marshaledCopy, msg})
fake.unmarshalMutex.Unlock()
if fake.UnmarshalStub != nil {
return fake.UnmarshalStub(marshaled, msg)
}
if specificReturn {
return ret.result1
}
return fake.unmarshalReturns.result1
}
func (fake *Protobuf) UnmarshalCallCount() int {
fake.unmarshalMutex.RLock()
defer fake.unmarshalMutex.RUnlock()
return len(fake.unmarshalArgsForCall)
}
func (fake *Protobuf) UnmarshalArgsForCall(i int) ([]byte, proto.Message) {
fake.unmarshalMutex.RLock()
defer fake.unmarshalMutex.RUnlock()
return fake.unmarshalArgsForCall[i].marshaled, fake.unmarshalArgsForCall[i].msg
}
func (fake *Protobuf) UnmarshalReturns(result1 error) {
fake.UnmarshalStub = nil
fake.unmarshalReturns = struct {
result1 error
}{result1}
}
func (fake *Protobuf) UnmarshalReturnsOnCall(i int, result1 error) {
fake.UnmarshalStub = nil
if fake.unmarshalReturnsOnCall == nil {
fake.unmarshalReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.unmarshalReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *Protobuf) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.marshalMutex.RLock()
defer fake.marshalMutex.RUnlock()
fake.unmarshalMutex.RLock()
defer fake.unmarshalMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Protobuf) 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 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/fabric.git
git@gitee.com:mirrors/fabric.git
mirrors
fabric
Hyperledger fabric
v1.4.6

搜索帮助