2018-09-17 07:27:56 +00:00
|
|
|
package replication
|
|
|
|
|
|
|
|
import (
|
2019-03-16 00:20:24 +00:00
|
|
|
"context"
|
2019-04-16 07:44:31 +00:00
|
|
|
"fmt"
|
2018-09-23 08:46:50 +00:00
|
|
|
"path/filepath"
|
2018-09-17 08:37:24 +00:00
|
|
|
"strings"
|
2018-09-21 08:56:43 +00:00
|
|
|
|
2019-09-02 10:28:40 +00:00
|
|
|
"github.com/joeslay/seaweedfs/weed/glog"
|
|
|
|
"github.com/joeslay/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/joeslay/seaweedfs/weed/replication/sink"
|
|
|
|
"github.com/joeslay/seaweedfs/weed/replication/source"
|
|
|
|
"github.com/joeslay/seaweedfs/weed/util"
|
2018-09-17 07:27:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Replicator struct {
|
2018-09-17 08:37:24 +00:00
|
|
|
sink sink.ReplicationSink
|
|
|
|
source *source.FilerSource
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
|
|
|
|
2018-10-04 06:36:52 +00:00
|
|
|
func NewReplicator(sourceConfig util.Configuration, dataSink sink.ReplicationSink) *Replicator {
|
2018-09-17 08:37:24 +00:00
|
|
|
|
|
|
|
source := &source.FilerSource{}
|
|
|
|
source.Initialize(sourceConfig)
|
|
|
|
|
2018-10-04 06:36:52 +00:00
|
|
|
dataSink.SetSourceFiler(source)
|
2018-09-21 08:54:29 +00:00
|
|
|
|
2018-09-17 07:27:56 +00:00
|
|
|
return &Replicator{
|
2018-10-04 06:36:52 +00:00
|
|
|
sink: dataSink,
|
2018-09-17 08:37:24 +00:00
|
|
|
source: source,
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
func (r *Replicator) Replicate(ctx context.Context, key string, message *filer_pb.EventNotification) error {
|
2018-09-17 08:37:24 +00:00
|
|
|
if !strings.HasPrefix(key, r.source.Dir) {
|
2018-10-06 20:01:29 +00:00
|
|
|
glog.V(4).Infof("skipping %v outside of %v", key, r.source.Dir)
|
2018-09-17 08:37:24 +00:00
|
|
|
return nil
|
|
|
|
}
|
2019-03-04 21:00:08 +00:00
|
|
|
newKey := filepath.ToSlash(filepath.Join(r.sink.GetSinkToDirectory(), key[len(r.source.Dir):]))
|
2018-11-04 19:58:59 +00:00
|
|
|
glog.V(3).Infof("replicate %s => %s", key, newKey)
|
|
|
|
key = newKey
|
2018-09-17 07:27:56 +00:00
|
|
|
if message.OldEntry != nil && message.NewEntry == nil {
|
2018-10-06 20:00:33 +00:00
|
|
|
glog.V(4).Infof("deleting %v", key)
|
2019-03-16 00:20:24 +00:00
|
|
|
return r.sink.DeleteEntry(ctx, key, message.OldEntry.IsDirectory, message.DeleteChunks)
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
|
|
|
if message.OldEntry == nil && message.NewEntry != nil {
|
2018-10-06 20:00:33 +00:00
|
|
|
glog.V(4).Infof("creating %v", key)
|
2019-03-16 00:20:24 +00:00
|
|
|
return r.sink.CreateEntry(ctx, key, message.NewEntry)
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
2018-09-25 16:27:03 +00:00
|
|
|
if message.OldEntry == nil && message.NewEntry == nil {
|
2018-10-04 06:36:52 +00:00
|
|
|
glog.V(0).Infof("weird message %+v", message)
|
2018-09-25 16:27:03 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-04-16 07:44:31 +00:00
|
|
|
foundExisting, err := r.sink.UpdateEntry(ctx, key, message.OldEntry, message.NewParentPath, message.NewEntry, message.DeleteChunks)
|
2018-10-04 06:36:52 +00:00
|
|
|
if foundExisting {
|
2018-10-06 20:00:33 +00:00
|
|
|
glog.V(4).Infof("updated %v", key)
|
2018-10-04 06:36:52 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-16 07:44:31 +00:00
|
|
|
err = r.sink.DeleteEntry(ctx, key, message.OldEntry.IsDirectory, false)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("delete old entry %v: %v", key, err)
|
|
|
|
}
|
|
|
|
|
2018-10-06 20:00:33 +00:00
|
|
|
glog.V(4).Infof("creating missing %v", key)
|
2019-03-16 00:20:24 +00:00
|
|
|
return r.sink.CreateEntry(ctx, key, message.NewEntry)
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|