2018-08-13 08:20:49 +00:00
|
|
|
package filer2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/msgqueue"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (f *Filer) NotifyUpdateEvent(oldEntry, newEntry *Entry) {
|
|
|
|
var key string
|
|
|
|
if oldEntry != nil {
|
|
|
|
key = string(oldEntry.FullPath)
|
|
|
|
} else if newEntry != nil {
|
|
|
|
key = string(newEntry.FullPath)
|
|
|
|
} else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-13 08:33:21 +00:00
|
|
|
if msgqueue.Queue != nil {
|
|
|
|
|
|
|
|
msgqueue.Queue.SendMessage(
|
|
|
|
key,
|
|
|
|
&filer_pb.EventNotification{
|
|
|
|
OldEntry: toProtoEntry(oldEntry),
|
|
|
|
NewEntry: toProtoEntry(newEntry),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
2018-08-13 08:20:49 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func toProtoEntry(entry *Entry) *filer_pb.Entry {
|
|
|
|
if entry == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return &filer_pb.Entry{
|
|
|
|
Name: string(entry.FullPath),
|
|
|
|
IsDirectory: entry.IsDirectory(),
|
|
|
|
Attributes: EntryAttributeToPb(entry),
|
|
|
|
Chunks: entry.Chunks,
|
|
|
|
}
|
|
|
|
}
|