2018-06-07 14:39:30 +08:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
2019-01-17 09:17:19 +08:00
|
|
|
"context"
|
2020-01-16 11:09:00 +08:00
|
|
|
|
2020-07-24 12:08:42 +08:00
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
|
|
|
|
2020-01-16 11:09:00 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-03-31 14:08:29 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2020-03-23 15:01:34 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-06-07 14:39:30 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func (dir *Dir) Rename(ctx context.Context, req *fuse.RenameRequest, newDirectory fs.Node) error {
|
|
|
|
|
|
|
|
newDir := newDirectory.(*Dir)
|
2020-03-26 15:08:14 +08:00
|
|
|
|
|
|
|
newPath := util.NewFullPath(newDir.FullPath(), req.NewName)
|
|
|
|
oldPath := util.NewFullPath(dir.FullPath(), req.OldName)
|
|
|
|
|
2020-03-26 13:19:19 +08:00
|
|
|
glog.V(4).Infof("dir Rename %s => %s", oldPath, newPath)
|
2018-06-07 14:39:30 +08:00
|
|
|
|
2020-07-24 12:08:42 +08:00
|
|
|
// find local old entry
|
|
|
|
oldEntry, err := dir.wfs.metaCache.FindEntry(context.Background(), oldPath)
|
|
|
|
if err != nil {
|
2020-09-23 00:16:07 +08:00
|
|
|
glog.Errorf("dir Rename can not find source %s : %v", oldPath, err)
|
2020-07-24 12:08:42 +08:00
|
|
|
return fuse.ENOENT
|
|
|
|
}
|
|
|
|
|
|
|
|
// update remote filer
|
|
|
|
err = dir.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2020-09-10 03:07:15 +08:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
2018-06-07 14:39:30 +08:00
|
|
|
|
2019-03-31 14:08:29 +08:00
|
|
|
request := &filer_pb.AtomicRenameEntryRequest{
|
2020-03-26 15:08:14 +08:00
|
|
|
OldDirectory: dir.FullPath(),
|
2019-03-31 14:08:29 +08:00
|
|
|
OldName: req.OldName,
|
2020-03-26 15:08:14 +08:00
|
|
|
NewDirectory: newDir.FullPath(),
|
2019-03-31 14:08:29 +08:00
|
|
|
NewName: req.NewName,
|
2018-06-07 14:39:30 +08:00
|
|
|
}
|
|
|
|
|
2020-09-10 03:07:15 +08:00
|
|
|
_, err := client.AtomicRenameEntry(ctx, request)
|
2018-06-07 14:39:30 +08:00
|
|
|
if err != nil {
|
2020-09-23 00:16:07 +08:00
|
|
|
glog.Errorf("dir AtomicRenameEntry %s => %s : %v", oldPath, newPath, err)
|
2020-12-11 15:50:32 +08:00
|
|
|
return fuse.EXDEV
|
2018-06-07 14:39:30 +08:00
|
|
|
}
|
|
|
|
|
2019-03-31 14:08:29 +08:00
|
|
|
return nil
|
2018-06-07 14:39:30 +08:00
|
|
|
|
|
|
|
})
|
2020-07-24 12:08:42 +08:00
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("dir Rename %s => %s : %v", oldPath, newPath, err)
|
|
|
|
return fuse.EIO
|
|
|
|
}
|
2020-01-21 12:21:01 +08:00
|
|
|
|
2020-07-24 12:08:42 +08:00
|
|
|
// TODO: replicate renaming logic on filer
|
|
|
|
if err := dir.wfs.metaCache.DeleteEntry(context.Background(), oldPath); err != nil {
|
|
|
|
glog.V(0).Infof("dir Rename delete local %s => %s : %v", oldPath, newPath, err)
|
|
|
|
return fuse.EIO
|
|
|
|
}
|
|
|
|
oldEntry.FullPath = newPath
|
|
|
|
if err := dir.wfs.metaCache.InsertEntry(context.Background(), oldEntry); err != nil {
|
|
|
|
glog.V(0).Infof("dir Rename insert local %s => %s : %v", oldPath, newPath, err)
|
|
|
|
return fuse.EIO
|
2020-06-29 01:14:17 +08:00
|
|
|
}
|
|
|
|
|
2021-04-18 01:48:22 +08:00
|
|
|
oldFsNode := NodeWithId(oldPath.AsInode())
|
|
|
|
newFsNode := NodeWithId(newPath.AsInode())
|
|
|
|
dir.wfs.Server.InvalidateInternalNode(oldFsNode, newFsNode, func(internalNode fs.Node) {
|
|
|
|
if file, ok := internalNode.(*File); ok {
|
2021-05-13 13:04:47 +08:00
|
|
|
glog.V(4).Infof("internal file node %s", file.Name)
|
2021-04-18 01:48:22 +08:00
|
|
|
file.Name = req.NewName
|
|
|
|
file.id = uint64(newFsNode)
|
2021-05-14 13:52:19 +08:00
|
|
|
file.dir = newDir
|
2021-04-18 01:48:22 +08:00
|
|
|
}
|
2021-05-13 13:04:47 +08:00
|
|
|
if dir, ok := internalNode.(*Dir); ok {
|
|
|
|
glog.V(4).Infof("internal dir node %s", dir.name)
|
|
|
|
dir.name = req.NewName
|
|
|
|
dir.id = uint64(newFsNode)
|
2021-05-14 13:52:19 +08:00
|
|
|
dir.parent = newDir
|
2021-05-13 13:04:47 +08:00
|
|
|
}
|
2021-04-18 01:48:22 +08:00
|
|
|
})
|
|
|
|
|
2020-08-14 15:22:49 +08:00
|
|
|
// change file handle
|
2020-08-13 15:07:56 +08:00
|
|
|
dir.wfs.handlesLock.Lock()
|
|
|
|
defer dir.wfs.handlesLock.Unlock()
|
2020-08-14 15:22:49 +08:00
|
|
|
inodeId := oldPath.AsInode()
|
|
|
|
existingHandle, found := dir.wfs.handles[inodeId]
|
2021-04-18 01:48:22 +08:00
|
|
|
glog.V(4).Infof("has open filehandle %s: %v", oldPath, found)
|
2020-08-14 15:22:49 +08:00
|
|
|
if !found || existingHandle == nil {
|
2021-04-16 17:55:09 +08:00
|
|
|
return nil
|
2020-08-14 15:22:49 +08:00
|
|
|
}
|
2021-04-16 17:55:09 +08:00
|
|
|
glog.V(4).Infof("opened filehandle %s => %s", oldPath, newPath)
|
2020-08-14 15:22:49 +08:00
|
|
|
delete(dir.wfs.handles, inodeId)
|
|
|
|
dir.wfs.handles[newPath.AsInode()] = existingHandle
|
2020-07-24 12:08:42 +08:00
|
|
|
|
2021-04-16 17:55:09 +08:00
|
|
|
return nil
|
2018-06-07 14:39:30 +08:00
|
|
|
}
|