etcd/etcdctl/ctlv2/command/ls_command.go

91 lines
2.4 KiB
Go
Raw Normal View History

2016-05-13 06:51:39 +03:00
// Copyright 2015 The etcd Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2014-10-23 03:59:29 +04:00
package command
import (
"fmt"
2016-06-21 01:06:52 +03:00
"github.com/urfave/cli"
"go.etcd.io/etcd/client/v2"
2014-10-23 03:59:29 +04:00
)
func NewLsCommand() cli.Command {
return cli.Command{
Name: "ls",
Usage: "retrieve a directory",
ArgsUsage: "[key]",
2014-10-23 03:59:29 +04:00
Flags: []cli.Flag{
cli.BoolFlag{Name: "sort", Usage: "returns result in sorted order"},
cli.BoolFlag{Name: "recursive, r", Usage: "returns all key names recursively for the given path"},
cli.BoolFlag{Name: "p", Usage: "append slash (/) to directories"},
cli.BoolFlag{Name: "quorum, q", Usage: "require quorum for get request"},
2014-10-23 03:59:29 +04:00
},
Action: func(c *cli.Context) error {
2015-06-05 23:36:17 +03:00
lsCommandFunc(c, mustNewKeyAPI(c))
return nil
2014-10-23 03:59:29 +04:00
},
}
}
2015-06-05 23:36:17 +03:00
// lsCommandFunc executes the "ls" command.
func lsCommandFunc(c *cli.Context, ki client.KeysAPI) {
2015-08-05 08:56:55 +03:00
key := "/"
if len(c.Args()) != 0 {
key = c.Args()[0]
2015-06-05 23:36:17 +03:00
}
sort := c.Bool("sort")
recursive := c.Bool("recursive")
quorum := c.Bool("quorum")
2015-06-05 23:36:17 +03:00
ctx, cancel := contextWithTotalTimeout(c)
resp, err := ki.Get(ctx, key, &client.GetOptions{Sort: sort, Recursive: recursive, Quorum: quorum})
cancel()
2015-06-05 23:36:17 +03:00
if err != nil {
handleError(c, ExitServerError, err)
2015-06-05 23:36:17 +03:00
}
printLs(c, resp)
2014-10-23 03:59:29 +04:00
}
// printLs writes a response out in a manner similar to the `ls` command in unix.
// Non-empty directories list their contents and files list their name.
2015-06-05 23:36:17 +03:00
func printLs(c *cli.Context, resp *client.Response) {
if c.GlobalString("output") == "simple" {
if !resp.Node.Dir {
fmt.Println(resp.Node.Key)
}
for _, node := range resp.Node.Nodes {
rPrint(c, node)
}
} else {
// user wants JSON or extended output
printResponseKey(resp, c.GlobalString("output"))
2014-10-23 03:59:29 +04:00
}
}
// rPrint recursively prints out the nodes in the node structure.
2015-06-05 23:36:17 +03:00
func rPrint(c *cli.Context, n *client.Node) {
if n.Dir && c.Bool("p") {
fmt.Println(fmt.Sprintf("%v/", n.Key))
} else {
fmt.Println(n.Key)
}
2014-10-23 03:59:29 +04:00
for _, node := range n.Nodes {
rPrint(c, node)
2014-10-23 03:59:29 +04:00
}
}