seaweedfs/weed/shell/command_collection_list.go

59 lines
1.3 KiB
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-23 18:54:26 +00:00
return `list all collections`
}
func (c *commandCollectionList) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
2019-05-30 16:27:23 +00:00
collections, err := ListCollectionNames(commandEnv, true, true)
2019-05-06 05:21:28 +00:00
if err != nil {
return err
}
for _, c := range collections {
fmt.Fprintf(writer, "collection:\"%s\"\n", c)
}
fmt.Fprintf(writer, "Total %d collections.\n", len(collections))
return nil
}
func ListCollectionNames(commandEnv *CommandEnv, includeNormalVolumes, includeEcVolumes bool) (collections []string, err error) {
2019-03-19 12:19:37 +00:00
var resp *master_pb.CollectionListResponse
err = commandEnv.MasterClient.WithClient(func(client master_pb.SeaweedClient) error {
resp, err = client.CollectionList(context.Background(), &master_pb.CollectionListRequest{
2019-05-30 16:27:23 +00:00
IncludeNormalVolumes: includeNormalVolumes,
IncludeEcVolumes: includeEcVolumes,
})
2019-03-19 12:19:37 +00:00
return err
})
if err != nil {
2019-05-06 05:21:28 +00:00
return
}
for _, c := range resp.Collections {
2019-05-06 05:21:28 +00:00
collections = append(collections, c.Name)
}
2019-05-06 05:21:28 +00:00
return
}