2019-05-02 21:22:10 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-05-03 07:24:35 +00:00
|
|
|
"fmt"
|
2019-05-02 21:22:10 +00:00
|
|
|
"io"
|
2020-03-22 08:30:27 +00:00
|
|
|
"math"
|
2019-05-02 21:22:10 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2020-04-28 06:10:23 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/grace"
|
2019-12-07 15:56:05 +00:00
|
|
|
"golang.org/x/net/webdav"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2019-05-03 07:55:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
2020-03-04 08:39:47 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2019-05-03 07:24:35 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2020-04-11 19:45:24 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util/chunk_cache"
|
2019-12-07 15:56:05 +00:00
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
|
|
|
)
|
|
|
|
|
|
|
|
type WebDavOption struct {
|
|
|
|
Filer string
|
|
|
|
FilerGrpcAddress string
|
|
|
|
DomainName string
|
|
|
|
BucketsPath string
|
|
|
|
GrpcDialOption grpc.DialOption
|
2019-05-03 07:24:35 +00:00
|
|
|
Collection string
|
|
|
|
Uid uint32
|
|
|
|
Gid uint32
|
2020-03-06 08:49:47 +00:00
|
|
|
Cipher bool
|
2020-04-12 04:12:41 +00:00
|
|
|
CacheDir string
|
|
|
|
CacheSizeMB int64
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type WebDavServer struct {
|
|
|
|
option *WebDavOption
|
|
|
|
secret security.SigningKey
|
|
|
|
filer *filer2.Filer
|
|
|
|
grpcDialOption grpc.DialOption
|
|
|
|
Handler *webdav.Handler
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewWebDavServer(option *WebDavOption) (ws *WebDavServer, err error) {
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
fs, _ := NewWebDavFileSystem(option)
|
2019-05-02 21:22:10 +00:00
|
|
|
|
|
|
|
ws = &WebDavServer{
|
|
|
|
option: option,
|
2020-01-29 17:09:55 +00:00
|
|
|
grpcDialOption: security.LoadClientTLS(util.GetViper(), "grpc.filer"),
|
2019-05-02 21:22:10 +00:00
|
|
|
Handler: &webdav.Handler{
|
|
|
|
FileSystem: fs,
|
|
|
|
LockSystem: webdav.NewMemLS(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return ws, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// adapted from https://github.com/mattn/davfs/blob/master/plugin/mysql/mysql.go
|
|
|
|
|
|
|
|
type WebDavFileSystem struct {
|
2019-05-03 07:24:35 +00:00
|
|
|
option *WebDavOption
|
|
|
|
secret security.SigningKey
|
|
|
|
filer *filer2.Filer
|
|
|
|
grpcDialOption grpc.DialOption
|
2020-04-11 19:45:24 +00:00
|
|
|
chunkCache *chunk_cache.ChunkCache
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FileInfo struct {
|
2019-05-03 07:24:35 +00:00
|
|
|
name string
|
|
|
|
size int64
|
|
|
|
mode os.FileMode
|
|
|
|
modifiledTime time.Time
|
|
|
|
isDirectory bool
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fi *FileInfo) Name() string { return fi.name }
|
|
|
|
func (fi *FileInfo) Size() int64 { return fi.size }
|
|
|
|
func (fi *FileInfo) Mode() os.FileMode { return fi.mode }
|
2019-05-03 07:24:35 +00:00
|
|
|
func (fi *FileInfo) ModTime() time.Time { return fi.modifiledTime }
|
|
|
|
func (fi *FileInfo) IsDir() bool { return fi.isDirectory }
|
2019-05-02 21:22:10 +00:00
|
|
|
func (fi *FileInfo) Sys() interface{} { return nil }
|
|
|
|
|
|
|
|
type WebDavFile struct {
|
2019-05-03 07:24:35 +00:00
|
|
|
fs *WebDavFileSystem
|
|
|
|
name string
|
|
|
|
isDirectory bool
|
|
|
|
off int64
|
|
|
|
entry *filer_pb.Entry
|
|
|
|
entryViewCache []filer2.VisibleInterval
|
2020-03-27 11:50:51 +00:00
|
|
|
reader io.ReaderAt
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
func NewWebDavFileSystem(option *WebDavOption) (webdav.FileSystem, error) {
|
2020-04-12 04:12:41 +00:00
|
|
|
|
2020-04-14 05:19:27 +00:00
|
|
|
chunkCache := chunk_cache.NewChunkCache(256, option.CacheDir, option.CacheSizeMB)
|
2020-04-28 06:10:23 +00:00
|
|
|
grace.OnInterrupt(func() {
|
2020-04-12 04:12:41 +00:00
|
|
|
chunkCache.Shutdown()
|
|
|
|
})
|
2019-05-03 07:24:35 +00:00
|
|
|
return &WebDavFileSystem{
|
2020-03-28 20:43:31 +00:00
|
|
|
option: option,
|
2020-04-12 04:12:41 +00:00
|
|
|
chunkCache: chunkCache,
|
2019-05-03 07:24:35 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-04-29 20:26:02 +00:00
|
|
|
var _ = filer_pb.FilerClient(&WebDavFileSystem{})
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func (fs *WebDavFileSystem) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-03-04 08:39:47 +00:00
|
|
|
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
|
2019-05-03 07:24:35 +00:00
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
2020-02-26 05:50:12 +00:00
|
|
|
return fn(client)
|
2019-05-03 07:24:35 +00:00
|
|
|
}, fs.option.FilerGrpcAddress, fs.option.GrpcDialOption)
|
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
2020-02-27 00:46:01 +00:00
|
|
|
func (fs *WebDavFileSystem) AdjustedUrl(hostAndPort string) string {
|
|
|
|
return hostAndPort
|
|
|
|
}
|
2019-05-02 21:22:10 +00:00
|
|
|
|
|
|
|
func clearName(name string) (string, error) {
|
|
|
|
slashed := strings.HasSuffix(name, "/")
|
|
|
|
name = path.Clean(name)
|
|
|
|
if !strings.HasSuffix(name, "/") && slashed {
|
|
|
|
name += "/"
|
|
|
|
}
|
|
|
|
if !strings.HasPrefix(name, "/") {
|
|
|
|
return "", os.ErrInvalid
|
|
|
|
}
|
|
|
|
return name, nil
|
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
func (fs *WebDavFileSystem) Mkdir(ctx context.Context, fullDirPath string, perm os.FileMode) error {
|
2019-05-02 21:22:10 +00:00
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
glog.V(2).Infof("WebDavFileSystem.Mkdir %v", fullDirPath)
|
2019-05-02 21:22:10 +00:00
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
if !strings.HasSuffix(fullDirPath, "/") {
|
|
|
|
fullDirPath += "/"
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
2019-05-03 07:24:35 +00:00
|
|
|
if fullDirPath, err = clearName(fullDirPath); err != nil {
|
2019-05-02 21:22:10 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
_, err = fs.stat(ctx, fullDirPath)
|
2019-05-02 21:22:10 +00:00
|
|
|
if err == nil {
|
|
|
|
return os.ErrExist
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
return fs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2020-03-23 07:01:34 +00:00
|
|
|
dir, name := util.FullPath(fullDirPath).DirAndName()
|
2019-05-03 20:13:08 +00:00
|
|
|
request := &filer_pb.CreateEntryRequest{
|
|
|
|
Directory: dir,
|
|
|
|
Entry: &filer_pb.Entry{
|
|
|
|
Name: name,
|
|
|
|
IsDirectory: true,
|
|
|
|
Attributes: &filer_pb.FuseAttributes{
|
|
|
|
Mtime: time.Now().Unix(),
|
|
|
|
Crtime: time.Now().Unix(),
|
|
|
|
FileMode: uint32(perm | os.ModeDir),
|
|
|
|
Uid: fs.option.Uid,
|
|
|
|
Gid: fs.option.Gid,
|
2019-05-03 07:24:35 +00:00
|
|
|
},
|
2019-05-03 20:13:08 +00:00
|
|
|
},
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2019-05-03 20:13:08 +00:00
|
|
|
glog.V(1).Infof("mkdir: %v", request)
|
2020-02-26 05:50:12 +00:00
|
|
|
if err := filer_pb.CreateEntry(client, request); err != nil {
|
2019-05-03 20:13:08 +00:00
|
|
|
return fmt.Errorf("mkdir %s/%s: %v", dir, name, err)
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
2019-05-03 20:13:08 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
func (fs *WebDavFileSystem) OpenFile(ctx context.Context, fullFilePath string, flag int, perm os.FileMode) (webdav.File, error) {
|
2019-05-02 21:22:10 +00:00
|
|
|
|
2019-12-07 15:56:05 +00:00
|
|
|
glog.V(2).Infof("WebDavFileSystem.OpenFile %v %x", fullFilePath, flag)
|
2019-05-02 21:22:10 +00:00
|
|
|
|
|
|
|
var err error
|
2019-05-03 07:24:35 +00:00
|
|
|
if fullFilePath, err = clearName(fullFilePath); err != nil {
|
2019-05-02 21:22:10 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if flag&os.O_CREATE != 0 {
|
|
|
|
// file should not have / suffix.
|
2019-05-03 07:24:35 +00:00
|
|
|
if strings.HasSuffix(fullFilePath, "/") {
|
2019-05-02 21:22:10 +00:00
|
|
|
return nil, os.ErrInvalid
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
_, err = fs.stat(ctx, fullFilePath)
|
2019-05-02 21:22:10 +00:00
|
|
|
if err == nil {
|
|
|
|
if flag&os.O_EXCL != 0 {
|
|
|
|
return nil, os.ErrExist
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
fs.removeAll(ctx, fullFilePath)
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
dir, name := util.FullPath(fullFilePath).DirAndName()
|
2020-02-26 05:50:12 +00:00
|
|
|
err = fs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
|
|
|
if err := filer_pb.CreateEntry(client, &filer_pb.CreateEntryRequest{
|
2019-05-03 07:24:35 +00:00
|
|
|
Directory: dir,
|
|
|
|
Entry: &filer_pb.Entry{
|
|
|
|
Name: name,
|
|
|
|
IsDirectory: perm&os.ModeDir > 0,
|
|
|
|
Attributes: &filer_pb.FuseAttributes{
|
|
|
|
Mtime: time.Now().Unix(),
|
|
|
|
Crtime: time.Now().Unix(),
|
|
|
|
FileMode: uint32(perm),
|
|
|
|
Uid: fs.option.Uid,
|
|
|
|
Gid: fs.option.Gid,
|
|
|
|
Collection: fs.option.Collection,
|
|
|
|
Replication: "000",
|
|
|
|
TtlSec: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}); err != nil {
|
|
|
|
return fmt.Errorf("create %s: %v", fullFilePath, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2019-05-02 21:22:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
return &WebDavFile{
|
|
|
|
fs: fs,
|
|
|
|
name: fullFilePath,
|
|
|
|
isDirectory: false,
|
|
|
|
}, nil
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
fi, err := fs.stat(ctx, fullFilePath)
|
2019-05-02 21:22:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, os.ErrNotExist
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
if !strings.HasSuffix(fullFilePath, "/") && fi.IsDir() {
|
|
|
|
fullFilePath += "/"
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
return &WebDavFile{
|
|
|
|
fs: fs,
|
|
|
|
name: fullFilePath,
|
|
|
|
isDirectory: false,
|
|
|
|
}, nil
|
2019-05-02 21:22:10 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
func (fs *WebDavFileSystem) removeAll(ctx context.Context, fullFilePath string) error {
|
2019-05-02 21:22:10 +00:00
|
|
|
var err error
|
2019-05-03 07:24:35 +00:00
|
|
|
if fullFilePath, err = clearName(fullFilePath); err != nil {
|
2019-05-02 21:22:10 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
dir, name := util.FullPath(fullFilePath).DirAndName()
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-07-01 05:53:53 +00:00
|
|
|
return filer_pb.Remove(fs, dir, name, true, false, false, false)
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *WebDavFileSystem) RemoveAll(ctx context.Context, name string) error {
|
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFileSystem.RemoveAll %v", name)
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
return fs.removeAll(ctx, name)
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *WebDavFileSystem) Rename(ctx context.Context, oldName, newName string) error {
|
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFileSystem.Rename %v to %v", oldName, newName)
|
|
|
|
|
|
|
|
var err error
|
|
|
|
if oldName, err = clearName(oldName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if newName, err = clearName(newName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
of, err := fs.stat(ctx, oldName)
|
2019-05-02 21:22:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return os.ErrExist
|
|
|
|
}
|
2019-05-03 21:12:51 +00:00
|
|
|
if of.IsDir() {
|
|
|
|
if strings.HasSuffix(oldName, "/") {
|
|
|
|
oldName = strings.TrimRight(oldName, "/")
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(newName, "/") {
|
|
|
|
newName = strings.TrimRight(newName, "/")
|
|
|
|
}
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
_, err = fs.stat(ctx, newName)
|
2019-05-02 21:22:10 +00:00
|
|
|
if err == nil {
|
|
|
|
return os.ErrExist
|
|
|
|
}
|
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
oldDir, oldBaseName := util.FullPath(oldName).DirAndName()
|
|
|
|
newDir, newBaseName := util.FullPath(newName).DirAndName()
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
return fs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2019-05-03 07:24:35 +00:00
|
|
|
|
|
|
|
request := &filer_pb.AtomicRenameEntryRequest{
|
|
|
|
OldDirectory: oldDir,
|
|
|
|
OldName: oldBaseName,
|
|
|
|
NewDirectory: newDir,
|
|
|
|
NewName: newBaseName,
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := client.AtomicRenameEntry(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("renaming %s/%s => %s/%s: %v", oldDir, oldBaseName, newDir, newBaseName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
})
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
func (fs *WebDavFileSystem) stat(ctx context.Context, fullFilePath string) (os.FileInfo, error) {
|
2019-05-02 21:22:10 +00:00
|
|
|
var err error
|
2019-05-03 07:24:35 +00:00
|
|
|
if fullFilePath, err = clearName(fullFilePath); err != nil {
|
2019-05-02 21:22:10 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
fullpath := util.FullPath(fullFilePath)
|
2020-01-20 07:59:46 +00:00
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
var fi FileInfo
|
2020-03-23 07:01:34 +00:00
|
|
|
entry, err := filer_pb.GetEntry(fs, fullpath)
|
2019-05-03 21:12:51 +00:00
|
|
|
if entry == nil {
|
|
|
|
return nil, os.ErrNotExist
|
|
|
|
}
|
2019-05-02 21:22:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
fi.size = int64(filer2.TotalSize(entry.GetChunks()))
|
2020-01-20 07:59:46 +00:00
|
|
|
fi.name = string(fullpath)
|
2019-05-03 07:24:35 +00:00
|
|
|
fi.mode = os.FileMode(entry.Attributes.FileMode)
|
|
|
|
fi.modifiledTime = time.Unix(entry.Attributes.Mtime, 0)
|
|
|
|
fi.isDirectory = entry.IsDirectory
|
|
|
|
|
2020-01-20 07:59:46 +00:00
|
|
|
if fi.name == "/" {
|
2019-05-03 07:24:35 +00:00
|
|
|
fi.modifiledTime = time.Now()
|
|
|
|
fi.isDirectory = true
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
return &fi, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *WebDavFileSystem) Stat(ctx context.Context, name string) (os.FileInfo, error) {
|
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFileSystem.Stat %v", name)
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
return fs.stat(ctx, name)
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:55:52 +00:00
|
|
|
func (f *WebDavFile) Write(buf []byte) (int, error) {
|
2019-05-02 21:22:10 +00:00
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFileSystem.Write %v", f.name)
|
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
dir, _ := util.FullPath(f.name).DirAndName()
|
2020-02-25 06:28:45 +00:00
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
var err error
|
2019-05-03 07:55:52 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
if f.entry == nil {
|
2020-03-23 07:01:34 +00:00
|
|
|
f.entry, err = filer_pb.GetEntry(f.fs, util.FullPath(f.name))
|
2019-05-03 07:55:52 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 21:12:51 +00:00
|
|
|
if f.entry == nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2019-05-02 21:22:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2019-05-03 07:55:52 +00:00
|
|
|
|
|
|
|
var fileId, host string
|
|
|
|
var auth security.EncodedJwt
|
2020-02-25 06:28:45 +00:00
|
|
|
var collection, replication string
|
2019-05-03 07:55:52 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
if err = f.fs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2019-05-03 07:55:52 +00:00
|
|
|
|
|
|
|
request := &filer_pb.AssignVolumeRequest{
|
|
|
|
Count: 1,
|
2020-02-25 06:28:45 +00:00
|
|
|
Replication: "",
|
2019-05-03 07:55:52 +00:00
|
|
|
Collection: f.fs.option.Collection,
|
2020-02-25 06:28:45 +00:00
|
|
|
ParentPath: dir,
|
2019-05-03 07:55:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := client.AssignVolume(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("assign volume failure %v: %v", request, err)
|
|
|
|
return err
|
|
|
|
}
|
2020-02-26 01:15:09 +00:00
|
|
|
if resp.Error != "" {
|
|
|
|
return fmt.Errorf("assign volume failure %v: %v", request, resp.Error)
|
|
|
|
}
|
2019-05-03 07:55:52 +00:00
|
|
|
|
|
|
|
fileId, host, auth = resp.FileId, resp.Url, security.EncodedJwt(resp.Auth)
|
2020-02-25 06:28:45 +00:00
|
|
|
collection, replication = resp.Collection, resp.Replication
|
2019-05-03 07:55:52 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
return 0, fmt.Errorf("filerGrpcAddress assign volume: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fileUrl := fmt.Sprintf("http://%s/%s", host, fileId)
|
2020-03-09 04:39:33 +00:00
|
|
|
uploadResult, err := operation.UploadData(fileUrl, f.name, f.fs.option.Cipher, buf, false, "", nil, auth)
|
2019-05-03 07:55:52 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.V(0).Infof("upload data %v to %s: %v", f.name, fileUrl, err)
|
|
|
|
return 0, fmt.Errorf("upload data: %v", err)
|
|
|
|
}
|
|
|
|
if uploadResult.Error != "" {
|
|
|
|
glog.V(0).Infof("upload failure %v to %s: %v", f.name, fileUrl, err)
|
|
|
|
return 0, fmt.Errorf("upload result: %v", uploadResult.Error)
|
|
|
|
}
|
|
|
|
|
2020-05-01 00:20:44 +00:00
|
|
|
f.entry.Chunks = append(f.entry.Chunks, uploadResult.ToPbFileChunk(fileId, f.off))
|
2019-05-03 07:55:52 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
err = f.fs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
2019-05-03 07:55:52 +00:00
|
|
|
f.entry.Attributes.Mtime = time.Now().Unix()
|
2020-02-25 06:28:45 +00:00
|
|
|
f.entry.Attributes.Collection = collection
|
|
|
|
f.entry.Attributes.Replication = replication
|
2019-05-03 07:55:52 +00:00
|
|
|
|
|
|
|
request := &filer_pb.UpdateEntryRequest{
|
|
|
|
Directory: dir,
|
|
|
|
Entry: f.entry,
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := client.UpdateEntry(ctx, request); err != nil {
|
|
|
|
return fmt.Errorf("update %s: %v", f.name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2019-12-07 15:56:51 +00:00
|
|
|
if err == nil {
|
2019-12-07 15:56:05 +00:00
|
|
|
glog.V(3).Infof("WebDavFileSystem.Write %v: written [%d,%d)", f.name, f.off, f.off+int64(len(buf)))
|
2019-05-03 07:55:52 +00:00
|
|
|
f.off += int64(len(buf))
|
|
|
|
}
|
2019-12-07 15:56:05 +00:00
|
|
|
|
2019-05-03 07:55:52 +00:00
|
|
|
return len(buf), err
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *WebDavFile) Close() error {
|
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFileSystem.Close %v", f.name)
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
if f.entry != nil {
|
|
|
|
f.entry = nil
|
|
|
|
f.entryViewCache = nil
|
|
|
|
}
|
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
func (f *WebDavFile) Read(p []byte) (readSize int, err error) {
|
2019-05-02 21:22:10 +00:00
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFileSystem.Read %v", f.name)
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
if f.entry == nil {
|
2020-03-23 07:01:34 +00:00
|
|
|
f.entry, err = filer_pb.GetEntry(f.fs, util.FullPath(f.name))
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
2019-05-03 21:12:51 +00:00
|
|
|
if f.entry == nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2019-05-02 21:22:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
if len(f.entry.Chunks) == 0 {
|
|
|
|
return 0, io.EOF
|
|
|
|
}
|
|
|
|
if f.entryViewCache == nil {
|
2020-07-20 00:59:43 +00:00
|
|
|
f.entryViewCache, _ = filer2.NonOverlappingVisibleIntervals(filer2.LookupFn(f.fs), f.entry.Chunks)
|
2020-03-22 08:30:27 +00:00
|
|
|
f.reader = nil
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
2020-03-22 08:30:27 +00:00
|
|
|
if f.reader == nil {
|
2020-03-27 11:50:51 +00:00
|
|
|
chunkViews := filer2.ViewFromVisibleIntervals(f.entryViewCache, 0, math.MaxInt32)
|
2020-03-30 04:07:55 +00:00
|
|
|
f.reader = filer2.NewChunkReaderAtFromClient(f.fs, chunkViews, f.fs.chunkCache)
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
|
|
|
|
2020-03-27 11:50:51 +00:00
|
|
|
readSize, err = f.reader.ReadAt(p, f.off)
|
2019-12-07 15:56:05 +00:00
|
|
|
|
2020-03-22 08:39:08 +00:00
|
|
|
glog.V(3).Infof("WebDavFileSystem.Read %v: [%d,%d)", f.name, f.off, f.off+int64(readSize))
|
2020-03-22 08:30:27 +00:00
|
|
|
f.off += int64(readSize)
|
|
|
|
|
2020-06-10 01:07:03 +00:00
|
|
|
if err == io.EOF {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
|
2020-03-22 08:30:27 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Errorf("file read %s: %v", f.name, err)
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
2019-12-07 15:56:05 +00:00
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
return
|
2020-03-22 08:30:27 +00:00
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
func (f *WebDavFile) Readdir(count int) (ret []os.FileInfo, err error) {
|
2019-05-02 21:22:10 +00:00
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
glog.V(2).Infof("WebDavFileSystem.Readdir %v count %d", f.name, count)
|
2019-05-02 21:22:10 +00:00
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
dir, _ := util.FullPath(f.name).DirAndName()
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-04-30 00:40:08 +00:00
|
|
|
err = filer_pb.ReadDirAllEntries(f.fs, util.FullPath(dir), "", func(entry *filer_pb.Entry, isLast bool) error {
|
2019-05-03 07:24:35 +00:00
|
|
|
fi := FileInfo{
|
|
|
|
size: int64(filer2.TotalSize(entry.GetChunks())),
|
|
|
|
name: entry.Name,
|
|
|
|
mode: os.FileMode(entry.Attributes.FileMode),
|
|
|
|
modifiledTime: time.Unix(entry.Attributes.Mtime, 0),
|
|
|
|
isDirectory: entry.IsDirectory,
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.HasSuffix(fi.name, "/") && fi.IsDir() {
|
|
|
|
fi.name += "/"
|
|
|
|
}
|
|
|
|
glog.V(4).Infof("entry: %v", fi.name)
|
|
|
|
ret = append(ret, &fi)
|
2020-04-30 00:40:08 +00:00
|
|
|
return nil
|
2019-05-03 07:24:35 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
old := f.off
|
|
|
|
if old >= int64(len(ret)) {
|
|
|
|
if count > 0 {
|
|
|
|
return nil, io.EOF
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
if count > 0 {
|
|
|
|
f.off += int64(count)
|
|
|
|
if f.off > int64(len(ret)) {
|
|
|
|
f.off = int64(len(ret))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
f.off = int64(len(ret))
|
|
|
|
old = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret[old:f.off], nil
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *WebDavFile) Seek(offset int64, whence int) (int64, error) {
|
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFile.Seek %v %v %v", f.name, offset, whence)
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2019-05-02 21:22:10 +00:00
|
|
|
var err error
|
|
|
|
switch whence {
|
|
|
|
case 0:
|
|
|
|
f.off = 0
|
|
|
|
case 2:
|
2019-05-03 07:24:35 +00:00
|
|
|
if fi, err := f.fs.stat(ctx, f.name); err != nil {
|
2019-05-02 21:22:10 +00:00
|
|
|
return 0, err
|
|
|
|
} else {
|
|
|
|
f.off = fi.Size()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.off += offset
|
|
|
|
return f.off, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *WebDavFile) Stat() (os.FileInfo, error) {
|
|
|
|
|
|
|
|
glog.V(2).Infof("WebDavFile.Stat %v", f.name)
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
return f.fs.stat(ctx, f.name)
|
2019-05-02 21:22:10 +00:00
|
|
|
}
|