2020-09-01 07:21:19 +00:00
|
|
|
package filer
|
2020-07-13 05:13:40 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-07-13 05:13:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Replay(filerStore FilerStore, resp *filer_pb.SubscribeMetadataResponse) error {
|
|
|
|
message := resp.EventNotification
|
|
|
|
var oldPath util.FullPath
|
|
|
|
var newEntry *Entry
|
|
|
|
if message.OldEntry != nil {
|
|
|
|
oldPath = util.NewFullPath(resp.Directory, message.OldEntry.Name)
|
|
|
|
glog.V(4).Infof("deleting %v", oldPath)
|
|
|
|
if err := filerStore.DeleteEntry(context.Background(), oldPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if message.NewEntry != nil {
|
|
|
|
dir := resp.Directory
|
|
|
|
if message.NewParentPath != "" {
|
|
|
|
dir = message.NewParentPath
|
|
|
|
}
|
|
|
|
key := util.NewFullPath(dir, message.NewEntry.Name)
|
|
|
|
glog.V(4).Infof("creating %v", key)
|
|
|
|
newEntry = FromPbEntry(dir, message.NewEntry)
|
|
|
|
if err := filerStore.InsertEntry(context.Background(), newEntry); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|