ForestReferenceTestWorldState.java
/*
* Copyright Hyperledger Besu Contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.besu.ethereum.referencetests;
import org.hyperledger.besu.datatypes.Address;
import org.hyperledger.besu.ethereum.core.BlockHeader;
import org.hyperledger.besu.ethereum.storage.keyvalue.WorldStatePreimageKeyValueStorage;
import org.hyperledger.besu.ethereum.trie.forest.storage.ForestWorldStateKeyValueStorage;
import org.hyperledger.besu.ethereum.trie.forest.worldview.ForestMutableWorldState;
import org.hyperledger.besu.evm.internal.EvmConfiguration;
import org.hyperledger.besu.evm.worldstate.WorldState;
import org.hyperledger.besu.evm.worldstate.WorldUpdater;
import org.hyperledger.besu.services.kvstore.InMemoryKeyValueStorage;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonCreator;
public class ForestReferenceTestWorldState extends ForestMutableWorldState
implements ReferenceTestWorldState {
ForestReferenceTestWorldState() {
super(
new ForestWorldStateKeyValueStorage(new InMemoryKeyValueStorage()),
new WorldStatePreimageKeyValueStorage(new InMemoryKeyValueStorage()),
EvmConfiguration.DEFAULT);
}
public ForestReferenceTestWorldState(final WorldState worldState) {
super(worldState, EvmConfiguration.DEFAULT);
}
@Override
public ReferenceTestWorldState copy() {
return new ForestReferenceTestWorldState(this);
}
/**
* Executes additional validation checks that are specific to the storage format.
*
* <p>Depending on the storage format (e.g., Bonsai, etc.), this method performs additional checks
* to validate the state. This could include validating the TrieLog and rolling for Bonsai, or
* potentially other checks for other modes. This method is intended to be used before the state
* root has been validated, to ensure the integrity of other aspects of the state.
*/
@Override
public void processExtraStateStorageFormatValidation(final BlockHeader blockHeader) {
// nothing more to verify with forest
}
@JsonCreator
public static ReferenceTestWorldState create(final Map<String, AccountMock> accounts) {
final ReferenceTestWorldState worldState = new ForestReferenceTestWorldState();
final WorldUpdater updater = worldState.updater();
for (final Map.Entry<String, AccountMock> entry : accounts.entrySet()) {
ReferenceTestWorldState.insertAccount(
updater, Address.fromHexString(entry.getKey()), entry.getValue());
}
updater.commit();
return worldState;
}
}