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

org.petitparser.parser.primitive.FailureParser Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package org.petitparser.parser.primitive;

import org.petitparser.context.Context;
import org.petitparser.context.Result;
import org.petitparser.parser.Parser;

import java.util.Objects;

/**
 * A parser that consumes nothing and always fails.
 */
public class FailureParser extends Parser {

  /**
   * Construct a {@link FailureParser} that fails with the supplied {@code
   * message}.
   */
  public static Parser withMessage(String message) {
    return new FailureParser(message);
  }

  private final String message;

  private FailureParser(String message) {
    this.message = Objects.requireNonNull(message, "Undefined message");
  }

  @Override
  public Result parseOn(Context context) {
    return context.failure(message);
  }

  @Override
  public int fastParseOn(String buffer, int position) {
    return -1;
  }

  @Override
  protected boolean hasEqualProperties(Parser other) {
    return super.hasEqualProperties(other) &&
        Objects.equals(message, ((FailureParser) other).message);
  }

  @Override
  public FailureParser copy() {
    return new FailureParser(message);
  }

  @Override
  public String toString() {
    return super.toString() + "[" + message + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy