2020-09-01 15:21:19 +08:00
|
|
|
package filer
|
2018-05-26 14:27:06 +08:00
|
|
|
|
2018-05-26 18:49:46 +08:00
|
|
|
import (
|
2019-03-16 06:55:34 +08:00
|
|
|
"context"
|
2020-09-02 12:58:57 +08:00
|
|
|
"errors"
|
2020-08-31 20:13:56 +08:00
|
|
|
"strings"
|
2019-06-23 03:23:25 +08:00
|
|
|
"time"
|
|
|
|
|
2019-05-17 17:03:23 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2019-06-23 03:23:25 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2018-08-20 06:17:55 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-05-26 18:49:46 +08:00
|
|
|
)
|
2018-05-26 14:27:06 +08:00
|
|
|
|
2020-09-02 12:58:57 +08:00
|
|
|
var (
|
|
|
|
ErrUnsupportedListDirectoryPrefixed = errors.New("unsupported directory prefix listing")
|
|
|
|
ErrKvNotImplemented = errors.New("kv not implemented yet")
|
|
|
|
ErrKvNotFound = errors.New("kv: not found")
|
|
|
|
)
|
|
|
|
|
2018-05-26 14:27:06 +08:00
|
|
|
type FilerStore interface {
|
2018-06-18 04:24:57 +08:00
|
|
|
// GetName gets the name to locate the configuration in filer.toml file
|
2018-05-26 18:49:46 +08:00
|
|
|
GetName() string
|
2018-06-18 04:01:57 +08:00
|
|
|
// Initialize initializes the file store
|
2020-01-30 01:09:55 +08:00
|
|
|
Initialize(configuration util.Configuration, prefix string) error
|
2019-03-16 06:55:34 +08:00
|
|
|
InsertEntry(context.Context, *Entry) error
|
|
|
|
UpdateEntry(context.Context, *Entry) (err error)
|
2020-09-24 18:06:44 +08:00
|
|
|
// err == filer_pb.ErrNotFound if not found
|
2020-03-23 15:01:34 +08:00
|
|
|
FindEntry(context.Context, util.FullPath) (entry *Entry, err error)
|
|
|
|
DeleteEntry(context.Context, util.FullPath) (err error)
|
|
|
|
DeleteFolderChildren(context.Context, util.FullPath) (err error)
|
|
|
|
ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int) ([]*Entry, error)
|
2020-08-06 01:19:16 +08:00
|
|
|
ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int, prefix string) ([]*Entry, error)
|
2019-03-31 14:08:29 +08:00
|
|
|
|
|
|
|
BeginTransaction(ctx context.Context) (context.Context, error)
|
|
|
|
CommitTransaction(ctx context.Context) error
|
|
|
|
RollbackTransaction(ctx context.Context) error
|
2020-03-15 11:30:26 +08:00
|
|
|
|
2020-09-02 12:58:57 +08:00
|
|
|
KvPut(ctx context.Context, key []byte, value []byte) (err error)
|
|
|
|
KvGet(ctx context.Context, key []byte) (value []byte, err error)
|
|
|
|
KvDelete(ctx context.Context, key []byte) (err error)
|
|
|
|
|
2020-03-15 11:30:26 +08:00
|
|
|
Shutdown()
|
2020-07-13 13:13:40 +08:00
|
|
|
}
|
|
|
|
|
2020-09-24 18:06:44 +08:00
|
|
|
type VirtualFilerStore interface {
|
|
|
|
FilerStore
|
|
|
|
DeleteHardLink(ctx context.Context, hardLinkId HardLinkId) error
|
|
|
|
}
|
|
|
|
|
2019-05-17 17:03:23 +08:00
|
|
|
type FilerStoreWrapper struct {
|
2020-07-13 23:19:48 +08:00
|
|
|
ActualStore FilerStore
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
2019-05-29 12:29:07 +08:00
|
|
|
func NewFilerStoreWrapper(store FilerStore) *FilerStoreWrapper {
|
2019-07-24 16:41:45 +08:00
|
|
|
if innerStore, ok := store.(*FilerStoreWrapper); ok {
|
|
|
|
return innerStore
|
|
|
|
}
|
2019-05-17 17:03:23 +08:00
|
|
|
return &FilerStoreWrapper{
|
2020-07-13 23:19:48 +08:00
|
|
|
ActualStore: store,
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) GetName() string {
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.GetName()
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
2020-01-30 01:09:55 +08:00
|
|
|
func (fsw *FilerStoreWrapper) Initialize(configuration util.Configuration, prefix string) error {
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.Initialize(configuration, prefix)
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) InsertEntry(ctx context.Context, entry *Entry) error {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.ActualStore.GetName(), "insert").Inc()
|
2019-06-23 03:23:25 +08:00
|
|
|
start := time.Now()
|
2019-06-23 11:05:25 +08:00
|
|
|
defer func() {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "insert").Observe(time.Since(start).Seconds())
|
2019-06-23 11:05:25 +08:00
|
|
|
}()
|
2019-06-23 03:23:25 +08:00
|
|
|
|
2019-05-17 17:03:23 +08:00
|
|
|
filer_pb.BeforeEntrySerialization(entry.Chunks)
|
2020-08-29 10:42:40 +08:00
|
|
|
if entry.Mime == "application/octet-stream" {
|
|
|
|
entry.Mime = ""
|
|
|
|
}
|
2020-09-24 18:06:44 +08:00
|
|
|
|
2020-09-25 00:43:00 +08:00
|
|
|
if err := fsw.handleUpdateToHardLinks(ctx, entry); err != nil {
|
|
|
|
return err
|
2020-09-24 18:06:44 +08:00
|
|
|
}
|
|
|
|
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.InsertEntry(ctx, entry)
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) UpdateEntry(ctx context.Context, entry *Entry) error {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.ActualStore.GetName(), "update").Inc()
|
2019-06-23 03:23:25 +08:00
|
|
|
start := time.Now()
|
2019-06-23 11:05:25 +08:00
|
|
|
defer func() {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "update").Observe(time.Since(start).Seconds())
|
2019-06-23 11:05:25 +08:00
|
|
|
}()
|
2019-06-23 03:23:25 +08:00
|
|
|
|
2019-05-17 17:03:23 +08:00
|
|
|
filer_pb.BeforeEntrySerialization(entry.Chunks)
|
2020-08-29 10:42:40 +08:00
|
|
|
if entry.Mime == "application/octet-stream" {
|
|
|
|
entry.Mime = ""
|
|
|
|
}
|
2020-09-24 18:06:44 +08:00
|
|
|
|
2020-09-25 00:43:00 +08:00
|
|
|
if err := fsw.handleUpdateToHardLinks(ctx, entry); err != nil {
|
|
|
|
return err
|
2020-09-24 18:06:44 +08:00
|
|
|
}
|
|
|
|
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.UpdateEntry(ctx, entry)
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
2020-03-23 15:01:34 +08:00
|
|
|
func (fsw *FilerStoreWrapper) FindEntry(ctx context.Context, fp util.FullPath) (entry *Entry, err error) {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.ActualStore.GetName(), "find").Inc()
|
2019-06-23 03:23:25 +08:00
|
|
|
start := time.Now()
|
2019-06-23 11:05:25 +08:00
|
|
|
defer func() {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "find").Observe(time.Since(start).Seconds())
|
2019-06-23 11:05:25 +08:00
|
|
|
}()
|
2019-06-23 03:23:25 +08:00
|
|
|
|
2020-07-13 23:19:48 +08:00
|
|
|
entry, err = fsw.ActualStore.FindEntry(ctx, fp)
|
2019-05-17 17:28:20 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-09-24 18:06:44 +08:00
|
|
|
|
|
|
|
fsw.maybeReadHardLink(ctx, entry)
|
|
|
|
|
2019-05-17 17:03:23 +08:00
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-03-23 15:01:34 +08:00
|
|
|
func (fsw *FilerStoreWrapper) DeleteEntry(ctx context.Context, fp util.FullPath) (err error) {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.ActualStore.GetName(), "delete").Inc()
|
2019-06-23 03:23:25 +08:00
|
|
|
start := time.Now()
|
2019-06-23 11:05:25 +08:00
|
|
|
defer func() {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "delete").Observe(time.Since(start).Seconds())
|
2019-06-23 11:05:25 +08:00
|
|
|
}()
|
2019-06-23 03:23:25 +08:00
|
|
|
|
2020-09-24 18:06:44 +08:00
|
|
|
existingEntry, findErr := fsw.FindEntry(ctx, fp)
|
|
|
|
if findErr == filer_pb.ErrNotFound {
|
|
|
|
return nil
|
|
|
|
}
|
2020-09-25 02:11:42 +08:00
|
|
|
if len(existingEntry.HardLinkId) != 0 {
|
2020-09-24 18:06:44 +08:00
|
|
|
// remove hard link
|
|
|
|
if err = fsw.DeleteHardLink(ctx, existingEntry.HardLinkId); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.DeleteEntry(ctx, fp)
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
2020-03-23 15:01:34 +08:00
|
|
|
func (fsw *FilerStoreWrapper) DeleteFolderChildren(ctx context.Context, fp util.FullPath) (err error) {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.ActualStore.GetName(), "deleteFolderChildren").Inc()
|
2019-12-13 16:23:05 +08:00
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "deleteFolderChildren").Observe(time.Since(start).Seconds())
|
2019-12-13 16:23:05 +08:00
|
|
|
}()
|
|
|
|
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.DeleteFolderChildren(ctx, fp)
|
2019-12-13 16:23:05 +08:00
|
|
|
}
|
|
|
|
|
2020-03-23 15:01:34 +08:00
|
|
|
func (fsw *FilerStoreWrapper) ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int) ([]*Entry, error) {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.ActualStore.GetName(), "list").Inc()
|
2019-06-23 03:23:25 +08:00
|
|
|
start := time.Now()
|
2019-06-23 11:05:25 +08:00
|
|
|
defer func() {
|
2020-07-13 23:19:48 +08:00
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "list").Observe(time.Since(start).Seconds())
|
2019-06-23 11:05:25 +08:00
|
|
|
}()
|
2019-06-23 03:23:25 +08:00
|
|
|
|
2020-07-13 23:19:48 +08:00
|
|
|
entries, err := fsw.ActualStore.ListDirectoryEntries(ctx, dirPath, startFileName, includeStartFile, limit)
|
2019-05-17 17:03:23 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, entry := range entries {
|
2020-09-24 18:06:44 +08:00
|
|
|
fsw.maybeReadHardLink(ctx, entry)
|
2019-05-17 17:03:23 +08:00
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
|
|
|
}
|
|
|
|
return entries, err
|
|
|
|
}
|
|
|
|
|
2020-08-06 02:38:00 +08:00
|
|
|
func (fsw *FilerStoreWrapper) ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int, prefix string) ([]*Entry, error) {
|
2020-09-01 01:41:05 +08:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.ActualStore.GetName(), "prefixList").Inc()
|
2020-08-06 02:38:00 +08:00
|
|
|
start := time.Now()
|
|
|
|
defer func() {
|
2020-09-01 01:41:05 +08:00
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "prefixList").Observe(time.Since(start).Seconds())
|
2020-08-06 02:38:00 +08:00
|
|
|
}()
|
|
|
|
entries, err := fsw.ActualStore.ListDirectoryPrefixedEntries(ctx, dirPath, startFileName, includeStartFile, limit, prefix)
|
2020-09-01 00:55:18 +08:00
|
|
|
if err == ErrUnsupportedListDirectoryPrefixed {
|
2020-09-01 01:39:24 +08:00
|
|
|
entries, err = fsw.prefixFilterEntries(ctx, dirPath, startFileName, includeStartFile, limit, prefix)
|
|
|
|
}
|
|
|
|
if err != nil {
|
2020-08-06 02:38:00 +08:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, entry := range entries {
|
2020-09-24 18:06:44 +08:00
|
|
|
fsw.maybeReadHardLink(ctx, entry)
|
2020-08-06 02:38:00 +08:00
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
|
|
|
}
|
|
|
|
return entries, nil
|
|
|
|
}
|
|
|
|
|
2020-09-01 01:39:24 +08:00
|
|
|
func (fsw *FilerStoreWrapper) prefixFilterEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int, prefix string) (entries []*Entry, err error) {
|
|
|
|
entries, err = fsw.ActualStore.ListDirectoryEntries(ctx, dirPath, startFileName, includeStartFile, limit)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if prefix == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
count := 0
|
|
|
|
var lastFileName string
|
|
|
|
notPrefixed := entries
|
|
|
|
entries = nil
|
|
|
|
for count < limit && len(notPrefixed) > 0 {
|
|
|
|
for _, entry := range notPrefixed {
|
|
|
|
lastFileName = entry.Name()
|
|
|
|
if strings.HasPrefix(entry.Name(), prefix) {
|
|
|
|
count++
|
|
|
|
entries = append(entries, entry)
|
2020-09-01 02:28:03 +08:00
|
|
|
if count >= limit {
|
|
|
|
break
|
|
|
|
}
|
2020-09-01 01:39:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if count < limit {
|
2020-09-01 02:28:03 +08:00
|
|
|
notPrefixed, err = fsw.ActualStore.ListDirectoryEntries(ctx, dirPath, lastFileName, false, limit)
|
2020-09-01 01:39:24 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-17 17:03:23 +08:00
|
|
|
func (fsw *FilerStoreWrapper) BeginTransaction(ctx context.Context) (context.Context, error) {
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.BeginTransaction(ctx)
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) CommitTransaction(ctx context.Context) error {
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.CommitTransaction(ctx)
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) RollbackTransaction(ctx context.Context) error {
|
2020-07-13 23:19:48 +08:00
|
|
|
return fsw.ActualStore.RollbackTransaction(ctx)
|
2019-05-17 17:03:23 +08:00
|
|
|
}
|
2020-03-15 11:30:26 +08:00
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) Shutdown() {
|
2020-07-13 23:19:48 +08:00
|
|
|
fsw.ActualStore.Shutdown()
|
2020-03-15 11:30:26 +08:00
|
|
|
}
|
2020-09-02 12:58:57 +08:00
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) KvPut(ctx context.Context, key []byte, value []byte) (err error) {
|
|
|
|
return fsw.ActualStore.KvPut(ctx, key, value)
|
|
|
|
}
|
|
|
|
func (fsw *FilerStoreWrapper) KvGet(ctx context.Context, key []byte) (value []byte, err error) {
|
|
|
|
return fsw.ActualStore.KvGet(ctx, key)
|
|
|
|
}
|
|
|
|
func (fsw *FilerStoreWrapper) KvDelete(ctx context.Context, key []byte) (err error) {
|
|
|
|
return fsw.ActualStore.KvDelete(ctx, key)
|
|
|
|
}
|