seaweedfs/weed/filer2/filer_notify.go

82 lines
2.0 KiB
Go
Raw Normal View History

2018-08-13 16:20:49 +08:00
package filer2
import (
2020-03-30 16:19:33 +08:00
"fmt"
"strings"
"time"
"github.com/golang/protobuf/proto"
2018-09-21 16:56:43 +08:00
"github.com/chrislusf/seaweedfs/weed/glog"
2018-09-16 16:18:30 +08:00
"github.com/chrislusf/seaweedfs/weed/notification"
2018-08-13 16:20:49 +08:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2020-03-30 16:19:33 +08:00
"github.com/chrislusf/seaweedfs/weed/util"
2018-08-13 16:20:49 +08:00
)
2018-09-17 15:27:56 +08:00
func (f *Filer) NotifyUpdateEvent(oldEntry, newEntry *Entry, deleteChunks bool) {
2020-03-31 04:03:43 +08:00
var fullpath string
2018-08-13 16:20:49 +08:00
if oldEntry != nil {
2020-03-31 04:03:43 +08:00
fullpath = string(oldEntry.FullPath)
2018-08-13 16:20:49 +08:00
} else if newEntry != nil {
2020-03-31 04:03:43 +08:00
fullpath = string(newEntry.FullPath)
2018-08-13 16:20:49 +08:00
} else {
return
}
2020-03-31 04:03:43 +08:00
// println("fullpath:", fullpath)
2020-03-30 16:19:33 +08:00
2020-04-13 05:03:07 +08:00
if strings.HasPrefix(fullpath, SystemLogDir) {
2020-03-30 16:19:33 +08:00
return
}
2018-08-13 16:33:21 +08:00
2020-03-30 16:19:33 +08: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-31 04:03:43 +08:00
glog.V(3).Infof("notifying entry update %v", fullpath)
notification.Queue.SendMessage(fullpath, eventNotification)
2020-03-30 16:19:33 +08:00
}
2020-04-10 16:35:59 +08:00
f.logMetaEvent(fullpath, eventNotification)
2020-03-30 16:19:33 +08:00
}
2020-04-10 16:35:59 +08:00
func (f *Filer) logMetaEvent(fullpath string, eventNotification *filer_pb.EventNotification) {
2020-03-31 04:03:43 +08:00
dir, _ := util.FullPath(fullpath).DirAndName()
2020-04-13 12:00:55 +08:00
event := &filer_pb.SubscribeMetadataResponse{
2020-03-30 16:19:33 +08:00
Directory: dir,
EventNotification: eventNotification,
TsNs: time.Now().UnixNano(),
2020-03-30 16:19:33 +08:00
}
data, err := proto.Marshal(event)
if err != nil {
2020-04-13 12:00:55 +08:00
glog.Errorf("failed to marshal filer_pb.SubscribeMetadataResponse %+v: %v", event, err)
2020-03-30 16:19:33 +08:00
return
}
2020-04-20 14:54:32 +08:00
f.MetaLogBuffer.AddToBuffer([]byte(dir), data)
2020-03-30 16:19:33 +08:00
}
func (f *Filer) logFlushFunc(startTime, stopTime time.Time, buf []byte) {
2020-04-13 05:03:07 +08:00
targetFile := fmt.Sprintf("%s/%04d-%02d-%02d/%02d-%02d.segment", SystemLogDir,
2020-03-30 16:19:33 +08:00
startTime.Year(), startTime.Month(), startTime.Day(), startTime.Hour(), startTime.Minute(),
2020-04-13 05:03:07 +08:00
// startTime.Second(), startTime.Nanosecond(),
)
2018-09-17 02:20:36 +08:00
2020-03-30 16:19:33 +08:00
if err := f.appendToFile(targetFile, buf); err != nil {
glog.V(0).Infof("log write failed %s: %v", targetFile, err)
}
}