6 Star 44 Fork 25

Hyperledger / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.go 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package discovery
import (
"encoding/json"
"fmt"
"io"
"github.com/hyperledger/fabric/cmd/common"
discovery "github.com/hyperledger/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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyperledger/fabric.git
git@gitee.com:hyperledger/fabric.git
hyperledger
fabric
fabric
v2.1.0

搜索帮助

344bd9b3 5694891 D2dac590 5694891