2023-02-23 22:50:30 +00:00
|
|
|
package ipld_eth_statedb
|
|
|
|
|
|
|
|
import (
|
2023-02-27 22:17:24 +00:00
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/fastcache"
|
2023-02-23 22:50:30 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2023-02-28 17:34:21 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2023-02-27 21:51:04 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2023-02-27 22:17:24 +00:00
|
|
|
"github.com/ethereum/go-ethereum/statediff/indexer/ipld"
|
2023-02-27 21:51:04 +00:00
|
|
|
"github.com/ethereum/go-ethereum/trie"
|
2023-02-27 22:17:24 +00:00
|
|
|
lru "github.com/hashicorp/golang-lru"
|
2023-02-23 22:50:30 +00:00
|
|
|
"github.com/jackc/pgx/pgxpool"
|
|
|
|
)
|
|
|
|
|
2023-02-27 22:17:24 +00:00
|
|
|
const (
|
|
|
|
// Number of codehash->size associations to keep.
|
|
|
|
codeSizeCacheSize = 100000
|
|
|
|
|
|
|
|
// Cache size granted for caching clean code.
|
|
|
|
codeCacheSize = 64 * 1024 * 1024
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// not found error
|
|
|
|
errNotFound = errors.New("not found")
|
|
|
|
)
|
|
|
|
|
2023-02-28 17:34:21 +00:00
|
|
|
// Database interface is a union of the subset of the geth state.Database interface required
|
|
|
|
// to support the vm.StateDB implementation as well as methods specific to this Postgres based implementation
|
2023-02-23 22:50:30 +00:00
|
|
|
type Database interface {
|
|
|
|
ContractCode(addrHash common.Hash, codeHash common.Hash) ([]byte, error)
|
|
|
|
ContractCodeSize(addrHash common.Hash, codeHash common.Hash) (int, error)
|
2023-02-28 17:34:21 +00:00
|
|
|
StateAccount(address common.Address) (*types.StateAccount, error)
|
|
|
|
StorageSlot(addressHash, slotHash common.Hash) ([]byte, error)
|
2023-02-23 22:50:30 +00:00
|
|
|
}
|
|
|
|
|
2023-02-28 17:34:21 +00:00
|
|
|
var _ Database = &stateDatabase{}
|
|
|
|
|
2023-02-27 22:17:24 +00:00
|
|
|
type stateDatabase struct {
|
2023-02-28 17:34:21 +00:00
|
|
|
pgdb *pgxpool.Pool
|
|
|
|
trieDB *trie.Database
|
2023-02-27 22:17:24 +00:00
|
|
|
codeSizeCache *lru.Cache
|
|
|
|
codeCache *fastcache.Cache
|
2023-02-23 22:50:30 +00:00
|
|
|
}
|
|
|
|
|
2023-02-28 17:34:21 +00:00
|
|
|
func NewStateDatabase(pgdb *pgxpool.Pool, ethdb ethdb.Database, config *trie.Config) (*stateDatabase, error) {
|
2023-02-27 22:17:24 +00:00
|
|
|
csc, _ := lru.New(codeSizeCacheSize)
|
|
|
|
return &stateDatabase{
|
2023-02-28 17:34:21 +00:00
|
|
|
pgdb: pgdb,
|
2023-02-27 22:17:24 +00:00
|
|
|
trieDB: trie.NewDatabaseWithConfig(ethdb, config),
|
|
|
|
codeSizeCache: csc,
|
|
|
|
codeCache: fastcache.New(codeCacheSize),
|
|
|
|
}, nil
|
|
|
|
}
|
2023-02-27 21:51:04 +00:00
|
|
|
|
2023-02-27 22:17:24 +00:00
|
|
|
func (sd *stateDatabase) ContractCode(_, codeHash common.Hash) ([]byte, error) {
|
|
|
|
if code := sd.codeCache.Get(nil, codeHash.Bytes()); len(code) > 0 {
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
cid := ipld.Keccak256ToCid(ipld.RawBinary, codeHash.Bytes())
|
|
|
|
code := make([]byte, 0)
|
|
|
|
if err := sd.pgdb.QueryRow(context.Background(), GetContractCodePgStr, cid).Scan(&code); err != nil {
|
|
|
|
return nil, errNotFound
|
|
|
|
}
|
|
|
|
if len(code) > 0 {
|
|
|
|
sd.codeCache.Set(codeHash.Bytes(), code)
|
|
|
|
sd.codeSizeCache.Add(codeHash, len(code))
|
|
|
|
return code, nil
|
|
|
|
}
|
|
|
|
return nil, errNotFound
|
2023-02-23 22:50:30 +00:00
|
|
|
}
|
|
|
|
|
2023-02-27 22:17:24 +00:00
|
|
|
func (sd *stateDatabase) ContractCodeSize(_, codeHash common.Hash) (int, error) {
|
|
|
|
if cached, ok := sd.codeSizeCache.Get(codeHash); ok {
|
|
|
|
return cached.(int), nil
|
|
|
|
}
|
|
|
|
code, err := sd.ContractCode(common.Hash{}, codeHash)
|
|
|
|
return len(code), err
|
2023-02-23 22:50:30 +00:00
|
|
|
}
|
|
|
|
|
2023-02-28 17:34:21 +00:00
|
|
|
func (sd *stateDatabase) StateAccount(address common.Address) (*types.StateAccount, error) {
|
|
|
|
panic("implement me")
|
2023-02-23 22:50:30 +00:00
|
|
|
}
|
|
|
|
|
2023-02-28 17:34:21 +00:00
|
|
|
func (sd *stateDatabase) StorageSlot(addressHash, slotHash common.Hash) ([]byte, error) {
|
|
|
|
panic("implement me")
|
2023-02-23 22:50:30 +00:00
|
|
|
}
|