2020-09-01 07:21:19 +00:00
|
|
|
package filer
|
2018-05-26 06:27:06 +00:00
|
|
|
|
2018-05-26 10:49:46 +00:00
|
|
|
import (
|
2019-03-15 22:55:34 +00:00
|
|
|
"context"
|
2020-09-02 04:58:57 +00:00
|
|
|
"errors"
|
2018-08-19 22:17:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2018-05-26 10:49:46 +00:00
|
|
|
)
|
2018-05-26 06:27:06 +00:00
|
|
|
|
2020-09-02 04:58:57 +00:00
|
|
|
var (
|
2020-12-22 10:26:05 +00:00
|
|
|
ErrUnsupportedListDirectoryPrefixed = errors.New("unsupported directory prefix listing")
|
|
|
|
ErrUnsupportedSuperLargeDirectoryListing = errors.New("unsupported super large directory listing")
|
|
|
|
ErrKvNotImplemented = errors.New("kv not implemented yet")
|
|
|
|
ErrKvNotFound = errors.New("kv: not found")
|
2020-09-02 04:58:57 +00:00
|
|
|
)
|
|
|
|
|
2021-01-16 07:56:24 +00:00
|
|
|
type ListEachEntryFunc func(entry *Entry) bool
|
|
|
|
|
2018-05-26 06:27:06 +00:00
|
|
|
type FilerStore interface {
|
2018-06-17 20:24:57 +00:00
|
|
|
// GetName gets the name to locate the configuration in filer.toml file
|
2018-05-26 10:49:46 +00:00
|
|
|
GetName() string
|
2018-06-17 20:01:57 +00:00
|
|
|
// Initialize initializes the file store
|
2020-01-29 17:09:55 +00:00
|
|
|
Initialize(configuration util.Configuration, prefix string) error
|
2019-03-15 22:55:34 +00:00
|
|
|
InsertEntry(context.Context, *Entry) error
|
|
|
|
UpdateEntry(context.Context, *Entry) (err error)
|
2020-09-24 10:06:44 +00:00
|
|
|
// err == filer_pb.ErrNotFound if not found
|
2020-03-23 07:01:34 +00:00
|
|
|
FindEntry(context.Context, util.FullPath) (entry *Entry, err error)
|
|
|
|
DeleteEntry(context.Context, util.FullPath) (err error)
|
2021-07-22 15:23:20 +00:00
|
|
|
DeleteFolderChildren(context.Context, util.FullPath) (err error)
|
2021-01-16 07:56:24 +00:00
|
|
|
ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, eachEntryFunc ListEachEntryFunc) (lastFileName string, err error)
|
|
|
|
ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, prefix string, eachEntryFunc ListEachEntryFunc) (lastFileName string, err error)
|
2019-03-31 06:08:29 +00:00
|
|
|
|
|
|
|
BeginTransaction(ctx context.Context) (context.Context, error)
|
|
|
|
CommitTransaction(ctx context.Context) error
|
|
|
|
RollbackTransaction(ctx context.Context) error
|
2020-03-15 03:30:26 +00:00
|
|
|
|
2020-09-02 04:58:57 +00: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 03:30:26 +00:00
|
|
|
Shutdown()
|
2020-07-13 05:13:40 +00:00
|
|
|
}
|
2021-03-14 06:07:39 +00:00
|
|
|
|
|
|
|
type BucketAware interface {
|
|
|
|
OnBucketCreation(bucket string)
|
|
|
|
OnBucketDeletion(bucket string)
|
2021-06-13 14:31:56 +00:00
|
|
|
CanDropWholeBucket() bool
|
2021-03-14 06:07:39 +00:00
|
|
|
}
|