forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.go
64 lines (50 loc) · 1.45 KB
/
resources.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package peer
import (
"fmt"
"github.com/hyperledger/fabric/protos/common"
"github.com/golang/protobuf/proto"
)
const RSCCSeedDataKey = "rscc_seed_data"
func init() {
common.DynamicConfigTypes[common.ConfigType_RESOURCE] = func(cg *common.ConfigGroup) proto.Message {
return &DynamicResourceConfigGroup{
ConfigGroup: cg,
}
}
common.ConfigUpdateIsolatedDataTypes[RSCCSeedDataKey] = func(key string) proto.Message {
return &common.Config{}
}
}
type DynamicResourceConfigGroup struct {
*common.ConfigGroup
}
func (drcg *DynamicResourceConfigGroup) DynamicMapFields() []string {
return []string{"values"}
}
func (drcg *DynamicResourceConfigGroup) DynamicMapFieldProto(name string, key string, base proto.Message) (proto.Message, error) {
switch name {
case "values":
cv, ok := base.(*common.ConfigValue)
if !ok {
return nil, fmt.Errorf("ConfigGroup values can only contain ConfigValue messages")
}
return &DynamicResourceConfigValue{
ConfigValue: cv,
}, nil
default:
return nil, fmt.Errorf("ConfigGroup does not have a dynamic field: %s", name)
}
}
type DynamicResourceConfigValue struct {
*common.ConfigValue
}
func (drcv *DynamicResourceConfigValue) VariablyOpaqueFieldProto(name string) (proto.Message, error) {
if name != drcv.VariablyOpaqueFields()[0] {
return nil, fmt.Errorf("Not a marshaled field: %s", name)
}
return &Resource{}, nil
}