6 Star 44 Fork 25

Hyperledger / fabric

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
cmd.go 3.04 KB
Copy Edit Raw Blame History
yacovm authored 2018-05-30 01:24 . [FAB-10459] Discovery CLI
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package discovery
import (
"os"
"time"
"github.com/hyperledger/fabric/cmd/common"
"github.com/hyperledger/fabric/discovery/client"
"gopkg.in/alecthomas/kingpin.v2"
)
const (
PeersCommand = "peers"
ConfigCommand = "config"
EndorsersCommand = "endorsers"
)
var (
// responseParserWriter defines the stdout
responseParserWriter = os.Stdout
)
const (
defaultTimeout = time.Second * 10
)
//go:generate mockery -dir . -name Stub -case underscore -output mocks/
// Stub represents the remote discovery service
type Stub interface {
// Send sends the request, and receives a response
Send(server string, conf common.Config, req *discovery.Request) (ServiceResponse, error)
}
//go:generate mockery -dir . -name ResponseParser -case underscore -output mocks/
// ResponseParser parses responses sent from the server
type ResponseParser interface {
// ParseResponse parses the response and uses the given output when emitting data
ParseResponse(channel string, response ServiceResponse) error
}
//go:generate mockery -dir . -name CommandRegistrar -case underscore -output mocks/
// CommandRegistrar registers commands
type CommandRegistrar interface {
// Command adds a new top-level command to the CLI
Command(name, help string, onCommand common.CLICommand) *kingpin.CmdClause
}
// AddCommands registers the discovery commands to the given CommandRegistrar
func AddCommands(cli CommandRegistrar) {
peerCmd := NewPeerCmd(&ClientStub{}, &PeerResponseParser{Writer: responseParserWriter})
peers := cli.Command(PeersCommand, "Discover peers", peerCmd.Execute)
server := peers.Flag("server", "Sets the endpoint of the server to connect").String()
channel := peers.Flag("channel", "Sets the channel the query is intended to").String()
peerCmd.SetServer(server)
peerCmd.SetChannel(channel)
configCmd := NewConfigCmd(&ClientStub{}, &ConfigResponseParser{Writer: responseParserWriter})
config := cli.Command(ConfigCommand, "Discover channel config", configCmd.Execute)
server = config.Flag("server", "Sets the endpoint of the server to connect").String()
channel = config.Flag("channel", "Sets the channel the query is intended to").String()
configCmd.SetServer(server)
configCmd.SetChannel(channel)
endorserCmd := NewEndorsersCmd(&RawStub{}, &EndorserResponseParser{Writer: responseParserWriter})
endorsers := cli.Command(EndorsersCommand, "Discover chaincode endorsers", endorserCmd.Execute)
chaincodes := endorsers.Flag("chaincode", "Specifies the chaincode name(s)").Strings()
collections := endorsers.Flag("collection", "Specifies the collection name(s) as a mapping from chaincode to a comma separated list of collections").PlaceHolder("CC:C1,C2").StringMap()
server = endorsers.Flag("server", "Sets the endpoint of the server to connect").String()
channel = endorsers.Flag("channel", "Sets the channel the query is intended to").String()
endorserCmd.SetChannel(channel)
endorserCmd.SetServer(server)
endorserCmd.SetChaincodes(chaincodes)
endorserCmd.SetCollections(collections)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyperledger/fabric.git
git@gitee.com:hyperledger/fabric.git
hyperledger
fabric
fabric
v2.0.0-alpha

Search

344bd9b3 5694891 D2dac590 5694891