代码拉取完成,页面将自动刷新
/*
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"
"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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。