2018-06-07 06:39:30 +00:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
2019-01-17 01:17:19 +00:00
|
|
|
"context"
|
2020-01-16 03:09:00 +00:00
|
|
|
|
2020-01-19 20:31:56 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2020-01-16 03:09:00 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-03-31 06:08:29 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-12-29 18:31:36 +00:00
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
2018-06-07 06:39:30 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (dir *Dir) Rename(ctx context.Context, req *fuse.RenameRequest, newDirectory fs.Node) error {
|
|
|
|
|
|
|
|
newDir := newDirectory.(*Dir)
|
2020-01-16 03:09:00 +00:00
|
|
|
glog.V(4).Infof("dir Rename %s/%s => %s/%s", dir.Path, req.OldName, newDir.Path, req.NewName)
|
2018-06-07 06:39:30 +00:00
|
|
|
|
2020-01-21 04:21:01 +00:00
|
|
|
err := dir.wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error {
|
2018-06-07 06:39:30 +00:00
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
request := &filer_pb.AtomicRenameEntryRequest{
|
|
|
|
OldDirectory: dir.Path,
|
|
|
|
OldName: req.OldName,
|
|
|
|
NewDirectory: newDir.Path,
|
|
|
|
NewName: req.NewName,
|
2018-06-07 06:39:30 +00:00
|
|
|
}
|
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
_, err := client.AtomicRenameEntry(ctx, request)
|
2018-06-07 06:39:30 +00:00
|
|
|
if err != nil {
|
2020-01-20 07:59:46 +00:00
|
|
|
glog.V(0).Infof("dir Rename %s/%s => %s/%s : %v", dir.Path, req.OldName, newDir.Path, req.NewName, err)
|
|
|
|
return fuse.EIO
|
2018-06-07 06:39:30 +00:00
|
|
|
}
|
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
return nil
|
2018-06-07 06:39:30 +00:00
|
|
|
|
|
|
|
})
|
2020-01-21 04:21:01 +00:00
|
|
|
|
|
|
|
if err == nil {
|
2020-01-22 19:43:43 +00:00
|
|
|
newPath := filer2.NewFullPath(newDir.Path, req.NewName)
|
2020-01-21 04:21:01 +00:00
|
|
|
oldPath := filer2.NewFullPath(dir.Path, req.OldName)
|
2020-01-22 19:43:43 +00:00
|
|
|
dir.wfs.cacheDelete(newPath)
|
2020-01-21 04:21:01 +00:00
|
|
|
dir.wfs.cacheDelete(oldPath)
|
|
|
|
|
|
|
|
oldFileNode := dir.wfs.getNode(oldPath, func() fs.Node {
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
newDirNode := dir.wfs.getNode(filer2.FullPath(dir.Path), func() fs.Node {
|
|
|
|
return nil
|
|
|
|
})
|
2020-01-22 19:43:43 +00:00
|
|
|
dir.wfs.forgetNode(newPath)
|
|
|
|
dir.wfs.forgetNode(oldPath)
|
|
|
|
if oldFileNode != nil && newDirNode != nil {
|
2020-01-21 04:21:01 +00:00
|
|
|
oldFile := oldFileNode.(*File)
|
|
|
|
oldFile.Name = req.NewName
|
2020-01-22 19:43:43 +00:00
|
|
|
oldFile.dir = newDirNode.(*Dir)
|
|
|
|
dir.wfs.getNode(newPath, func() fs.Node {
|
|
|
|
return oldFile
|
|
|
|
})
|
|
|
|
|
2020-01-21 04:21:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2018-06-07 06:39:30 +00:00
|
|
|
}
|