mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-08-24 03:48:08 +08:00
weed shell: fs.cd change current directory
This commit is contained in:
parent
766396d249
commit
af37b374cb
@ -33,7 +33,7 @@ func runShell(command *Command, args []string) bool {
|
|||||||
|
|
||||||
shellOptions.FilerHost = "localhost"
|
shellOptions.FilerHost = "localhost"
|
||||||
shellOptions.FilerPort = 8888
|
shellOptions.FilerPort = 8888
|
||||||
shellOptions.Directory = ""
|
shellOptions.Directory = "/"
|
||||||
|
|
||||||
shell.RunShell(shellOptions)
|
shell.RunShell(shellOptions)
|
||||||
|
|
||||||
|
@ -2,11 +2,7 @@ package shell
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
|
||||||
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
||||||
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
||||||
"io"
|
"io"
|
||||||
"strings"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -35,59 +31,23 @@ func (c *commandFsCd) Help() string {
|
|||||||
|
|
||||||
func (c *commandFsCd) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
|
func (c *commandFsCd) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
|
||||||
|
|
||||||
input := ""
|
input := findInputDirectory(args)
|
||||||
if len(args) > 0 {
|
|
||||||
input = args[len(args)-1]
|
|
||||||
}
|
|
||||||
|
|
||||||
filerServer, filerPort, path, err := commandEnv.parseUrl(input)
|
filerServer, filerPort, path, err := commandEnv.parseUrl(input)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
dir, name := filer2.FullPath(path).DirAndName()
|
|
||||||
if strings.HasSuffix(path, "/") {
|
|
||||||
if path == "/" {
|
if path == "/" {
|
||||||
dir, name = "/", ""
|
commandEnv.option.FilerHost = filerServer
|
||||||
} else {
|
commandEnv.option.FilerPort = filerPort
|
||||||
dir, name = filer2.FullPath(path[0:len(path)-1]).DirAndName()
|
commandEnv.option.Directory = "/"
|
||||||
}
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
|
||||||
err = commandEnv.withFilerClient(ctx, filerServer, filerPort, func(client filer_pb.SeaweedFilerClient) error {
|
err = commandEnv.checkDirectory(ctx, filerServer, filerPort, path)
|
||||||
|
|
||||||
resp, listErr := client.ListEntries(ctx, &filer_pb.ListEntriesRequest{
|
|
||||||
Directory: dir,
|
|
||||||
Prefix: name,
|
|
||||||
StartFromFileName: name,
|
|
||||||
InclusiveStartFrom: true,
|
|
||||||
Limit: 1,
|
|
||||||
})
|
|
||||||
if listErr != nil {
|
|
||||||
return listErr
|
|
||||||
}
|
|
||||||
|
|
||||||
if path == "" || path == "/" {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(resp.Entries) == 0 {
|
|
||||||
return fmt.Errorf("entry not found")
|
|
||||||
}
|
|
||||||
|
|
||||||
if resp.Entries[0].Name != name {
|
|
||||||
println("path", path, "dir", dir, "name", name, "found", resp.Entries[0].Name)
|
|
||||||
return fmt.Errorf("not a valid directory, found %s", resp.Entries[0].Name)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !resp.Entries[0].IsDirectory {
|
|
||||||
return fmt.Errorf("not a directory")
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
commandEnv.option.FilerHost = filerServer
|
commandEnv.option.FilerHost = filerServer
|
||||||
|
@ -8,7 +8,6 @@ import (
|
|||||||
"github.com/chrislusf/seaweedfs/weed/util"
|
"github.com/chrislusf/seaweedfs/weed/util"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
"io"
|
"io"
|
||||||
"strings"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -33,21 +32,18 @@ func (c *commandFsDu) Help() string {
|
|||||||
|
|
||||||
func (c *commandFsDu) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
|
func (c *commandFsDu) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
|
||||||
|
|
||||||
filerServer, filerPort, path, err := commandEnv.parseUrl(args[0])
|
filerServer, filerPort, path, err := commandEnv.parseUrl(findInputDirectory(args))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
dir, name := filer2.FullPath(path).DirAndName()
|
ctx := context.Background()
|
||||||
if strings.HasSuffix(path, "/") {
|
|
||||||
if path == "/" {
|
if commandEnv.isDirectory(ctx, filerServer, filerPort, path) {
|
||||||
dir, name = "/", ""
|
path = path + "/"
|
||||||
} else {
|
|
||||||
dir, name = path[0 : len(path)-1], ""
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx := context.Background()
|
dir, name := filer2.FullPath(path).DirAndName()
|
||||||
|
|
||||||
return commandEnv.withFilerClient(ctx, filerServer, filerPort, func(client filer_pb.SeaweedFilerClient) error {
|
return commandEnv.withFilerClient(ctx, filerServer, filerPort, func(client filer_pb.SeaweedFilerClient) error {
|
||||||
|
|
||||||
|
@ -36,41 +36,33 @@ func (c *commandFsLs) Do(args []string, commandEnv *commandEnv, writer io.Writer
|
|||||||
|
|
||||||
var isLongFormat, showHidden bool
|
var isLongFormat, showHidden bool
|
||||||
for _, arg := range args {
|
for _, arg := range args {
|
||||||
switch arg {
|
if !strings.HasPrefix(arg, "-") {
|
||||||
case "-a":
|
break
|
||||||
|
}
|
||||||
|
for _, t := range arg {
|
||||||
|
switch t {
|
||||||
|
case 'a':
|
||||||
showHidden = true
|
showHidden = true
|
||||||
case "-l":
|
case 'l':
|
||||||
isLongFormat = true
|
isLongFormat = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
input := ""
|
input := findInputDirectory(args)
|
||||||
if len(args) > 0 {
|
|
||||||
input = args[len(args)-1]
|
|
||||||
if strings.HasPrefix(input, "-") {
|
|
||||||
input = ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
filerServer, filerPort, path, err := commandEnv.parseUrl(input)
|
filerServer, filerPort, path, err := commandEnv.parseUrl(input)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if input == "" && !strings.HasSuffix(path, "/") {
|
|
||||||
|
ctx := context.Background()
|
||||||
|
|
||||||
|
if commandEnv.isDirectory(ctx, filerServer, filerPort, path) {
|
||||||
path = path + "/"
|
path = path + "/"
|
||||||
}
|
}
|
||||||
|
|
||||||
dir, name := filer2.FullPath(path).DirAndName()
|
dir, name := filer2.FullPath(path).DirAndName()
|
||||||
// println("path", path, "dir", dir, "name", name)
|
|
||||||
if strings.HasSuffix(path, "/") {
|
|
||||||
if path == "/" {
|
|
||||||
dir, name = "/", ""
|
|
||||||
} else {
|
|
||||||
dir, name = path[0 : len(path)-1], ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx := context.Background()
|
|
||||||
|
|
||||||
return commandEnv.withFilerClient(ctx, filerServer, filerPort, func(client filer_pb.SeaweedFilerClient) error {
|
return commandEnv.withFilerClient(ctx, filerServer, filerPort, func(client filer_pb.SeaweedFilerClient) error {
|
||||||
|
|
||||||
|
@ -29,19 +29,12 @@ func (c *commandFsTree) Help() string {
|
|||||||
|
|
||||||
func (c *commandFsTree) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
|
func (c *commandFsTree) Do(args []string, commandEnv *commandEnv, writer io.Writer) (err error) {
|
||||||
|
|
||||||
filerServer, filerPort, path, err := parseFilerUrl(args[len(args)-1])
|
filerServer, filerPort, path, err := commandEnv.parseUrl(findInputDirectory(args))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
dir, name := filer2.FullPath(path).DirAndName()
|
dir, name := filer2.FullPath(path).DirAndName()
|
||||||
if strings.HasSuffix(path, "/") {
|
|
||||||
if path == "/" {
|
|
||||||
dir, name = "/", ""
|
|
||||||
} else {
|
|
||||||
dir, name = path[0:len(path)-1], ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
|
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
package shell
|
package shell
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
||||||
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
||||||
"github.com/chrislusf/seaweedfs/weed/wdclient"
|
"github.com/chrislusf/seaweedfs/weed/wdclient"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
"io"
|
"io"
|
||||||
@ -46,6 +49,46 @@ func (ce *commandEnv) parseUrl(input string) (filerServer string, filerPort int6
|
|||||||
return ce.option.FilerHost, ce.option.FilerPort, input, err
|
return ce.option.FilerHost, ce.option.FilerPort, input, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (ce *commandEnv) isDirectory(ctx context.Context, filerServer string, filerPort int64, path string) bool {
|
||||||
|
|
||||||
|
return ce.checkDirectory(ctx,filerServer,filerPort,path) == nil
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ce *commandEnv) checkDirectory(ctx context.Context, filerServer string, filerPort int64, path string) error {
|
||||||
|
|
||||||
|
dir, name := filer2.FullPath(path).DirAndName()
|
||||||
|
|
||||||
|
return ce.withFilerClient(ctx, filerServer, filerPort, func(client filer_pb.SeaweedFilerClient) error {
|
||||||
|
|
||||||
|
resp, listErr := client.ListEntries(ctx, &filer_pb.ListEntriesRequest{
|
||||||
|
Directory: dir,
|
||||||
|
Prefix: name,
|
||||||
|
StartFromFileName: name,
|
||||||
|
InclusiveStartFrom: true,
|
||||||
|
Limit: 1,
|
||||||
|
})
|
||||||
|
if listErr != nil {
|
||||||
|
return listErr
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(resp.Entries) == 0 {
|
||||||
|
return fmt.Errorf("entry not found")
|
||||||
|
}
|
||||||
|
|
||||||
|
if resp.Entries[0].Name != name {
|
||||||
|
return fmt.Errorf("not a valid directory, found %s", resp.Entries[0].Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !resp.Entries[0].IsDirectory {
|
||||||
|
return fmt.Errorf("not a directory")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
func parseFilerUrl(entryPath string) (filerServer string, filerPort int64, path string, err error) {
|
func parseFilerUrl(entryPath string) (filerServer string, filerPort int64, path string, err error) {
|
||||||
if strings.HasPrefix(entryPath, "http") {
|
if strings.HasPrefix(entryPath, "http") {
|
||||||
var u *url.URL
|
var u *url.URL
|
||||||
@ -64,3 +107,14 @@ func parseFilerUrl(entryPath string) (filerServer string, filerPort int64, path
|
|||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func findInputDirectory(args []string) (input string) {
|
||||||
|
input = "."
|
||||||
|
if len(args) > 0 {
|
||||||
|
input = args[len(args)-1]
|
||||||
|
if strings.HasPrefix(input, "-") {
|
||||||
|
input = "."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return input
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user