org.ethereum.vm.trace.ProgramTrace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ethereumj-core Show documentation
Show all versions of ethereumj-core Show documentation
Java implementation of the Ethereum protocol adapted to use for Hedera Smart Contract Service
The newest version!
/*
* Copyright (c) [2016] [ ]
* This file is part of the ethereumJ library.
*
* The ethereumJ 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 ethereumJ 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 ethereumJ library. If not, see .
*/
package org.ethereum.vm.trace;
import org.ethereum.config.SystemProperties;
import org.ethereum.vm.DataWord;
import org.ethereum.vm.OpCode;
import org.ethereum.vm.program.invoke.ProgramInvoke;
import org.spongycastle.util.encoders.Hex;
import java.util.ArrayList;
import java.util.List;
import static java.lang.String.format;
import static org.ethereum.util.ByteUtil.toHexString;
import static org.ethereum.vm.trace.Serializers.serializeFieldsOnly;
public class ProgramTrace {
private List ops = new ArrayList<>();
private String result;
private String error;
private String contractAddress;
public ProgramTrace() {
this(null, null);
}
public ProgramTrace(SystemProperties config, ProgramInvoke programInvoke) {
if (programInvoke != null && config.vmTrace()) {
contractAddress = Hex.toHexString(programInvoke.getOwnerAddress().getLast20Bytes());
}
}
public List getOps() {
return ops;
}
public void setOps(List ops) {
this.ops = ops;
}
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
public String getContractAddress() {
return contractAddress;
}
public void setContractAddress(String contractAddress) {
this.contractAddress = contractAddress;
}
public ProgramTrace result(byte[] result) {
setResult(toHexString(result));
return this;
}
public ProgramTrace error(Exception error) {
setError(error == null ? "" : format("%s: %s", error.getClass(), error.getMessage()));
return this;
}
public Op addOp(byte code, int pc, int deep, DataWord gas, OpActions actions) {
Op op = new Op();
op.setActions(actions);
op.setCode(OpCode.code(code));
op.setDeep(deep);
op.setGas(gas.value());
op.setPc(pc);
ops.add(op);
return op;
}
/**
* Used for merging sub calls execution.
*/
public void merge(ProgramTrace programTrace) {
this.ops.addAll(programTrace.ops);
}
public String asJsonString(boolean formatted) {
return serializeFieldsOnly(this, formatted);
}
@Override
public String toString() {
return asJsonString(true);
}
}