aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_volume_copy.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-09-20 09:27:34 -0700
committerChris Lu <chris.lu@gmail.com>2020-09-20 09:27:34 -0700
commitf498c71199069b3c6b9719417438b56189889dd8 (patch)
tree3046911fcca0867ef5cf78dd1e8ccab7adcd3f2d /weed/shell/command_volume_copy.go
parentfcbc520373eb0602f53f60d997f819505749191c (diff)
downloadseaweedfs-f498c71199069b3c6b9719417438b56189889dd8.tar.xz
seaweedfs-f498c71199069b3c6b9719417438b56189889dd8.zip
shell: move volume operations to use flag parsing arguments
Diffstat (limited to 'weed/shell/command_volume_copy.go')
-rw-r--r--weed/shell/command_volume_copy.go20
1 files changed, 11 insertions, 9 deletions
diff --git a/weed/shell/command_volume_copy.go b/weed/shell/command_volume_copy.go
index cdd10863f..f9edf9431 100644
--- a/weed/shell/command_volume_copy.go
+++ b/weed/shell/command_volume_copy.go
@@ -1,6 +1,7 @@
package shell
import (
+ "flag"
"fmt"
"io"
@@ -21,7 +22,7 @@ func (c *commandVolumeCopy) Name() string {
func (c *commandVolumeCopy) Help() string {
return `copy a volume from one volume server to another volume server
- volume.copy <source volume server host:port> <target volume server host:port> <volume id>
+ volume.copy -source <source volume server host:port> -target <target volume server host:port> -volumeId <volume id>
This command copies a volume from one volume server to another volume server.
Usually you will want to unmount the volume first before copying.
@@ -35,16 +36,17 @@ func (c *commandVolumeCopy) Do(args []string, commandEnv *CommandEnv, writer io.
return
}
- if len(args) != 3 {
- fmt.Fprintf(writer, "received args: %+v\n", args)
- return fmt.Errorf("need 3 args of <source volume server host:port> <target volume server host:port> <volume id>")
+ volCopyCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
+ volumeIdInt := volCopyCommand.Int("volumeId", 0, "the volume id")
+ sourceNodeStr := volCopyCommand.String("source", "", "the source volume server <host>:<port>")
+ targetNodeStr := volCopyCommand.String("target", "", "the target volume server <host>:<port>")
+ if err = volCopyCommand.Parse(args); err != nil {
+ return nil
}
- sourceVolumeServer, targetVolumeServer, volumeIdString := args[0], args[1], args[2]
- volumeId, err := needle.NewVolumeId(volumeIdString)
- if err != nil {
- return fmt.Errorf("wrong volume id format %s: %v", volumeId, err)
- }
+ sourceVolumeServer, targetVolumeServer := *sourceNodeStr, *targetNodeStr
+
+ volumeId := needle.VolumeId(*volumeIdInt)
if sourceVolumeServer == targetVolumeServer {
return fmt.Errorf("source and target volume servers are the same!")