|
| 1 | +/* |
| 2 | + * Copyright (c) 2023 NetEase Inc. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +/* |
| 18 | + * Project: CurveCli |
| 19 | + * Created Date: 2023-09-13 |
| 20 | + * Author: saicaca |
| 21 | + */ |
| 22 | + |
| 23 | +package snapshot |
| 24 | + |
| 25 | +import ( |
| 26 | + "encoding/json" |
| 27 | + "fmt" |
| 28 | + "strconv" |
| 29 | + "time" |
| 30 | + |
| 31 | + cmderror "github.com/opencurve/curve/tools-v2/internal/error" |
| 32 | + cobrautil "github.com/opencurve/curve/tools-v2/internal/utils" |
| 33 | + snapshotutil "github.com/opencurve/curve/tools-v2/internal/utils/snapshot" |
| 34 | + basecmd "github.com/opencurve/curve/tools-v2/pkg/cli/command" |
| 35 | + "github.com/opencurve/curve/tools-v2/pkg/config" |
| 36 | + "github.com/opencurve/curve/tools-v2/pkg/output" |
| 37 | + "github.com/spf13/cobra" |
| 38 | +) |
| 39 | + |
| 40 | +const ( |
| 41 | + LENGTH_EMPTY = 0 |
| 42 | +) |
| 43 | + |
| 44 | +type SnapshotCommand struct { |
| 45 | + basecmd.FinalCurveCmd |
| 46 | + |
| 47 | + snapshotAddrs []string |
| 48 | + timeout time.Duration |
| 49 | + user string |
| 50 | + filename string |
| 51 | + |
| 52 | + errCode int |
| 53 | + health cobrautil.ClUSTER_HEALTH_STATUS |
| 54 | +} |
| 55 | + |
| 56 | +var _ basecmd.FinalCurveCmdFunc = (*SnapshotCommand)(nil) // check interface |
| 57 | + |
| 58 | +func NewSnapshotCommand() *cobra.Command { |
| 59 | + return NewVolumeSnapshotCommand().Cmd |
| 60 | +} |
| 61 | + |
| 62 | +func NewVolumeSnapshotCommand() *SnapshotCommand { |
| 63 | + vsCmd := &SnapshotCommand{ |
| 64 | + FinalCurveCmd: basecmd.FinalCurveCmd{ |
| 65 | + Use: "snapshot", |
| 66 | + Short: "show the snapshot status", |
| 67 | + }, |
| 68 | + } |
| 69 | + basecmd.NewFinalCurveCli(&vsCmd.FinalCurveCmd, vsCmd) |
| 70 | + return vsCmd |
| 71 | +} |
| 72 | + |
| 73 | +func (sCmd *SnapshotCommand) Init(cmd *cobra.Command, args []string) error { |
| 74 | + snapshotAddrs, err := config.GetBsSnapshotAddrSlice(sCmd.Cmd) |
| 75 | + if err.TypeCode() != cmderror.CODE_SUCCESS || len(snapshotAddrs) == 0 { |
| 76 | + return err.ToError() |
| 77 | + } |
| 78 | + sCmd.snapshotAddrs = snapshotAddrs |
| 79 | + sCmd.filename = config.GetBsFlagString(sCmd.Cmd, config.CURVEBS_FILENAME) |
| 80 | + sCmd.user = config.GetBsFlagString(sCmd.Cmd, config.CURVEBS_USER) |
| 81 | + sCmd.timeout = config.GetFlagDuration(sCmd.Cmd, config.HTTPTIMEOUT) |
| 82 | + |
| 83 | + header := []string{cobrautil.ROW_STATUS, cobrautil.ROW_COUNT} |
| 84 | + sCmd.SetHeader(header) |
| 85 | + |
| 86 | + return nil |
| 87 | +} |
| 88 | + |
| 89 | +func (sCmd *SnapshotCommand) RunCommand(cmd *cobra.Command, args []string) error { |
| 90 | + params := map[string]any{ |
| 91 | + snapshotutil.QueryAction: snapshotutil.ActionGetFileSnapshotList, |
| 92 | + snapshotutil.QueryUser: sCmd.user, |
| 93 | + snapshotutil.QueryFile: sCmd.filename, |
| 94 | + snapshotutil.QueryLimit: snapshotutil.Limit, |
| 95 | + snapshotutil.QueryOffset: snapshotutil.Offset, |
| 96 | + } |
| 97 | + count := make(map[int]int) |
| 98 | + for { |
| 99 | + subUri := snapshotutil.NewQuerySubUri(params) |
| 100 | + |
| 101 | + metric := basecmd.NewMetric(sCmd.snapshotAddrs, subUri, sCmd.timeout) |
| 102 | + result, err := basecmd.QueryMetric(metric) |
| 103 | + if err.TypeCode() != cmderror.CODE_SUCCESS { |
| 104 | + sCmd.Error = cmderror.ErrBsGetSnapshotStatus() |
| 105 | + sCmd.Error.Format(fmt.Sprintf("code: %d, msg: %s", err.TypeCode(), err.ToError().Error())) |
| 106 | + return sCmd.Error.ToError() |
| 107 | + } |
| 108 | + |
| 109 | + var resp struct { |
| 110 | + snapshotutil.Response |
| 111 | + TotalCount int `json:"TotalCount"` |
| 112 | + SnapShots []*snapshotutil.SnapshotInfo `json:"SnapShots"` |
| 113 | + } |
| 114 | + if err := json.Unmarshal([]byte(result), &resp); err != nil { |
| 115 | + sCmd.Error = cmderror.ErrUnmarshalJson() |
| 116 | + sCmd.Error.Format(err.Error()) |
| 117 | + return sCmd.Error.ToError() |
| 118 | + } |
| 119 | + if resp.Code != snapshotutil.ResultSuccess { |
| 120 | + sCmd.Error = cmderror.ErrBsGetSnapshotStatus() |
| 121 | + sCmd.Error.Format(fmt.Sprintf("code: %s, msg: %s", resp.Code, resp.Message)) |
| 122 | + return sCmd.Error.ToError() |
| 123 | + } |
| 124 | + if len(resp.SnapShots) == LENGTH_EMPTY { |
| 125 | + break |
| 126 | + } |
| 127 | + for _, s := range resp.SnapShots { |
| 128 | + count[s.Status] += 1 |
| 129 | + } |
| 130 | + |
| 131 | + params[snapshotutil.QueryOffset] = params[snapshotutil.QueryOffset].(int) + params[snapshotutil.QueryLimit].(int) |
| 132 | + } |
| 133 | + |
| 134 | + rows := make([]map[string]string, 0) |
| 135 | + for i, s := range snapshotutil.SnapshotStatus { |
| 136 | + rows = append(rows, map[string]string{ |
| 137 | + cobrautil.ROW_STATUS: s, |
| 138 | + cobrautil.ROW_COUNT: strconv.Itoa(count[i]), |
| 139 | + }) |
| 140 | + } |
| 141 | + list := cobrautil.ListMap2ListSortByKeys(rows, sCmd.Header, []string{}) |
| 142 | + sCmd.TableNew.AppendBulk(list) |
| 143 | + sCmd.Result = rows |
| 144 | + sCmd.Error = cmderror.ErrSuccess() |
| 145 | + |
| 146 | + return nil |
| 147 | +} |
| 148 | + |
| 149 | +func (sCmd *SnapshotCommand) Print(cmd *cobra.Command, args []string) error { |
| 150 | + return output.FinalCmdOutput(&sCmd.FinalCurveCmd, sCmd) |
| 151 | +} |
| 152 | + |
| 153 | +func (sCmd *SnapshotCommand) ResultPlainOutput() error { |
| 154 | + return output.FinalCmdOutputPlain(&sCmd.FinalCurveCmd) |
| 155 | +} |
| 156 | + |
| 157 | +func (sCmd *SnapshotCommand) AddFlags() { |
| 158 | + config.AddBsUserOptionFlag(sCmd.Cmd) |
| 159 | + config.AddBsSnapshotFilenameFlag(sCmd.Cmd) |
| 160 | + config.AddBsSnapshotCloneFlagOption(sCmd.Cmd) |
| 161 | + config.AddHttpTimeoutFlag(sCmd.Cmd) |
| 162 | +} |
0 commit comments