2020-04-07 09:41:12 +00:00
|
|
|
package dao
|
2019-11-25 17:39:11 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
2020-10-15 11:45:29 +00:00
|
|
|
"errors"
|
2021-08-02 11:20:33 +00:00
|
|
|
"fmt"
|
2020-11-11 15:43:28 +00:00
|
|
|
iocore "io"
|
2019-11-25 17:39:11 +00:00
|
|
|
"sort"
|
|
|
|
|
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"
|
2020-11-11 15:43:28 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/trigger"
|
2020-03-03 14:21:42 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2019-11-25 17:39:11 +00:00
|
|
|
)
|
|
|
|
|
2021-05-12 20:17:03 +00:00
|
|
|
// HasTransaction errors.
|
2020-10-15 11:45:29 +00:00
|
|
|
var (
|
|
|
|
// ErrAlreadyExists is returned when transaction exists in dao.
|
|
|
|
ErrAlreadyExists = errors.New("transaction already exists")
|
|
|
|
// ErrHasConflicts is returned when transaction is in the list of conflicting
|
|
|
|
// transactions which are already in dao.
|
|
|
|
ErrHasConflicts = errors.New("transaction has conflicts")
|
|
|
|
)
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// DAO is a data access object.
|
|
|
|
type DAO interface {
|
2020-11-11 15:43:28 +00:00
|
|
|
AppendAppExecResult(aer *state.AppExecResult, buf *io.BufBinWriter) error
|
2021-02-26 11:08:48 +00:00
|
|
|
AppendNEP17Transfer(acc util.Uint160, index uint32, isNew bool, tr *state.NEP17Transfer) (bool, error)
|
2020-11-24 09:07:58 +00:00
|
|
|
DeleteBlock(h util.Uint256, buf *io.BufBinWriter) error
|
2020-12-13 15:26:35 +00:00
|
|
|
DeleteContractID(id int32) error
|
2020-06-18 10:50:30 +00:00
|
|
|
DeleteStorageItem(id int32, key []byte) error
|
2020-04-03 06:49:01 +00:00
|
|
|
GetAndDecode(entity io.Serializable, key []byte) error
|
2020-11-11 15:43:28 +00:00
|
|
|
GetAppExecResults(hash util.Uint256, trig trigger.Type) ([]state.AppExecResult, error)
|
2020-04-03 06:49:01 +00:00
|
|
|
GetBatch() *storage.MemBatch
|
2020-06-04 19:59:34 +00:00
|
|
|
GetBlock(hash util.Uint256) (*block.Block, 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)
|
|
|
|
GetHeaderHashes() ([]util.Uint256, error)
|
2021-07-25 10:48:50 +00:00
|
|
|
GetNEP17TransferInfo(acc util.Uint160) (*state.NEP17TransferInfo, error)
|
2020-11-24 08:14:25 +00:00
|
|
|
GetNEP17TransferLog(acc util.Uint160, index uint32) (*state.NEP17TransferLog, error)
|
2021-08-03 06:56:39 +00:00
|
|
|
GetStateSyncPoint() (uint32, error)
|
|
|
|
GetStateSyncCurrentBlockHeight() (uint32, error)
|
2021-03-05 14:06:54 +00:00
|
|
|
GetStorageItem(id int32, key []byte) state.StorageItem
|
2021-09-24 14:22:45 +00:00
|
|
|
GetStorageItems(id int32) ([]state.StorageItemWithKey, error)
|
|
|
|
GetStorageItemsWithPrefix(id int32, prefix []byte) ([]state.StorageItemWithKey, 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-10-15 11:45:29 +00:00
|
|
|
HasTransaction(hash util.Uint256) error
|
2020-04-03 06:49:01 +00:00
|
|
|
Persist() (int, error)
|
2020-08-31 19:11:49 +00:00
|
|
|
PutAppExecResult(aer *state.AppExecResult, buf *io.BufBinWriter) error
|
2020-12-13 15:26:35 +00:00
|
|
|
PutContractID(id int32, hash util.Uint160) error
|
2020-04-03 06:49:01 +00:00
|
|
|
PutCurrentHeader(hashAndIndex []byte) error
|
2021-07-25 10:48:50 +00:00
|
|
|
PutNEP17TransferInfo(acc util.Uint160, bs *state.NEP17TransferInfo) error
|
2020-11-24 08:14:25 +00:00
|
|
|
PutNEP17TransferLog(acc util.Uint160, index uint32, lg *state.NEP17TransferLog) error
|
2021-08-03 06:56:39 +00:00
|
|
|
PutStateSyncPoint(p uint32) error
|
|
|
|
PutStateSyncCurrentBlockHeight(h uint32) error
|
2021-03-05 14:06:54 +00:00
|
|
|
PutStorageItem(id int32, key []byte, si state.StorageItem) error
|
2020-04-03 06:49:01 +00:00
|
|
|
PutVersion(v string) error
|
2020-11-03 15:08:58 +00:00
|
|
|
Seek(id int32, prefix []byte, f func(k, v []byte))
|
2020-08-31 19:11:49 +00:00
|
|
|
StoreAsBlock(block *block.Block, buf *io.BufBinWriter) error
|
|
|
|
StoreAsCurrentBlock(block *block.Block, buf *io.BufBinWriter) error
|
|
|
|
StoreAsTransaction(tx *transaction.Transaction, index uint32, buf *io.BufBinWriter) error
|
2021-07-25 10:48:50 +00:00
|
|
|
putNEP17TransferInfo(acc util.Uint160, bs *state.NEP17TransferInfo, buf *io.BufBinWriter) error
|
2020-04-03 06:49:01 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// Simple is memCached wrapper around DB, simple DAO implementation.
|
|
|
|
type Simple struct {
|
2021-03-25 19:32:16 +00:00
|
|
|
Store *storage.MemCachedStore
|
2020-11-17 12:57:50 +00:00
|
|
|
// stateRootInHeader specifies if block header contains state root.
|
|
|
|
stateRootInHeader bool
|
2021-08-17 15:40:11 +00:00
|
|
|
// p2pSigExtensions denotes whether P2PSignatureExtensions are enabled.
|
|
|
|
p2pSigExtensions bool
|
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.
|
2021-08-17 15:40:11 +00:00
|
|
|
func NewSimple(backend storage.Store, stateRootInHeader bool, p2pSigExtensions bool) *Simple {
|
2020-05-29 14:20:00 +00:00
|
|
|
st := storage.NewMemCachedStore(backend)
|
2021-08-17 15:40:11 +00:00
|
|
|
return &Simple{Store: st, stateRootInHeader: stateRootInHeader, p2pSigExtensions: p2pSigExtensions}
|
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 {
|
2021-08-17 15:40:11 +00:00
|
|
|
d := NewSimple(dao.Store, dao.stateRootInHeader, dao.p2pSigExtensions)
|
2020-05-29 14:20:00 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
func makeContractIDKey(id int32) []byte {
|
|
|
|
key := make([]byte, 5)
|
2020-11-18 20:10:48 +00:00
|
|
|
key[0] = byte(storage.STContractID)
|
2020-12-13 15:26:35 +00:00
|
|
|
binary.LittleEndian.PutUint32(key[1:], uint32(id))
|
|
|
|
return key
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
// DeleteContractID deletes contract's id to hash mapping.
|
|
|
|
func (dao *Simple) DeleteContractID(id int32) error {
|
|
|
|
return dao.Store.Delete(makeContractIDKey(id))
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
// PutContractID adds a mapping from contract's ID to its hash.
|
|
|
|
func (dao *Simple) PutContractID(id int32, hash util.Uint160) error {
|
|
|
|
return dao.Store.Put(makeContractIDKey(id), hash.BytesBE())
|
2020-06-09 12:12:23 +00:00
|
|
|
}
|
|
|
|
|
2020-12-13 15:26:35 +00:00
|
|
|
// GetContractScriptHash retrieves contract's hash given its ID.
|
2020-07-28 13:36:47 +00:00
|
|
|
func (dao *Simple) GetContractScriptHash(id int32) (util.Uint160, error) {
|
2020-12-13 15:26:35 +00:00
|
|
|
var data = new(util.Uint160)
|
|
|
|
if err := dao.GetAndDecode(data, makeContractIDKey(id)); err != nil {
|
2020-07-28 13:36:47 +00:00
|
|
|
return *data, err
|
|
|
|
}
|
|
|
|
return *data, nil
|
|
|
|
}
|
|
|
|
|
2021-07-25 10:48:50 +00:00
|
|
|
// -- start nep17 transfer info.
|
2020-03-11 15:22:46 +00:00
|
|
|
|
2021-07-25 10:48:50 +00:00
|
|
|
// GetNEP17TransferInfo retrieves nep17 transfer info from the cache.
|
|
|
|
func (dao *Simple) GetNEP17TransferInfo(acc util.Uint160) (*state.NEP17TransferInfo, error) {
|
|
|
|
key := storage.AppendPrefix(storage.STNEP17TransferInfo, acc.BytesBE())
|
|
|
|
bs := state.NewNEP17TransferInfo()
|
2020-03-11 15:22:46 +00:00
|
|
|
err := dao.GetAndDecode(bs, key)
|
|
|
|
if err != nil && err != storage.ErrKeyNotFound {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return bs, nil
|
|
|
|
}
|
|
|
|
|
2021-07-25 10:48:50 +00:00
|
|
|
// PutNEP17TransferInfo saves nep17 transfer info in the cache.
|
|
|
|
func (dao *Simple) PutNEP17TransferInfo(acc util.Uint160, bs *state.NEP17TransferInfo) error {
|
|
|
|
return dao.putNEP17TransferInfo(acc, bs, io.NewBufBinWriter())
|
2020-03-17 09:06:46 +00:00
|
|
|
}
|
|
|
|
|
2021-07-25 10:48:50 +00:00
|
|
|
func (dao *Simple) putNEP17TransferInfo(acc util.Uint160, bs *state.NEP17TransferInfo, buf *io.BufBinWriter) error {
|
|
|
|
key := storage.AppendPrefix(storage.STNEP17TransferInfo, acc.BytesBE())
|
2020-03-17 09:06:46 +00:00
|
|
|
return dao.putWithBuffer(bs, key, buf)
|
2020-03-11 15:22:46 +00:00
|
|
|
}
|
|
|
|
|
2021-07-25 10:48:50 +00:00
|
|
|
// -- end nep17 transfer info.
|
2020-03-11 15:22:46 +00:00
|
|
|
|
2020-03-05 14:11:58 +00:00
|
|
|
// -- start transfer log.
|
|
|
|
|
2020-11-24 08:14:25 +00:00
|
|
|
func getNEP17TransferLogKey(acc util.Uint160, index uint32) []byte {
|
2020-03-12 09:43:21 +00:00
|
|
|
key := make([]byte, 1+util.Uint160Size+4)
|
2020-11-24 08:14:25 +00:00
|
|
|
key[0] = byte(storage.STNEP17Transfers)
|
2020-03-12 09:43:21 +00:00
|
|
|
copy(key[1:], acc.BytesBE())
|
|
|
|
binary.LittleEndian.PutUint32(key[util.Uint160Size:], index)
|
|
|
|
return key
|
|
|
|
}
|
|
|
|
|
2020-11-24 08:14:25 +00:00
|
|
|
// GetNEP17TransferLog retrieves transfer log from the cache.
|
|
|
|
func (dao *Simple) GetNEP17TransferLog(acc util.Uint160, index uint32) (*state.NEP17TransferLog, error) {
|
|
|
|
key := getNEP17TransferLogKey(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 {
|
2020-11-24 08:14:25 +00:00
|
|
|
return new(state.NEP17TransferLog), nil
|
2020-03-05 12:16:03 +00:00
|
|
|
}
|
2020-03-05 14:11:58 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2020-11-24 08:14:25 +00:00
|
|
|
return &state.NEP17TransferLog{Raw: value}, nil
|
2020-03-05 14:11:58 +00:00
|
|
|
}
|
|
|
|
|
2020-11-24 08:14:25 +00:00
|
|
|
// PutNEP17TransferLog saves given transfer log in the cache.
|
|
|
|
func (dao *Simple) PutNEP17TransferLog(acc util.Uint160, index uint32, lg *state.NEP17TransferLog) error {
|
|
|
|
key := getNEP17TransferLogKey(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
|
|
|
}
|
|
|
|
|
2020-11-24 08:14:25 +00:00
|
|
|
// AppendNEP17Transfer appends a single NEP17 transfer to a log.
|
2020-03-12 09:43:21 +00:00
|
|
|
// First return value signalizes that log size has exceeded batch size.
|
2021-02-26 11:08:48 +00:00
|
|
|
func (dao *Simple) AppendNEP17Transfer(acc util.Uint160, index uint32, isNew bool, tr *state.NEP17Transfer) (bool, error) {
|
|
|
|
var lg *state.NEP17TransferLog
|
|
|
|
if isNew {
|
|
|
|
lg = new(state.NEP17TransferLog)
|
|
|
|
} else {
|
|
|
|
var err error
|
|
|
|
lg, err = dao.GetNEP17TransferLog(acc, index)
|
|
|
|
if err != nil {
|
2020-03-12 09:43:21 +00:00
|
|
|
return false, err
|
2020-03-05 14:11:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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-11-24 08:14:25 +00:00
|
|
|
return lg.Size() >= state.NEP17TransferBatchSize, dao.PutNEP17TransferLog(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.
|
|
|
|
|
2020-11-11 15:43:28 +00:00
|
|
|
// GetAppExecResults gets application execution results with the specified trigger from the
|
2019-11-25 17:39:11 +00:00
|
|
|
// given store.
|
2020-11-11 15:43:28 +00:00
|
|
|
func (dao *Simple) GetAppExecResults(hash util.Uint256, trig trigger.Type) ([]state.AppExecResult, error) {
|
2019-11-25 17:39:11 +00:00
|
|
|
key := storage.AppendPrefix(storage.STNotification, hash.BytesBE())
|
2020-11-11 15:43:28 +00:00
|
|
|
aers, err := dao.Store.Get(key)
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-11-11 15:43:28 +00:00
|
|
|
r := io.NewBinReaderFromBuf(aers)
|
|
|
|
result := make([]state.AppExecResult, 0, 2)
|
|
|
|
for {
|
|
|
|
aer := new(state.AppExecResult)
|
|
|
|
aer.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
if r.Err == iocore.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
return nil, r.Err
|
|
|
|
}
|
|
|
|
if aer.Trigger&trig != 0 {
|
|
|
|
result = append(result, *aer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AppendAppExecResult appends given application execution result to the existing
|
|
|
|
// set of execution results for the corresponding hash. It can reuse given buffer
|
|
|
|
// for the purpose of value serialization.
|
|
|
|
func (dao *Simple) AppendAppExecResult(aer *state.AppExecResult, buf *io.BufBinWriter) error {
|
|
|
|
key := storage.AppendPrefix(storage.STNotification, aer.Container.BytesBE())
|
|
|
|
aers, err := dao.Store.Get(key)
|
|
|
|
if err != nil && err != storage.ErrKeyNotFound {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(aers) == 0 {
|
|
|
|
return dao.PutAppExecResult(aer, buf)
|
|
|
|
}
|
|
|
|
if buf == nil {
|
|
|
|
buf = io.NewBufBinWriter()
|
|
|
|
}
|
|
|
|
aer.EncodeBinary(buf.BinWriter)
|
|
|
|
if buf.Err != nil {
|
|
|
|
return buf.Err
|
|
|
|
}
|
|
|
|
aers = append(aers, buf.Bytes()...)
|
|
|
|
return dao.Store.Put(key, aers)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PutAppExecResult puts given application execution result into the
|
2020-08-31 19:11:49 +00:00
|
|
|
// given store. It can reuse given buffer for the purpose of value serialization.
|
|
|
|
func (dao *Simple) PutAppExecResult(aer *state.AppExecResult, buf *io.BufBinWriter) error {
|
2020-11-11 15:43:28 +00:00
|
|
|
key := storage.AppendPrefix(storage.STNotification, aer.Container.BytesBE())
|
2020-08-31 19:11:49 +00:00
|
|
|
if buf == nil {
|
|
|
|
return dao.Put(aer, key)
|
|
|
|
}
|
|
|
|
return dao.putWithBuffer(aer, key, buf)
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -- end notification event.
|
|
|
|
|
|
|
|
// -- start storage item.
|
|
|
|
|
2020-04-07 09:41:12 +00:00
|
|
|
// GetStorageItem returns StorageItem if it exists in the given store.
|
2021-03-05 14:06:54 +00:00
|
|
|
func (dao *Simple) GetStorageItem(id int32, key []byte) state.StorageItem {
|
2020-06-18 10:50:30 +00:00
|
|
|
b, err := dao.Store.Get(makeStorageItemKey(id, key))
|
2019-11-25 17:39:11 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-03-09 09:09:44 +00:00
|
|
|
return b
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
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.
|
2021-03-05 14:06:54 +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)
|
2021-03-09 09:09:44 +00:00
|
|
|
return dao.Store.Put(stKey, si)
|
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)
|
|
|
|
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.
|
2021-09-24 14:22:45 +00:00
|
|
|
func (dao *Simple) GetStorageItems(id int32) ([]state.StorageItemWithKey, error) {
|
2020-06-18 10:50:30 +00:00
|
|
|
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.
|
2021-09-24 14:22:45 +00:00
|
|
|
func (dao *Simple) GetStorageItemsWithPrefix(id int32, prefix []byte) ([]state.StorageItemWithKey, error) {
|
|
|
|
var siArr []state.StorageItemWithKey
|
2019-11-25 17:39:11 +00:00
|
|
|
|
2021-09-24 14:22:45 +00:00
|
|
|
saveToArr := func(k, v []byte) {
|
2019-11-25 17:39:11 +00:00
|
|
|
// Cut prefix and hash.
|
2021-09-24 15:44:42 +00:00
|
|
|
// #1468, but don't need to copy here, because it is done by Store.
|
2021-09-24 14:22:45 +00:00
|
|
|
siArr = append(siArr, state.StorageItemWithKey{
|
2021-09-24 15:44:42 +00:00
|
|
|
Key: k,
|
|
|
|
Item: state.StorageItem(v),
|
2021-09-24 14:22:45 +00:00
|
|
|
})
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
2021-09-24 14:22:45 +00:00
|
|
|
dao.Seek(id, prefix, saveToArr)
|
|
|
|
return siArr, nil
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-03 15:08:58 +00:00
|
|
|
// Seek executes f for all items with a given prefix.
|
2021-09-24 14:22:45 +00:00
|
|
|
// If key is to be used outside of f, they may not be copied.
|
2020-11-03 15:08:58 +00:00
|
|
|
func (dao *Simple) Seek(id int32, prefix []byte, f func(k, v []byte)) {
|
|
|
|
lookupKey := makeStorageItemKey(id, nil)
|
|
|
|
if prefix != nil {
|
|
|
|
lookupKey = append(lookupKey, prefix...)
|
|
|
|
}
|
|
|
|
dao.Store.Seek(lookupKey, func(k, v []byte) {
|
|
|
|
f(k[len(lookupKey):], v)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-11-25 17:39:11 +00:00
|
|
|
// 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) {
|
2020-11-25 10:59:30 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataBlock, hash.BytesBE())
|
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
|
|
|
|
2021-03-25 18:46:52 +00:00
|
|
|
block, err := block.NewBlockFromTrimmedBytes(dao.stateRootInHeader, 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
|
|
|
|
}
|
|
|
|
|
2021-08-03 06:56:39 +00:00
|
|
|
// GetStateSyncPoint returns current state synchronisation point P.
|
|
|
|
func (dao *Simple) GetStateSyncPoint() (uint32, error) {
|
|
|
|
b, err := dao.Store.Get(storage.SYSStateSyncPoint.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return binary.LittleEndian.Uint32(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStateSyncCurrentBlockHeight returns current block height stored during state
|
|
|
|
// synchronisation process.
|
|
|
|
func (dao *Simple) GetStateSyncCurrentBlockHeight() (uint32, error) {
|
|
|
|
b, err := dao.Store.Get(storage.SYSStateSyncCurrentBlockHeight.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return binary.LittleEndian.Uint32(b), nil
|
|
|
|
}
|
|
|
|
|
2019-11-25 17:39:11 +00:00
|
|
|
// 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
|
2020-10-15 11:45:29 +00:00
|
|
|
// if it exists in the store. It does not return dummy transactions.
|
2020-04-07 09:41:12 +00:00
|
|
|
func (dao *Simple) GetTransaction(hash util.Uint256) (*transaction.Transaction, uint32, error) {
|
2020-11-25 10:59:30 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataTransaction, hash.BytesBE())
|
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
|
|
|
|
}
|
2020-10-15 11:45:29 +00:00
|
|
|
if len(b) < 5 {
|
|
|
|
return nil, 0, errors.New("bad transaction bytes")
|
|
|
|
}
|
|
|
|
if b[4] == transaction.DummyVersion {
|
|
|
|
return nil, 0, storage.ErrKeyNotFound
|
|
|
|
}
|
2019-11-25 17:39:11 +00:00
|
|
|
r := io.NewBinReaderFromBuf(b)
|
|
|
|
|
2019-12-12 15:52:23 +00:00
|
|
|
var height = r.ReadU32LE()
|
2019-11-25 17:39:11 +00:00
|
|
|
|
2021-03-25 16:18:01 +00:00
|
|
|
tx := &transaction.Transaction{}
|
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
|
|
|
}
|
|
|
|
|
2021-08-03 06:56:39 +00:00
|
|
|
// PutStateSyncPoint stores current state synchronisation point P.
|
|
|
|
func (dao *Simple) PutStateSyncPoint(p uint32) error {
|
|
|
|
buf := make([]byte, 4)
|
|
|
|
binary.LittleEndian.PutUint32(buf, p)
|
|
|
|
return dao.Store.Put(storage.SYSStateSyncPoint.Bytes(), buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
// PutStateSyncCurrentBlockHeight stores current block height during state synchronisation process.
|
|
|
|
func (dao *Simple) PutStateSyncCurrentBlockHeight(h uint32) error {
|
|
|
|
buf := make([]byte, 4)
|
|
|
|
binary.LittleEndian.PutUint32(buf, h)
|
|
|
|
return dao.Store.Put(storage.SYSStateSyncCurrentBlockHeight.Bytes(), buf)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-10-15 11:45:29 +00:00
|
|
|
// HasTransaction returns nil if the given store does not contain the given
|
|
|
|
// Transaction hash. It returns an error in case if transaction is in chain
|
|
|
|
// or in the list of conflicting transactions.
|
|
|
|
func (dao *Simple) HasTransaction(hash util.Uint256) error {
|
2020-11-25 10:59:30 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataTransaction, hash.BytesBE())
|
2020-10-15 11:45:29 +00:00
|
|
|
bytes, err := dao.Store.Get(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
2020-10-15 11:45:29 +00:00
|
|
|
|
|
|
|
if len(bytes) < 5 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if bytes[4] == transaction.DummyVersion {
|
|
|
|
return ErrHasConflicts
|
|
|
|
}
|
|
|
|
return ErrAlreadyExists
|
2019-11-25 17:39:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-31 19:11:49 +00:00
|
|
|
// StoreAsBlock stores given block as DataBlock. It can reuse given buffer for
|
|
|
|
// the purpose of value serialization.
|
|
|
|
func (dao *Simple) StoreAsBlock(block *block.Block, buf *io.BufBinWriter) error {
|
2019-11-25 17:39:11 +00:00
|
|
|
var (
|
2020-11-25 10:59:30 +00:00
|
|
|
key = storage.AppendPrefix(storage.DataBlock, block.Hash().BytesBE())
|
2019-11-25 17:39:11 +00:00
|
|
|
)
|
2020-08-31 19:11:49 +00:00
|
|
|
if buf == nil {
|
|
|
|
buf = io.NewBufBinWriter()
|
|
|
|
}
|
2019-11-25 17:39:11 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-11-24 09:07:58 +00:00
|
|
|
// DeleteBlock removes block from dao.
|
|
|
|
func (dao *Simple) DeleteBlock(h util.Uint256, w *io.BufBinWriter) error {
|
|
|
|
batch := dao.Store.Batch()
|
|
|
|
key := make([]byte, util.Uint256Size+1)
|
|
|
|
key[0] = byte(storage.DataBlock)
|
|
|
|
copy(key[1:], h.BytesBE())
|
|
|
|
bs, err := dao.Store.Get(key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-03-25 18:46:52 +00:00
|
|
|
b, err := block.NewBlockFromTrimmedBytes(dao.stateRootInHeader, bs)
|
2020-11-24 09:07:58 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if w == nil {
|
|
|
|
w = io.NewBufBinWriter()
|
|
|
|
}
|
2021-03-01 13:44:47 +00:00
|
|
|
b.Header.EncodeBinary(w.BinWriter)
|
|
|
|
w.BinWriter.WriteB(0)
|
2020-11-24 09:07:58 +00:00
|
|
|
if w.Err != nil {
|
|
|
|
return w.Err
|
|
|
|
}
|
|
|
|
batch.Put(key, w.Bytes())
|
|
|
|
|
|
|
|
key[0] = byte(storage.DataTransaction)
|
|
|
|
for _, tx := range b.Transactions {
|
|
|
|
copy(key[1:], tx.Hash().BytesBE())
|
|
|
|
batch.Delete(key)
|
2021-08-17 15:40:11 +00:00
|
|
|
if dao.p2pSigExtensions {
|
|
|
|
for _, attr := range tx.GetAttributes(transaction.ConflictsT) {
|
|
|
|
hash := attr.Value.(*transaction.Conflicts).Hash
|
|
|
|
copy(key[1:], hash.BytesBE())
|
|
|
|
batch.Delete(key)
|
|
|
|
}
|
|
|
|
}
|
2020-11-24 09:07:58 +00:00
|
|
|
key[0] = byte(storage.STNotification)
|
|
|
|
batch.Delete(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
key[0] = byte(storage.STNotification)
|
|
|
|
copy(key[1:], h.BytesBE())
|
|
|
|
batch.Delete(key)
|
|
|
|
|
|
|
|
return dao.Store.PutBatch(batch)
|
|
|
|
}
|
|
|
|
|
2020-08-31 19:11:49 +00:00
|
|
|
// StoreAsCurrentBlock stores a hash of the given block with prefix
|
|
|
|
// SYSCurrentBlock. It can reuse given buffer for the purpose of value
|
|
|
|
// serialization.
|
|
|
|
func (dao *Simple) StoreAsCurrentBlock(block *block.Block, buf *io.BufBinWriter) error {
|
|
|
|
if buf == nil {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-08-17 15:33:09 +00:00
|
|
|
// StoreAsTransaction stores given TX as DataTransaction. It also stores transactions
|
|
|
|
// given tx has conflicts with as DataTransaction with dummy version. It can reuse given
|
2020-08-31 19:11:49 +00:00
|
|
|
// buffer for the purpose of value serialization.
|
|
|
|
func (dao *Simple) StoreAsTransaction(tx *transaction.Transaction, index uint32, buf *io.BufBinWriter) error {
|
2020-11-25 10:59:30 +00:00
|
|
|
key := storage.AppendPrefix(storage.DataTransaction, tx.Hash().BytesBE())
|
2020-08-31 19:11:49 +00:00
|
|
|
if buf == nil {
|
|
|
|
buf = io.NewBufBinWriter()
|
|
|
|
}
|
2019-12-12 15:52:23 +00:00
|
|
|
buf.WriteU32LE(index)
|
2021-08-17 15:33:09 +00:00
|
|
|
tx.EncodeBinary(buf.BinWriter)
|
2019-11-25 17:39:11 +00:00
|
|
|
if buf.Err != nil {
|
|
|
|
return buf.Err
|
|
|
|
}
|
2021-08-17 15:33:09 +00:00
|
|
|
err := dao.Store.Put(key, buf.Bytes())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2021-08-02 11:20:33 +00:00
|
|
|
}
|
2021-08-17 15:33:09 +00:00
|
|
|
if dao.p2pSigExtensions {
|
|
|
|
var value []byte
|
|
|
|
for _, attr := range tx.GetAttributes(transaction.ConflictsT) {
|
|
|
|
hash := attr.Value.(*transaction.Conflicts).Hash
|
|
|
|
copy(key[1:], hash.BytesBE())
|
|
|
|
if value == nil {
|
|
|
|
buf.Reset()
|
|
|
|
buf.WriteU32LE(index)
|
|
|
|
buf.BinWriter.WriteB(transaction.DummyVersion)
|
|
|
|
value = buf.Bytes()
|
|
|
|
}
|
|
|
|
err = dao.Store.Put(key, value)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to store conflicting transaction %s for transaction %s: %w", hash.StringLE(), tx.Hash().StringLE(), err)
|
|
|
|
}
|
2021-08-02 11:20:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2020-12-24 16:32:27 +00:00
|
|
|
|
2021-01-29 14:33:24 +00:00
|
|
|
// GetMPTBatch storage changes to be applied to MPT.
|
|
|
|
func (dao *Simple) GetMPTBatch() mpt.Batch {
|
2020-12-26 10:27:59 +00:00
|
|
|
var b mpt.Batch
|
2020-12-24 16:32:27 +00:00
|
|
|
dao.Store.MemoryStore.SeekAll([]byte{byte(storage.STStorage)}, func(k, v []byte) {
|
2020-12-26 10:27:59 +00:00
|
|
|
b.Add(k[1:], v)
|
2020-12-24 16:32:27 +00:00
|
|
|
})
|
2021-01-29 14:33:24 +00:00
|
|
|
return b
|
2020-12-24 16:32:27 +00:00
|
|
|
}
|