mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
436493350e
1. changes sentinel to use an http-like interface 2. moves hexutil, crypto/blake2b, metrics packages to erigon-lib
122 lines
3.3 KiB
Go
122 lines
3.3 KiB
Go
package jsonrpc
|
|
|
|
import (
|
|
"context"
|
|
"encoding/binary"
|
|
"fmt"
|
|
|
|
libcommon "github.com/ledgerwatch/erigon-lib/common"
|
|
"github.com/ledgerwatch/erigon-lib/common/hexutility"
|
|
"github.com/ledgerwatch/erigon-lib/common/length"
|
|
"github.com/ledgerwatch/erigon-lib/kv"
|
|
"github.com/ledgerwatch/erigon-lib/kv/order"
|
|
"github.com/ledgerwatch/erigon-lib/kv/rawdbv3"
|
|
"github.com/ledgerwatch/erigon/core/rawdb"
|
|
"github.com/ledgerwatch/erigon/turbo/rpchelper"
|
|
|
|
"github.com/ledgerwatch/erigon/rpc"
|
|
)
|
|
|
|
var latestTag = libcommon.BytesToHash([]byte("latest"))
|
|
|
|
var ErrWrongTag = fmt.Errorf("listStorageKeys wrong block tag or number: must be '%s' ('latest')", latestTag)
|
|
|
|
// ParityAPI the interface for the parity_ RPC commands
|
|
type ParityAPI interface {
|
|
ListStorageKeys(ctx context.Context, account libcommon.Address, quantity int, offset *hexutility.Bytes, blockNumber rpc.BlockNumberOrHash) ([]hexutility.Bytes, error)
|
|
}
|
|
|
|
// ParityAPIImpl data structure to store things needed for parity_ commands
|
|
type ParityAPIImpl struct {
|
|
*BaseAPI
|
|
db kv.RoDB
|
|
}
|
|
|
|
// NewParityAPIImpl returns ParityAPIImpl instance
|
|
func NewParityAPIImpl(base *BaseAPI, db kv.RoDB) *ParityAPIImpl {
|
|
return &ParityAPIImpl{
|
|
BaseAPI: base,
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
// ListStorageKeys implements parity_listStorageKeys. Returns all storage keys of the given address
|
|
func (api *ParityAPIImpl) ListStorageKeys(ctx context.Context, account libcommon.Address, quantity int, offset *hexutility.Bytes, blockNumberOrTag rpc.BlockNumberOrHash) ([]hexutility.Bytes, error) {
|
|
if err := api.checkBlockNumber(blockNumberOrTag); err != nil {
|
|
return nil, err
|
|
}
|
|
keys := make([]hexutility.Bytes, 0)
|
|
|
|
tx, err := api.db.BeginRo(ctx)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("listStorageKeys cannot open tx: %w", err)
|
|
}
|
|
defer tx.Rollback()
|
|
a, err := rpchelper.NewLatestStateReader(tx).ReadAccountData(account)
|
|
if err != nil {
|
|
return nil, err
|
|
} else if a == nil {
|
|
return nil, fmt.Errorf("acc not found")
|
|
}
|
|
|
|
if api.historyV3(tx) {
|
|
bn := rawdb.ReadCurrentBlockNumber(tx)
|
|
minTxNum, err := rawdbv3.TxNums.Min(tx, *bn)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
from := account[:]
|
|
if offset != nil {
|
|
from = append(from, *offset...)
|
|
}
|
|
to, _ := kv.NextSubtree(account[:])
|
|
r, err := tx.(kv.TemporalTx).DomainRange(kv.StorageDomain, from, to, minTxNum, order.Asc, quantity)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for r.HasNext() {
|
|
k, _, err := r.Next()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
keys = append(keys, libcommon.CopyBytes(k[20:]))
|
|
}
|
|
return keys, nil
|
|
}
|
|
b := make([]byte, 8)
|
|
binary.BigEndian.PutUint64(b, a.GetIncarnation())
|
|
seekBytes := append(account.Bytes(), b...)
|
|
|
|
c, err := tx.CursorDupSort(kv.PlainState)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer c.Close()
|
|
var v []byte
|
|
var seekVal []byte
|
|
if offset != nil {
|
|
seekVal = *offset
|
|
}
|
|
|
|
for v, err = c.SeekBothRange(seekBytes, seekVal); v != nil && len(keys) != quantity && err == nil; _, v, err = c.NextDup() {
|
|
if len(v) > length.Hash {
|
|
keys = append(keys, v[:length.Hash])
|
|
} else {
|
|
keys = append(keys, v)
|
|
}
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return keys, nil
|
|
}
|
|
|
|
func (api *ParityAPIImpl) checkBlockNumber(blockNumber rpc.BlockNumberOrHash) error {
|
|
num, isNum := blockNumber.Number()
|
|
if isNum && rpc.LatestBlockNumber == num {
|
|
return nil
|
|
}
|
|
return ErrWrongTag
|
|
}
|