mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-18 18:57:58 +08:00
add shell command to list all collections
This commit is contained in:
39
weed/shell/command_collection_list.go
Normal file
39
weed/shell/command_collection_list.go
Normal file
@@ -0,0 +1,39 @@
|
||||
package shell
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"io"
|
||||
)
|
||||
|
||||
func init() {
|
||||
commands = append(commands, &commandCollectionList{})
|
||||
}
|
||||
|
||||
type commandCollectionList struct {
|
||||
}
|
||||
|
||||
func (c *commandCollectionList) Name() string {
|
||||
return "collection.list"
|
||||
}
|
||||
|
||||
func (c *commandCollectionList) Help() string {
|
||||
return "\t\t # list all collections"
|
||||
}
|
||||
|
||||
func (c *commandCollectionList) Do(args []string, commandEnv *commandEnv, writer io.Writer) error {
|
||||
|
||||
resp, err := commandEnv.masterClient.CollectionList(context.Background())
|
||||
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
for _, c := range resp.Collections {
|
||||
fmt.Fprintf(writer, "collection:\"%s\"\n", c.GetName())
|
||||
}
|
||||
|
||||
fmt.Fprintf(writer, "Total %d collections.\n", len(resp.Collections))
|
||||
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user