1 Star 0 Fork 0

peter / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
metadata.go 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package chaincode
import (
"sync"
"github.com/hyperledger/fabric-protos-go/gossip"
"github.com/hyperledger/fabric-protos-go/peer"
)
// InstalledChaincode defines metadata about an installed chaincode
type InstalledChaincode struct {
PackageID string
Hash []byte
Label string
// References is a map of channel name to chaincode
// metadata. This represents the channels and chaincode
// definitions that use this installed chaincode package.
References map[string][]*Metadata
// FIXME: we should remove these two
// fields since they are not properties
// of the chaincode (FAB-14561)
Name string
Version string
}
// Metadata defines channel-scoped metadata of a chaincode
type Metadata struct {
Name string
Version string
Policy []byte
// CollectionPolicies will only be set for _lifecycle
// chaincodes and stores a map from collection name to
// that collection's endorsement policy if one exists.
CollectionPolicies map[string][]byte
Id []byte
CollectionsConfig *peer.CollectionConfigPackage
// These two fields (Approved, Installed) are only set for
// _lifecycle chaincodes. They are used to ensure service
// discovery doesn't publish a stale chaincode definition
// when the _lifecycle definition exists but has not yet
// been installed or approved by the peer's org.
Approved bool
Installed bool
}
// MetadataSet defines an aggregation of Metadata
type MetadataSet []Metadata
// AsChaincodes converts this MetadataSet to a slice of gossip.Chaincodes
func (ccs MetadataSet) AsChaincodes() []*gossip.Chaincode {
var res []*gossip.Chaincode
for _, cc := range ccs {
res = append(res, &gossip.Chaincode{
Name: cc.Name,
Version: cc.Version,
})
}
return res
}
// MetadataMapping defines a mapping from chaincode name to Metadata
type MetadataMapping struct {
sync.RWMutex
mdByName map[string]Metadata
}
// NewMetadataMapping creates a new metadata mapping
func NewMetadataMapping() *MetadataMapping {
return &MetadataMapping{
mdByName: make(map[string]Metadata),
}
}
// Lookup returns the Metadata that is associated with the given chaincode
func (m *MetadataMapping) Lookup(cc string) (Metadata, bool) {
m.RLock()
defer m.RUnlock()
md, exists := m.mdByName[cc]
return md, exists
}
// Update updates the chaincode metadata in the mapping
func (m *MetadataMapping) Update(ccMd Metadata) {
m.Lock()
defer m.Unlock()
m.mdByName[ccMd.Name] = ccMd
}
// Aggregate aggregates all Metadata to a MetadataSet
func (m *MetadataMapping) Aggregate() MetadataSet {
m.RLock()
defer m.RUnlock()
var set MetadataSet
for _, md := range m.mdByName {
set = append(set, md)
}
return set
}
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v2.1.1

搜索帮助

53164aa7 5694891 3bd8fe86 5694891