seaweedfs/weed/filer2/filer_notify.go

122 lines
3.2 KiB
Go
Raw Normal View History

2018-08-13 08:20:49 +00:00
package filer2
import (
2020-03-30 08:19:33 +00:00
"fmt"
"strings"
"time"
"github.com/golang/protobuf/proto"
2018-09-21 08:56:43 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
2018-09-16 08:18:30 +00:00
"github.com/chrislusf/seaweedfs/weed/notification"
2018-08-13 08:20:49 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2020-03-30 08:19:33 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
2018-08-13 08:20:49 +00:00
)
2018-09-17 07:27:56 +00:00
func (f *Filer) NotifyUpdateEvent(oldEntry, newEntry *Entry, deleteChunks bool) {
2020-03-30 20:03:43 +00:00
var fullpath string
2018-08-13 08:20:49 +00:00
if oldEntry != nil {
2020-03-30 20:03:43 +00:00
fullpath = string(oldEntry.FullPath)
2018-08-13 08:20:49 +00:00
} else if newEntry != nil {
2020-03-30 20:03:43 +00:00
fullpath = string(newEntry.FullPath)
2018-08-13 08:20:49 +00:00
} else {
return
}
2020-03-30 20:03:43 +00:00
// println("fullpath:", fullpath)
2020-03-30 08:19:33 +00:00
2020-03-30 20:03:43 +00:00
if strings.HasPrefix(fullpath, "/.meta") {
2020-03-30 08:19:33 +00:00
return
}
2018-08-13 08:33:21 +00:00
2020-03-30 08:19:33 +00:00
newParentPath := ""
if newEntry != nil {
newParentPath, _ = newEntry.FullPath.DirAndName()
}
eventNotification := &filer_pb.EventNotification{
OldEntry: oldEntry.ToProtoEntry(),
NewEntry: newEntry.ToProtoEntry(),
DeleteChunks: deleteChunks,
NewParentPath: newParentPath,
}
if notification.Queue != nil {
2020-03-30 20:03:43 +00:00
glog.V(3).Infof("notifying entry update %v", fullpath)
notification.Queue.SendMessage(fullpath, eventNotification)
2020-03-30 08:19:33 +00:00
}
2020-03-30 20:03:43 +00:00
f.logMetaEvent(time.Now(), fullpath, eventNotification)
2020-03-30 08:19:33 +00:00
}
2020-03-30 20:03:43 +00:00
func (f *Filer) logMetaEvent(ts time.Time, fullpath string, eventNotification *filer_pb.EventNotification) {
dir, _ := util.FullPath(fullpath).DirAndName()
2020-03-30 08:19:33 +00:00
event := &filer_pb.FullEventNotification{
Directory: dir,
EventNotification: eventNotification,
}
data, err := proto.Marshal(event)
if err != nil {
glog.Errorf("failed to marshal filer_pb.FullEventNotification %+v: %v", event, err)
return
}
f.metaLogBuffer.AddToBuffer(ts, []byte(dir), data)
}
func (f *Filer) logFlushFunc(startTime, stopTime time.Time, buf []byte) {
2020-04-05 19:38:46 +00:00
targetFile := fmt.Sprintf("/.meta/log/%04d/%02d/%02d/%02d/%02d/%02d.%09d.log",
2020-03-30 08:19:33 +00:00
startTime.Year(), startTime.Month(), startTime.Day(), startTime.Hour(), startTime.Minute(),
2020-04-05 19:38:46 +00:00
startTime.Second(), startTime.Nanosecond())
2018-09-16 18:20:36 +00:00
2020-03-30 08:19:33 +00:00
if err := f.appendToFile(targetFile, buf); err != nil {
glog.V(0).Infof("log write failed %s: %v", targetFile, err)
}
}
2020-04-05 07:51:16 +00:00
func (f *Filer) ReadLogBuffer(lastReadTime time.Time, eachEventFn func(fullpath string, eventNotification *filer_pb.EventNotification) error) (newLastReadTime time.Time, err error) {
var buf []byte
newLastReadTime, buf = f.metaLogBuffer.ReadFromBuffer(lastReadTime)
2020-04-05 23:51:30 +00:00
var processedTs int64
2020-04-05 07:51:16 +00:00
for pos := 0; pos+4 < len(buf); {
size := util.BytesToUint32(buf[pos : pos+4])
entryData := buf[pos+4 : pos+4+int(size)]
logEntry := &filer_pb.LogEntry{}
err = proto.Unmarshal(entryData, logEntry)
if err != nil {
glog.Errorf("unexpected unmarshal filer_pb.LogEntry: %v", err)
return lastReadTime, fmt.Errorf("unexpected unmarshal filer_pb.LogEntry: %v", err)
}
event := &filer_pb.FullEventNotification{}
err = proto.Unmarshal(logEntry.Data, event)
if err != nil {
glog.Errorf("unexpected unmarshal filer_pb.FullEventNotification: %v", err)
return lastReadTime, fmt.Errorf("unexpected unmarshal filer_pb.FullEventNotification: %v", err)
}
err = eachEventFn(event.Directory, event.EventNotification)
2020-04-05 23:51:30 +00:00
processedTs = logEntry.TsNs
2020-04-05 07:51:16 +00:00
if err != nil {
2020-04-05 23:51:30 +00:00
newLastReadTime = time.Unix(0, processedTs)
2020-04-05 07:51:16 +00:00
return
}
pos += 4 + int(size)
}
2020-04-05 23:51:30 +00:00
newLastReadTime = time.Unix(0, processedTs)
2020-04-05 07:51:16 +00:00
return
}