1 Star 0 Fork 0

陈文甲/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
configmap.go 4.61 KB
一键复制 编辑 原始数据 按行查看 历史
/*
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 configtx
import (
"fmt"
"strings"
cb "github.com/hyperledger/fabric/protos/common"
)
const (
RootGroupKey = "Channel"
GroupPrefix = "[Groups] "
ValuePrefix = "[Values] "
PolicyPrefix = "[Policy] " // The plurarility doesn't match, but, it makes the logs much easier being the same length as "Groups" and "Values"
PathSeparator = "/"
)
// MapConfig is intended to be called outside this file
// it takes a ConfigGroup and generates a map of fqPath to comparables (or error on invalid keys)
func MapConfig(channelGroup *cb.ConfigGroup) (map[string]comparable, error) {
result := make(map[string]comparable)
if channelGroup != nil {
err := recurseConfig(result, []string{RootGroupKey}, channelGroup)
if err != nil {
return nil, err
}
}
return result, nil
}
// addToMap is used only internally by MapConfig
func addToMap(cg comparable, result map[string]comparable) error {
var fqPath string
switch {
case cg.ConfigGroup != nil:
fqPath = GroupPrefix
case cg.ConfigValue != nil:
fqPath = ValuePrefix
case cg.ConfigPolicy != nil:
fqPath = PolicyPrefix
}
// TODO rename validateChainID to validateConfigID
if err := validateChainID(cg.key); err != nil {
return fmt.Errorf("Illegal characters in key: %s", fqPath)
}
if len(cg.path) == 0 {
fqPath += PathSeparator + cg.key
} else {
fqPath += PathSeparator + strings.Join(cg.path, PathSeparator) + PathSeparator + cg.key
}
logger.Debugf("Adding to config map: %s", fqPath)
result[fqPath] = cg
return nil
}
// recurseConfig is used only internally by MapConfig
func recurseConfig(result map[string]comparable, path []string, group *cb.ConfigGroup) error {
if err := addToMap(comparable{key: path[len(path)-1], path: path[:len(path)-1], ConfigGroup: group}, result); err != nil {
return err
}
for key, group := range group.Groups {
nextPath := append(path, key)
if err := recurseConfig(result, nextPath, group); err != nil {
return err
}
}
for key, value := range group.Values {
if err := addToMap(comparable{key: key, path: path, ConfigValue: value}, result); err != nil {
return err
}
}
for key, policy := range group.Policies {
if err := addToMap(comparable{key: key, path: path, ConfigPolicy: policy}, result); err != nil {
return err
}
}
return nil
}
// configMapToConfig is intended to be called from outside this file
// It takes a configMap and converts it back into a *cb.ConfigGroup structure
func configMapToConfig(configMap map[string]comparable) (*cb.ConfigGroup, error) {
rootPath := PathSeparator + RootGroupKey
return recurseConfigMap(rootPath, configMap)
}
// recurseConfigMap is used only internally by configMapToConfig
// Note, this function mutates the cb.Config* entrieswithin configMap, so errors are generally fatal
func recurseConfigMap(path string, configMap map[string]comparable) (*cb.ConfigGroup, error) {
groupPath := GroupPrefix + path
group, ok := configMap[groupPath]
if !ok {
return nil, fmt.Errorf("Missing group at path: %s", groupPath)
}
if group.ConfigGroup == nil {
return nil, fmt.Errorf("ConfigGroup not found at group path: %s", groupPath)
}
for key, _ := range group.Groups {
updatedGroup, err := recurseConfigMap(path+PathSeparator+key, configMap)
if err != nil {
return nil, err
}
group.Groups[key] = updatedGroup
}
for key, _ := range group.Values {
valuePath := ValuePrefix + path + PathSeparator + key
value, ok := configMap[valuePath]
if !ok {
return nil, fmt.Errorf("Missing value at path: %s", valuePath)
}
if value.ConfigValue == nil {
return nil, fmt.Errorf("ConfigValue not found at value path: %s", valuePath)
}
group.Values[key] = value.ConfigValue
}
for key, _ := range group.Policies {
policyPath := PolicyPrefix + path + PathSeparator + key
policy, ok := configMap[policyPath]
if !ok {
return nil, fmt.Errorf("Missing policy at path: %s", policyPath)
}
if policy.ConfigPolicy == nil {
return nil, fmt.Errorf("ConfigPolicy not found at policy path: %s", policyPath)
}
group.Policies[key] = policy.ConfigPolicy
}
return group.ConfigGroup, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/venjia/fabric.git
git@gitee.com:venjia/fabric.git
venjia
fabric
fabric
v1.0.0-beta

搜索帮助