2018-05-26 06:27:06 +00:00
|
|
|
package filer2
|
|
|
|
|
2018-05-26 10:49:46 +00:00
|
|
|
import (
|
2019-03-15 22:55:34 +00:00
|
|
|
"context"
|
2018-05-26 10:49:46 +00:00
|
|
|
"errors"
|
2019-06-22 19:23:25 +00:00
|
|
|
"time"
|
|
|
|
|
2019-05-17 09:03:23 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2019-06-22 19:23:25 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
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
|
|
|
|
|
|
|
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
|
2018-08-19 22:17:55 +00:00
|
|
|
Initialize(configuration util.Configuration) error
|
2019-03-15 22:55:34 +00:00
|
|
|
InsertEntry(context.Context, *Entry) error
|
|
|
|
UpdateEntry(context.Context, *Entry) (err error)
|
2018-07-20 09:14:18 +00:00
|
|
|
// err == filer2.ErrNotFound if not found
|
2019-03-15 22:55:34 +00:00
|
|
|
FindEntry(context.Context, FullPath) (entry *Entry, err error)
|
|
|
|
DeleteEntry(context.Context, FullPath) (err error)
|
|
|
|
ListDirectoryEntries(ctx context.Context, dirPath FullPath, startFileName string, includeStartFile bool, limit int) ([]*Entry, 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
|
2018-05-26 06:27:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var ErrNotFound = errors.New("filer: no entry is found in filer store")
|
2019-05-17 09:03:23 +00:00
|
|
|
|
|
|
|
type FilerStoreWrapper struct {
|
|
|
|
actualStore FilerStore
|
|
|
|
}
|
|
|
|
|
2019-05-29 04:29:07 +00:00
|
|
|
func NewFilerStoreWrapper(store FilerStore) *FilerStoreWrapper {
|
2019-05-17 09:03:23 +00:00
|
|
|
return &FilerStoreWrapper{
|
2019-05-29 04:29:07 +00:00
|
|
|
actualStore: store,
|
2019-05-17 09:03:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) GetName() string {
|
|
|
|
return fsw.actualStore.GetName()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) Initialize(configuration util.Configuration) error {
|
|
|
|
return fsw.actualStore.Initialize(configuration)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) InsertEntry(ctx context.Context, entry *Entry) error {
|
2019-06-22 19:23:25 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.actualStore.GetName(), "insert").Inc()
|
|
|
|
start := time.Now()
|
2019-06-23 03:05:25 +00:00
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.actualStore.GetName(), "insert").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
2019-06-22 19:23:25 +00:00
|
|
|
|
2019-05-17 09:03:23 +00:00
|
|
|
filer_pb.BeforeEntrySerialization(entry.Chunks)
|
|
|
|
return fsw.actualStore.InsertEntry(ctx, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) UpdateEntry(ctx context.Context, entry *Entry) error {
|
2019-06-22 19:23:25 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.actualStore.GetName(), "update").Inc()
|
|
|
|
start := time.Now()
|
2019-06-23 03:05:25 +00:00
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.actualStore.GetName(), "update").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
2019-06-22 19:23:25 +00:00
|
|
|
|
2019-05-17 09:03:23 +00:00
|
|
|
filer_pb.BeforeEntrySerialization(entry.Chunks)
|
|
|
|
return fsw.actualStore.UpdateEntry(ctx, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) FindEntry(ctx context.Context, fp FullPath) (entry *Entry, err error) {
|
2019-06-22 19:23:25 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.actualStore.GetName(), "find").Inc()
|
|
|
|
start := time.Now()
|
2019-06-23 03:05:25 +00:00
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.actualStore.GetName(), "find").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
2019-06-22 19:23:25 +00:00
|
|
|
|
2019-05-17 09:03:23 +00:00
|
|
|
entry, err = fsw.actualStore.FindEntry(ctx, fp)
|
2019-05-17 09:28:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-05-17 09:03:23 +00:00
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) DeleteEntry(ctx context.Context, fp FullPath) (err error) {
|
2019-06-22 19:23:25 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.actualStore.GetName(), "delete").Inc()
|
|
|
|
start := time.Now()
|
2019-06-23 03:05:25 +00:00
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.actualStore.GetName(), "delete").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
2019-06-22 19:23:25 +00:00
|
|
|
|
2019-05-17 09:03:23 +00:00
|
|
|
return fsw.actualStore.DeleteEntry(ctx, fp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) ListDirectoryEntries(ctx context.Context, dirPath FullPath, startFileName string, includeStartFile bool, limit int) ([]*Entry, error) {
|
2019-06-22 19:23:25 +00:00
|
|
|
stats.FilerStoreCounter.WithLabelValues(fsw.actualStore.GetName(), "list").Inc()
|
|
|
|
start := time.Now()
|
2019-06-23 03:05:25 +00:00
|
|
|
defer func() {
|
|
|
|
stats.FilerStoreHistogram.WithLabelValues(fsw.actualStore.GetName(), "list").Observe(time.Since(start).Seconds())
|
|
|
|
}()
|
2019-06-22 19:23:25 +00:00
|
|
|
|
2019-05-17 09:03:23 +00:00
|
|
|
entries, err := fsw.actualStore.ListDirectoryEntries(ctx, dirPath, startFileName, includeStartFile, limit)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for _, entry := range entries {
|
|
|
|
filer_pb.AfterEntryDeserialization(entry.Chunks)
|
|
|
|
}
|
|
|
|
return entries, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) BeginTransaction(ctx context.Context) (context.Context, error) {
|
|
|
|
return fsw.actualStore.BeginTransaction(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) CommitTransaction(ctx context.Context) error {
|
|
|
|
return fsw.actualStore.CommitTransaction(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fsw *FilerStoreWrapper) RollbackTransaction(ctx context.Context) error {
|
|
|
|
return fsw.actualStore.RollbackTransaction(ctx)
|
|
|
|
}
|