2020-04-07 09:41:12 +00:00
|
|
|
package dao
|
2019-11-25 17:39:11 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
|
|
|
"fmt"
|
|
|
|
"sort"
|
|
|
|
|
2020-06-18 09:00:51 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/config/netmode"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/block"
|
2020-05-29 14:20:00 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/mpt"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/state"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/storage"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/core/transaction"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2019-11-25 17:39:11 +00:00
|
|
|
)
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// DAO is a data access object.
|
|
|
|
type DAO interface {
|
2020-04-03 06:49:01 +00:00
|
|
|
AppendNEP5Transfer(acc util.Uint160, index uint32, tr *state.NEP5Transfer) (bool, error)
|
|
|
|
DeleteContractState(hash util.Uint160) error
|
2020-06-18 10:50:30 +00:00
|
|
|
DeleteStorageItem(id int32, key []byte) error
|
2020-04-03 06:49:01 +00:00
|
|
|
GetAccountState(hash util.Uint160) (*state.Account, error)
|
|
|
|
GetAccountStateOrNew(hash util.Uint160) (*state.Account, error)
|
|
|
|
GetAndDecode(entity io.Serializable, key []byte) error
|
|
|
|
GetAppExecResult(hash util.Uint256) (*state.AppExecResult, error)
|
|
|
|
GetBatch() *storage.MemBatch
|
2020-06-04 19:59:34 +00:00
|
|
|
GetBlock(hash util.Uint256) (*block.Block, error)
|
2020-04-03 06:49:01 +00:00
|
|
|
GetContractState(hash util.Uint160) (*state.Contract, error)
|
2020-07-28 13:36:47 +00:00
|
|
|
GetContractScriptHash(id int32) (util.Uint160, error)
|
2020-04-03 06:49:01 +00:00
|
|
|
GetCurrentBlockHeight() (uint32, error)
|
|
|
|
GetCurrentHeaderHeight() (i uint32, h util.Uint256, err error)
|
2020-06-22 07:42:46 +00:00
|
|
|
GetCurrentStateRootHeight() (uint32, error)
|
2020-04-03 06:49:01 +00:00
|
|
|
GetHeaderHashes() ([]util.Uint256, error)
|
|
|
|
GetNEP5Balances(acc util.Uint160) (*state.NEP5Balances, error)
|
|
|
|
GetNEP5TransferLog(acc util.Uint160, index uint32) (*state.NEP5TransferLog, error)
|
2020-06-23 18:09:37 +00:00
|
|
|
GetAndUpdateNextContractID() (int32, error)
|
2020-05-29 14:20:00 +00:00
|
|
|
GetStateRoot(height uint32) (*state.MPTRootState, error)
|
|
|
|
PutStateRoot(root *state.MPTRootState) error
|
2020-06-18 10:50:30 +00:00
|
|
|
GetStorageItem(id int32, key []byte) *state.StorageItem
|
|
|
|
GetStorageItems(id int32) (map[string]*state.StorageItem, error)
|
|
|
|
GetStorageItemsWithPrefix(id int32, prefix []byte) (map[string]*state.StorageItem, error)
|
2020-04-03 06:49:01 +00:00
|
|
|
GetTransaction(hash util.Uint256) (*transaction.Transaction, uint32, error)
|
|
|
|
GetVersion() (string, error)
|
2020-04-07 09:41:12 +00:00
|
|
|
GetWrapped() DAO
|
2020-04-03 06:49:01 +00:00
|
|
|
HasTransaction(hash util.Uint256) bool
|
|
|
|
Persist() (int, error)
|
|
|
|
PutAccountState(as *state.Account) error
|
|
|
|
PutAppExecResult(aer *state.AppExecResult) error
|
|
|
|
PutContractState(cs *state.Contract) error
|
|
|
|
PutCurrentHeader(hashAndIndex []byte) error
|
|
|
|
PutNEP5Balances(acc util.Uint160, bs *state.NEP5Balances) error
|
|
|
|
PutNEP5TransferLog(acc util.Uint160, index uint32, lg *state.NEP5TransferLog) error
|
2020-06-18 10:50:30 +00:00
|
|
|
PutStorageItem(id int32, key []byte, si *state.StorageItem) error
|
2020-04-03 06:49:01 +00:00
|
|
|
PutVersion(v string) error
|
2020-06-04 19:59:34 +00:00
|
|
|
StoreAsBlock(block *block.Block) error
|
2020-04-03 06:49:01 +00:00
|
|
|
StoreAsCurrentBlock(block *block.Block) error
|
|
|
|
StoreAsTransaction(tx *transaction.Transaction, index uint32) error
|
|
|
|
putAccountState(as *state.Account, buf *io.BufBinWriter) error
|
|
|
|
putNEP5Balances(acc util.Uint160, bs *state.NEP5Balances, buf *io.BufBinWriter) error
|
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// Simple is memCached wrapper around DB, simple DAO implementation.
|
|
|
|
type Simple struct {
|
2020-05-29 14:20:00 +00:00
|
|
|
MPT *mpt.Trie
|
2020-06-18 09:00:51 +00:00
|
|
|
Store *storage.MemCachedStore
|
|
|
|
network netmode.Magic
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// NewSimple creates new simple dao using provided backend store.
|
2020-06-18 09:00:51 +00:00
|
|
|
func NewSimple(backend storage.Store, network netmode.Magic) *Simple {
|
2020-05-29 14:20:00 +00:00
|
|
|
st := storage.NewMemCachedStore(backend)
|
|
|
|
return &Simple{Store: st, network: network, MPT: mpt.NewTrie(nil, st)}
|
2020-04-03 06:49:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetBatch returns currently accumulated DB changeset.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetBatch() *storage.MemBatch {
|
|
|
|
return dao.Store.GetBatch()
|
2020-04-03 06:49:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// GetWrapped returns new DAO instance with another layer of wrapped
|
|
|
|
// MemCachedStore around the current DAO Store.
|
|
|
|
func (dao *Simple) GetWrapped() DAO {
|
2020-05-29 14:20:00 +00:00
|
|
|
d := NewSimple(dao.Store, dao.network)
|
|
|
|
d.MPT = dao.MPT
|
|
|
|
return d
|
2019-12-12 18:04:55 +00:00
|
|
|
}
|
|
|
|
|
2019-11-25 17:39:11 +00:00
|
|
|
// GetAndDecode performs get operation and decoding with serializable structures.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetAndDecode(entity io.Serializable, key []byte) error {
|
|
|
|
entityBytes, err := dao.Store.Get(key)
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
reader := io.NewBinReaderFromBuf(entityBytes)
|
|
|
|
entity.DecodeBinary(reader)
|
|
|
|
return reader.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put performs put operation with serializable structures.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) Put(entity io.Serializable, key []byte) error {
|
2020-03-17 09:06:46 +00:00
|
|
|
return dao.putWithBuffer(entity, key, io.NewBufBinWriter())
|
|
|
|
}
|
|
|
|
|
|
|
|
// putWithBuffer performs put operation using buf as a pre-allocated buffer for serialization.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) putWithBuffer(entity io.Serializable, key []byte, buf *io.BufBinWriter) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
entity.EncodeBinary(buf.BinWriter)
|
|
|
|
if buf.Err != nil {
|
|
|
|
return buf.Err
|
|
|
|
}
|
2020-04-07 09:41:12 +00:00
|
|
|
return dao.Store.Put(key, buf.Bytes())
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -- start accounts.
|
|
|
|
|
2019-11-28 16:06:09 +00:00
|
|
|
// GetAccountStateOrNew retrieves Account from temporary or persistent Store
|
2019-11-25 17:39:11 +00:00
|
|
|
// or creates a new one if it doesn't exist and persists it.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetAccountStateOrNew(hash util.Uint160) (*state.Account, error) {
|
2019-11-25 17:39:11 +00:00
|
|
|
account, err := dao.GetAccountState(hash)
|
|
|
|
if err != nil {
|
|
|
|
if err != storage.ErrKeyNotFound {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-11-28 16:06:09 +00:00
|
|
|
account = state.NewAccount(hash)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
return account, nil
|
|
|
|
}
|
|
|
|
|
2019-11-28 16:06:09 +00:00
|
|
|
// GetAccountState returns Account from the given Store if it's
|
2019-11-25 17:39:11 +00:00
|
|
|
// present there. Returns nil otherwise.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetAccountState(hash util.Uint160) (*state.Account, error) {
|
2019-11-28 16:06:09 +00:00
|
|
|
account := &state.Account{}
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STAccount, hash.BytesBE())
|
|
|
|
err := dao.GetAndDecode(account, key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return account, err
|
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// PutAccountState saves given Account in given store.
|
|
|
|
func (dao *Simple) PutAccountState(as *state.Account) error {
|
2020-03-17 09:06:46 +00:00
|
|
|
return dao.putAccountState(as, io.NewBufBinWriter())
|
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) putAccountState(as *state.Account, buf *io.BufBinWriter) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STAccount, as.ScriptHash.BytesBE())
|
2020-03-17 09:06:46 +00:00
|
|
|
return dao.putWithBuffer(as, key, buf)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -- end accounts.
|
|
|
|
|
|
|
|
// -- start contracts.
|
|
|
|
|
|
|
|
// GetContractState returns contract state as recorded in the given
|
|
|
|
// store by the given script hash.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetContractState(hash util.Uint160) (*state.Contract, error) {
|
2019-11-28 16:06:09 +00:00
|
|
|
contract := &state.Contract{}
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STContract, hash.BytesBE())
|
|
|
|
err := dao.GetAndDecode(contract, key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if contract.ScriptHash() != hash {
|
|
|
|
return nil, fmt.Errorf("found script hash is not equal to expected")
|
|
|
|
}
|
|
|
|
|
|
|
|
return contract, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutContractState puts given contract state into the given store.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) PutContractState(cs *state.Contract) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STContract, cs.ScriptHash().BytesBE())
|
2020-07-28 13:36:47 +00:00
|
|
|
if err := dao.Put(cs, key); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return dao.putContractScriptHash(cs)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteContractState deletes given contract state in the given store.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) DeleteContractState(hash util.Uint160) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STContract, hash.BytesBE())
|
2020-04-07 09:41:12 +00:00
|
|
|
return dao.Store.Delete(key)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 18:09:37 +00:00
|
|
|
// GetAndUpdateNextContractID returns id for the next contract and increases stored ID.
|
|
|
|
func (dao *Simple) GetAndUpdateNextContractID() (int32, error) {
|
|
|
|
var id int32
|
2020-06-09 12:12:23 +00:00
|
|
|
key := storage.SYSContractID.Bytes()
|
|
|
|
data, err := dao.Store.Get(key)
|
2020-06-23 18:09:37 +00:00
|
|
|
if err == nil {
|
|
|
|
id = int32(binary.LittleEndian.Uint32(data))
|
|
|
|
} else if err != storage.ErrKeyNotFound {
|
2020-06-09 12:12:23 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
2020-06-23 18:09:37 +00:00
|
|
|
data = make([]byte, 4)
|
|
|
|
binary.LittleEndian.PutUint32(data, uint32(id+1))
|
|
|
|
return id, dao.Store.Put(key, data)
|
2020-06-09 12:12:23 +00:00
|
|
|
}
|
|
|
|
|
2020-07-28 13:36:47 +00:00
|
|
|
// putContractScriptHash puts given contract script hash into the given store.
|
|
|
|
// It's a private method because it should be used after PutContractState to keep
|
|
|
|
// ID-Hash pair always up-to-date.
|
|
|
|
func (dao *Simple) putContractScriptHash(cs *state.Contract) error {
|
|
|
|
key := make([]byte, 5)
|
|
|
|
key[0] = byte(storage.STContractID)
|
|
|
|
binary.LittleEndian.PutUint32(key[1:], uint32(cs.ID))
|
|
|
|
return dao.Store.Put(key, cs.ScriptHash().BytesBE())
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetContractScriptHash returns script hash of the contract with the specified ID.
|
|
|
|
// Contract with the script hash may be destroyed.
|
|
|
|
func (dao *Simple) GetContractScriptHash(id int32) (util.Uint160, error) {
|
|
|
|
key := make([]byte, 5)
|
|
|
|
key[0] = byte(storage.STContractID)
|
|
|
|
binary.LittleEndian.PutUint32(key[1:], uint32(id))
|
|
|
|
data := &util.Uint160{}
|
|
|
|
if err := dao.GetAndDecode(data, key); err != nil {
|
|
|
|
return *data, err
|
|
|
|
}
|
|
|
|
return *data, nil
|
|
|
|
}
|
|
|
|
|
2019-11-25 17:39:11 +00:00
|
|
|
// -- end contracts.
|
|
|
|
|
2020-03-11 15:22:46 +00:00
|
|
|
// -- start nep5 balances.
|
|
|
|
|
|
|
|
// GetNEP5Balances retrieves nep5 balances from the cache.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetNEP5Balances(acc util.Uint160) (*state.NEP5Balances, error) {
|
2020-03-11 15:22:46 +00:00
|
|
|
key := storage.AppendPrefix(storage.STNEP5Balances, acc.BytesBE())
|
|
|
|
bs := state.NewNEP5Balances()
|
|
|
|
err := dao.GetAndDecode(bs, key)
|
|
|
|
if err != nil && err != storage.ErrKeyNotFound {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return bs, nil
|
|
|
|
}
|
|
|
|
|
2020-03-17 09:06:46 +00:00
|
|
|
// PutNEP5Balances saves nep5 balances from the cache.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) PutNEP5Balances(acc util.Uint160, bs *state.NEP5Balances) error {
|
2020-03-17 09:06:46 +00:00
|
|
|
return dao.putNEP5Balances(acc, bs, io.NewBufBinWriter())
|
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) putNEP5Balances(acc util.Uint160, bs *state.NEP5Balances, buf *io.BufBinWriter) error {
|
2020-03-11 15:22:46 +00:00
|
|
|
key := storage.AppendPrefix(storage.STNEP5Balances, acc.BytesBE())
|
2020-03-17 09:06:46 +00:00
|
|
|
return dao.putWithBuffer(bs, key, buf)
|
2020-03-11 15:22:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -- end nep5 balances.
|
|
|
|
|
2020-03-05 14:11:58 +00:00
|
|
|
// -- start transfer log.
|
|
|
|
|
2020-03-12 09:43:21 +00:00
|
|
|
const nep5TransferBatchSize = 128
|
|
|
|
|
|
|
|
func getNEP5TransferLogKey(acc util.Uint160, index uint32) []byte {
|
|
|
|
key := make([]byte, 1+util.Uint160Size+4)
|
|
|
|
key[0] = byte(storage.STNEP5Transfers)
|
|
|
|
copy(key[1:], acc.BytesBE())
|
|
|
|
binary.LittleEndian.PutUint32(key[util.Uint160Size:], index)
|
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
2020-03-05 14:11:58 +00:00
|
|
|
// GetNEP5TransferLog retrieves transfer log from the cache.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetNEP5TransferLog(acc util.Uint160, index uint32) (*state.NEP5TransferLog, error) {
|
2020-03-12 09:43:21 +00:00
|
|
|
key := getNEP5TransferLogKey(acc, index)
|
2020-04-07 09:41:12 +00:00
|
|
|
value, err := dao.Store.Get(key)
|
2020-03-05 14:11:58 +00:00
|
|
|
if err != nil {
|
2020-03-05 12:16:03 +00:00
|
|
|
if err == storage.ErrKeyNotFound {
|
|
|
|
return new(state.NEP5TransferLog), nil
|
|
|
|
}
|
2020-03-05 14:11:58 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &state.NEP5TransferLog{Raw: value}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutNEP5TransferLog saves given transfer log in the cache.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) PutNEP5TransferLog(acc util.Uint160, index uint32, lg *state.NEP5TransferLog) error {
|
2020-03-12 09:43:21 +00:00
|
|
|
key := getNEP5TransferLogKey(acc, index)
|
2020-04-07 09:41:12 +00:00
|
|
|
return dao.Store.Put(key, lg.Raw)
|
2020-03-05 14:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AppendNEP5Transfer appends a single NEP5 transfer to a log.
|
2020-03-12 09:43:21 +00:00
|
|
|
// First return value signalizes that log size has exceeded batch size.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) AppendNEP5Transfer(acc util.Uint160, index uint32, tr *state.NEP5Transfer) (bool, error) {
|
2020-03-12 09:43:21 +00:00
|
|
|
lg, err := dao.GetNEP5TransferLog(acc, index)
|
2020-03-05 14:11:58 +00:00
|
|
|
if err != nil {
|
|
|
|
if err != storage.ErrKeyNotFound {
|
2020-03-12 09:43:21 +00:00
|
|
|
return false, err
|
2020-03-05 14:11:58 +00:00
|
|
|
}
|
|
|
|
lg = new(state.NEP5TransferLog)
|
|
|
|
}
|
|
|
|
if err := lg.Append(tr); err != nil {
|
2020-03-12 09:43:21 +00:00
|
|
|
return false, err
|
2020-03-05 14:11:58 +00:00
|
|
|
}
|
2020-03-12 09:43:21 +00:00
|
|
|
return lg.Size() >= nep5TransferBatchSize, dao.PutNEP5TransferLog(acc, index, lg)
|
2020-03-05 14:11:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -- end transfer log.
|
|
|
|
|
2019-11-25 17:39:11 +00:00
|
|
|
// -- start notification event.
|
|
|
|
|
|
|
|
// GetAppExecResult gets application execution result from the
|
|
|
|
// given store.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetAppExecResult(hash util.Uint256) (*state.AppExecResult, error) {
|
2019-11-28 16:06:09 +00:00
|
|
|
aer := &state.AppExecResult{}
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STNotification, hash.BytesBE())
|
|
|
|
err := dao.GetAndDecode(aer, key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return aer, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutAppExecResult puts given application execution result into the
|
|
|
|
// given store.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) PutAppExecResult(aer *state.AppExecResult) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STNotification, aer.TxHash.BytesBE())
|
|
|
|
return dao.Put(aer, key)
|
|
|
|
}
|
|
|
|
|
|
|
|
// -- end notification event.
|
|
|
|
|
|
|
|
// -- start storage item.
|
|
|
|
|
2020-05-29 14:20:00 +00:00
|
|
|
func makeStateRootKey(height uint32) []byte {
|
|
|
|
key := make([]byte, 5)
|
|
|
|
key[0] = byte(storage.DataMPT)
|
|
|
|
binary.LittleEndian.PutUint32(key[1:], height)
|
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
|
|
|
// InitMPT initializes MPT at the given height.
|
|
|
|
func (dao *Simple) InitMPT(height uint32) error {
|
|
|
|
if height == 0 {
|
|
|
|
dao.MPT = mpt.NewTrie(nil, dao.Store)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
r, err := dao.GetStateRoot(height)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
dao.MPT = mpt.NewTrie(mpt.NewHashNode(r.Root), dao.Store)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-22 07:42:46 +00:00
|
|
|
// GetCurrentStateRootHeight returns current state root height.
|
|
|
|
func (dao *Simple) GetCurrentStateRootHeight() (uint32, error) {
|
|
|
|
key := []byte{byte(storage.DataMPT)}
|
|
|
|
val, err := dao.Store.Get(key)
|
|
|
|
if err != nil {
|
|
|
|
if err == storage.ErrKeyNotFound {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return binary.LittleEndian.Uint32(val), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutCurrentStateRootHeight updates current state root height.
|
|
|
|
func (dao *Simple) PutCurrentStateRootHeight(height uint32) error {
|
|
|
|
key := []byte{byte(storage.DataMPT)}
|
|
|
|
val := make([]byte, 4)
|
|
|
|
binary.LittleEndian.PutUint32(val, height)
|
|
|
|
return dao.Store.Put(key, val)
|
|
|
|
}
|
|
|
|
|
2020-05-29 14:20:00 +00:00
|
|
|
// GetStateRoot returns state root of a given height.
|
|
|
|
func (dao *Simple) GetStateRoot(height uint32) (*state.MPTRootState, error) {
|
|
|
|
r := new(state.MPTRootState)
|
|
|
|
err := dao.GetAndDecode(r, makeStateRootKey(height))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return r, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutStateRoot puts state root of a given height into the store.
|
|
|
|
func (dao *Simple) PutStateRoot(r *state.MPTRootState) error {
|
|
|
|
return dao.Put(r, makeStateRootKey(r.Index))
|
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// GetStorageItem returns StorageItem if it exists in the given store.
|
2020-06-18 10:50:30 +00:00
|
|
|
func (dao *Simple) GetStorageItem(id int32, key []byte) *state.StorageItem {
|
|
|
|
b, err := dao.Store.Get(makeStorageItemKey(id, key))
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
r := io.NewBinReaderFromBuf(b)
|
|
|
|
|
2019-11-28 16:06:09 +00:00
|
|
|
si := &state.StorageItem{}
|
2019-11-25 17:39:11 +00:00
|
|
|
si.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return si
|
|
|
|
}
|
|
|
|
|
2020-06-18 10:50:30 +00:00
|
|
|
// PutStorageItem puts given StorageItem for given id with given
|
2020-04-07 09:41:12 +00:00
|
|
|
// key into the given store.
|
2020-06-18 10:50:30 +00:00
|
|
|
func (dao *Simple) PutStorageItem(id int32, key []byte, si *state.StorageItem) error {
|
2020-05-29 14:20:00 +00:00
|
|
|
stKey := makeStorageItemKey(id, key)
|
|
|
|
buf := io.NewBufBinWriter()
|
|
|
|
si.EncodeBinary(buf.BinWriter)
|
|
|
|
if buf.Err != nil {
|
|
|
|
return buf.Err
|
|
|
|
}
|
|
|
|
v := buf.Bytes()
|
|
|
|
if err := dao.MPT.Put(stKey[1:], v); err != nil && err != mpt.ErrNotFound {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return dao.Store.Put(stKey, v)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 10:50:30 +00:00
|
|
|
// DeleteStorageItem drops storage item for the given id with the
|
2020-04-07 09:41:12 +00:00
|
|
|
// given key from the store.
|
2020-06-18 10:50:30 +00:00
|
|
|
func (dao *Simple) DeleteStorageItem(id int32, key []byte) error {
|
2020-05-29 14:20:00 +00:00
|
|
|
stKey := makeStorageItemKey(id, key)
|
|
|
|
if err := dao.MPT.Delete(stKey[1:]); err != nil && err != mpt.ErrNotFound {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return dao.Store.Delete(stKey)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 10:50:30 +00:00
|
|
|
// GetStorageItems returns all storage items for a given id.
|
|
|
|
func (dao *Simple) GetStorageItems(id int32) (map[string]*state.StorageItem, error) {
|
|
|
|
return dao.GetStorageItemsWithPrefix(id, nil)
|
2020-04-25 21:23:30 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 10:50:30 +00:00
|
|
|
// GetStorageItemsWithPrefix returns all storage items with given id for a
|
2020-04-25 21:23:30 +00:00
|
|
|
// given scripthash.
|
2020-06-18 10:50:30 +00:00
|
|
|
func (dao *Simple) GetStorageItemsWithPrefix(id int32, prefix []byte) (map[string]*state.StorageItem, error) {
|
2019-11-28 16:06:09 +00:00
|
|
|
var siMap = make(map[string]*state.StorageItem)
|
2019-11-25 17:39:11 +00:00
|
|
|
var err error
|
|
|
|
|
2020-06-18 10:50:30 +00:00
|
|
|
lookupKey := makeStorageItemKey(id, nil)
|
2020-04-25 21:23:30 +00:00
|
|
|
if prefix != nil {
|
|
|
|
lookupKey = append(lookupKey, prefix...)
|
|
|
|
}
|
2019-11-25 17:39:11 +00:00
|
|
|
saveToMap := func(k, v []byte) {
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r := io.NewBinReaderFromBuf(v)
|
2019-11-28 16:06:09 +00:00
|
|
|
si := &state.StorageItem{}
|
2019-11-25 17:39:11 +00:00
|
|
|
si.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
err = r.Err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cut prefix and hash.
|
2020-04-25 21:23:30 +00:00
|
|
|
siMap[string(k[len(lookupKey):])] = si
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
2020-04-25 21:23:30 +00:00
|
|
|
dao.Store.Seek(lookupKey, saveToMap)
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return siMap, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// makeStorageItemKey returns a key used to store StorageItem in the DB.
|
2020-06-18 10:50:30 +00:00
|
|
|
func makeStorageItemKey(id int32, key []byte) []byte {
|
|
|
|
// 1 for prefix + 4 for Uint32 + len(key) for key
|
|
|
|
buf := make([]byte, 5+len(key))
|
|
|
|
buf[0] = byte(storage.STStorage)
|
|
|
|
binary.LittleEndian.PutUint32(buf[1:], uint32(id))
|
|
|
|
copy(buf[5:], key)
|
|
|
|
return buf
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -- end storage item.
|
|
|
|
|
|
|
|
// -- other.
|
|
|
|
|
|
|
|
// GetBlock returns Block by the given hash if it exists in the store.
|
2020-06-04 19:59:34 +00:00
|
|
|
func (dao *Simple) GetBlock(hash util.Uint256) (*block.Block, error) {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataBlock, hash.BytesLE())
|
2020-04-07 09:41:12 +00:00
|
|
|
b, err := dao.Store.Get(key)
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
2020-06-04 19:59:34 +00:00
|
|
|
return nil, err
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
2020-02-27 13:31:28 +00:00
|
|
|
|
2020-06-18 09:00:51 +00:00
|
|
|
block, err := block.NewBlockFromTrimmedBytes(dao.network, b)
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
2020-06-04 19:59:34 +00:00
|
|
|
return nil, err
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
2020-06-04 19:59:34 +00:00
|
|
|
return block, nil
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetVersion attempts to get the current version stored in the
|
2020-04-07 09:41:12 +00:00
|
|
|
// underlying store.
|
|
|
|
func (dao *Simple) GetVersion() (string, error) {
|
|
|
|
version, err := dao.Store.Get(storage.SYSVersion.Bytes())
|
2019-11-25 17:39:11 +00:00
|
|
|
return string(version), err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCurrentBlockHeight returns the current block height found in the
|
2020-04-07 09:41:12 +00:00
|
|
|
// underlying store.
|
|
|
|
func (dao *Simple) GetCurrentBlockHeight() (uint32, error) {
|
|
|
|
b, err := dao.Store.Get(storage.SYSCurrentBlock.Bytes())
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return binary.LittleEndian.Uint32(b[32:36]), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCurrentHeaderHeight returns the current header height and hash from
|
2020-04-07 09:41:12 +00:00
|
|
|
// the underlying store.
|
|
|
|
func (dao *Simple) GetCurrentHeaderHeight() (i uint32, h util.Uint256, err error) {
|
2019-11-25 17:39:11 +00:00
|
|
|
var b []byte
|
2020-04-07 09:41:12 +00:00
|
|
|
b, err = dao.Store.Get(storage.SYSCurrentHeader.Bytes())
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
i = binary.LittleEndian.Uint32(b[32:36])
|
|
|
|
h, err = util.Uint256DecodeBytesLE(b[:32])
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHeaderHashes returns a sorted list of header hashes retrieved from
|
2020-04-07 09:41:12 +00:00
|
|
|
// the given underlying store.
|
|
|
|
func (dao *Simple) GetHeaderHashes() ([]util.Uint256, error) {
|
2019-11-25 17:39:11 +00:00
|
|
|
hashMap := make(map[uint32][]util.Uint256)
|
2020-04-07 09:41:12 +00:00
|
|
|
dao.Store.Seek(storage.IXHeaderHashList.Bytes(), func(k, v []byte) {
|
2019-11-25 17:39:11 +00:00
|
|
|
storedCount := binary.LittleEndian.Uint32(k[1:])
|
|
|
|
hashes, err := read2000Uint256Hashes(v)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
hashMap[storedCount] = hashes
|
|
|
|
})
|
|
|
|
|
|
|
|
var (
|
|
|
|
hashes = make([]util.Uint256, 0, len(hashMap))
|
|
|
|
sortedKeys = make([]uint32, 0, len(hashMap))
|
|
|
|
)
|
|
|
|
|
|
|
|
for k := range hashMap {
|
|
|
|
sortedKeys = append(sortedKeys, k)
|
|
|
|
}
|
2020-04-07 09:49:23 +00:00
|
|
|
sort.Slice(sortedKeys, func(i, j int) bool { return sortedKeys[i] < sortedKeys[j] })
|
2019-11-25 17:39:11 +00:00
|
|
|
|
|
|
|
for _, key := range sortedKeys {
|
|
|
|
hashes = append(hashes[:key], hashMap[key]...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return hashes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTransaction returns Transaction and its height by the given hash
|
|
|
|
// if it exists in the store.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetTransaction(hash util.Uint256) (*transaction.Transaction, uint32, error) {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataTransaction, hash.BytesLE())
|
2020-04-07 09:41:12 +00:00
|
|
|
b, err := dao.Store.Get(key)
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, 0, err
|
|
|
|
}
|
|
|
|
r := io.NewBinReaderFromBuf(b)
|
|
|
|
|
2019-12-12 15:52:23 +00:00
|
|
|
var height = r.ReadU32LE()
|
2019-11-25 17:39:11 +00:00
|
|
|
|
2020-06-18 09:00:51 +00:00
|
|
|
tx := &transaction.Transaction{Network: dao.network}
|
2019-11-25 17:39:11 +00:00
|
|
|
tx.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
return nil, 0, r.Err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx, height, nil
|
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// PutVersion stores the given version in the underlying store.
|
|
|
|
func (dao *Simple) PutVersion(v string) error {
|
|
|
|
return dao.Store.Put(storage.SYSVersion.Bytes(), []byte(v))
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PutCurrentHeader stores current header.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) PutCurrentHeader(hashAndIndex []byte) error {
|
|
|
|
return dao.Store.Put(storage.SYSCurrentHeader.Bytes(), hashAndIndex)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// read2000Uint256Hashes attempts to read 2000 Uint256 hashes from
|
|
|
|
// the given byte array.
|
|
|
|
func read2000Uint256Hashes(b []byte) ([]util.Uint256, error) {
|
|
|
|
r := bytes.NewReader(b)
|
|
|
|
br := io.NewBinReaderFromIO(r)
|
2019-12-12 15:52:23 +00:00
|
|
|
hashes := make([]util.Uint256, 0)
|
|
|
|
br.ReadArray(&hashes)
|
2019-11-25 17:39:11 +00:00
|
|
|
if br.Err != nil {
|
|
|
|
return nil, br.Err
|
|
|
|
}
|
|
|
|
return hashes, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasTransaction returns true if the given store contains the given
|
|
|
|
// Transaction hash.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) HasTransaction(hash util.Uint256) bool {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataTransaction, hash.BytesLE())
|
2020-04-07 09:41:12 +00:00
|
|
|
if _, err := dao.Store.Get(key); err == nil {
|
2019-11-25 17:39:11 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// StoreAsBlock stores the given block as DataBlock.
|
2020-06-04 19:59:34 +00:00
|
|
|
func (dao *Simple) StoreAsBlock(block *block.Block) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
var (
|
|
|
|
key = storage.AppendPrefix(storage.DataBlock, block.Hash().BytesLE())
|
|
|
|
buf = io.NewBufBinWriter()
|
|
|
|
)
|
|
|
|
b, err := block.Trim()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-12-12 15:52:23 +00:00
|
|
|
buf.WriteBytes(b)
|
2019-11-25 17:39:11 +00:00
|
|
|
if buf.Err != nil {
|
|
|
|
return buf.Err
|
|
|
|
}
|
2020-04-07 09:41:12 +00:00
|
|
|
return dao.Store.Put(key, buf.Bytes())
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StoreAsCurrentBlock stores the given block witch prefix SYSCurrentBlock.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) StoreAsCurrentBlock(block *block.Block) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
buf := io.NewBufBinWriter()
|
2019-12-12 15:52:23 +00:00
|
|
|
h := block.Hash()
|
|
|
|
h.EncodeBinary(buf.BinWriter)
|
|
|
|
buf.WriteU32LE(block.Index)
|
2020-04-07 09:41:12 +00:00
|
|
|
return dao.Store.Put(storage.SYSCurrentBlock.Bytes(), buf.Bytes())
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StoreAsTransaction stores the given TX as DataTransaction.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) StoreAsTransaction(tx *transaction.Transaction, index uint32) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataTransaction, tx.Hash().BytesLE())
|
|
|
|
buf := io.NewBufBinWriter()
|
2019-12-12 15:52:23 +00:00
|
|
|
buf.WriteU32LE(index)
|
2019-11-25 17:39:11 +00:00
|
|
|
tx.EncodeBinary(buf.BinWriter)
|
|
|
|
if buf.Err != nil {
|
|
|
|
return buf.Err
|
|
|
|
}
|
2020-04-07 09:41:12 +00:00
|
|
|
return dao.Store.Put(key, buf.Bytes())
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2019-12-12 18:17:13 +00:00
|
|
|
// Persist flushes all the changes made into the (supposedly) persistent
|
|
|
|
// underlying store.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) Persist() (int, error) {
|
|
|
|
return dao.Store.Persist()
|
2019-12-12 18:17:13 +00:00
|
|
|
}
|