2019-03-17 04:43:16 +08:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2019-03-19 20:19:37 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2019-03-17 04:43:16 +08:00
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-05 16:30:24 +08:00
|
|
|
Commands = append(Commands, &commandCollectionList{})
|
2019-03-17 04:43:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type commandCollectionList struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandCollectionList) Name() string {
|
|
|
|
return "collection.list"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandCollectionList) Help() string {
|
2019-03-24 02:54:26 +08:00
|
|
|
return `list all collections`
|
2019-03-17 04:43:16 +08:00
|
|
|
}
|
|
|
|
|
2019-06-05 16:30:24 +08:00
|
|
|
func (c *commandCollectionList) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
2019-03-17 04:43:16 +08:00
|
|
|
|
2019-05-31 00:27:23 +08:00
|
|
|
collections, err := ListCollectionNames(commandEnv, true, true)
|
2019-05-06 13:21:28 +08: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
|
|
|
|
}
|
|
|
|
|
2019-06-05 16:30:24 +08:00
|
|
|
func ListCollectionNames(commandEnv *CommandEnv, includeNormalVolumes, includeEcVolumes bool) (collections []string, err error) {
|
2019-03-19 20:19:37 +08:00
|
|
|
var resp *master_pb.CollectionListResponse
|
2019-03-20 14:01:23 +08:00
|
|
|
ctx := context.Background()
|
2019-06-05 16:30:24 +08:00
|
|
|
err = commandEnv.MasterClient.WithClient(ctx, func(client master_pb.SeaweedClient) error {
|
2019-05-31 00:27:23 +08:00
|
|
|
resp, err = client.CollectionList(ctx, &master_pb.CollectionListRequest{
|
|
|
|
IncludeNormalVolumes: includeNormalVolumes,
|
|
|
|
IncludeEcVolumes: includeEcVolumes,
|
|
|
|
})
|
2019-03-19 20:19:37 +08:00
|
|
|
return err
|
|
|
|
})
|
2019-03-17 04:43:16 +08:00
|
|
|
if err != nil {
|
2019-05-06 13:21:28 +08:00
|
|
|
return
|
2019-03-17 04:43:16 +08:00
|
|
|
}
|
|
|
|
for _, c := range resp.Collections {
|
2019-05-06 13:21:28 +08:00
|
|
|
collections = append(collections, c.Name)
|
2019-03-17 04:43:16 +08:00
|
|
|
}
|
2019-05-06 13:21:28 +08:00
|
|
|
return
|
2019-03-17 04:43:16 +08:00
|
|
|
}
|