2019-04-21 22:43:43 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-05 08:30:24 +00:00
|
|
|
Commands = append(Commands, &commandFsCat{})
|
2019-04-21 22:43:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type commandFsCat struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandFsCat) Name() string {
|
|
|
|
return "fs.cat"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandFsCat) Help() string {
|
|
|
|
return `stream the file content on to the screen
|
|
|
|
|
|
|
|
fs.cat /dir/file_name
|
|
|
|
fs.cat http://<filer_server>:<port>/dir/file_name
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func (c *commandFsCat) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
2019-04-21 22:43:43 +00:00
|
|
|
|
|
|
|
input := findInputDirectory(args)
|
|
|
|
|
|
|
|
filerServer, filerPort, path, err := commandEnv.parseUrl(input)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
if commandEnv.isDirectory(ctx, filerServer, filerPort, path) {
|
|
|
|
return fmt.Errorf("%s is a directory", path)
|
|
|
|
}
|
|
|
|
|
|
|
|
dir, name := filer2.FullPath(path).DirAndName()
|
|
|
|
|
2020-01-26 22:42:11 +00:00
|
|
|
return commandEnv.withFilerClient(ctx, filerServer, filerPort, func(ctx context.Context, client filer_pb.SeaweedFilerClient) error {
|
2019-04-21 22:43:43 +00:00
|
|
|
|
|
|
|
request := &filer_pb.LookupDirectoryEntryRequest{
|
|
|
|
Name: name,
|
|
|
|
Directory: dir,
|
|
|
|
}
|
|
|
|
respLookupEntry, err := client.LookupDirectoryEntry(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
return filer2.StreamContent(commandEnv.MasterClient, writer, respLookupEntry.Entry.Chunks, 0, math.MaxInt32)
|
2019-04-21 22:43:43 +00:00
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|