2019-03-16 20:43:16 +00:00
|
|
|
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 {
|
2019-03-18 00:28:29 +00:00
|
|
|
return "# list all collections"
|
2019-03-16 20:43:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2019-03-18 00:31:05 +00:00
|
|
|
fmt.Fprintf(writer, "collection:\"%s\"\treplication:\"%s\"\tTTL:\"%s\"\n", c.GetName(), c.GetReplication(), c.GetTtl())
|
2019-03-16 20:43:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintf(writer, "Total %d collections.\n", len(resp.Collections))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|