seaweedfs/weed/s3api/filer_util.go

85 lines
2.3 KiB
Go
Raw Normal View History

2018-09-03 20:03:16 +00:00
package s3api
import (
"context"
2018-09-03 23:47:00 +00:00
"fmt"
2019-07-08 19:37:20 +00:00
"strings"
2018-09-03 23:47:00 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
2018-09-03 20:03:16 +00:00
)
2020-02-26 06:23:59 +00:00
func (s3a *S3ApiServer) mkdir(parentDirectoryPath string, dirName string, fn func(entry *filer_pb.Entry)) error {
2018-09-03 20:03:16 +00:00
2020-03-23 07:30:02 +00:00
return filer_pb.Mkdir(s3a, parentDirectoryPath, dirName, fn)
2018-09-03 20:03:16 +00:00
}
2020-02-26 06:23:59 +00:00
func (s3a *S3ApiServer) mkFile(parentDirectoryPath string, fileName string, chunks []*filer_pb.FileChunk) error {
2018-09-09 23:25:43 +00:00
2020-03-23 07:30:02 +00:00
return filer_pb.MkFile(s3a, parentDirectoryPath, fileName, chunks)
2018-09-09 23:25:43 +00:00
}
func (s3a *S3ApiServer) list(parentDirectoryPath, prefix, startFrom string, inclusive bool, limit uint32) (entries []*filer_pb.Entry, isLast bool, err error) {
2018-09-03 20:03:16 +00:00
err = filer_pb.List(s3a, parentDirectoryPath, prefix, func(entry *filer_pb.Entry, isLastEntry bool) error {
2020-03-23 07:30:02 +00:00
entries = append(entries, entry)
if isLastEntry {
isLast = true
}
return nil
2020-03-23 07:30:02 +00:00
}, startFrom, inclusive, limit)
2018-09-03 20:03:16 +00:00
return
}
2018-09-03 20:16:26 +00:00
func (s3a *S3ApiServer) rm(parentDirectoryPath, entryName string, isDeleteData, isRecursive bool) error {
2018-09-03 20:16:26 +00:00
2020-03-23 06:52:55 +00:00
return s3a.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
2018-09-03 20:16:26 +00:00
err := doDeleteEntry(client, parentDirectoryPath, entryName, isDeleteData, isRecursive)
if err != nil {
return err
2018-09-03 20:16:26 +00:00
}
return nil
})
}
func doDeleteEntry(client filer_pb.SeaweedFilerClient, parentDirectoryPath string, entryName string, isDeleteData bool, isRecursive bool) error {
request := &filer_pb.DeleteEntryRequest{
Directory: parentDirectoryPath,
Name: entryName,
IsDeleteData: isDeleteData,
IsRecursive: isRecursive,
}
2020-02-25 22:38:36 +00:00
glog.V(1).Infof("delete entry %v/%v: %v", parentDirectoryPath, entryName, request)
if resp, err := client.DeleteEntry(context.Background(), request); err != nil {
glog.V(0).Infof("delete entry %v: %v", request, err)
return fmt.Errorf("delete entry %s/%s: %v", parentDirectoryPath, entryName, err)
} else {
if resp.Error != "" {
return fmt.Errorf("delete entry %s/%s: %v", parentDirectoryPath, entryName, resp.Error)
2020-02-25 22:38:36 +00:00
}
}
return nil
2020-02-25 22:38:36 +00:00
}
2020-02-26 06:23:59 +00:00
func (s3a *S3ApiServer) exists(parentDirectoryPath string, entryName string, isDirectory bool) (exists bool, err error) {
2020-03-23 07:06:24 +00:00
return filer_pb.Exists(s3a, parentDirectoryPath, entryName, isDirectory)
}
2019-07-08 19:37:20 +00:00
func objectKey(key *string) *string {
if strings.HasPrefix(*key, "/") {
t := (*key)[1:]
return &t
}
return key
2019-07-22 04:51:38 +00:00
}