2018-06-06 23:39:30 -07:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
2019-01-17 09:17:19 +08:00
|
|
|
"context"
|
2020-01-15 19:09:00 -08:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-03-30 23:08:29 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2020-03-23 00:01:34 -07:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-12-29 10:31:36 -08:00
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
2018-06-06 23:39:30 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func (dir *Dir) Rename(ctx context.Context, req *fuse.RenameRequest, newDirectory fs.Node) error {
|
|
|
|
|
|
|
|
newDir := newDirectory.(*Dir)
|
2020-03-26 00:08:14 -07:00
|
|
|
|
|
|
|
newPath := util.NewFullPath(newDir.FullPath(), req.NewName)
|
|
|
|
oldPath := util.NewFullPath(dir.FullPath(), req.OldName)
|
|
|
|
|
2020-03-25 22:19:19 -07:00
|
|
|
glog.V(4).Infof("dir Rename %s => %s", oldPath, newPath)
|
2018-06-06 23:39:30 -07:00
|
|
|
|
2020-02-25 21:50:12 -08:00
|
|
|
err := dir.wfs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2018-06-06 23:39:30 -07:00
|
|
|
|
2019-03-30 23:08:29 -07:00
|
|
|
request := &filer_pb.AtomicRenameEntryRequest{
|
2020-03-26 00:08:14 -07:00
|
|
|
OldDirectory: dir.FullPath(),
|
2019-03-30 23:08:29 -07:00
|
|
|
OldName: req.OldName,
|
2020-03-26 00:08:14 -07:00
|
|
|
NewDirectory: newDir.FullPath(),
|
2019-03-30 23:08:29 -07:00
|
|
|
NewName: req.NewName,
|
2018-06-06 23:39:30 -07:00
|
|
|
}
|
|
|
|
|
2020-02-25 21:50:12 -08:00
|
|
|
_, err := client.AtomicRenameEntry(context.Background(), request)
|
2018-06-06 23:39:30 -07:00
|
|
|
if err != nil {
|
2020-03-25 22:19:19 -07:00
|
|
|
glog.V(0).Infof("dir Rename %s => %s : %v", oldPath, newPath, err)
|
2020-01-19 23:59:46 -08:00
|
|
|
return fuse.EIO
|
2018-06-06 23:39:30 -07:00
|
|
|
}
|
|
|
|
|
2019-03-30 23:08:29 -07:00
|
|
|
return nil
|
2018-06-06 23:39:30 -07:00
|
|
|
|
|
|
|
})
|
2020-01-20 20:21:01 -08:00
|
|
|
|
|
|
|
if err == nil {
|
2020-01-22 11:43:43 -08:00
|
|
|
dir.wfs.cacheDelete(newPath)
|
2020-01-20 20:21:01 -08:00
|
|
|
dir.wfs.cacheDelete(oldPath)
|
|
|
|
|
2020-03-27 00:30:39 -07:00
|
|
|
// fmt.Printf("rename path: %v => %v\n", oldPath, newPath)
|
2020-03-25 22:19:19 -07:00
|
|
|
dir.wfs.fsNodeCache.Move(oldPath, newPath)
|
2020-01-22 11:43:43 -08:00
|
|
|
|
2020-01-20 20:21:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
2018-06-06 23:39:30 -07:00
|
|
|
}
|