You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.2 KiB

5 years ago
5 years ago
  1. package shell
  2. import (
  3. "fmt"
  4. "io"
  5. "math"
  6. "github.com/chrislusf/seaweedfs/weed/filer2"
  7. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  8. "github.com/chrislusf/seaweedfs/weed/util"
  9. )
  10. func init() {
  11. Commands = append(Commands, &commandFsCat{})
  12. }
  13. type commandFsCat struct {
  14. }
  15. func (c *commandFsCat) Name() string {
  16. return "fs.cat"
  17. }
  18. func (c *commandFsCat) Help() string {
  19. return `stream the file content on to the screen
  20. fs.cat /dir/file_name
  21. `
  22. }
  23. func (c *commandFsCat) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
  24. input := findInputDirectory(args)
  25. filerServer, filerPort, path, err := commandEnv.parseUrl(input)
  26. if err != nil {
  27. return err
  28. }
  29. if commandEnv.isDirectory(filerServer, filerPort, path) {
  30. return fmt.Errorf("%s is a directory", path)
  31. }
  32. dir, name := util.FullPath(path).DirAndName()
  33. return commandEnv.withFilerClient(filerServer, filerPort, func(client filer_pb.SeaweedFilerClient) error {
  34. request := &filer_pb.LookupDirectoryEntryRequest{
  35. Name: name,
  36. Directory: dir,
  37. }
  38. respLookupEntry, err := filer_pb.LookupEntry(client, request)
  39. if err != nil {
  40. return err
  41. }
  42. return filer2.StreamContent(commandEnv.MasterClient, writer, respLookupEntry.Entry.Chunks, 0, math.MaxInt64)
  43. })
  44. }