2020-08-21 12:10:40 +00:00
|
|
|
// Copyright 2020 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 (
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ReadPreimage retrieves a single preimage of the provided hash.
|
|
|
|
func ReadPreimage(db ethdb.KeyValueReader, hash common.Hash) []byte {
|
|
|
|
data, _ := db.Get(preimageKey(hash))
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2023-02-06 15:28:40 +00:00
|
|
|
// WritePreimages writes the provided set of preimages to the database.
|
|
|
|
func WritePreimages(db ethdb.KeyValueWriter, preimages map[common.Hash][]byte) {
|
|
|
|
for hash, preimage := range preimages {
|
|
|
|
if err := db.Put(preimageKey(hash), preimage); err != nil {
|
|
|
|
log.Crit("Failed to store trie preimage", "err", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
preimageCounter.Inc(int64(len(preimages)))
|
|
|
|
preimageHitCounter.Inc(int64(len(preimages)))
|
|
|
|
}
|
|
|
|
|
2020-08-21 12:10:40 +00:00
|
|
|
// ReadCode retrieves the contract code of the provided code hash.
|
|
|
|
func ReadCode(db ethdb.KeyValueReader, hash common.Hash) []byte {
|
2022-01-25 09:51:18 +00:00
|
|
|
// Try with the prefixed code scheme first, if not then try with legacy
|
|
|
|
// scheme.
|
|
|
|
data := ReadCodeWithPrefix(db, hash)
|
2020-08-21 12:10:40 +00:00
|
|
|
if len(data) != 0 {
|
|
|
|
return data
|
|
|
|
}
|
2022-03-08 23:39:34 +00:00
|
|
|
data, _ = db.Get(hash.Bytes())
|
2022-01-25 09:51:18 +00:00
|
|
|
return data
|
2020-08-21 12:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReadCodeWithPrefix retrieves the contract code of the provided code hash.
|
|
|
|
// The main difference between this function and ReadCode is this function
|
|
|
|
// will only check the existence with latest scheme(with prefix).
|
|
|
|
func ReadCodeWithPrefix(db ethdb.KeyValueReader, hash common.Hash) []byte {
|
|
|
|
data, _ := db.Get(codeKey(hash))
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2022-03-08 23:39:34 +00:00
|
|
|
// HasCode checks if the contract code corresponding to the
|
|
|
|
// provided code hash is present in the db.
|
|
|
|
func HasCode(db ethdb.KeyValueReader, hash common.Hash) bool {
|
|
|
|
// Try with the prefixed code scheme first, if not then try with legacy
|
|
|
|
// scheme.
|
|
|
|
if ok := HasCodeWithPrefix(db, hash); ok {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
ok, _ := db.Has(hash.Bytes())
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2021-12-15 15:16:45 +00:00
|
|
|
// HasCodeWithPrefix checks if the contract code corresponding to the
|
|
|
|
// provided code hash is present in the db. This function will only check
|
|
|
|
// presence using the prefix-scheme.
|
|
|
|
func HasCodeWithPrefix(db ethdb.KeyValueReader, hash common.Hash) bool {
|
|
|
|
ok, _ := db.Has(codeKey(hash))
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2022-03-08 23:39:34 +00:00
|
|
|
// WriteCode writes the provided contract code database.
|
|
|
|
func WriteCode(db ethdb.KeyValueWriter, hash common.Hash, code []byte) {
|
|
|
|
if err := db.Put(codeKey(hash), code); err != nil {
|
|
|
|
log.Crit("Failed to store contract code", "err", err)
|
|
|
|
}
|
2021-12-15 15:16:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-08 23:39:34 +00:00
|
|
|
// DeleteCode deletes the specified contract code from the database.
|
|
|
|
func DeleteCode(db ethdb.KeyValueWriter, hash common.Hash) {
|
|
|
|
if err := db.Delete(codeKey(hash)); err != nil {
|
|
|
|
log.Crit("Failed to delete contract code", "err", err)
|
|
|
|
}
|
|
|
|
}
|