etcd/etcdctl/ctlv2/command/rm_command.go

64 lines
2.0 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 (
"errors"
2016-06-21 01:06:52 +03:00
"github.com/urfave/cli"
"go.etcd.io/etcd/client"
2014-10-23 03:59:29 +04:00
)
2015-06-05 20:07:17 +03:00
// NewRemoveCommand returns the CLI command for "rm".
2014-10-23 03:59:29 +04:00
func NewRemoveCommand() cli.Command {
return cli.Command{
Name: "rm",
Usage: "remove a key or a directory",
ArgsUsage: "<key>",
2014-10-23 03:59:29 +04:00
Flags: []cli.Flag{
2014-10-23 04:51:40 +04:00
cli.BoolFlag{Name: "dir", Usage: "removes the key if it is an empty directory or a key-value pair"},
cli.BoolFlag{Name: "recursive, r", Usage: "removes the key and all child keys(if it is a directory)"},
2014-10-23 04:51:40 +04:00
cli.StringFlag{Name: "with-value", Value: "", Usage: "previous value"},
cli.IntFlag{Name: "with-index", Value: 0, Usage: "previous index"},
2014-10-23 03:59:29 +04:00
},
Action: func(c *cli.Context) error {
2015-06-05 02:44:29 +03:00
rmCommandFunc(c, mustNewKeyAPI(c))
return nil
2014-10-23 03:59:29 +04:00
},
}
}
2015-06-05 02:44:29 +03:00
// rmCommandFunc executes the "rm" command.
func rmCommandFunc(c *cli.Context, ki client.KeysAPI) {
2014-10-23 03:59:29 +04:00
if len(c.Args()) == 0 {
handleError(c, ExitBadArgs, errors.New("key required"))
2014-10-23 03:59:29 +04:00
}
key := c.Args()[0]
recursive := c.Bool("recursive")
dir := c.Bool("dir")
prevValue := c.String("with-value")
2015-06-05 02:44:29 +03:00
prevIndex := c.Int("with-index")
2014-10-23 03:59:29 +04:00
ctx, cancel := contextWithTotalTimeout(c)
resp, err := ki.Delete(ctx, key, &client.DeleteOptions{PrevIndex: uint64(prevIndex), PrevValue: prevValue, Dir: dir, Recursive: recursive})
cancel()
2015-06-05 02:44:29 +03:00
if err != nil {
handleError(c, ExitServerError, err)
2014-10-23 03:59:29 +04:00
}
if !resp.Node.Dir || c.GlobalString("output") != "simple" {
2015-06-05 02:44:29 +03:00
printResponseKey(resp, c.GlobalString("output"))
2014-10-23 03:59:29 +04:00
}
}