Skip to content

Commit 8a9cb5c

Browse files
committed
[feat] tools-v2: add bs status volume snapshot command
Signed-off-by: saicaca <[email protected]>
1 parent 35846be commit 8a9cb5c

File tree

7 files changed

+255
-0
lines changed

7 files changed

+255
-0
lines changed

tools-v2/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -1627,6 +1627,38 @@ Output:
16271627
+------------+-----------+--------+--------+--------+---------+
16281628
```
16291629

1630+
##### status volume
1631+
1632+
###### status volume snapshot
1633+
1634+
get the snapshot status
1635+
1636+
Usage:
1637+
1638+
```bash
1639+
curve bs status volume snapshot --filename test --snapshotaddr 127.0.0.1:5550,127.0.0.1:5551,127.0.0.1:5552
1640+
```
1641+
1642+
Output:
1643+
1644+
```bash
1645+
+---------------+-------+
1646+
| STATUS | COUNT |
1647+
+---------------+-------+
1648+
| done | 10 |
1649+
+---------------+-------+
1650+
| in-progress | 4 |
1651+
+---------------+-------+
1652+
| deleting | 2 |
1653+
+---------------+-------+
1654+
| errorDeleting | 0 |
1655+
+---------------+-------+
1656+
| canceling | 0 |
1657+
+---------------+-------+
1658+
| error | 0 |
1659+
+---------------+-------+
1660+
```
1661+
16301662
#### delete
16311663

16321664
##### delete peer

tools-v2/internal/error/error.go

+3
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,9 @@ var (
500500
ErrInvalidMetaServerAddr = func() *CmdError {
501501
return NewInternalCmdError(80, "invalid metaserver external addr: %s")
502502
}
503+
ErrBsGetSnapshotStatus = func() *CmdError {
504+
return NewInternalCmdError(81, "get snapshot status fail, err: %s")
505+
}
503506

504507
// http error
505508
ErrHttpUnreadableResult = func() *CmdError {

tools-v2/internal/utils/row.go

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const (
3737
ROW_COPYSET = "copyset"
3838
ROW_COPYSET_ID = "copysetId"
3939
ROW_COPYSET_KEY = "copysetKey"
40+
ROW_COUNT = "count"
4041
ROW_CREATE_TIME = "createTime"
4142
ROW_CREATED = "created"
4243
ROW_CTIME = "ctime"

tools-v2/pkg/cli/command/curvebs/status/status.go

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import (
3131
"github.com/opencurve/curve/tools-v2/pkg/cli/command/curvebs/status/etcd"
3232
"github.com/opencurve/curve/tools-v2/pkg/cli/command/curvebs/status/mds"
3333
"github.com/opencurve/curve/tools-v2/pkg/cli/command/curvebs/status/snapshot"
34+
"github.com/opencurve/curve/tools-v2/pkg/cli/command/curvebs/status/volume"
3435
"github.com/spf13/cobra"
3536
)
3637

@@ -49,6 +50,7 @@ func (statusCmd *StatusCommand) AddSubCommands() {
4950
chunkserver.NewChunkServerCommand(),
5051
copyset.NewCopysetCommand(),
5152
cluster.NewClusterCommand(),
53+
volume.NewVolumeCommand(),
5254
)
5355
}
5456

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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 volume
24+
25+
import (
26+
basecmd "github.com/opencurve/curve/tools-v2/pkg/cli/command"
27+
"github.com/opencurve/curve/tools-v2/pkg/cli/command/curvebs/status/volume/snapshot"
28+
"github.com/spf13/cobra"
29+
)
30+
31+
type VolumeCommand struct {
32+
basecmd.MidCurveCmd
33+
}
34+
35+
var _ basecmd.MidCurveCmdFunc = (*VolumeCommand)(nil) // check interface
36+
37+
func (volumeCmd *VolumeCommand) AddSubCommands() {
38+
volumeCmd.Cmd.AddCommand(
39+
snapshot.NewSnapshotCommand(),
40+
)
41+
}
42+
43+
func NewVolumeCommand() *cobra.Command {
44+
volumeCmd := &VolumeCommand{
45+
basecmd.MidCurveCmd{
46+
Use: "volume",
47+
Short: "get the status of curvebs volume",
48+
},
49+
}
50+
return basecmd.NewMidCurveCli(&volumeCmd.MidCurveCmd, volumeCmd)
51+
}

tools-v2/pkg/config/bs.go

+4
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,10 @@ func AddBsTaskIDRequiredFlag(cmd *cobra.Command) {
677677
AddBsStringRequiredFlag(cmd, CURVEBS_TASKID, "task id")
678678
}
679679

680+
func AddBsSnapshotFilenameFlag(cmd *cobra.Command) {
681+
AddBsStringOptionFlag(cmd, CURVEBS_FILENAME, "snapshot filename")
682+
}
683+
680684
func AddBsSnapshotIDOptionFlag(cmd *cobra.Command) {
681685
AddBsStringOptionFlag(cmd, CURVEBS_SNAPSHOT_ID, "snapshot seqId")
682686
}

0 commit comments

Comments
 (0)