etcd/etcdctl/ctlv2/command/update_dir_command.go

58 lines
1.7 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"
2015-06-05 23:15:50 +03:00
"time"
2014-10-23 03:59:29 +04:00
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
)
2015-06-05 23:15:50 +03:00
// NewUpdateDirCommand returns the CLI command for "updatedir".
2014-10-23 03:59:29 +04:00
func NewUpdateDirCommand() cli.Command {
return cli.Command{
Name: "updatedir",
Usage: "update an existing directory",
ArgsUsage: "<key> <value>",
2014-10-23 03:59:29 +04:00
Flags: []cli.Flag{
cli.IntFlag{Name: "ttl", Value: 0, Usage: "key time-to-live in seconds"},
2014-10-23 03:59:29 +04:00
},
Action: func(c *cli.Context) error {
2015-06-05 23:15:50 +03:00
updatedirCommandFunc(c, mustNewKeyAPI(c))
return nil
2014-10-23 03:59:29 +04:00
},
}
}
2015-06-05 23:15:50 +03:00
// updatedirCommandFunc executes the "updatedir" command.
func updatedirCommandFunc(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]
ttl := c.Int("ttl")
ctx, cancel := contextWithTotalTimeout(c)
resp, err := ki.Set(ctx, key, "", &client.SetOptions{TTL: time.Duration(ttl) * time.Second, Dir: true, PrevExist: client.PrevExist})
cancel()
2015-06-05 23:15:50 +03:00
if err != nil {
handleError(c, ExitServerError, err)
2015-06-05 23:15:50 +03:00
}
if c.GlobalString("output") != "simple" {
printResponseKey(resp, c.GlobalString("output"))
}
2014-10-23 03:59:29 +04:00
}