| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- // Copyright 2016 CoreOS, Inc.
- //
- // 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.
- package command
- import (
- "fmt"
- "io"
- "os"
- "strconv"
- "time"
- "github.com/coreos/etcd/Godeps/_workspace/src/github.com/spf13/cobra"
- "github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
- pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
- )
- // NewLeaseCommand returns the cobra command for "lease".
- func NewLeaseCommand() *cobra.Command {
- lc := &cobra.Command{
- Use: "lease",
- Short: "lease is used to manage leases.",
- }
- lc.AddCommand(NewLeaseCreateCommand())
- lc.AddCommand(NewLeaseRevokeCommand())
- lc.AddCommand(NewLeaseKeepAliveCommand())
- return lc
- }
- // NewLeaseCreateCommand returns the cobra command for "lease create".
- func NewLeaseCreateCommand() *cobra.Command {
- lc := &cobra.Command{
- Use: "create",
- Short: "create is used to create leases.",
- Run: leaseCreateCommandFunc,
- }
- return lc
- }
- // leaseCreateCommandFunc executes the "lease create" command.
- func leaseCreateCommandFunc(cmd *cobra.Command, args []string) {
- if len(args) != 1 {
- ExitWithError(ExitBadArgs, fmt.Errorf("lease create command needs TTL argument."))
- }
- ttl, err := strconv.ParseInt(args[0], 10, 64)
- if err != nil {
- ExitWithError(ExitBadArgs, fmt.Errorf("bad TTL (%v)", err))
- }
- req := &pb.LeaseCreateRequest{TTL: ttl}
- resp, err := mustClient(cmd).Lease.LeaseCreate(context.Background(), req)
- if err != nil {
- fmt.Fprintf(os.Stderr, "failed to create lease (%v)\n", err)
- return
- }
- fmt.Printf("lease %016x created with TTL(%ds)\n", resp.ID, resp.TTL)
- }
- // NewLeaseRevokeCommand returns the cobra command for "lease revoke".
- func NewLeaseRevokeCommand() *cobra.Command {
- lc := &cobra.Command{
- Use: "revoke",
- Short: "revoke is used to revoke leases.",
- Run: leaseRevokeCommandFunc,
- }
- return lc
- }
- // leaseRevokeCommandFunc executes the "lease create" command.
- func leaseRevokeCommandFunc(cmd *cobra.Command, args []string) {
- if len(args) != 1 {
- ExitWithError(ExitBadArgs, fmt.Errorf("lease revoke command needs 1 argument"))
- }
- id, err := strconv.ParseInt(args[0], 16, 64)
- if err != nil {
- ExitWithError(ExitBadArgs, fmt.Errorf("bad lease ID arg (%v), expecting ID in Hex", err))
- }
- req := &pb.LeaseRevokeRequest{ID: id}
- _, err = mustClient(cmd).Lease.LeaseRevoke(context.Background(), req)
- if err != nil {
- fmt.Fprintf(os.Stderr, "failed to revoke lease (%v)\n", err)
- return
- }
- fmt.Printf("lease %016x revoked\n", id)
- }
- // NewLeaseKeepAliveCommand returns the cobra command for "lease keep-alive".
- func NewLeaseKeepAliveCommand() *cobra.Command {
- lc := &cobra.Command{
- Use: "keep-alive",
- Short: "keep-alive is used to keep leases alive.",
- Run: leaseKeepAliveCommandFunc,
- }
- return lc
- }
- // leaseKeepAliveCommandFunc executes the "lease keep-alive" command.
- func leaseKeepAliveCommandFunc(cmd *cobra.Command, args []string) {
- if len(args) != 1 {
- ExitWithError(ExitBadArgs, fmt.Errorf("lease keep-alive command needs lease ID as argument"))
- }
- id, err := strconv.ParseInt(args[0], 16, 64)
- if err != nil {
- ExitWithError(ExitBadArgs, fmt.Errorf("bad lease ID arg (%v), expecting ID in Hex", err))
- }
- kStream, err := mustClient(cmd).Lease.LeaseKeepAlive(context.TODO())
- if err != nil {
- ExitWithError(ExitBadConnection, err)
- }
- nextC := make(chan int64, 1)
- go leaseKeepAliveRecvLoop(kStream, nextC)
- req := &pb.LeaseKeepAliveRequest{ID: id}
- for {
- err := kStream.Send(req)
- if err != nil {
- ExitWithError(ExitError, fmt.Errorf("failed to keep-alive lease (%v)", err))
- }
- next := <-nextC
- time.Sleep(time.Duration(next/2) * time.Second)
- }
- }
- func leaseKeepAliveRecvLoop(kStream pb.Lease_LeaseKeepAliveClient, nextC chan int64) {
- for {
- resp, err := kStream.Recv()
- if err == io.EOF {
- os.Exit(ExitSuccess)
- }
- if err != nil {
- ExitWithError(ExitError, err)
- }
- fmt.Printf("lease %016x keepalived with TTL(%d)\n", resp.ID, resp.TTL)
- nextC <- resp.TTL
- }
- }
|