2020-03-23 07:01:34 +00:00
|
|
|
package filer_pb
|
2019-05-03 07:24:35 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-03-26 09:21:30 +00:00
|
|
|
"errors"
|
2019-05-03 07:24:35 +00:00
|
|
|
"fmt"
|
2019-12-13 08:23:05 +00:00
|
|
|
"io"
|
2021-03-12 03:10:01 +00:00
|
|
|
"math"
|
2020-03-23 07:30:02 +00:00
|
|
|
"os"
|
2020-08-14 07:22:21 +00:00
|
|
|
"strings"
|
2020-03-23 07:30:02 +00:00
|
|
|
"time"
|
2019-05-03 07:24:35 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2020-03-23 07:01:34 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2019-05-03 07:24:35 +00:00
|
|
|
)
|
|
|
|
|
2020-03-23 07:30:02 +00:00
|
|
|
var (
|
|
|
|
OS_UID = uint32(os.Getuid())
|
|
|
|
OS_GID = uint32(os.Getgid())
|
|
|
|
)
|
|
|
|
|
2019-05-03 07:24:35 +00:00
|
|
|
type FilerClient interface {
|
2020-03-23 07:01:34 +00:00
|
|
|
WithFilerClient(fn func(SeaweedFilerClient) error) error
|
2021-01-28 22:36:29 +00:00
|
|
|
AdjustedUrl(location *Location) string
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
func GetEntry(filerClient FilerClient, fullFilePath util.FullPath) (entry *Entry, err error) {
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-01-20 07:59:46 +00:00
|
|
|
dir, name := fullFilePath.DirAndName()
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
err = filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
request := &LookupDirectoryEntryRequest{
|
2019-05-03 07:24:35 +00:00
|
|
|
Directory: dir,
|
|
|
|
Name: name,
|
|
|
|
}
|
|
|
|
|
2020-01-25 08:31:53 +00:00
|
|
|
// glog.V(3).Infof("read %s request: %v", fullFilePath, request)
|
2020-03-23 07:01:34 +00:00
|
|
|
resp, err := LookupEntry(client, request)
|
2019-05-03 07:24:35 +00:00
|
|
|
if err != nil {
|
2020-03-23 07:01:34 +00:00
|
|
|
if err == ErrNotFound {
|
2019-05-03 21:12:51 +00:00
|
|
|
return nil
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
2020-01-25 08:31:53 +00:00
|
|
|
glog.V(3).Infof("read %s %v: %v", fullFilePath, resp, err)
|
2019-05-03 07:24:35 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-12-11 07:13:14 +00:00
|
|
|
if resp.Entry == nil {
|
2020-01-25 08:31:53 +00:00
|
|
|
// glog.V(3).Infof("read %s entry: %v", fullFilePath, entry)
|
2019-12-11 07:13:14 +00:00
|
|
|
return nil
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 07:13:14 +00:00
|
|
|
entry = resp.Entry
|
2019-05-03 07:24:35 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-04-30 00:40:08 +00:00
|
|
|
type EachEntryFunciton func(entry *Entry, isLast bool) error
|
|
|
|
|
|
|
|
func ReadDirAllEntries(filerClient FilerClient, fullDirPath util.FullPath, prefix string, fn EachEntryFunciton) (err error) {
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-12-10 07:23:38 +00:00
|
|
|
var counter uint32
|
|
|
|
var startFrom string
|
|
|
|
var counterFunc = func(entry *Entry, isLast bool) error {
|
|
|
|
counter++
|
|
|
|
startFrom = entry.Name
|
|
|
|
return fn(entry, isLast)
|
|
|
|
}
|
2020-03-23 07:30:02 +00:00
|
|
|
|
2020-12-10 07:23:38 +00:00
|
|
|
var paginationLimit uint32 = 10000
|
|
|
|
|
|
|
|
if err = doList(filerClient, fullDirPath, prefix, counterFunc, "", false, paginationLimit); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for counter == paginationLimit {
|
|
|
|
counter = 0
|
|
|
|
if err = doList(filerClient, fullDirPath, prefix, counterFunc, startFrom, false, paginationLimit); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2020-03-23 07:30:02 +00:00
|
|
|
}
|
|
|
|
|
2020-04-30 00:40:08 +00:00
|
|
|
func List(filerClient FilerClient, parentDirectoryPath, prefix string, fn EachEntryFunciton, startFrom string, inclusive bool, limit uint32) (err error) {
|
2020-12-12 20:42:53 +00:00
|
|
|
return filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
|
|
|
return doSeaweedList(client, util.FullPath(parentDirectoryPath), prefix, fn, startFrom, inclusive, limit)
|
|
|
|
})
|
2020-03-23 07:30:02 +00:00
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-04-30 00:40:08 +00:00
|
|
|
func doList(filerClient FilerClient, fullDirPath util.FullPath, prefix string, fn EachEntryFunciton, startFrom string, inclusive bool, limit uint32) (err error) {
|
2020-12-12 20:42:53 +00:00
|
|
|
return filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
|
|
|
return doSeaweedList(client, fullDirPath, prefix, fn, startFrom, inclusive, limit)
|
|
|
|
})
|
|
|
|
}
|
2020-03-23 07:30:02 +00:00
|
|
|
|
2020-12-12 20:42:53 +00:00
|
|
|
func SeaweedList(client SeaweedFilerClient, parentDirectoryPath, prefix string, fn EachEntryFunciton, startFrom string, inclusive bool, limit uint32) (err error) {
|
|
|
|
return doSeaweedList(client, util.FullPath(parentDirectoryPath), prefix, fn, startFrom, inclusive, limit)
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-12-12 20:42:53 +00:00
|
|
|
func doSeaweedList(client SeaweedFilerClient, fullDirPath util.FullPath, prefix string, fn EachEntryFunciton, startFrom string, inclusive bool, limit uint32) (err error) {
|
2021-03-12 03:10:01 +00:00
|
|
|
// Redundancy limit to make it correctly judge whether it is the last file.
|
|
|
|
redLimit := limit
|
2021-03-14 20:21:02 +00:00
|
|
|
if limit != math.MaxInt32 && limit != 0 {
|
2021-03-12 03:10:01 +00:00
|
|
|
redLimit = limit + 1
|
|
|
|
}
|
2020-12-12 20:42:53 +00:00
|
|
|
request := &ListEntriesRequest{
|
|
|
|
Directory: string(fullDirPath),
|
|
|
|
Prefix: prefix,
|
|
|
|
StartFromFileName: startFrom,
|
2021-03-12 03:10:01 +00:00
|
|
|
Limit: redLimit,
|
2020-12-12 20:42:53 +00:00
|
|
|
InclusiveStartFrom: inclusive,
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.V(4).Infof("read directory: %v", request)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
stream, err := client.ListEntries(ctx, request)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("list %s: %v", fullDirPath, err)
|
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-12-12 20:42:53 +00:00
|
|
|
var prevEntry *Entry
|
2021-03-12 03:10:01 +00:00
|
|
|
count := 0
|
2020-12-12 20:42:53 +00:00
|
|
|
for {
|
|
|
|
resp, recvErr := stream.Recv()
|
|
|
|
if recvErr != nil {
|
|
|
|
if recvErr == io.EOF {
|
|
|
|
if prevEntry != nil {
|
|
|
|
if err := fn(prevEntry, true); err != nil {
|
|
|
|
return err
|
2019-12-13 08:23:05 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-12 20:42:53 +00:00
|
|
|
break
|
|
|
|
} else {
|
|
|
|
return recvErr
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
2020-12-12 20:42:53 +00:00
|
|
|
}
|
|
|
|
if prevEntry != nil {
|
|
|
|
if err := fn(prevEntry, false); err != nil {
|
|
|
|
return err
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-12 20:42:53 +00:00
|
|
|
prevEntry = resp.Entry
|
2021-03-12 03:10:01 +00:00
|
|
|
count++
|
|
|
|
if count > int(limit) && limit != 0 {
|
|
|
|
prevEntry = nil
|
|
|
|
}
|
2020-12-12 20:42:53 +00:00
|
|
|
}
|
2019-05-03 07:24:35 +00:00
|
|
|
|
2020-12-12 20:42:53 +00:00
|
|
|
return nil
|
2019-05-03 07:24:35 +00:00
|
|
|
}
|
2020-03-23 07:06:24 +00:00
|
|
|
|
|
|
|
func Exists(filerClient FilerClient, parentDirectoryPath string, entryName string, isDirectory bool) (exists bool, err error) {
|
|
|
|
|
|
|
|
err = filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
|
|
|
|
|
|
|
request := &LookupDirectoryEntryRequest{
|
|
|
|
Directory: parentDirectoryPath,
|
|
|
|
Name: entryName,
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.V(4).Infof("exists entry %v/%v: %v", parentDirectoryPath, entryName, request)
|
|
|
|
resp, err := LookupEntry(client, request)
|
|
|
|
if err != nil {
|
|
|
|
if err == ErrNotFound {
|
|
|
|
exists = false
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
glog.V(0).Infof("exists entry %v: %v", request, err)
|
|
|
|
return fmt.Errorf("exists entry %s/%s: %v", parentDirectoryPath, entryName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
exists = resp.Entry.IsDirectory == isDirectory
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2020-03-23 07:30:02 +00:00
|
|
|
|
2021-03-19 08:31:49 +00:00
|
|
|
func Touch(filerClient FilerClient, parentDirectoryPath string, entryName string, entry *Entry) (err error) {
|
|
|
|
|
|
|
|
return filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
|
|
|
|
|
|
|
request := &UpdateEntryRequest{
|
|
|
|
Directory: parentDirectoryPath,
|
|
|
|
Entry: entry,
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.V(4).Infof("touch entry %v/%v: %v", parentDirectoryPath, entryName, request)
|
|
|
|
if err := UpdateEntry(client, request); err != nil {
|
|
|
|
glog.V(0).Infof("touch exists entry %v: %v", request, err)
|
|
|
|
return fmt.Errorf("touch exists entry %s/%s: %v", parentDirectoryPath, entryName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-23 07:30:02 +00:00
|
|
|
func Mkdir(filerClient FilerClient, parentDirectoryPath string, dirName string, fn func(entry *Entry)) error {
|
|
|
|
return filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
|
|
|
|
|
|
|
entry := &Entry{
|
|
|
|
Name: dirName,
|
|
|
|
IsDirectory: true,
|
|
|
|
Attributes: &FuseAttributes{
|
|
|
|
Mtime: time.Now().Unix(),
|
|
|
|
Crtime: time.Now().Unix(),
|
|
|
|
FileMode: uint32(0777 | os.ModeDir),
|
|
|
|
Uid: OS_UID,
|
|
|
|
Gid: OS_GID,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if fn != nil {
|
|
|
|
fn(entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
request := &CreateEntryRequest{
|
|
|
|
Directory: parentDirectoryPath,
|
|
|
|
Entry: entry,
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.V(1).Infof("mkdir: %v", request)
|
|
|
|
if err := CreateEntry(client, request); err != nil {
|
|
|
|
glog.V(0).Infof("mkdir %v: %v", request, err)
|
|
|
|
return fmt.Errorf("mkdir %s/%s: %v", parentDirectoryPath, dirName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func MkFile(filerClient FilerClient, parentDirectoryPath string, fileName string, chunks []*FileChunk) error {
|
|
|
|
return filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
|
|
|
|
|
|
|
entry := &Entry{
|
|
|
|
Name: fileName,
|
|
|
|
IsDirectory: false,
|
|
|
|
Attributes: &FuseAttributes{
|
|
|
|
Mtime: time.Now().Unix(),
|
|
|
|
Crtime: time.Now().Unix(),
|
|
|
|
FileMode: uint32(0770),
|
|
|
|
Uid: OS_UID,
|
|
|
|
Gid: OS_GID,
|
|
|
|
},
|
|
|
|
Chunks: chunks,
|
|
|
|
}
|
|
|
|
|
|
|
|
request := &CreateEntryRequest{
|
|
|
|
Directory: parentDirectoryPath,
|
|
|
|
Entry: entry,
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.V(1).Infof("create file: %s/%s", parentDirectoryPath, fileName)
|
|
|
|
if err := CreateEntry(client, request); err != nil {
|
|
|
|
glog.V(0).Infof("create file %v:%v", request, err)
|
|
|
|
return fmt.Errorf("create file %s/%s: %v", parentDirectoryPath, fileName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
2020-03-23 08:14:21 +00:00
|
|
|
|
2020-09-09 18:21:23 +00:00
|
|
|
func Remove(filerClient FilerClient, parentDirectoryPath, name string, isDeleteData, isRecursive, ignoreRecursiveErr, isFromOtherCluster bool, signatures []int32) error {
|
2020-03-23 08:14:21 +00:00
|
|
|
return filerClient.WithFilerClient(func(client SeaweedFilerClient) error {
|
|
|
|
|
2020-08-29 06:48:48 +00:00
|
|
|
deleteEntryRequest := &DeleteEntryRequest{
|
2020-03-23 08:14:21 +00:00
|
|
|
Directory: parentDirectoryPath,
|
|
|
|
Name: name,
|
|
|
|
IsDeleteData: isDeleteData,
|
|
|
|
IsRecursive: isRecursive,
|
|
|
|
IgnoreRecursiveError: ignoreRecursiveErr,
|
2020-07-01 05:53:53 +00:00
|
|
|
IsFromOtherCluster: isFromOtherCluster,
|
2020-09-09 18:21:23 +00:00
|
|
|
Signatures: signatures,
|
2020-08-29 06:48:48 +00:00
|
|
|
}
|
|
|
|
if resp, err := client.DeleteEntry(context.Background(), deleteEntryRequest); err != nil {
|
|
|
|
if strings.Contains(err.Error(), ErrNotFound.Error()) {
|
2020-08-14 07:23:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
2020-03-23 08:14:21 +00:00
|
|
|
return err
|
2020-03-26 09:21:30 +00:00
|
|
|
} else {
|
|
|
|
if resp.Error != "" {
|
2020-08-29 06:48:48 +00:00
|
|
|
if strings.Contains(resp.Error, ErrNotFound.Error()) {
|
2020-08-14 07:23:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
2020-03-26 09:21:30 +00:00
|
|
|
return errors.New(resp.Error)
|
|
|
|
}
|
2020-03-23 08:14:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|