All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fitnesse.slim.instructions.Instruction Maven / Gradle / Ivy

There is a newer version: 20241026
Show newest version
package fitnesse.slim.instructions;

import fitnesse.slim.SlimException;
import fitnesse.slim.instructions.SystemExitSecurityManager.SystemExitException;

public abstract class Instruction {
  public static final Instruction NOOP_INSTRUCTION = new Instruction("NOOP") {
    @Override
    protected InstructionResult executeInternal(InstructionExecutor executor) throws SlimException {
      return new InstructionResult.Void(getId());
    }
  };

  private String id;

  public Instruction(String id) {
    this.id = id;
  }

  public String getId() {
    return this.id;
  }

  public final InstructionResult execute(InstructionExecutor executor) {
    
    InstructionResult result;
    try {
      SystemExitSecurityManager.activateIfWanted();
      result = executeInternal(executor);
    } catch (SlimException e) {
      result = new InstructionResult.Error(getId(), e);
    } catch (SystemExitException e) {
      result = new InstructionResult.Error(getId(), e);
    } finally {
      SystemExitSecurityManager.restoreOriginalSecurityManager();
    }
    return result;
  }

  protected abstract InstructionResult executeInternal(InstructionExecutor executor) throws SlimException;

  @Override
  public String toString() {
    return "Instruction{id='" + id + "'}";
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (!(o instanceof Instruction)) return false;

    Instruction that = (Instruction) o;

    return id.equals(that.id);
  }

  @Override
  public int hashCode() {
    return id.hashCode();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy