-
Notifications
You must be signed in to change notification settings - Fork 524
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat]tools-v2: add bs create volume snapshot
Signed-off-by: baytan0720 <[email protected]>
- Loading branch information
1 parent
b184f47
commit 35846be
Showing
8 changed files
with
229 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
130 changes: 130 additions & 0 deletions
130
tools-v2/pkg/cli/command/curvebs/create/volume/snapshot/snapshot.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
/* | ||
* Copyright (c) 2023 NetEase 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. | ||
*/ | ||
/* | ||
* Project: CurveCli | ||
* Created Date: 2023-09-23 | ||
* Author: baytan0720 | ||
*/ | ||
|
||
package snapshot | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"time" | ||
|
||
cmderror "github.com/opencurve/curve/tools-v2/internal/error" | ||
cobrautil "github.com/opencurve/curve/tools-v2/internal/utils" | ||
snapshotutil "github.com/opencurve/curve/tools-v2/internal/utils/snapshot" | ||
basecmd "github.com/opencurve/curve/tools-v2/pkg/cli/command" | ||
"github.com/opencurve/curve/tools-v2/pkg/config" | ||
"github.com/opencurve/curve/tools-v2/pkg/output" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
const ( | ||
snapshotExample = `$ curve bs create volume snapshot --user root --filename test --snapshotname snap-test` | ||
) | ||
|
||
type SnapshotCmd struct { | ||
basecmd.FinalCurveCmd | ||
snapshotAddrs []string | ||
timeout time.Duration | ||
|
||
user string | ||
fileName string | ||
snapshotName string | ||
} | ||
|
||
var _ basecmd.FinalCurveCmdFunc = (*SnapshotCmd)(nil) | ||
|
||
func NewCommand() *cobra.Command { | ||
return NewSnapshotCmd().Cmd | ||
} | ||
|
||
func NewSnapshotCmd() *SnapshotCmd { | ||
sCmd := &SnapshotCmd{ | ||
FinalCurveCmd: basecmd.FinalCurveCmd{ | ||
Use: "snapshot", | ||
Short: "create volume snapshot in curvebs cluster", | ||
Example: snapshotExample, | ||
}, | ||
} | ||
basecmd.NewFinalCurveCli(&sCmd.FinalCurveCmd, sCmd) | ||
return sCmd | ||
} | ||
|
||
func (sCmd *SnapshotCmd) AddFlags() { | ||
config.AddBsSnapshotCloneFlagOption(sCmd.Cmd) | ||
config.AddHttpTimeoutFlag(sCmd.Cmd) | ||
config.AddBsUserRequiredFlag(sCmd.Cmd) | ||
config.AddBsFileNameRequiredFlag(sCmd.Cmd) | ||
config.AddBsSnapshotNameRequiredFlag(sCmd.Cmd) | ||
} | ||
|
||
func (sCmd *SnapshotCmd) Init(cmd *cobra.Command, args []string) error { | ||
snapshotAddrs, err := config.GetBsSnapshotAddrSlice(sCmd.Cmd) | ||
if err.TypeCode() != cmderror.CODE_SUCCESS || len(snapshotAddrs) == 0 { | ||
return err.ToError() | ||
} | ||
sCmd.snapshotAddrs = snapshotAddrs | ||
sCmd.timeout = config.GetFlagDuration(sCmd.Cmd, config.HTTPTIMEOUT) | ||
sCmd.user = config.GetBsFlagString(sCmd.Cmd, config.CURVEBS_USER) | ||
sCmd.fileName = config.GetBsFlagString(sCmd.Cmd, config.CURVEBS_FILENAME) | ||
sCmd.snapshotName = config.GetBsFlagString(sCmd.Cmd, config.CURVEBS_SNAPSHOTNAME) | ||
sCmd.SetHeader([]string{cobrautil.ROW_USER, cobrautil.ROW_FILE_NAME, cobrautil.ROW_SNAPSHOTNAME}) | ||
return nil | ||
} | ||
|
||
func (sCmd *SnapshotCmd) RunCommand(cmd *cobra.Command, args []string) error { | ||
params := map[string]any{ | ||
snapshotutil.QueryAction: snapshotutil.ActionCreateSnapshot, | ||
snapshotutil.QueryUser: sCmd.user, | ||
snapshotutil.QueryFile: sCmd.fileName, | ||
snapshotutil.QueryName: sCmd.snapshotName, | ||
} | ||
subUri := snapshotutil.NewQuerySubUri(params) | ||
metric := basecmd.NewMetric(sCmd.snapshotAddrs, subUri, sCmd.timeout) | ||
result, err := basecmd.QueryMetric(metric) | ||
if err.TypeCode() != cmderror.CODE_SUCCESS { | ||
return err.ToError() | ||
} | ||
resp := snapshotutil.Response{} | ||
if err := json.Unmarshal([]byte(result), &resp); err != nil { | ||
return err | ||
} | ||
row := make(map[string]string) | ||
row[cobrautil.ROW_USER] = sCmd.user | ||
row[cobrautil.ROW_FILE_NAME] = sCmd.fileName | ||
row[cobrautil.ROW_SNAPSHOTNAME] = sCmd.snapshotName | ||
|
||
if resp.Code != snapshotutil.ResultSuccess { | ||
return fmt.Errorf("create snapshot fail, requestId: %s, code: %s, error: %s", resp.RequestId, resp.Code, resp.Message) | ||
} | ||
|
||
sCmd.TableNew.Append(cobrautil.Map2List(row, sCmd.Header)) | ||
sCmd.Result = row | ||
sCmd.Error = cmderror.Success() | ||
return nil | ||
} | ||
|
||
func (sCmd *SnapshotCmd) Print(cmd *cobra.Command, args []string) error { | ||
return output.FinalCmdOutput(&sCmd.FinalCurveCmd, sCmd) | ||
} | ||
|
||
func (sCmd *SnapshotCmd) ResultPlainOutput() error { | ||
return output.FinalCmdOutputPlain(&sCmd.FinalCurveCmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright (c) 2023 NetEase 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. | ||
*/ | ||
/* | ||
* Project: CurveCli | ||
* Created Date: 2023-09-23 | ||
* Author: baytan0720 | ||
*/ | ||
|
||
package volume | ||
|
||
import ( | ||
basecmd "github.com/opencurve/curve/tools-v2/pkg/cli/command" | ||
"github.com/opencurve/curve/tools-v2/pkg/cli/command/curvebs/create/volume/snapshot" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
type VolumeCommand struct { | ||
basecmd.MidCurveCmd | ||
} | ||
|
||
var _ basecmd.MidCurveCmdFunc = (*VolumeCommand)(nil) // check interface | ||
|
||
func (vCmd *VolumeCommand) AddSubCommands() { | ||
vCmd.Cmd.AddCommand( | ||
snapshot.NewCommand(), | ||
) | ||
} | ||
|
||
func NewVolumeCommand() *cobra.Command { | ||
vCmd := &VolumeCommand{ | ||
basecmd.MidCurveCmd{ | ||
Use: "volume", | ||
Short: "create resources in the curvebs", | ||
}, | ||
} | ||
return basecmd.NewMidCurveCli(&vCmd.MidCurveCmd, vCmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters