AbstractOperation.java
/*
* Copyright contributors to Hyperledger Besu
*
* 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.evm.operation;
import org.hyperledger.besu.evm.gascalculator.GasCalculator;
import org.apache.tuweni.bytes.Bytes;
/**
* All {@link Operation} implementations should inherit from this class to get the setting of some
* members for free.
*/
public abstract class AbstractOperation implements Operation {
static final Bytes BYTES_ONE = Bytes.of(1);
static final Bytes SUCCESS_STACK_ITEM = BYTES_ONE;
static final Bytes FAILURE_STACK_ITEM = Bytes.EMPTY;
private final int opcode;
private final String name;
private final int stackItemsConsumed;
private final int stackItemsProduced;
private final GasCalculator gasCalculator;
/**
* Instantiates a new Abstract operation.
*
* @param opcode the opcode
* @param name the name
* @param stackItemsConsumed the stack items consumed
* @param stackItemsProduced the stack items produced
* @param gasCalculator the gas calculator
*/
protected AbstractOperation(
final int opcode,
final String name,
final int stackItemsConsumed,
final int stackItemsProduced,
final GasCalculator gasCalculator) {
this.opcode = opcode & 0xff;
this.name = name;
this.stackItemsConsumed = stackItemsConsumed;
this.stackItemsProduced = stackItemsProduced;
this.gasCalculator = gasCalculator;
}
/**
* Gets Gas calculator.
*
* @return the gas calculator
*/
protected GasCalculator gasCalculator() {
return gasCalculator;
}
@Override
public int getOpcode() {
return opcode;
}
@Override
public String getName() {
return name;
}
@Override
public int getStackItemsConsumed() {
return stackItemsConsumed;
}
@Override
public int getStackItemsProduced() {
return stackItemsProduced;
}
}