2018-05-26 10:49:46 +00:00
|
|
|
package leveldb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-03-15 22:55:34 +00:00
|
|
|
"context"
|
2018-05-27 18:52:26 +00:00
|
|
|
"fmt"
|
2018-05-26 10:49:46 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
weed_util "github.com/chrislusf/seaweedfs/weed/util"
|
2018-05-27 18:52:26 +00:00
|
|
|
"github.com/syndtr/goleveldb/leveldb"
|
|
|
|
leveldb_util "github.com/syndtr/goleveldb/leveldb/util"
|
2018-05-26 10:49:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
DIR_FILE_SEPARATOR = byte(0x00)
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
filer2.Stores = append(filer2.Stores, &LevelDBStore{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type LevelDBStore struct {
|
|
|
|
db *leveldb.DB
|
|
|
|
}
|
|
|
|
|
2018-05-26 11:50:55 +00:00
|
|
|
func (store *LevelDBStore) GetName() string {
|
2018-05-26 10:49:46 +00:00
|
|
|
return "leveldb"
|
|
|
|
}
|
|
|
|
|
2018-08-19 22:17:55 +00:00
|
|
|
func (store *LevelDBStore) Initialize(configuration weed_util.Configuration) (err error) {
|
2018-06-17 20:01:57 +00:00
|
|
|
dir := configuration.GetString("dir")
|
2018-05-26 11:50:55 +00:00
|
|
|
return store.initialize(dir)
|
2018-05-26 10:49:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-26 11:50:55 +00:00
|
|
|
func (store *LevelDBStore) initialize(dir string) (err error) {
|
2018-12-06 07:24:25 +00:00
|
|
|
glog.Infof("filer store dir: %s", dir)
|
2018-05-26 10:49:46 +00:00
|
|
|
if err := weed_util.TestFolderWritable(dir); err != nil {
|
|
|
|
return fmt.Errorf("Check Level Folder %s Writable: %s", dir, err)
|
|
|
|
}
|
|
|
|
|
2018-05-26 11:50:55 +00:00
|
|
|
if store.db, err = leveldb.OpenFile(dir, nil); err != nil {
|
2018-12-06 07:24:25 +00:00
|
|
|
glog.Infof("filer store open dir %s: %v", dir, err)
|
2018-05-26 10:49:46 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-03-31 06:09:16 +00:00
|
|
|
func (store *LevelDBStore) BeginTransaction(ctx context.Context) (context.Context, error) {
|
2019-03-31 06:08:29 +00:00
|
|
|
return ctx, nil
|
|
|
|
}
|
2019-03-31 06:09:16 +00:00
|
|
|
func (store *LevelDBStore) CommitTransaction(ctx context.Context) error {
|
2019-03-31 06:08:29 +00:00
|
|
|
return nil
|
|
|
|
}
|
2019-03-31 06:09:16 +00:00
|
|
|
func (store *LevelDBStore) RollbackTransaction(ctx context.Context) error {
|
2019-03-31 06:08:29 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-15 22:55:34 +00:00
|
|
|
func (store *LevelDBStore) InsertEntry(ctx context.Context, entry *filer2.Entry) (err error) {
|
2018-05-26 10:49:46 +00:00
|
|
|
key := genKey(entry.DirAndName())
|
|
|
|
|
|
|
|
value, err := entry.EncodeAttributesAndChunks()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("encoding %s %+v: %v", entry.FullPath, entry.Attr, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = store.db.Put(key, value, nil)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("persisting %s : %v", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// println("saved", entry.FullPath, "chunks", len(entry.Chunks))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-03-15 22:55:34 +00:00
|
|
|
func (store *LevelDBStore) UpdateEntry(ctx context.Context, entry *filer2.Entry) (err error) {
|
2018-05-26 10:49:46 +00:00
|
|
|
|
2019-03-15 22:55:34 +00:00
|
|
|
return store.InsertEntry(ctx, entry)
|
2018-05-26 10:49:46 +00:00
|
|
|
}
|
|
|
|
|
2019-03-15 22:55:34 +00:00
|
|
|
func (store *LevelDBStore) FindEntry(ctx context.Context, fullpath filer2.FullPath) (entry *filer2.Entry, err error) {
|
2018-05-26 10:49:46 +00:00
|
|
|
key := genKey(fullpath.DirAndName())
|
|
|
|
|
|
|
|
data, err := store.db.Get(key, nil)
|
|
|
|
|
|
|
|
if err == leveldb.ErrNotFound {
|
|
|
|
return nil, filer2.ErrNotFound
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("get %s : %v", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = &filer2.Entry{
|
|
|
|
FullPath: fullpath,
|
|
|
|
}
|
|
|
|
err = entry.DecodeAttributesAndChunks(data)
|
|
|
|
if err != nil {
|
|
|
|
return entry, fmt.Errorf("decode %s : %v", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// println("read", entry.FullPath, "chunks", len(entry.Chunks), "data", len(data), string(data))
|
|
|
|
|
|
|
|
return entry, nil
|
|
|
|
}
|
|
|
|
|
2019-03-15 22:55:34 +00:00
|
|
|
func (store *LevelDBStore) DeleteEntry(ctx context.Context, fullpath filer2.FullPath) (err error) {
|
2018-05-26 10:49:46 +00:00
|
|
|
key := genKey(fullpath.DirAndName())
|
|
|
|
|
|
|
|
err = store.db.Delete(key, nil)
|
|
|
|
if err != nil {
|
2018-05-31 03:24:57 +00:00
|
|
|
return fmt.Errorf("delete %s : %v", fullpath, err)
|
2018-05-26 10:49:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 03:24:57 +00:00
|
|
|
return nil
|
2018-05-26 10:49:46 +00:00
|
|
|
}
|
|
|
|
|
2019-03-15 22:55:34 +00:00
|
|
|
func (store *LevelDBStore) ListDirectoryEntries(ctx context.Context, fullpath filer2.FullPath, startFileName string, inclusive bool,
|
2018-05-26 10:49:46 +00:00
|
|
|
limit int) (entries []*filer2.Entry, err error) {
|
|
|
|
|
|
|
|
directoryPrefix := genDirectoryKeyPrefix(fullpath, "")
|
|
|
|
|
|
|
|
iter := store.db.NewIterator(&leveldb_util.Range{Start: genDirectoryKeyPrefix(fullpath, startFileName)}, nil)
|
|
|
|
for iter.Next() {
|
|
|
|
key := iter.Key()
|
|
|
|
if !bytes.HasPrefix(key, directoryPrefix) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
fileName := getNameFromKey(key)
|
|
|
|
if fileName == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if fileName == startFileName && !inclusive {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
limit--
|
|
|
|
if limit < 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
entry := &filer2.Entry{
|
|
|
|
FullPath: filer2.NewFullPath(string(fullpath), fileName),
|
|
|
|
}
|
|
|
|
if decodeErr := entry.DecodeAttributesAndChunks(iter.Value()); decodeErr != nil {
|
|
|
|
err = decodeErr
|
|
|
|
glog.V(0).Infof("list %s : %v", entry.FullPath, err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
entries = append(entries, entry)
|
|
|
|
}
|
|
|
|
iter.Release()
|
|
|
|
|
|
|
|
return entries, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func genKey(dirPath, fileName string) (key []byte) {
|
|
|
|
key = []byte(dirPath)
|
|
|
|
key = append(key, DIR_FILE_SEPARATOR)
|
|
|
|
key = append(key, []byte(fileName)...)
|
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
|
|
|
func genDirectoryKeyPrefix(fullpath filer2.FullPath, startFileName string) (keyPrefix []byte) {
|
|
|
|
keyPrefix = []byte(string(fullpath))
|
|
|
|
keyPrefix = append(keyPrefix, DIR_FILE_SEPARATOR)
|
|
|
|
if len(startFileName) > 0 {
|
|
|
|
keyPrefix = append(keyPrefix, []byte(startFileName)...)
|
|
|
|
}
|
|
|
|
return keyPrefix
|
|
|
|
}
|
|
|
|
|
2018-05-27 18:52:26 +00:00
|
|
|
func getNameFromKey(key []byte) string {
|
2018-05-26 10:49:46 +00:00
|
|
|
|
|
|
|
sepIndex := len(key) - 1
|
|
|
|
for sepIndex >= 0 && key[sepIndex] != DIR_FILE_SEPARATOR {
|
|
|
|
sepIndex--
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(key[sepIndex+1:])
|
|
|
|
|
|
|
|
}
|