seaweedfs/weed/filesys/file.go

36 lines
736 B
Go
Raw Normal View History

2018-05-06 05:47:16 +00:00
package filesys
import (
2018-05-06 06:39:29 +00:00
"context"
2018-05-06 05:47:16 +00:00
"fmt"
2018-05-06 06:39:29 +00:00
"bazil.org/fuse"
2018-05-06 05:47:16 +00:00
"github.com/chrislusf/seaweedfs/weed/filer"
)
type File struct {
FileId filer.FileId
Name string
wfs *WFS
}
func (file *File) Attr(context context.Context, attr *fuse.Attr) error {
attr.Mode = 0444
ret, err := filer.GetFileSize(file.wfs.filer, string(file.FileId))
if err == nil {
attr.Size = ret.Size
} else {
fmt.Printf("Get file %s attr [ERROR] %s\n", file.Name, err)
}
return err
}
func (file *File) ReadAll(ctx context.Context) ([]byte, error) {
ret, err := filer.GetFileContent(file.wfs.filer, string(file.FileId))
if err == nil {
return ret.Content, nil
}
fmt.Printf("Get file %s content [ERROR] %s\n", file.Name, err)
return nil, err
}