Action.java

/*
 * Copyright ConsenSys AG.
 *
 * 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.api.jsonrpc.internal.results.tracing.flat;

import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL;

import org.hyperledger.besu.ethereum.api.jsonrpc.internal.processor.TransactionTrace;
import org.hyperledger.besu.ethereum.api.jsonrpc.internal.results.Quantity;
import org.hyperledger.besu.ethereum.debug.TraceFrame;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(NON_NULL)
@JsonPropertyOrder({
  "creationMethod",
  "callType",
  "from",
  "gas",
  "input",
  "to",
  "init",
  "author",
  "rewardType",
  "value",
  "address",
  "balance",
  "refundAddress",
})
public class Action {

  private final String creationMethod;
  private final String callType;
  private final String from;
  private final String gas;
  private final String input;
  private final String to;
  private final String init;
  private final String value;
  private final String address;
  private final String balance;
  private final String refundAddress;
  private final String author;
  private final String rewardType;

  private Action(
      final String creationMethod,
      final String callType,
      final String from,
      final String gas,
      final String input,
      final String to,
      final String init,
      final String value,
      final String address,
      final String balance,
      final String refundAddress,
      final String author,
      final String rewardType) {
    this.creationMethod = creationMethod;
    this.callType = callType;
    this.from = from;
    this.gas = gas;
    this.input = input;
    this.to = to;
    this.init = init;
    this.value = value;
    this.address = address;
    this.balance = balance;
    this.refundAddress = refundAddress;
    this.author = author;
    this.rewardType = rewardType;
  }

  public static Builder builder() {
    return new Builder();
  }

  public String getCreationMethod() {
    return creationMethod;
  }

  public String getCallType() {
    return callType;
  }

  public String getFrom() {
    return from;
  }

  public String getGas() {
    return gas;
  }

  public String getInput() {
    return input;
  }

  public String getTo() {
    return to;
  }

  public String getValue() {
    return value;
  }

  public String getInit() {
    return init;
  }

  public String getAddress() {
    return address;
  }

  public String getBalance() {
    return balance;
  }

  public String getRefundAddress() {
    return refundAddress;
  }

  public String getAuthor() {
    return author;
  }

  public String getRewardType() {
    return rewardType;
  }

  public static final class Builder {
    private String creationMethod;
    private String callType;
    private String from;
    private String gas;
    private String input;
    private String to;
    private String init;
    private String value;
    private String address;
    private String balance;
    private String refundAddress;
    private String author;
    private String rewardType;

    private Builder() {}

    public static Builder of(final Action action) {
      final Builder builder = new Builder();
      builder.creationMethod = action.creationMethod;
      builder.callType = action.callType;
      builder.from = action.from;
      builder.gas = action.gas;
      builder.input = action.input;
      builder.to = action.to;
      builder.init = action.init;
      builder.value = action.value;
      builder.address = action.address;
      builder.refundAddress = action.refundAddress;
      builder.balance = action.balance;
      builder.author = action.author;
      builder.rewardType = action.rewardType;
      return builder;
    }

    public static Builder from(final TransactionTrace trace) {
      final Builder builder =
          new Builder()
              .from(trace.getTransaction().getSender().toHexString())
              .value(Quantity.create(trace.getTransaction().getValue()));
      if (!trace.getTraceFrames().isEmpty()) {
        final TraceFrame traceFrame = trace.getTraceFrames().get(0);
        builder.gas(
            "0x"
                + Long.toHexString(
                    traceFrame.getGasRemaining()
                        + (traceFrame.getPrecompiledGasCost().orElse(0L))));
      }
      return builder;
    }

    public Builder creationMethod(final String creationMethod) {
      this.creationMethod = creationMethod;
      return this;
    }

    public Builder callType(final String callType) {
      this.callType = callType;
      return this;
    }

    public String getCallType() {
      return callType;
    }

    public Builder from(final String from) {
      this.from = from;
      return this;
    }

    public String getFrom() {
      return from;
    }

    public Builder gas(final String gas) {
      this.gas = gas;
      return this;
    }

    public Builder input(final String input) {
      this.input = input;
      return this;
    }

    public Builder to(final String to) {
      this.to = to;
      return this;
    }

    public Builder author(final String author) {
      this.author = author;
      return this;
    }

    public Builder rewardType(final String rewardType) {
      this.rewardType = rewardType;
      return this;
    }

    public String getTo() {
      return to;
    }

    public Builder init(final String init) {
      this.init = init;
      return this;
    }

    public Builder value(final String value) {
      this.value = value;
      return this;
    }

    public Builder address(final String address) {
      this.address = address;
      return this;
    }

    public Builder balance(final String balance) {
      this.balance = balance;
      return this;
    }

    Builder refundAddress(final String refundAddress) {
      this.refundAddress = refundAddress;
      return this;
    }

    public String getGas() {
      return gas;
    }

    public Action build() {
      return new Action(
          creationMethod,
          callType,
          from,
          gas,
          input,
          to,
          init,
          value,
          address,
          balance,
          refundAddress,
          author,
          rewardType);
    }
  }
}