1 Star 1 Fork 0

Hyperledger Fabric 国密 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.go 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
Jtyoui 提交于 2021-07-22 15:59 . 国密
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package discovery
import (
"encoding/json"
"fmt"
"io"
"gitee.com/hyperledger-fabric-gm/fabric/cmd/common"
"gitee.com/hyperledger-fabric-gm/fabric/discovery/client"
"github.com/pkg/errors"
)
// NewConfigCmd creates a new ConfigCmd
func NewConfigCmd(stub Stub, parser ResponseParser) *ConfigCmd {
return &ConfigCmd{
stub: stub,
parser: parser,
}
}
// ConfigCmd executes a command that retrieves config
type ConfigCmd struct {
stub Stub
server *string
channel *string
parser ResponseParser
}
// SetServer sets the server of the ConfigCmd
func (pc *ConfigCmd) SetServer(server *string) {
pc.server = server
}
// SetChannel sets the channel of the ConfigCmd
func (pc *ConfigCmd) SetChannel(channel *string) {
pc.channel = channel
}
// Execute executes the command
func (pc *ConfigCmd) Execute(conf common.Config) error {
if pc.server == nil || *pc.server == "" {
return errors.New("no server specified")
}
if pc.channel == nil || *pc.channel == "" {
return errors.New("no channel specified")
}
server := *pc.server
channel := *pc.channel
req := discovery.NewRequest().OfChannel(channel).AddConfigQuery()
res, err := pc.stub.Send(server, conf, req)
if err != nil {
return err
}
return pc.parser.ParseResponse(channel, res)
}
// ConfigResponseParser parses config responses
type ConfigResponseParser struct {
io.Writer
}
// ParseResponse parses the given response for the given channel
func (parser *ConfigResponseParser) ParseResponse(channel string, res ServiceResponse) error {
chanConf, err := res.ForChannel(channel).Config()
if err != nil {
return err
}
jsonBytes, _ := json.MarshalIndent(chanConf, "", "\t")
fmt.Fprintln(parser.Writer, string(jsonBytes))
return nil
}
Go
1
https://gitee.com/hyperledger-fabric-gm/fabric.git
git@gitee.com:hyperledger-fabric-gm/fabric.git
hyperledger-fabric-gm
fabric
fabric
v1.4.9

搜索帮助