erigon-pulse/core/rawdb/accessors_indexes.go

161 lines
5.5 KiB
Go
Raw Normal View History

// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package rawdb
import (
"math/big"
2021-07-29 11:53:13 +00:00
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/core/types"
2021-07-29 10:23:23 +00:00
"github.com/ledgerwatch/log/v3"
)
// TxLookupEntry is a positional metadata to help looking up the data content of
// a transaction or receipt given only its hash.
type TxLookupEntry struct {
BlockHash common.Hash
BlockIndex uint64
Index uint64
}
// ReadTxLookupEntry retrieves the positional metadata associated with a transaction
// hash to allow retrieving the transaction or receipt by hash.
func ReadTxLookupEntry(db kv.Getter, txnHash common.Hash) (*uint64, error) {
data, err := db.GetOne(kv.TxLookup, txnHash.Bytes())
if err != nil {
return nil, err
}
if len(data) == 0 {
return nil, nil
}
number := new(big.Int).SetBytes(data).Uint64()
return &number, nil
}
// WriteTxLookupEntries stores a positional metadata for every transaction from
// a block, enabling hash based transaction and receipt lookups.
func WriteTxLookupEntries(db kv.Putter, block *types.Block) {
for _, tx := range block.Transactions() {
data := block.Number().Bytes()
if err := db.Put(kv.TxLookup, tx.Hash().Bytes(), data); err != nil {
log.Crit("Failed to store transaction lookup entry", "err", err)
}
}
}
// DeleteTxLookupEntry removes all transaction data associated with a hash.
func DeleteTxLookupEntry(db kv.Deleter, hash common.Hash) error {
return db.Delete(kv.TxLookup, hash.Bytes(), nil)
}
// ReadTransactionByHash retrieves a specific transaction from the database, along with
// its added positional metadata.
func ReadTransactionByHash(db kv.Tx, hash common.Hash) (types.Transaction, common.Hash, uint64, uint64, error) {
blockNumber, err := ReadTxLookupEntry(db, hash)
if err != nil {
return nil, common.Hash{}, 0, 0, err
}
if blockNumber == nil {
return nil, common.Hash{}, 0, 0, nil
}
blockHash, err := ReadCanonicalHash(db, *blockNumber)
if err != nil {
return nil, common.Hash{}, 0, 0, err
}
if blockHash == (common.Hash{}) {
return nil, common.Hash{}, 0, 0, nil
}
body := ReadCanonicalBodyWithTransactions(db, blockHash, *blockNumber)
if body == nil {
log.Error("Transaction referenced missing", "number", blockNumber, "hash", blockHash)
return nil, common.Hash{}, 0, 0, nil
}
senders, err1 := ReadSenders(db, blockHash, *blockNumber)
if err1 != nil {
return nil, common.Hash{}, 0, 0, err1
}
body.SendersToTxs(senders)
for txIndex, tx := range body.Transactions {
if tx.Hash() == hash {
return tx, blockHash, *blockNumber, uint64(txIndex), nil
}
}
log.Error("Transaction not found", "number", blockNumber, "hash", blockHash, "txhash", hash)
return nil, common.Hash{}, 0, 0, nil
}
// ReadTransaction retrieves a specific transaction from the database, along with
// its added positional metadata.
func ReadTransaction(db kv.Tx, hash common.Hash, blockNumber uint64) (types.Transaction, common.Hash, uint64, uint64, error) {
blockHash, err := ReadCanonicalHash(db, blockNumber)
if err != nil {
return nil, common.Hash{}, 0, 0, err
}
if blockHash == (common.Hash{}) {
return nil, common.Hash{}, 0, 0, nil
}
body := ReadCanonicalBodyWithTransactions(db, blockHash, blockNumber)
if body == nil {
log.Error("Transaction referenced missing", "number", blockNumber, "hash", blockHash)
return nil, common.Hash{}, 0, 0, nil
}
senders, err1 := ReadSenders(db, blockHash, blockNumber)
if err1 != nil {
return nil, common.Hash{}, 0, 0, err1
}
body.SendersToTxs(senders)
for txIndex, tx := range body.Transactions {
if tx.Hash() == hash {
return tx, blockHash, blockNumber, uint64(txIndex), nil
}
}
log.Error("Transaction not found", "number", blockNumber, "hash", blockHash, "txhash", hash)
return nil, common.Hash{}, 0, 0, nil
}
func ReadReceipt(db kv.Tx, txHash common.Hash) (*types.Receipt, common.Hash, uint64, uint64, error) {
// Retrieve the context of the receipt based on the transaction hash
blockNumber, err := ReadTxLookupEntry(db, txHash)
if err != nil {
return nil, common.Hash{}, 0, 0, err
}
if blockNumber == nil {
return nil, common.Hash{}, 0, 0, nil
}
blockHash, err := ReadCanonicalHash(db, *blockNumber)
if err != nil {
return nil, common.Hash{}, 0, 0, err
}
if blockHash == (common.Hash{}) {
return nil, common.Hash{}, 0, 0, nil
}
b, senders, err := ReadBlockWithSenders(db, blockHash, *blockNumber)
if err != nil {
return nil, common.Hash{}, 0, 0, err
}
// Read all the receipts from the block and return the one with the matching hash
receipts := ReadReceipts(db, b, senders)
for receiptIndex, receipt := range receipts {
if receipt.TxHash == txHash {
return receipt, blockHash, *blockNumber, uint64(receiptIndex), nil
}
}
log.Error("Receipt not found", "number", blockNumber, "hash", blockHash, "txhash", txHash)
return nil, common.Hash{}, 0, 0, nil
}