seaweedfs/weed/filer/abstract_sql/abstract_sql_store.go

221 lines
6.4 KiB
Go
Raw Normal View History

2018-05-26 20:32:15 +08:00
package abstract_sql
import (
2019-03-16 06:55:34 +08:00
"context"
2018-05-26 20:32:15 +08:00
"database/sql"
2018-05-28 02:52:26 +08:00
"fmt"
2020-09-01 15:21:19 +08:00
"github.com/chrislusf/seaweedfs/weed/filer"
2018-05-26 20:32:15 +08:00
"github.com/chrislusf/seaweedfs/weed/glog"
2020-03-08 09:01:39 +08:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/util"
"strings"
2018-05-26 20:32:15 +08:00
)
type AbstractSqlStore struct {
DB *sql.DB
SqlInsert string
SqlUpdate string
SqlFind string
SqlDelete string
SqlDeleteFolderChildren string
SqlListExclusive string
SqlListInclusive string
2018-05-26 20:32:15 +08:00
}
type TxOrDB interface {
ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error)
QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row
QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error)
}
func (store *AbstractSqlStore) BeginTransaction(ctx context.Context) (context.Context, error) {
tx, err := store.DB.BeginTx(ctx, &sql.TxOptions{
Isolation: sql.LevelReadCommitted,
ReadOnly: false,
})
if err != nil {
return ctx, err
}
return context.WithValue(ctx, "tx", tx), nil
}
func (store *AbstractSqlStore) CommitTransaction(ctx context.Context) error {
if tx, ok := ctx.Value("tx").(*sql.Tx); ok {
return tx.Commit()
}
return nil
}
func (store *AbstractSqlStore) RollbackTransaction(ctx context.Context) error {
if tx, ok := ctx.Value("tx").(*sql.Tx); ok {
return tx.Rollback()
}
return nil
}
func (store *AbstractSqlStore) getTxOrDB(ctx context.Context) TxOrDB {
if tx, ok := ctx.Value("tx").(*sql.Tx); ok {
return tx
}
return store.DB
}
2020-09-01 15:21:19 +08:00
func (store *AbstractSqlStore) InsertEntry(ctx context.Context, entry *filer.Entry) (err error) {
2018-05-26 20:32:15 +08:00
dir, name := entry.FullPath.DirAndName()
meta, err := entry.EncodeAttributesAndChunks()
if err != nil {
2018-05-27 13:02:49 +08:00
return fmt.Errorf("encode %s: %s", entry.FullPath, err)
2018-05-26 20:32:15 +08:00
}
2020-09-04 02:00:20 +08:00
if len(entry.Chunks) > 50 {
meta = util.MaybeGzipData(meta)
}
res, err := store.getTxOrDB(ctx).ExecContext(ctx, store.SqlInsert, util.HashStringToLong(dir), name, dir, meta)
if err == nil {
return
}
if !strings.Contains(strings.ToLower(err.Error()), "duplicate") {
// return fmt.Errorf("insert: %s", err)
// skip this since the error can be in a different language
}
// now the insert failed possibly due to duplication constraints
glog.V(1).Infof("insert %s falls back to update: %v", entry.FullPath, err)
res, err = store.getTxOrDB(ctx).ExecContext(ctx, store.SqlUpdate, meta, util.HashStringToLong(dir), name, dir)
if err != nil {
return fmt.Errorf("upsert %s: %s", entry.FullPath, err)
}
2018-05-26 20:32:15 +08:00
_, err = res.RowsAffected()
if err != nil {
return fmt.Errorf("upsert %s but no rows affected: %s", entry.FullPath, err)
2018-05-26 20:32:15 +08:00
}
return nil
2018-05-26 20:32:15 +08:00
}
2020-09-01 15:21:19 +08:00
func (store *AbstractSqlStore) UpdateEntry(ctx context.Context, entry *filer.Entry) (err error) {
2018-05-26 20:32:15 +08:00
dir, name := entry.FullPath.DirAndName()
meta, err := entry.EncodeAttributesAndChunks()
if err != nil {
2018-05-27 13:02:49 +08:00
return fmt.Errorf("encode %s: %s", entry.FullPath, err)
2018-05-26 20:32:15 +08:00
}
res, err := store.getTxOrDB(ctx).ExecContext(ctx, store.SqlUpdate, meta, util.HashStringToLong(dir), name, dir)
2018-05-26 20:32:15 +08:00
if err != nil {
2018-05-27 13:02:49 +08:00
return fmt.Errorf("update %s: %s", entry.FullPath, err)
2018-05-26 20:32:15 +08:00
}
_, err = res.RowsAffected()
if err != nil {
2018-05-27 13:02:49 +08:00
return fmt.Errorf("update %s but no rows affected: %s", entry.FullPath, err)
2018-05-26 20:32:15 +08:00
}
return nil
}
2020-09-01 15:21:19 +08:00
func (store *AbstractSqlStore) FindEntry(ctx context.Context, fullpath util.FullPath) (*filer.Entry, error) {
2018-05-26 20:32:15 +08:00
dir, name := fullpath.DirAndName()
row := store.getTxOrDB(ctx).QueryRowContext(ctx, store.SqlFind, util.HashStringToLong(dir), name, dir)
2018-05-26 20:32:15 +08:00
var data []byte
if err := row.Scan(&data); err != nil {
if err == sql.ErrNoRows {
return nil, filer_pb.ErrNotFound
}
return nil, fmt.Errorf("find %s: %v", fullpath, err)
2018-05-26 20:32:15 +08:00
}
2020-09-01 15:21:19 +08:00
entry := &filer.Entry{
2018-05-26 20:32:15 +08:00
FullPath: fullpath,
}
2020-09-04 02:00:20 +08:00
if err := entry.DecodeAttributesAndChunks(util.MaybeDecompressData(data)); err != nil {
2018-05-27 13:02:49 +08:00
return entry, fmt.Errorf("decode %s : %v", entry.FullPath, err)
2018-05-26 20:32:15 +08:00
}
return entry, nil
}
2020-03-23 15:01:34 +08:00
func (store *AbstractSqlStore) DeleteEntry(ctx context.Context, fullpath util.FullPath) error {
2018-05-26 20:32:15 +08:00
dir, name := fullpath.DirAndName()
res, err := store.getTxOrDB(ctx).ExecContext(ctx, store.SqlDelete, util.HashStringToLong(dir), name, dir)
2018-05-26 20:32:15 +08:00
if err != nil {
return fmt.Errorf("delete %s: %s", fullpath, err)
2018-05-26 20:32:15 +08:00
}
_, err = res.RowsAffected()
if err != nil {
return fmt.Errorf("delete %s but no rows affected: %s", fullpath, err)
2018-05-26 20:32:15 +08:00
}
return nil
2018-05-26 20:32:15 +08:00
}
2020-03-23 15:01:34 +08:00
func (store *AbstractSqlStore) DeleteFolderChildren(ctx context.Context, fullpath util.FullPath) error {
res, err := store.getTxOrDB(ctx).ExecContext(ctx, store.SqlDeleteFolderChildren, util.HashStringToLong(string(fullpath)), fullpath)
if err != nil {
return fmt.Errorf("deleteFolderChildren %s: %s", fullpath, err)
}
_, err = res.RowsAffected()
if err != nil {
return fmt.Errorf("deleteFolderChildren %s but no rows affected: %s", fullpath, err)
}
return nil
}
func (store *AbstractSqlStore) ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, prefix string) (entries []*filer.Entry, hasMore bool, err error) {
2018-05-27 13:02:49 +08:00
sqlText := store.SqlListExclusive
2021-01-15 14:44:22 +08:00
if includeStartFile {
2018-05-27 13:02:49 +08:00
sqlText = store.SqlListInclusive
}
2021-01-15 14:44:22 +08:00
rows, err := store.getTxOrDB(ctx).QueryContext(ctx, sqlText, util.HashStringToLong(string(dirPath)), startFileName, string(dirPath), prefix+"%", limit+1)
2018-05-26 20:32:15 +08:00
if err != nil {
2021-01-15 14:44:22 +08:00
return nil, false, fmt.Errorf("list %s : %v", dirPath, err)
2018-05-26 20:32:15 +08:00
}
defer rows.Close()
for rows.Next() {
var name string
var data []byte
if err = rows.Scan(&name, &data); err != nil {
2021-01-15 14:44:22 +08:00
glog.V(0).Infof("scan %s : %v", dirPath, err)
return nil, false, fmt.Errorf("scan %s: %v", dirPath, err)
2018-05-26 20:32:15 +08:00
}
2020-09-01 15:21:19 +08:00
entry := &filer.Entry{
2021-01-15 14:44:22 +08:00
FullPath: util.NewFullPath(string(dirPath), name),
2018-05-26 20:32:15 +08:00
}
2020-09-04 02:00:20 +08:00
if err = entry.DecodeAttributesAndChunks(util.MaybeDecompressData(data)); err != nil {
2018-05-27 13:02:49 +08:00
glog.V(0).Infof("scan decode %s : %v", entry.FullPath, err)
2021-01-15 14:44:22 +08:00
return nil, false, fmt.Errorf("scan decode %s : %v", entry.FullPath, err)
2018-05-26 20:32:15 +08:00
}
entries = append(entries, entry)
}
2021-01-15 15:11:27 +08:00
hasMore = int64(len(entries)) == limit+1
2021-01-15 14:44:22 +08:00
if hasMore {
entries = entries[:limit]
}
return entries, hasMore, nil
2018-05-26 20:32:15 +08:00
}
2020-03-15 11:30:26 +08:00
func (store *AbstractSqlStore) ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64) (entries []*filer.Entry, hasMore bool, err error) {
2021-01-15 14:44:22 +08:00
return store.ListDirectoryPrefixedEntries(ctx, dirPath, startFileName, includeStartFile, limit, "")
2020-08-06 03:37:42 +08:00
}
2020-03-15 11:30:26 +08:00
func (store *AbstractSqlStore) Shutdown() {
store.DB.Close()
}