generated from multiversx/mx-chain-ws-connector-template-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
168 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
package process | ||
|
||
import ( | ||
"encoding/hex" | ||
"fmt" | ||
"io/ioutil" | ||
"path/filepath" | ||
"sync" | ||
|
||
"github.com/multiversx/mx-chain-storage-go/leveldb" | ||
"github.com/multiversx/mx-chain-storage-go/storageUnit" | ||
"github.com/multiversx/mx-chain-storage-go/types" | ||
"github.com/multiversx/mx-chain-ws-connector-template-go/config" | ||
) | ||
|
||
type pruningStorer struct { | ||
activePersisters []types.Persister | ||
persistersMut sync.RWMutex | ||
cacher types.Cacher | ||
|
||
dbConf config.DBConfig | ||
numPersistersToKeep int | ||
} | ||
|
||
func NewPruningStorer(cfg config.DBConfig, numPersistersToKeep int) (*pruningStorer, error) { | ||
|
||
ps := &pruningStorer{ | ||
dbConf: cfg, | ||
numPersistersToKeep: numPersistersToKeep, | ||
} | ||
|
||
err := ps.initPersisters() | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return ps, nil | ||
} | ||
|
||
func (ps *pruningStorer) initPersisters() error { | ||
persisterPaths, err := ps.getPersisterPaths() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
persistersSlice := make([]types.Persister, 0) | ||
|
||
numPersistersToInit := ps.numPersistersToKeep | ||
if len(persisterPaths) < numPersistersToInit { | ||
numPersistersToInit = len(persisterPaths) | ||
} | ||
|
||
for i := 0; i < numPersistersToInit; i++ { | ||
persister, err := ps.createPersister(persisterPaths[i]) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
persistersSlice = append(persistersSlice, persister) | ||
} | ||
|
||
ps.activePersisters = persistersSlice | ||
|
||
return nil | ||
} | ||
|
||
func (ps *pruningStorer) createPersister(path string) (types.Persister, error) { | ||
var dbType = storageUnit.DBType(ps.dbConf.Type) | ||
switch dbType { | ||
case storageUnit.LvlDB: | ||
return leveldb.NewDB(path, ps.dbConf.BatchDelaySeconds, ps.dbConf.MaxBatchSize, ps.dbConf.MaxOpenFiles) | ||
case storageUnit.LvlDBSerial: | ||
return leveldb.NewSerialDB(path, ps.dbConf.BatchDelaySeconds, ps.dbConf.MaxBatchSize, ps.dbConf.MaxOpenFiles) | ||
default: | ||
return nil, ErrNotSupportedDBType | ||
} | ||
} | ||
|
||
func (ps *pruningStorer) getPersisterPaths() ([]string, error) { | ||
basePath := ps.dbConf.FilePath | ||
|
||
files, err := ioutil.ReadDir(basePath) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
persistersPaths := make([]string, 0) | ||
|
||
for _, file := range files { | ||
if file.IsDir() { | ||
path := filepath.Join(basePath, file.Name()) | ||
persistersPaths = append(persistersPaths, path) | ||
} | ||
} | ||
|
||
// set latest dir to first position | ||
persistersPaths = reverseSlice(persistersPaths) | ||
|
||
if len(persistersPaths) == 0 { | ||
// add "0" db dir if not already existing db | ||
path := filepath.Join(basePath, "0") | ||
persistersPaths = append(persistersPaths, path) | ||
} | ||
|
||
return persistersPaths, nil | ||
} | ||
|
||
func reverseSlice(s []string) []string { | ||
for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 { | ||
s[i], s[j] = s[j], s[i] | ||
} | ||
|
||
return s | ||
} | ||
|
||
func (ps *pruningStorer) Get(key []byte) ([]byte, error) { | ||
v, ok := ps.cacher.Get(key) | ||
if ok { | ||
return v.([]byte), nil | ||
} | ||
|
||
ps.persistersMut.RLock() | ||
defer ps.persistersMut.RUnlock() | ||
|
||
for idx := 0; idx < len(ps.activePersisters); idx++ { | ||
val, err := ps.activePersisters[idx].Get(key) | ||
if err != nil { | ||
log.Error(err.Error()) | ||
continue | ||
} | ||
|
||
// if found in persistence unit, add it to cache and return | ||
_ = ps.cacher.Put(key, val, len(val)) | ||
|
||
return val, nil | ||
} | ||
|
||
return nil, fmt.Errorf("key %s not found", hex.EncodeToString(key)) | ||
} | ||
|
||
func (ps *pruningStorer) Put(key, data []byte) error { | ||
ps.cacher.Put(key, data, len(data)) | ||
|
||
ps.persistersMut.RLock() | ||
defer ps.persistersMut.RUnlock() | ||
|
||
persisterToUse := ps.activePersisters[0] | ||
|
||
err := persisterToUse.Put(key, data) | ||
if err != nil { | ||
ps.cacher.Remove(key) | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (ps *pruningStorer) DBChange(round uint64) error { | ||
ps.persistersMut.Lock() | ||
defer ps.persistersMut.Unlock() | ||
|
||
return nil | ||
} | ||
|
||
// IsInterfaceNil returns true if there is no value under the interface | ||
func (ps *pruningStorer) IsInterfaceNil() bool { | ||
return ps == nil | ||
} |