2020-12-22 06:05:15 +00:00
|
|
|
package filer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
2020-12-22 06:05:15 +00:00
|
|
|
"github.com/viant/ptrie"
|
2022-01-12 07:25:04 +00:00
|
|
|
"io"
|
2021-10-08 04:12:57 +00:00
|
|
|
"math"
|
2020-12-22 06:05:15 +00:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/stats"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-12-22 06:05:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = VirtualFilerStore(&FilerStoreWrapper{})
|
2022-01-12 07:25:04 +00:00
|
|
|
_ = Debuggable(&FilerStoreWrapper{})
|
2020-12-22 06:05:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type VirtualFilerStore interface {
|
|
|
|
FilerStore
|
|
|
|
DeleteHardLink(ctx context.Context, hardLinkId HardLinkId) error
|
|
|
|
DeleteOneEntry(ctx context.Context, entry *Entry) error
|
|
|
|
AddPathSpecificStore(path string, storeId string, store FilerStore)
|
2021-03-14 06:07:39 +00:00
|
|
|
OnBucketCreation(bucket string)
|
|
|
|
OnBucketDeletion(bucket string)
|
2021-06-11 06:37:54 +00:00
|
|
|
CanDropWholeBucket() bool
|
2020-12-22 06:05:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type FilerStoreWrapper struct {
|
|
|
|
defaultStore FilerStore
|
|
|
|
pathToStore ptrie.Trie
|
|
|
|
storeIdToStore map[string]FilerStore
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewFilerStoreWrapper(store FilerStore) *FilerStoreWrapper {
|
|
|
|
if innerStore, ok := store.(*FilerStoreWrapper); ok {
|
|
|
|
return innerStore
|
|
|
|
}
|
|
|
|
return &FilerStoreWrapper{
|
|
|
|
defaultStore: store,
|
|
|
|
pathToStore: ptrie.New(),
|
|
|
|
storeIdToStore: make(map[string]FilerStore),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 06:37:54 +00:00
|
|
|
func (fsw *FilerStoreWrapper) CanDropWholeBucket() bool {
|
|
|
|
if ba, ok := fsw.defaultStore.(BucketAware); ok {
|
2021-06-13 14:31:56 +00:00
|
|
|
return ba.CanDropWholeBucket()
|
2021-06-11 06:37:54 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-03-14 06:07:39 +00:00
|
|
|
func (fsw *FilerStoreWrapper) OnBucketCreation(bucket string) {
|
|
|
|
for _, store := range fsw.storeIdToStore {
|
|
|
|
if ba, ok := store.(BucketAware); ok {
|
|
|
|
ba.OnBucketCreation(bucket)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ba, ok := fsw.defaultStore.(BucketAware); ok {
|
|
|
|
ba.OnBucketCreation(bucket)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (fsw *FilerStoreWrapper) OnBucketDeletion(bucket string) {
|
|
|
|
for _, store := range fsw.storeIdToStore {
|
|
|
|
if ba, ok := store.(BucketAware); ok {
|
|
|
|
ba.OnBucketDeletion(bucket)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ba, ok := fsw.defaultStore.(BucketAware); ok {
|
|
|
|
ba.OnBucketDeletion(bucket)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-22 06:05:15 +00:00
|
|
|
func (fsw *FilerStoreWrapper) AddPathSpecificStore(path string, storeId string, store FilerStore) {
|
2022-05-25 08:10:49 +00:00
|
|
|
fsw.storeIdToStore[storeId] = NewFilerStorePathTranslator(path, store)
|
2020-12-22 06:05:15 +00:00
|
|
|
err := fsw.pathToStore.Put([]byte(path), storeId)
|
|
|
|
if err != nil {
|
|
|
|
glog.Fatalf("put path specific store: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) getActualStore(path util.FullPath) (store FilerStore) {
|
|
|
|
store = fsw.defaultStore
|
|
|
|
if path == "/" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var storeId string
|
|
|
|
fsw.pathToStore.MatchPrefix([]byte(path), func(key []byte, value interface{}) bool {
|
|
|
|
storeId = value.(string)
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
if storeId != "" {
|
|
|
|
store = fsw.storeIdToStore[storeId]
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) getDefaultStore() (store FilerStore) {
|
|
|
|
return fsw.defaultStore
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) GetName() string {
|
|
|
|
return fsw.getDefaultStore().GetName()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) Initialize(configuration util.Configuration, prefix string) error {
|
|
|
|
return fsw.getDefaultStore().Initialize(configuration, prefix)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) InsertEntry(ctx context.Context, entry *Entry) error {
|
|
|
|
actualStore := fsw.getActualStore(entry.FullPath)
|
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "insert").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "insert").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
|
|
|
|
|
|
|
filer_pb.BeforeEntrySerialization(entry.Chunks)
|
|
|
|
if entry.Mime == "application/octet-stream" {
|
|
|
|
entry.Mime = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := fsw.handleUpdateToHardLinks(ctx, entry); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-02-25 23:34:24 +00:00
|
|
|
// glog.V(4).Infof("InsertEntry %s", entry.FullPath)
|
2020-12-22 06:05:15 +00:00
|
|
|
return actualStore.InsertEntry(ctx, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) UpdateEntry(ctx context.Context, entry *Entry) error {
|
|
|
|
actualStore := fsw.getActualStore(entry.FullPath)
|
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "update").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "update").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
|
|
|
|
|
|
|
filer_pb.BeforeEntrySerialization(entry.Chunks)
|
|
|
|
if entry.Mime == "application/octet-stream" {
|
|
|
|
entry.Mime = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := fsw.handleUpdateToHardLinks(ctx, entry); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-02-25 23:34:24 +00:00
|
|
|
// glog.V(4).Infof("UpdateEntry %s", entry.FullPath)
|
2020-12-22 06:05:15 +00:00
|
|
|
return actualStore.UpdateEntry(ctx, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) FindEntry(ctx context.Context, fp util.FullPath) (entry *Entry, err error) {
|
|
|
|
actualStore := fsw.getActualStore(fp)
|
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "find").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "find").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
|
|
|
|
|
|
|
entry, err = actualStore.FindEntry(ctx, fp)
|
2021-05-11 04:47:51 +00:00
|
|
|
// glog.V(4).Infof("FindEntry %s: %v", fp, err)
|
2020-12-22 06:05:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
fsw.maybeReadHardLink(ctx, entry)
|
|
|
|
|
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) DeleteEntry(ctx context.Context, fp util.FullPath) (err error) {
|
|
|
|
actualStore := fsw.getActualStore(fp)
|
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "delete").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "delete").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
|
|
|
|
|
|
|
existingEntry, findErr := fsw.FindEntry(ctx, fp)
|
|
|
|
if findErr == filer_pb.ErrNotFound {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if len(existingEntry.HardLinkId) != 0 {
|
|
|
|
// remove hard link
|
|
|
|
glog.V(4).Infof("DeleteHardLink %s", existingEntry.FullPath)
|
|
|
|
if err = fsw.DeleteHardLink(ctx, existingEntry.HardLinkId); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-25 23:34:24 +00:00
|
|
|
// glog.V(4).Infof("DeleteEntry %s", fp)
|
2020-12-22 06:05:15 +00:00
|
|
|
return actualStore.DeleteEntry(ctx, fp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) DeleteOneEntry(ctx context.Context, existingEntry *Entry) (err error) {
|
|
|
|
actualStore := fsw.getActualStore(existingEntry.FullPath)
|
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "delete").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "delete").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
|
|
|
|
|
|
|
if len(existingEntry.HardLinkId) != 0 {
|
|
|
|
// remove hard link
|
|
|
|
glog.V(4).Infof("DeleteHardLink %s", existingEntry.FullPath)
|
|
|
|
if err = fsw.DeleteHardLink(ctx, existingEntry.HardLinkId); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-25 23:34:24 +00:00
|
|
|
// glog.V(4).Infof("DeleteOneEntry %s", existingEntry.FullPath)
|
2020-12-22 06:05:15 +00:00
|
|
|
return actualStore.DeleteEntry(ctx, existingEntry.FullPath)
|
|
|
|
}
|
|
|
|
|
2021-07-22 15:23:20 +00:00
|
|
|
func (fsw *FilerStoreWrapper) DeleteFolderChildren(ctx context.Context, fp util.FullPath) (err error) {
|
2020-12-22 10:34:08 +00:00
|
|
|
actualStore := fsw.getActualStore(fp + "/")
|
2020-12-22 06:05:15 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "deleteFolderChildren").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "deleteFolderChildren").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
|
|
|
|
2022-02-25 23:34:24 +00:00
|
|
|
// glog.V(4).Infof("DeleteFolderChildren %s", fp)
|
2021-07-22 15:23:20 +00:00
|
|
|
return actualStore.DeleteFolderChildren(ctx, fp)
|
2020-12-22 06:05:15 +00:00
|
|
|
}
|
|
|
|
|
2021-01-16 07:56:24 +00:00
|
|
|
func (fsw *FilerStoreWrapper) ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, eachEntryFunc ListEachEntryFunc) (string, error) {
|
2020-12-22 10:34:08 +00:00
|
|
|
actualStore := fsw.getActualStore(dirPath + "/")
|
2020-12-22 06:05:15 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "list").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "list").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
|
|
|
|
2022-02-25 23:34:24 +00:00
|
|
|
// glog.V(4).Infof("ListDirectoryEntries %s from %s limit %d", dirPath, startFileName, limit)
|
2021-01-16 07:56:24 +00:00
|
|
|
return actualStore.ListDirectoryEntries(ctx, dirPath, startFileName, includeStartFile, limit, func(entry *Entry) bool {
|
2020-12-22 06:05:15 +00:00
|
|
|
fsw.maybeReadHardLink(ctx, entry)
|
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
2021-01-16 07:56:24 +00:00
|
|
|
return eachEntryFunc(entry)
|
|
|
|
})
|
2020-12-22 06:05:15 +00:00
|
|
|
}
|
|
|
|
|
2021-01-16 07:56:24 +00:00
|
|
|
func (fsw *FilerStoreWrapper) ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, prefix string, eachEntryFunc ListEachEntryFunc) (lastFileName string, err error) {
|
2020-12-22 10:34:08 +00:00
|
|
|
actualStore := fsw.getActualStore(dirPath + "/")
|
2020-12-22 06:05:15 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(actualStore.GetName(), "prefixList").Inc()
|
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "prefixList").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
2021-10-08 04:12:57 +00:00
|
|
|
if limit > math.MaxInt32-1 {
|
|
|
|
limit = math.MaxInt32 - 1
|
|
|
|
}
|
2022-02-25 23:34:24 +00:00
|
|
|
// glog.V(4).Infof("ListDirectoryPrefixedEntries %s from %s prefix %s limit %d", dirPath, startFileName, prefix, limit)
|
2021-10-16 08:05:48 +00:00
|
|
|
adjustedEntryFunc := func(entry *Entry) bool {
|
|
|
|
fsw.maybeReadHardLink(ctx, entry)
|
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
|
|
|
return eachEntryFunc(entry)
|
|
|
|
}
|
|
|
|
lastFileName, err = actualStore.ListDirectoryPrefixedEntries(ctx, dirPath, startFileName, includeStartFile, limit, prefix, adjustedEntryFunc)
|
2020-12-22 06:05:15 +00:00
|
|
|
if err == ErrUnsupportedListDirectoryPrefixed {
|
2021-10-16 08:05:48 +00:00
|
|
|
lastFileName, err = fsw.prefixFilterEntries(ctx, dirPath, startFileName, includeStartFile, limit, prefix, adjustedEntryFunc)
|
2020-12-22 06:05:15 +00:00
|
|
|
}
|
2021-01-16 07:56:24 +00:00
|
|
|
return lastFileName, err
|
2020-12-22 06:05:15 +00:00
|
|
|
}
|
|
|
|
|
2021-01-16 07:56:24 +00:00
|
|
|
func (fsw *FilerStoreWrapper) prefixFilterEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, prefix string, eachEntryFunc ListEachEntryFunc) (lastFileName string, err error) {
|
2020-12-22 10:34:08 +00:00
|
|
|
actualStore := fsw.getActualStore(dirPath + "/")
|
2020-12-22 06:05:15 +00:00
|
|
|
|
|
|
|
if prefix == "" {
|
2021-01-16 07:56:24 +00:00
|
|
|
return actualStore.ListDirectoryEntries(ctx, dirPath, startFileName, includeStartFile, limit, eachEntryFunc)
|
|
|
|
}
|
|
|
|
|
|
|
|
var notPrefixed []*Entry
|
|
|
|
lastFileName, err = actualStore.ListDirectoryEntries(ctx, dirPath, startFileName, includeStartFile, limit, func(entry *Entry) bool {
|
|
|
|
notPrefixed = append(notPrefixed, entry)
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
if err != nil {
|
2020-12-22 06:05:15 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-15 07:10:37 +00:00
|
|
|
count := int64(0)
|
2020-12-22 06:05:15 +00:00
|
|
|
for count < limit && len(notPrefixed) > 0 {
|
2022-02-19 07:36:10 +00:00
|
|
|
var isLastItemHasPrefix bool
|
2020-12-22 06:05:15 +00:00
|
|
|
for _, entry := range notPrefixed {
|
|
|
|
if strings.HasPrefix(entry.Name(), prefix) {
|
2022-02-19 07:36:10 +00:00
|
|
|
isLastItemHasPrefix = true
|
2020-12-22 06:05:15 +00:00
|
|
|
count++
|
2021-01-16 07:56:24 +00:00
|
|
|
if !eachEntryFunc(entry) {
|
|
|
|
return
|
|
|
|
}
|
2020-12-22 06:05:15 +00:00
|
|
|
if count >= limit {
|
|
|
|
break
|
|
|
|
}
|
2022-02-19 07:36:10 +00:00
|
|
|
} else {
|
|
|
|
isLastItemHasPrefix = false
|
2020-12-22 06:05:15 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-19 08:43:42 +00:00
|
|
|
if count < limit && isLastItemHasPrefix && len(notPrefixed) == int(limit) {
|
2021-01-16 07:56:24 +00:00
|
|
|
notPrefixed = notPrefixed[:0]
|
2021-10-28 06:45:48 +00:00
|
|
|
lastFileName, err = actualStore.ListDirectoryEntries(ctx, dirPath, lastFileName, false, limit, func(entry *Entry) bool {
|
2021-01-16 07:56:24 +00:00
|
|
|
notPrefixed = append(notPrefixed, entry)
|
|
|
|
return true
|
|
|
|
})
|
2020-12-22 06:05:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2022-02-19 18:12:51 +00:00
|
|
|
} else {
|
|
|
|
break
|
2020-12-22 06:05:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) BeginTransaction(ctx context.Context) (context.Context, error) {
|
|
|
|
return fsw.getDefaultStore().BeginTransaction(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) CommitTransaction(ctx context.Context) error {
|
|
|
|
return fsw.getDefaultStore().CommitTransaction(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) RollbackTransaction(ctx context.Context) error {
|
|
|
|
return fsw.getDefaultStore().RollbackTransaction(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) Shutdown() {
|
|
|
|
fsw.getDefaultStore().Shutdown()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
|
|
|
|
return fsw.getDefaultStore().KvPut(ctx, key, value)
|
|
|
|
}
|
|
|
|
func (fsw *FilerStoreWrapper) KvGet(ctx context.Context, key []byte) (value []byte, err error) {
|
|
|
|
return fsw.getDefaultStore().KvGet(ctx, key)
|
|
|
|
}
|
|
|
|
func (fsw *FilerStoreWrapper) KvDelete(ctx context.Context, key []byte) (err error) {
|
|
|
|
return fsw.getDefaultStore().KvDelete(ctx, key)
|
|
|
|
}
|
2022-01-12 07:25:04 +00:00
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) Debug(writer io.Writer) {
|
|
|
|
if debuggable, ok := fsw.getDefaultStore().(Debuggable); ok {
|
|
|
|
debuggable.Debug(writer)
|
|
|
|
}
|
|
|
|
}
|