watch.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package command
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "path/filepath"
  7. "strings"
  8. "time"
  9. "github.com/chrislusf/seaweedfs/weed/pb"
  10. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  11. "github.com/chrislusf/seaweedfs/weed/security"
  12. "github.com/chrislusf/seaweedfs/weed/util"
  13. )
  14. func init() {
  15. cmdWatch.Run = runWatch // break init cycle
  16. }
  17. var cmdWatch = &Command{
  18. UsageLine: "watch [-filer=localhost:8888] [-target=/]",
  19. Short: "see recent changes on a filer",
  20. Long: `See recent changes on a filer.
  21. `,
  22. }
  23. var (
  24. watchFiler = cmdWatch.Flag.String("filer", "localhost:8888", "filer hostname:port")
  25. watchTarget = cmdWatch.Flag.String("pathPrefix", "/", "path to a folder or file, or common prefix for the folders or files on filer")
  26. watchStart = cmdWatch.Flag.Duration("timeAgo", 0, "start time before now. \"300ms\", \"1.5h\" or \"2h45m\". Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\"")
  27. watchPattern = cmdWatch.Flag.String("pattern", "", "full path or just filename pattern, ex: \"/home/?opher\", \"*.pdf\", see https://golang.org/pkg/path/filepath/#Match ")
  28. )
  29. func runWatch(cmd *Command, args []string) bool {
  30. grpcDialOption := security.LoadClientTLS(util.GetViper(), "grpc.client")
  31. var filterFunc func(dir, fname string) bool
  32. if *watchPattern != "" {
  33. if strings.Contains(*watchPattern, "/") {
  34. println("watch path pattern", *watchPattern)
  35. filterFunc = func(dir, fname string) bool {
  36. matched, err := filepath.Match(*watchPattern, dir+"/"+fname)
  37. if err != nil {
  38. fmt.Printf("error: %v", err)
  39. }
  40. return matched
  41. }
  42. } else {
  43. println("watch file pattern", *watchPattern)
  44. filterFunc = func(dir, fname string) bool {
  45. matched, err := filepath.Match(*watchPattern, fname)
  46. if err != nil {
  47. fmt.Printf("error: %v", err)
  48. }
  49. return matched
  50. }
  51. }
  52. }
  53. shouldPrint := func(resp *filer_pb.SubscribeMetadataResponse) bool {
  54. if filterFunc == nil {
  55. return true
  56. }
  57. if resp.EventNotification.OldEntry == nil && resp.EventNotification.NewEntry == nil {
  58. return false
  59. }
  60. if resp.EventNotification.OldEntry != nil && filterFunc(resp.Directory, resp.EventNotification.OldEntry.Name) {
  61. return true
  62. }
  63. if resp.EventNotification.NewEntry != nil && filterFunc(resp.EventNotification.NewParentPath, resp.EventNotification.NewEntry.Name) {
  64. return true
  65. }
  66. return false
  67. }
  68. watchErr := pb.WithFilerClient(*watchFiler, grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  69. ctx, cancel := context.WithCancel(context.Background())
  70. defer cancel()
  71. stream, err := client.SubscribeMetadata(ctx, &filer_pb.SubscribeMetadataRequest{
  72. ClientName: "watch",
  73. PathPrefix: *watchTarget,
  74. SinceNs: time.Now().Add(-*watchStart).UnixNano(),
  75. })
  76. if err != nil {
  77. return fmt.Errorf("listen: %v", err)
  78. }
  79. for {
  80. resp, listenErr := stream.Recv()
  81. if listenErr == io.EOF {
  82. return nil
  83. }
  84. if listenErr != nil {
  85. return listenErr
  86. }
  87. if !shouldPrint(resp) {
  88. continue
  89. }
  90. fmt.Printf("dir:%s %+v\n", resp.Directory, resp.EventNotification)
  91. }
  92. })
  93. if watchErr != nil {
  94. fmt.Printf("watch %s: %v\n", *watchFiler, watchErr)
  95. }
  96. return true
  97. }