2019-03-31 06:08:29 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2020-03-23 07:01:34 +00:00
|
|
|
"path/filepath"
|
2021-10-17 11:22:42 +00:00
|
|
|
"time"
|
2020-03-23 07:01:34 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2019-03-31 06:08:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (fs *FilerServer) AtomicRenameEntry(ctx context.Context, req *filer_pb.AtomicRenameEntryRequest) (*filer_pb.AtomicRenameEntryResponse, error) {
|
|
|
|
|
2019-05-03 21:12:51 +00:00
|
|
|
glog.V(1).Infof("AtomicRenameEntry %v", req)
|
|
|
|
|
2020-12-11 07:50:32 +00:00
|
|
|
oldParent := util.FullPath(filepath.ToSlash(req.OldDirectory))
|
|
|
|
newParent := util.FullPath(filepath.ToSlash(req.NewDirectory))
|
|
|
|
|
|
|
|
if err := fs.filer.CanRename(oldParent, newParent); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
ctx, err := fs.filer.BeginTransaction(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
oldEntry, err := fs.filer.FindEntry(ctx, oldParent.Child(req.OldName))
|
|
|
|
if err != nil {
|
|
|
|
fs.filer.RollbackTransaction(ctx)
|
|
|
|
return nil, fmt.Errorf("%s/%s not found: %v", req.OldDirectory, req.OldName, err)
|
|
|
|
}
|
|
|
|
|
2021-10-17 11:22:42 +00:00
|
|
|
moveErr := fs.moveEntry(ctx, nil, oldParent, oldEntry, newParent, req.NewName, req.Signatures)
|
2019-03-31 06:08:29 +00:00
|
|
|
if moveErr != nil {
|
|
|
|
fs.filer.RollbackTransaction(ctx)
|
2020-06-10 17:59:25 +00:00
|
|
|
return nil, fmt.Errorf("%s/%s move error: %v", req.OldDirectory, req.OldName, moveErr)
|
2019-03-31 06:08:29 +00:00
|
|
|
} else {
|
|
|
|
if commitError := fs.filer.CommitTransaction(ctx); commitError != nil {
|
|
|
|
fs.filer.RollbackTransaction(ctx)
|
2020-06-10 17:59:25 +00:00
|
|
|
return nil, fmt.Errorf("%s/%s move commit error: %v", req.OldDirectory, req.OldName, commitError)
|
2019-03-31 06:08:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &filer_pb.AtomicRenameEntryResponse{}, nil
|
|
|
|
}
|
|
|
|
|
2021-10-17 11:22:42 +00:00
|
|
|
func (fs *FilerServer) StreamRenameEntry(req *filer_pb.StreamRenameEntryRequest, stream filer_pb.SeaweedFiler_StreamRenameEntryServer) (err error) {
|
2020-04-10 08:37:03 +00:00
|
|
|
|
2021-10-17 11:22:42 +00:00
|
|
|
glog.V(1).Infof("StreamRenameEntry %v", req)
|
|
|
|
|
|
|
|
oldParent := util.FullPath(filepath.ToSlash(req.OldDirectory))
|
|
|
|
newParent := util.FullPath(filepath.ToSlash(req.NewDirectory))
|
|
|
|
|
|
|
|
if err := fs.filer.CanRename(oldParent, newParent); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
ctx, err = fs.filer.BeginTransaction(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
oldEntry, err := fs.filer.FindEntry(ctx, oldParent.Child(req.OldName))
|
|
|
|
if err != nil {
|
|
|
|
fs.filer.RollbackTransaction(ctx)
|
|
|
|
return fmt.Errorf("%s/%s not found: %v", req.OldDirectory, req.OldName, err)
|
|
|
|
}
|
|
|
|
|
2022-01-11 11:23:03 +00:00
|
|
|
if oldEntry.IsDirectory() {
|
2022-01-13 10:01:53 +00:00
|
|
|
// follow https://pubs.opengroup.org/onlinepubs/000095399/functions/rename.html
|
2022-01-11 11:23:03 +00:00
|
|
|
targetDir := newParent.Child(req.NewName)
|
|
|
|
newEntry, err := fs.filer.FindEntry(ctx, targetDir)
|
|
|
|
if err == nil {
|
|
|
|
if !newEntry.IsDirectory() {
|
|
|
|
fs.filer.RollbackTransaction(ctx)
|
|
|
|
return fmt.Errorf("%s is not directory", targetDir)
|
|
|
|
}
|
|
|
|
if entries, _, _ := fs.filer.ListDirectoryEntries(context.Background(), targetDir, "", false, 1, "", "", ""); len(entries) > 0 {
|
|
|
|
return fmt.Errorf("%s is not empty", targetDir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-17 11:22:42 +00:00
|
|
|
moveErr := fs.moveEntry(ctx, stream, oldParent, oldEntry, newParent, req.NewName, req.Signatures)
|
|
|
|
if moveErr != nil {
|
|
|
|
fs.filer.RollbackTransaction(ctx)
|
|
|
|
return fmt.Errorf("%s/%s move error: %v", req.OldDirectory, req.OldName, moveErr)
|
|
|
|
} else {
|
|
|
|
if commitError := fs.filer.CommitTransaction(ctx); commitError != nil {
|
|
|
|
fs.filer.RollbackTransaction(ctx)
|
|
|
|
return fmt.Errorf("%s/%s move commit error: %v", req.OldDirectory, req.OldName, commitError)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *FilerServer) moveEntry(ctx context.Context, stream filer_pb.SeaweedFiler_StreamRenameEntryServer, oldParent util.FullPath, entry *filer.Entry, newParent util.FullPath, newName string, signatures []int32) error {
|
|
|
|
|
|
|
|
if err := fs.moveSelfEntry(ctx, stream, oldParent, entry, newParent, newName, func() error {
|
2020-04-10 08:37:03 +00:00
|
|
|
if entry.IsDirectory() {
|
2021-10-17 11:22:42 +00:00
|
|
|
if err := fs.moveFolderSubEntries(ctx, stream, oldParent, entry, newParent, newName, signatures); err != nil {
|
2020-04-10 08:37:03 +00:00
|
|
|
return err
|
|
|
|
}
|
2019-03-31 06:08:29 +00:00
|
|
|
}
|
2020-04-10 08:37:03 +00:00
|
|
|
return nil
|
2021-07-01 08:19:28 +00:00
|
|
|
}, signatures); err != nil {
|
2020-04-10 08:37:03 +00:00
|
|
|
return fmt.Errorf("fail to move %s => %s: %v", oldParent.Child(entry.Name()), newParent.Child(newName), err)
|
2019-03-31 06:08:29 +00:00
|
|
|
}
|
2020-04-10 08:37:03 +00:00
|
|
|
|
|
|
|
return nil
|
2019-03-31 06:08:29 +00:00
|
|
|
}
|
|
|
|
|
2021-10-17 11:22:42 +00:00
|
|
|
func (fs *FilerServer) moveFolderSubEntries(ctx context.Context, stream filer_pb.SeaweedFiler_StreamRenameEntryServer, oldParent util.FullPath, entry *filer.Entry, newParent util.FullPath, newName string, signatures []int32) error {
|
2019-03-31 06:08:29 +00:00
|
|
|
|
|
|
|
currentDirPath := oldParent.Child(entry.Name())
|
|
|
|
newDirPath := newParent.Child(newName)
|
|
|
|
|
|
|
|
glog.V(1).Infof("moving folder %s => %s", currentDirPath, newDirPath)
|
|
|
|
|
|
|
|
lastFileName := ""
|
|
|
|
includeLastFile := false
|
|
|
|
for {
|
|
|
|
|
2021-04-24 18:49:03 +00:00
|
|
|
entries, hasMore, err := fs.filer.ListDirectoryEntries(ctx, currentDirPath, lastFileName, includeLastFile, 1024, "", "", "")
|
2019-03-31 06:08:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-09-03 16:22:56 +00:00
|
|
|
// println("found", len(entries), "entries under", currentDirPath)
|
2019-03-31 06:08:29 +00:00
|
|
|
|
|
|
|
for _, item := range entries {
|
|
|
|
lastFileName = item.Name()
|
2019-09-03 16:22:56 +00:00
|
|
|
// println("processing", lastFileName)
|
2021-10-17 11:22:42 +00:00
|
|
|
err := fs.moveEntry(ctx, stream, currentDirPath, item, newDirPath, item.Name(), signatures)
|
2019-03-31 06:08:29 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2021-01-15 07:10:37 +00:00
|
|
|
if !hasMore {
|
2019-03-31 06:08:29 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-17 11:22:42 +00:00
|
|
|
func (fs *FilerServer) moveSelfEntry(ctx context.Context, stream filer_pb.SeaweedFiler_StreamRenameEntryServer, oldParent util.FullPath, entry *filer.Entry, newParent util.FullPath, newName string, moveFolderSubEntries func() error, signatures []int32) error {
|
2019-03-31 06:08:29 +00:00
|
|
|
|
|
|
|
oldPath, newPath := oldParent.Child(entry.Name()), newParent.Child(newName)
|
|
|
|
|
|
|
|
glog.V(1).Infof("moving entry %s => %s", oldPath, newPath)
|
|
|
|
|
2019-07-11 16:29:04 +00:00
|
|
|
if oldPath == newPath {
|
|
|
|
glog.V(1).Infof("skip moving entry %s => %s", oldPath, newPath)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
// add to new directory
|
2020-09-01 07:21:19 +00:00
|
|
|
newEntry := &filer.Entry{
|
2022-02-25 10:53:37 +00:00
|
|
|
FullPath: newPath,
|
|
|
|
Attr: entry.Attr,
|
|
|
|
Chunks: entry.Chunks,
|
|
|
|
Extended: entry.Extended,
|
|
|
|
Content: entry.Content,
|
|
|
|
HardLinkCounter: entry.HardLinkCounter,
|
|
|
|
HardLinkId: entry.HardLinkId,
|
|
|
|
Remote: entry.Remote,
|
|
|
|
Quota: entry.Quota,
|
2019-03-31 15:10:47 +00:00
|
|
|
}
|
2022-03-17 06:55:31 +00:00
|
|
|
if createErr := fs.filer.CreateEntry(ctx, newEntry, false, false, signatures, false); createErr != nil {
|
2019-03-31 06:08:29 +00:00
|
|
|
return createErr
|
|
|
|
}
|
2021-10-17 11:22:42 +00:00
|
|
|
if stream != nil {
|
|
|
|
if err := stream.Send(&filer_pb.StreamRenameEntryResponse{
|
2021-12-09 16:02:57 +00:00
|
|
|
Directory: string(oldParent),
|
2021-10-17 11:22:42 +00:00
|
|
|
EventNotification: &filer_pb.EventNotification{
|
2021-11-03 06:39:16 +00:00
|
|
|
OldEntry: &filer_pb.Entry{
|
2021-10-17 11:22:42 +00:00
|
|
|
Name: entry.Name(),
|
|
|
|
},
|
|
|
|
NewEntry: newEntry.ToProtoEntry(),
|
|
|
|
DeleteChunks: false,
|
|
|
|
NewParentPath: string(newParent),
|
|
|
|
IsFromOtherCluster: false,
|
|
|
|
Signatures: nil,
|
|
|
|
},
|
|
|
|
TsNs: time.Now().UnixNano(),
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2019-03-31 06:08:29 +00:00
|
|
|
|
2020-04-13 04:00:55 +00:00
|
|
|
if moveFolderSubEntries != nil {
|
2020-04-10 08:37:03 +00:00
|
|
|
if moveChildrenErr := moveFolderSubEntries(); moveChildrenErr != nil {
|
|
|
|
return moveChildrenErr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
// delete old entry
|
2021-07-01 08:19:28 +00:00
|
|
|
deleteErr := fs.filer.DeleteEntryMetaAndData(ctx, oldPath, false, false, false, false, signatures)
|
2019-03-31 06:08:29 +00:00
|
|
|
if deleteErr != nil {
|
|
|
|
return deleteErr
|
|
|
|
}
|
2021-10-17 11:22:42 +00:00
|
|
|
if stream != nil {
|
|
|
|
if err := stream.Send(&filer_pb.StreamRenameEntryResponse{
|
|
|
|
Directory: string(oldParent),
|
|
|
|
EventNotification: &filer_pb.EventNotification{
|
|
|
|
OldEntry: &filer_pb.Entry{
|
|
|
|
Name: entry.Name(),
|
|
|
|
},
|
|
|
|
NewEntry: nil,
|
|
|
|
DeleteChunks: false,
|
|
|
|
NewParentPath: "",
|
|
|
|
IsFromOtherCluster: false,
|
|
|
|
Signatures: nil,
|
|
|
|
},
|
|
|
|
TsNs: time.Now().UnixNano(),
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2019-03-31 15:10:47 +00:00
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|