6 Star 44 Fork 25

Hyperledger / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
support.go 1.84 KB
一键复制 编辑 原始数据 按行查看 历史
Gari Singh 提交于 2019-11-11 09:16 . FAB-16437 Remove common/mocks/policies
/*
Copyright IBM Corp. 2017 All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package support
import (
"sync"
"github.com/hyperledger/fabric-protos-go/common"
"github.com/hyperledger/fabric/common/channelconfig"
"github.com/hyperledger/fabric/core/ledger"
"github.com/hyperledger/fabric/msp"
)
type Support struct {
LedgerVal ledger.PeerLedger
MSPManagerVal msp.MSPManager
ApplyVal error
ACVal channelconfig.ApplicationCapabilities
sync.Mutex
capabilitiesInvokeCount int
mspManagerInvokeCount int
}
func (ms *Support) Capabilities() channelconfig.ApplicationCapabilities {
ms.Lock()
defer ms.Unlock()
ms.capabilitiesInvokeCount++
return ms.ACVal
}
// Ledger returns LedgerVal
func (ms *Support) Ledger() ledger.PeerLedger {
return ms.LedgerVal
}
// MSPManager returns MSPManagerVal
func (ms *Support) MSPManager() msp.MSPManager {
ms.Lock()
defer ms.Unlock()
ms.mspManagerInvokeCount++
return ms.MSPManagerVal
}
// Apply returns ApplyVal
func (ms *Support) Apply(configtx *common.ConfigEnvelope) error {
return ms.ApplyVal
}
func (ms *Support) GetMSPIDs() []string {
return []string{"SampleOrg"}
}
func (ms *Support) CapabilitiesInvokeCount() int {
ms.Lock()
defer ms.Unlock()
return ms.capabilitiesInvokeCount
}
func (ms *Support) MSPManagerInvokeCount() int {
ms.Lock()
defer ms.Unlock()
return ms.mspManagerInvokeCount
}
1
https://gitee.com/hyperledger/fabric.git
git@gitee.com:hyperledger/fabric.git
hyperledger
fabric
fabric
v2.1.1

搜索帮助