-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployedcc_infoprovider.go
112 lines (99 loc) · 4.07 KB
/
deployedcc_infoprovider.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package lscc
import (
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/core/common/ccprovider"
"github.com/hyperledger/fabric/core/common/privdata"
"github.com/hyperledger/fabric/core/ledger"
"github.com/hyperledger/fabric/protos/common"
"github.com/hyperledger/fabric/protos/ledger/rwset/kvrwset"
"github.com/pkg/errors"
)
const (
lsccNamespace = "lscc"
)
// DeployedCCInfoProvider implements ineterface ledger.DeployedChaincodeInfoProvider
type DeployedCCInfoProvider struct {
}
// Namespaces implements function in interface ledger.DeployedChaincodeInfoProvider
func (p *DeployedCCInfoProvider) Namespaces() []string {
return []string{lsccNamespace}
}
// UpdatedChaincodes implements function in interface ledger.DeployedChaincodeInfoProvider
func (p *DeployedCCInfoProvider) UpdatedChaincodes(stateUpdates map[string][]*kvrwset.KVWrite) ([]*ledger.ChaincodeLifecycleInfo, error) {
lsccUpdates := stateUpdates[lsccNamespace]
lifecycleInfo := []*ledger.ChaincodeLifecycleInfo{}
updatedCCNames := map[string]bool{}
for _, kvWrite := range lsccUpdates {
if kvWrite.IsDelete {
// lscc namespace is not expected to have deletes
continue
}
// There are LSCC entries for the chaincode and for the chaincode collections.
// We can detect collections based on the presence of a CollectionSeparator,
// which never exists in chaincode names.
if privdata.IsCollectionConfigKey(kvWrite.Key) {
ccname := privdata.GetCCNameFromCollectionConfigKey(kvWrite.Key)
updatedCCNames[ccname] = true
continue
}
updatedCCNames[kvWrite.Key] = true
}
for updatedCCNames := range updatedCCNames {
lifecycleInfo = append(lifecycleInfo, &ledger.ChaincodeLifecycleInfo{Name: updatedCCNames})
}
return lifecycleInfo, nil
}
func (p *DeployedCCInfoProvider) ImplicitCollections(channelName, chaincodeName string, qe ledger.SimpleQueryExecutor) ([]*common.StaticCollectionConfig, error) {
return nil, nil
}
// ChaincodeInfo implements function in interface ledger.DeployedChaincodeInfoProvider
func (p *DeployedCCInfoProvider) ChaincodeInfo(channelName, chaincodeName string, qe ledger.SimpleQueryExecutor) (*ledger.DeployedChaincodeInfo, error) {
chaincodeDataBytes, err := qe.GetState(lsccNamespace, chaincodeName)
if err != nil || chaincodeDataBytes == nil {
return nil, err
}
chaincodeData := &ccprovider.ChaincodeData{}
if err := proto.Unmarshal(chaincodeDataBytes, chaincodeData); err != nil {
return nil, errors.Wrap(err, "error unmarshalling chaincode state data")
}
collConfigPkg, err := fetchCollConfigPkg(chaincodeName, qe)
if err != nil {
return nil, err
}
return &ledger.DeployedChaincodeInfo{
Name: chaincodeName,
Hash: chaincodeData.Id,
Version: chaincodeData.Version,
ExplicitCollectionConfigPkg: collConfigPkg,
}, nil
}
// CollectionInfo implements function in interface ledger.DeployedChaincodeInfoProvider
func (p *DeployedCCInfoProvider) CollectionInfo(channelName, chaincodeName, collectionName string, qe ledger.SimpleQueryExecutor) (*common.StaticCollectionConfig, error) {
collConfigPkg, err := fetchCollConfigPkg(chaincodeName, qe)
if err != nil || collConfigPkg == nil {
return nil, err
}
for _, conf := range collConfigPkg.Config {
staticCollConfig := conf.GetStaticCollectionConfig()
if staticCollConfig != nil && staticCollConfig.Name == collectionName {
return staticCollConfig, nil
}
}
return nil, nil
}
func fetchCollConfigPkg(chaincodeName string, qe ledger.SimpleQueryExecutor) (*common.CollectionConfigPackage, error) {
collKey := privdata.BuildCollectionKVSKey(chaincodeName)
collectionConfigPkgBytes, err := qe.GetState(lsccNamespace, collKey)
if err != nil || collectionConfigPkgBytes == nil {
return nil, err
}
collectionConfigPkg := &common.CollectionConfigPackage{}
if err := proto.Unmarshal(collectionConfigPkgBytes, collectionConfigPkg); err != nil {
return nil, errors.Wrap(err, "error unmarshalling chaincode collection config pkg")
}
return collectionConfigPkg, nil
}