aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_collection_list.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@uber.com>2019-03-16 13:43:16 -0700
committerChris Lu <chris.lu@uber.com>2019-03-16 13:43:16 -0700
commit657dd2e6c93c02f46b10dfd43fb6e9b38c025ece (patch)
treec23a093382d5ffd0d39dd69b68fb24050daa7f3e /weed/shell/command_collection_list.go
parentb92122b885c8fba189f3c503c17478008806fda7 (diff)
downloadseaweedfs-657dd2e6c93c02f46b10dfd43fb6e9b38c025ece.tar.xz
seaweedfs-657dd2e6c93c02f46b10dfd43fb6e9b38c025ece.zip
add shell command to list all collections
Diffstat (limited to 'weed/shell/command_collection_list.go')
-rw-r--r--weed/shell/command_collection_list.go39
1 files changed, 39 insertions, 0 deletions
diff --git a/weed/shell/command_collection_list.go b/weed/shell/command_collection_list.go
new file mode 100644
index 000000000..aab347d09
--- /dev/null
+++ b/weed/shell/command_collection_list.go
@@ -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
+}