2020-04-22 04:16:13 +00:00
|
|
|
package meta_cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-09-01 07:21:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer"
|
2020-04-22 04:16:13 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2021-08-04 23:25:46 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2020-04-22 04:16:13 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
|
|
)
|
|
|
|
|
2020-08-29 06:48:48 +00:00
|
|
|
func SubscribeMetaEvents(mc *MetaCache, selfSignature int32, client filer_pb.FilerClient, dir string, lastTsNs int64) error {
|
2020-04-22 04:16:13 +00:00
|
|
|
|
|
|
|
processEventFn := func(resp *filer_pb.SubscribeMetadataResponse) error {
|
|
|
|
message := resp.EventNotification
|
2020-08-29 06:48:48 +00:00
|
|
|
|
|
|
|
for _, sig := range message.Signatures {
|
|
|
|
if sig == selfSignature && selfSignature != 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-26 02:24:15 +00:00
|
|
|
dir := resp.Directory
|
2020-04-30 01:20:54 +00:00
|
|
|
var oldPath util.FullPath
|
2020-09-01 07:21:19 +00:00
|
|
|
var newEntry *filer.Entry
|
2020-04-22 04:16:13 +00:00
|
|
|
if message.OldEntry != nil {
|
2020-10-26 02:24:15 +00:00
|
|
|
oldPath = util.NewFullPath(dir, message.OldEntry.Name)
|
2020-04-30 01:20:54 +00:00
|
|
|
glog.V(4).Infof("deleting %v", oldPath)
|
2020-04-22 04:16:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if message.NewEntry != nil {
|
|
|
|
if message.NewParentPath != "" {
|
|
|
|
dir = message.NewParentPath
|
|
|
|
}
|
|
|
|
key := util.NewFullPath(dir, message.NewEntry.Name)
|
|
|
|
glog.V(4).Infof("creating %v", key)
|
2020-09-01 07:21:19 +00:00
|
|
|
newEntry = filer.FromPbEntry(dir, message.NewEntry)
|
2020-04-22 04:16:13 +00:00
|
|
|
}
|
2020-10-26 02:24:15 +00:00
|
|
|
err := mc.AtomicUpdateEntryFromFiler(context.Background(), oldPath, newEntry)
|
2021-06-05 20:09:33 +00:00
|
|
|
if err == nil {
|
|
|
|
if message.OldEntry != nil && message.NewEntry != nil {
|
2021-08-28 11:22:19 +00:00
|
|
|
oldKey := util.NewFullPath(resp.Directory, message.OldEntry.Name)
|
|
|
|
mc.invalidateFunc(oldKey)
|
2021-08-28 12:21:01 +00:00
|
|
|
if message.OldEntry.Name != message.NewEntry.Name {
|
|
|
|
newKey := util.NewFullPath(dir, message.NewEntry.Name)
|
|
|
|
mc.invalidateFunc(newKey)
|
|
|
|
}
|
2021-06-05 20:09:33 +00:00
|
|
|
} else if message.OldEntry == nil && message.NewEntry != nil {
|
|
|
|
// no need to invaalidate
|
|
|
|
} else if message.OldEntry != nil && message.NewEntry == nil {
|
|
|
|
oldKey := util.NewFullPath(resp.Directory, message.OldEntry.Name)
|
|
|
|
mc.invalidateFunc(oldKey)
|
2021-06-05 09:23:07 +00:00
|
|
|
}
|
2020-10-26 02:24:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
2020-04-22 04:16:13 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 19:37:35 +00:00
|
|
|
util.RetryForever("followMetaUpdates", func() error {
|
2021-08-04 23:25:46 +00:00
|
|
|
return pb.WithFilerClientFollowMetadata(client, "mount", dir, lastTsNs, selfSignature, processEventFn, true)
|
2021-08-15 19:37:35 +00:00
|
|
|
}, func(err error) bool {
|
|
|
|
glog.Errorf("follow metadata updates: %v", err)
|
|
|
|
return true
|
2021-08-04 23:25:46 +00:00
|
|
|
})
|
2020-04-22 04:16:13 +00:00
|
|
|
|
2021-08-15 19:40:22 +00:00
|
|
|
return nil
|
2020-04-22 04:16:13 +00:00
|
|
|
}
|