seaweedfs/weed/shell/command_fs_cat.go

63 lines
1.3 KiB
Go
Raw Normal View History

2019-04-21 22:43:43 +00:00
package shell
import (
"fmt"
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
"github.com/seaweedfs/seaweedfs/weed/util"
"io"
2019-04-21 22:43:43 +00:00
)
func init() {
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
`
}
func (c *commandFsCat) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
2019-04-21 22:43:43 +00:00
2020-03-24 04:26:15 +00:00
path, err := commandEnv.parseUrl(findInputDirectory(args))
2019-04-21 22:43:43 +00:00
if err != nil {
return err
}
2020-03-24 04:26:15 +00:00
if commandEnv.isDirectory(path) {
2019-04-21 22:43:43 +00:00
return fmt.Errorf("%s is a directory", path)
}
2020-03-23 07:01:34 +00:00
dir, name := util.FullPath(path).DirAndName()
2019-04-21 22:43:43 +00:00
return commandEnv.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
2019-04-21 22:43:43 +00:00
request := &filer_pb.LookupDirectoryEntryRequest{
Name: name,
Directory: dir,
}
respLookupEntry, err := filer_pb.LookupEntry(client, request)
2019-04-21 22:43:43 +00:00
if err != nil {
return err
}
2021-08-24 09:38:32 +00:00
if len(respLookupEntry.Entry.Content) > 0 {
_, err = writer.Write(respLookupEntry.Entry.Content)
return err
}
return filer.StreamContent(commandEnv.MasterClient, writer, respLookupEntry.Entry.GetChunks(), 0, int64(filer.FileSize(respLookupEntry.Entry)))
2019-04-21 22:43:43 +00:00
})
}