etcd/etcdctl/ctlv2/command/update_command.go

64 lines
1.8 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"
"os"
2015-06-05 23:09:25 +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
)
// NewUpdateCommand returns the CLI command for "update".
func NewUpdateCommand() cli.Command {
return cli.Command{
Name: "update",
Usage: "update an existing key with a given value",
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:09:25 +03:00
updateCommandFunc(c, mustNewKeyAPI(c))
return nil
2014-10-23 03:59:29 +04:00
},
}
}
// updateCommandFunc executes the "update" command.
2015-06-05 23:09:25 +03:00
func updateCommandFunc(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]
value, err := argOrStdin(c.Args(), os.Stdin, 1)
if err != nil {
handleError(c, ExitBadArgs, errors.New("value required"))
2014-10-23 03:59:29 +04:00
}
ttl := c.Int("ttl")
ctx, cancel := contextWithTotalTimeout(c)
resp, err := ki.Set(ctx, key, value, &client.SetOptions{TTL: time.Duration(ttl) * time.Second, PrevExist: client.PrevExist})
cancel()
2015-06-05 23:09:25 +03:00
if err != nil {
handleError(c, ExitServerError, err)
2015-06-05 23:09:25 +03:00
}
printResponseKey(resp, c.GlobalString("output"))
2014-10-23 03:59:29 +04:00
}