seaweedfs/weed/shell/command_collection_list.go

46 lines
962 B
Go
Raw Normal View History

package shell
import (
"context"
"fmt"
2019-03-19 12:19:37 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"io"
)
func init() {
commands = append(commands, &commandCollectionList{})
}
type commandCollectionList struct {
}
func (c *commandCollectionList) Name() string {
return "collection.list"
}
func (c *commandCollectionList) Help() string {
2019-03-18 00:28:29 +00:00
return "# list all collections"
}
2019-03-19 12:19:37 +00:00
func (c *commandCollectionList) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
2019-03-19 12:19:37 +00:00
var resp *master_pb.CollectionListResponse
2019-03-20 06:01:23 +00:00
ctx := context.Background()
err = commandEnv.masterClient.WithClient(ctx, func(client master_pb.SeaweedClient) error {
2019-03-19 12:19:37 +00:00
resp, err = client.CollectionList(ctx, &master_pb.CollectionListRequest{})
return err
})
if err != nil {
return err
}
for _, c := range resp.Collections {
2019-03-18 03:27:08 +00:00
fmt.Fprintf(writer, "collection:\"%s\"\n", c.GetName())
}
fmt.Fprintf(writer, "Total %d collections.\n", len(resp.Collections))
return nil
}