2018-05-06 05:47:16 +00:00
|
|
|
package filesys
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-05-06 06:39:29 +00:00
|
|
|
"os"
|
2018-05-06 05:47:16 +00:00
|
|
|
"path"
|
2018-07-19 09:17:36 +00:00
|
|
|
"time"
|
|
|
|
|
2018-07-22 00:39:10 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
2018-05-08 08:59:43 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2018-05-10 06:18:02 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2018-12-30 08:51:44 +00:00
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
"github.com/seaweedfs/fuse/fs"
|
2018-05-06 05:47:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Dir struct {
|
2018-07-19 09:17:36 +00:00
|
|
|
Path string
|
|
|
|
wfs *WFS
|
2019-12-16 05:07:01 +00:00
|
|
|
entry *filer_pb.Entry
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
|
|
|
|
2018-05-19 20:51:44 +00:00
|
|
|
var _ = fs.Node(&Dir{})
|
2018-05-25 07:57:25 +00:00
|
|
|
var _ = fs.NodeCreater(&Dir{})
|
|
|
|
var _ = fs.NodeMkdirer(&Dir{})
|
2018-06-07 07:07:37 +00:00
|
|
|
var _ = fs.NodeRequestLookuper(&Dir{})
|
2018-05-19 20:51:44 +00:00
|
|
|
var _ = fs.HandleReadDirAller(&Dir{})
|
2018-05-25 07:57:25 +00:00
|
|
|
var _ = fs.NodeRemover(&Dir{})
|
2018-06-07 05:11:01 +00:00
|
|
|
var _ = fs.NodeRenamer(&Dir{})
|
2018-07-19 09:17:36 +00:00
|
|
|
var _ = fs.NodeSetattrer(&Dir{})
|
2019-12-16 05:07:01 +00:00
|
|
|
var _ = fs.NodeGetxattrer(&Dir{})
|
|
|
|
var _ = fs.NodeSetxattrer(&Dir{})
|
|
|
|
var _ = fs.NodeRemovexattrer(&Dir{})
|
|
|
|
var _ = fs.NodeListxattrer(&Dir{})
|
2018-05-19 20:51:44 +00:00
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
func (dir *Dir) Attr(ctx context.Context, attr *fuse.Attr) error {
|
2018-05-21 08:25:30 +00:00
|
|
|
|
2019-12-13 18:05:43 +00:00
|
|
|
glog.V(3).Infof("dir Attr %s", dir.Path)
|
|
|
|
|
2018-11-18 15:49:14 +00:00
|
|
|
// https://github.com/bazil/fuse/issues/196
|
|
|
|
attr.Valid = time.Second
|
|
|
|
|
2018-12-29 07:36:13 +00:00
|
|
|
if dir.Path == dir.wfs.option.FilerMountRootPath {
|
2019-05-10 22:03:31 +00:00
|
|
|
dir.setRootDirAttributes(attr)
|
2018-05-21 08:25:30 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
if err := dir.maybeLoadEntry(ctx); err != nil {
|
|
|
|
return err
|
2019-12-13 18:35:23 +00:00
|
|
|
}
|
2019-12-13 18:05:43 +00:00
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
attr.Mode = os.FileMode(dir.entry.Attributes.FileMode) | os.ModeDir
|
|
|
|
attr.Mtime = time.Unix(dir.entry.Attributes.Mtime, 0)
|
|
|
|
attr.Ctime = time.Unix(dir.entry.Attributes.Crtime, 0)
|
|
|
|
attr.Gid = dir.entry.Attributes.Gid
|
|
|
|
attr.Uid = dir.entry.Attributes.Uid
|
2018-06-07 05:48:51 +00:00
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
2018-06-07 05:48:51 +00:00
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
func (dir *Dir) Getxattr(ctx context.Context, req *fuse.GetxattrRequest, resp *fuse.GetxattrResponse) error {
|
2018-06-07 05:48:51 +00:00
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
glog.V(4).Infof("dir Getxattr %s", dir.Path)
|
2019-12-13 18:05:43 +00:00
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
if err := dir.maybeLoadEntry(ctx); err != nil {
|
2018-05-21 08:25:30 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
return getxattr(dir.entry, req, resp)
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
|
|
|
|
2019-05-10 22:03:31 +00:00
|
|
|
func (dir *Dir) setRootDirAttributes(attr *fuse.Attr) {
|
|
|
|
attr.Uid = dir.wfs.option.MountUid
|
|
|
|
attr.Gid = dir.wfs.option.MountGid
|
|
|
|
attr.Mode = dir.wfs.option.MountMode
|
|
|
|
attr.Crtime = dir.wfs.option.MountCtime
|
|
|
|
attr.Ctime = dir.wfs.option.MountCtime
|
|
|
|
attr.Mtime = dir.wfs.option.MountMtime
|
|
|
|
attr.Atime = dir.wfs.option.MountMtime
|
|
|
|
}
|
|
|
|
|
2018-09-22 07:11:46 +00:00
|
|
|
func (dir *Dir) newFile(name string, entry *filer_pb.Entry) *File {
|
2018-05-22 10:26:38 +00:00
|
|
|
return &File{
|
2018-12-30 08:51:44 +00:00
|
|
|
Name: name,
|
|
|
|
dir: dir,
|
|
|
|
wfs: dir.wfs,
|
|
|
|
entry: entry,
|
|
|
|
entryViewCache: nil,
|
2018-05-22 10:26:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
func (dir *Dir) Create(ctx context.Context, req *fuse.CreateRequest,
|
|
|
|
resp *fuse.CreateResponse) (fs.Node, fs.Handle, error) {
|
|
|
|
|
2018-09-22 07:11:46 +00:00
|
|
|
request := &filer_pb.CreateEntryRequest{
|
|
|
|
Directory: dir.Path,
|
|
|
|
Entry: &filer_pb.Entry{
|
|
|
|
Name: req.Name,
|
|
|
|
IsDirectory: req.Mode&os.ModeDir > 0,
|
|
|
|
Attributes: &filer_pb.FuseAttributes{
|
|
|
|
Mtime: time.Now().Unix(),
|
|
|
|
Crtime: time.Now().Unix(),
|
2019-07-24 07:03:05 +00:00
|
|
|
FileMode: uint32(req.Mode &^ dir.wfs.option.Umask),
|
2018-09-22 07:11:46 +00:00
|
|
|
Uid: req.Uid,
|
|
|
|
Gid: req.Gid,
|
|
|
|
Collection: dir.wfs.option.Collection,
|
|
|
|
Replication: dir.wfs.option.Replication,
|
|
|
|
TtlSec: dir.wfs.option.TtlSec,
|
2018-05-16 07:08:44 +00:00
|
|
|
},
|
2018-09-22 07:11:46 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
glog.V(1).Infof("create: %v", request)
|
|
|
|
|
|
|
|
if request.Entry.IsDirectory {
|
2019-05-03 07:24:35 +00:00
|
|
|
if err := dir.wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error {
|
2018-09-22 07:11:46 +00:00
|
|
|
if _, err := client.CreateEntry(ctx, request); err != nil {
|
|
|
|
glog.V(0).Infof("create %s/%s: %v", dir.Path, req.Name, err)
|
|
|
|
return fuse.EIO
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
return nil, nil, err
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
2018-09-22 07:11:46 +00:00
|
|
|
}
|
2018-05-16 07:08:44 +00:00
|
|
|
|
2018-09-22 07:11:46 +00:00
|
|
|
file := dir.newFile(req.Name, request.Entry)
|
|
|
|
if !request.Entry.IsDirectory {
|
2018-05-25 08:27:21 +00:00
|
|
|
file.isOpen = true
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
2018-09-22 07:11:46 +00:00
|
|
|
fh := dir.wfs.AcquireHandle(file, req.Uid, req.Gid)
|
|
|
|
fh.dirtyMetadata = true
|
|
|
|
return file, fh, nil
|
2018-05-16 07:08:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
func (dir *Dir) Mkdir(ctx context.Context, req *fuse.MkdirRequest) (fs.Node, error) {
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
err := dir.wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error {
|
2018-05-08 08:59:43 +00:00
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
request := &filer_pb.CreateEntryRequest{
|
|
|
|
Directory: dir.Path,
|
|
|
|
Entry: &filer_pb.Entry{
|
|
|
|
Name: req.Name,
|
|
|
|
IsDirectory: true,
|
|
|
|
Attributes: &filer_pb.FuseAttributes{
|
|
|
|
Mtime: time.Now().Unix(),
|
2018-05-26 06:26:40 +00:00
|
|
|
Crtime: time.Now().Unix(),
|
2019-07-24 07:03:05 +00:00
|
|
|
FileMode: uint32(req.Mode &^ dir.wfs.option.Umask),
|
2018-05-16 07:08:44 +00:00
|
|
|
Uid: req.Uid,
|
|
|
|
Gid: req.Gid,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-05-08 08:59:43 +00:00
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
glog.V(1).Infof("mkdir: %v", request)
|
|
|
|
if _, err := client.CreateEntry(ctx, request); err != nil {
|
2018-06-07 06:06:19 +00:00
|
|
|
glog.V(0).Infof("mkdir %s/%s: %v", dir.Path, req.Name, err)
|
|
|
|
return fuse.EIO
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
node := &Dir{Path: path.Join(dir.Path, req.Name), wfs: dir.wfs}
|
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, err
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
2018-06-07 07:07:37 +00:00
|
|
|
func (dir *Dir) Lookup(ctx context.Context, req *fuse.LookupRequest, resp *fuse.LookupResponse) (node fs.Node, err error) {
|
2018-05-06 06:50:34 +00:00
|
|
|
|
2019-12-13 18:05:43 +00:00
|
|
|
glog.V(4).Infof("dir Lookup %s: %s", dir.Path, req.Name)
|
|
|
|
|
2018-05-10 06:18:02 +00:00
|
|
|
var entry *filer_pb.Entry
|
2019-05-03 07:24:35 +00:00
|
|
|
fullFilePath := path.Join(dir.Path, req.Name)
|
2018-05-08 08:59:43 +00:00
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
item := dir.wfs.listDirectoryEntriesCache.Get(fullFilePath)
|
2018-11-07 19:35:13 +00:00
|
|
|
if item != nil && !item.Expired() {
|
|
|
|
entry = item.Value().(*filer_pb.Entry)
|
|
|
|
}
|
2018-05-08 08:59:43 +00:00
|
|
|
|
2018-11-07 19:35:13 +00:00
|
|
|
if entry == nil {
|
2019-12-13 18:05:43 +00:00
|
|
|
glog.V(3).Infof("dir Lookup cache miss %s", fullFilePath)
|
2019-05-03 07:24:35 +00:00
|
|
|
entry, err = filer2.GetEntry(ctx, dir.wfs, fullFilePath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-13 19:08:26 +00:00
|
|
|
dir.wfs.listDirectoryEntriesCache.Set(fullFilePath, entry, 5*time.Minute)
|
2019-12-13 18:05:43 +00:00
|
|
|
} else {
|
|
|
|
glog.V(4).Infof("dir Lookup cache hit %s", fullFilePath)
|
2018-11-07 19:35:13 +00:00
|
|
|
}
|
2018-05-08 08:59:43 +00:00
|
|
|
|
|
|
|
if entry != nil {
|
|
|
|
if entry.IsDirectory {
|
2019-12-16 05:07:01 +00:00
|
|
|
node = &Dir{Path: path.Join(dir.Path, req.Name), wfs: dir.wfs, entry: entry}
|
2018-05-08 08:59:43 +00:00
|
|
|
} else {
|
2018-09-22 07:11:46 +00:00
|
|
|
node = dir.newFile(req.Name, entry)
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
2018-06-07 07:07:37 +00:00
|
|
|
|
|
|
|
resp.EntryValid = time.Duration(0)
|
|
|
|
resp.Attr.Mtime = time.Unix(entry.Attributes.Mtime, 0)
|
|
|
|
resp.Attr.Ctime = time.Unix(entry.Attributes.Crtime, 0)
|
|
|
|
resp.Attr.Mode = os.FileMode(entry.Attributes.FileMode)
|
|
|
|
resp.Attr.Gid = entry.Attributes.Gid
|
|
|
|
resp.Attr.Uid = entry.Attributes.Uid
|
|
|
|
|
2018-05-06 06:50:34 +00:00
|
|
|
return node, nil
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
return nil, fuse.ENOENT
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
func (dir *Dir) ReadDirAll(ctx context.Context) (ret []fuse.Dirent, err error) {
|
|
|
|
|
2019-12-13 18:05:43 +00:00
|
|
|
glog.V(3).Infof("dir ReadDirAll %s", dir.Path)
|
|
|
|
|
2019-12-13 18:08:27 +00:00
|
|
|
cacheTtl := 5 * time.Minute
|
2018-12-11 15:41:50 +00:00
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
readErr := filer2.ReadDirAllEntries(ctx, dir.wfs, dir.Path, "", func(entry *filer_pb.Entry, isLast bool) {
|
|
|
|
if entry.IsDirectory {
|
|
|
|
dirent := fuse.Dirent{Name: entry.Name, Type: fuse.DT_Dir}
|
|
|
|
ret = append(ret, dirent)
|
|
|
|
} else {
|
|
|
|
dirent := fuse.Dirent{Name: entry.Name, Type: fuse.DT_File}
|
|
|
|
ret = append(ret, dirent)
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
2019-12-13 08:22:37 +00:00
|
|
|
dir.wfs.listDirectoryEntriesCache.Set(path.Join(dir.Path, entry.Name), entry, cacheTtl)
|
2018-05-08 08:59:43 +00:00
|
|
|
})
|
2019-12-13 08:22:37 +00:00
|
|
|
if readErr != nil {
|
|
|
|
glog.V(0).Infof("list %s: %v", dir.Path, err)
|
|
|
|
return ret, fuse.EIO
|
|
|
|
}
|
2018-05-08 08:59:43 +00:00
|
|
|
|
|
|
|
return ret, err
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) Remove(ctx context.Context, req *fuse.RemoveRequest) error {
|
2018-05-06 06:50:34 +00:00
|
|
|
|
2019-01-01 10:33:57 +00:00
|
|
|
if !req.Dir {
|
|
|
|
return dir.removeOneFile(ctx, req)
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir.removeFolder(ctx, req)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) removeOneFile(ctx context.Context, req *fuse.RemoveRequest) error {
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
entry, err := filer2.GetEntry(ctx, dir.wfs, path.Join(dir.Path, req.Name))
|
2019-01-01 10:33:57 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-03-16 00:20:24 +00:00
|
|
|
dir.wfs.deleteFileChunks(ctx, entry.Chunks)
|
2019-01-01 10:33:57 +00:00
|
|
|
|
2019-12-13 19:08:26 +00:00
|
|
|
dir.wfs.listDirectoryEntriesCache.Delete(path.Join(dir.Path, req.Name))
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
return dir.wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error {
|
2019-01-01 10:33:57 +00:00
|
|
|
|
|
|
|
request := &filer_pb.DeleteEntryRequest{
|
|
|
|
Directory: dir.Path,
|
|
|
|
Name: req.Name,
|
|
|
|
IsDeleteData: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.V(3).Infof("remove file: %v", request)
|
|
|
|
_, err := client.DeleteEntry(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(3).Infof("remove file %s/%s: %v", dir.Path, req.Name, err)
|
|
|
|
return fuse.ENOENT
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) removeFolder(ctx context.Context, req *fuse.RemoveRequest) error {
|
|
|
|
|
2019-12-13 19:08:26 +00:00
|
|
|
dir.wfs.listDirectoryEntriesCache.Delete(path.Join(dir.Path, req.Name))
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
return dir.wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error {
|
2018-05-08 08:59:43 +00:00
|
|
|
|
2018-05-10 06:18:02 +00:00
|
|
|
request := &filer_pb.DeleteEntryRequest{
|
2018-06-07 05:11:01 +00:00
|
|
|
Directory: dir.Path,
|
|
|
|
Name: req.Name,
|
|
|
|
IsDeleteData: true,
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-31 06:29:27 +00:00
|
|
|
glog.V(3).Infof("remove directory entry: %v", request)
|
2018-05-08 08:59:43 +00:00
|
|
|
_, err := client.DeleteEntry(ctx, request)
|
|
|
|
if err != nil {
|
2018-12-31 06:29:27 +00:00
|
|
|
glog.V(3).Infof("remove %s/%s: %v", dir.Path, req.Name, err)
|
|
|
|
return fuse.ENOENT
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2018-05-06 05:47:16 +00:00
|
|
|
}
|
2018-07-19 09:17:36 +00:00
|
|
|
|
|
|
|
func (dir *Dir) Setattr(ctx context.Context, req *fuse.SetattrRequest, resp *fuse.SetattrResponse) error {
|
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
if err := dir.maybeLoadEntry(ctx); err != nil {
|
|
|
|
return err
|
2019-02-18 20:14:28 +00:00
|
|
|
}
|
|
|
|
|
2018-07-19 09:17:36 +00:00
|
|
|
glog.V(3).Infof("%v dir setattr %+v, fh=%d", dir.Path, req, req.Handle)
|
|
|
|
if req.Valid.Mode() {
|
2019-12-16 05:07:01 +00:00
|
|
|
dir.entry.Attributes.FileMode = uint32(req.Mode)
|
2018-07-19 09:17:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if req.Valid.Uid() {
|
2019-12-16 05:07:01 +00:00
|
|
|
dir.entry.Attributes.Uid = req.Uid
|
2018-07-19 09:17:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if req.Valid.Gid() {
|
2019-12-16 05:07:01 +00:00
|
|
|
dir.entry.Attributes.Gid = req.Gid
|
2018-07-19 09:17:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if req.Valid.Mtime() {
|
2019-12-16 05:07:01 +00:00
|
|
|
dir.entry.Attributes.Mtime = req.Mtime.Unix()
|
2018-07-19 09:17:36 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 19:14:09 +00:00
|
|
|
dir.wfs.listDirectoryEntriesCache.Delete(dir.Path)
|
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
return dir.saveEntry(ctx)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) Setxattr(ctx context.Context, req *fuse.SetxattrRequest) error {
|
|
|
|
|
|
|
|
glog.V(4).Infof("dir Setxattr %s: %s", dir.Path, req.Name)
|
|
|
|
|
|
|
|
if err := dir.maybeLoadEntry(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := setxattr(dir.entry, req); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir.saveEntry(ctx)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) Removexattr(ctx context.Context, req *fuse.RemovexattrRequest) error {
|
|
|
|
|
|
|
|
glog.V(4).Infof("dir Removexattr %s: %s", dir.Path, req.Name)
|
|
|
|
|
|
|
|
if err := dir.maybeLoadEntry(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := removexattr(dir.entry, req); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir.saveEntry(ctx)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) Listxattr(ctx context.Context, req *fuse.ListxattrRequest, resp *fuse.ListxattrResponse) error {
|
|
|
|
|
2019-12-16 06:24:06 +00:00
|
|
|
glog.V(4).Infof("dir Listxattr %s", dir.Path)
|
2019-12-16 05:07:01 +00:00
|
|
|
|
|
|
|
if err := dir.maybeLoadEntry(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := listxattr(dir.entry, req, resp); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return dir.saveEntry(ctx)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) maybeLoadEntry(ctx context.Context) error {
|
|
|
|
if dir.entry == nil {
|
|
|
|
parentDirPath, name := filer2.FullPath(dir.Path).DirAndName()
|
|
|
|
entry, err := dir.wfs.maybeLoadEntry(ctx, parentDirPath, name)
|
|
|
|
dir.entry = entry
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-12-17 21:50:30 +00:00
|
|
|
if dir.entry == nil {
|
|
|
|
return fuse.ENOENT
|
|
|
|
}
|
2019-12-16 05:07:01 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dir *Dir) saveEntry(ctx context.Context) error {
|
|
|
|
|
2018-07-19 09:17:36 +00:00
|
|
|
parentDir, name := filer2.FullPath(dir.Path).DirAndName()
|
2019-12-16 05:07:01 +00:00
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
return dir.wfs.WithFilerClient(ctx, func(client filer_pb.SeaweedFilerClient) error {
|
2018-07-19 09:17:36 +00:00
|
|
|
|
|
|
|
request := &filer_pb.UpdateEntryRequest{
|
|
|
|
Directory: parentDir,
|
2019-12-16 05:07:01 +00:00
|
|
|
Entry: dir.entry,
|
2018-07-19 09:17:36 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 05:07:01 +00:00
|
|
|
glog.V(1).Infof("save dir entry: %v", request)
|
2018-07-19 09:17:36 +00:00
|
|
|
_, err := client.UpdateEntry(ctx, request)
|
|
|
|
if err != nil {
|
2019-12-16 05:07:01 +00:00
|
|
|
glog.V(0).Infof("UpdateEntry dir %s/%s: %v", parentDir, name, err)
|
2018-07-19 09:17:36 +00:00
|
|
|
return fuse.EIO
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|