seaweedfs/weed/filer2/filer_notify.go

81 lines
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-04-12 21:03:07 +00:00
if strings.HasPrefix(fullpath, SystemLogDir) {
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-04-10 08:35:59 +00:00
f.logMetaEvent(fullpath, eventNotification)
2020-03-30 08:19:33 +00:00
}
2020-04-10 08:35:59 +00:00
func (f *Filer) logMetaEvent(fullpath string, eventNotification *filer_pb.EventNotification) {
2020-03-30 20:03:43 +00:00
dir, _ := util.FullPath(fullpath).DirAndName()
2020-04-13 04:00:55 +00:00
event := &filer_pb.SubscribeMetadataResponse{
2020-03-30 08:19:33 +00:00
Directory: dir,
EventNotification: eventNotification,
}
data, err := proto.Marshal(event)
if err != nil {
2020-04-13 04:00:55 +00:00
glog.Errorf("failed to marshal filer_pb.SubscribeMetadataResponse %+v: %v", event, err)
2020-03-30 08:19:33 +00:00
return
}
2020-04-20 06:54:32 +00:00
f.MetaLogBuffer.AddToBuffer([]byte(dir), data)
2020-03-30 08:19:33 +00:00
}
func (f *Filer) logFlushFunc(startTime, stopTime time.Time, buf []byte) {
2020-04-12 21:03:07 +00:00
targetFile := fmt.Sprintf("%s/%04d-%02d-%02d/%02d-%02d.segment", SystemLogDir,
2020-03-30 08:19:33 +00:00
startTime.Year(), startTime.Month(), startTime.Day(), startTime.Hour(), startTime.Minute(),
2020-04-12 21:03:07 +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)
}
}