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

org.jsonx.Error Maven / Gradle / Ivy

Go to download

The JSON/Java Binding API is designed to bind JSON documents to Java objects. More specifically, the JSON/Java Binding API provides a way for JSON objects whose structure is expressed in the JSON Schema Definition Language to be parsed and marshaled, to and from Java objects of strongly-typed classes. The JSON/Java Binding API can also be used to validate JSON documents as they are parsed from text or marshaled from Java objects against a JSD. Thus, the JSON/Java Binding API is a reference implementation of the validation and binding functionalities of the JSON Schema Definition Language.

There is a newer version: 0.4.0
Show newest version
/* Copyright (c) 2019 Jsonx
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * You should have received a copy of The MIT License (MIT) along with this
 * program. If not, see .
 */

package org.jsonx;

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;

import org.libj.util.Annotations;
import org.libj.util.Strings;

final class Error {
  static final Error NULL = new Error(null);
  static final Error LOOP = new Error("Loop detected");
  static final Error NOT_A_STRING = new Error("Is not a string");
  static final Error ILLEGAL_VALUE_NULL = new Error("Illegal value: null");

  static Error INVALID_FIELD(final Field field, final Error error) {
    return new Error("%s: %s", field, error);
  }

  static Error EXPECTED_ARRAY(final String token, final int offset) {
    return new Error(offset, "Expected ']', but got '%s'", token);
  }

  static Error CONTENT_NOT_EXPECTED(final Object content, final int offset) {
    return new Error(offset, "Content is not expected: %s", content);
  }

  static Error EXPECTED_TYPE(final String name, final String elementName, final String token, final int offset) {
    return new Error(offset, "Expected \"%s\" to be a \"%s\", but got: %s", name, elementName, token);
  }

  static Error EXPECTED_TOKEN(final String name, final String elementName, final String token, final int offset) {
    return new Error(offset, "Expected \"%s\" to be a \"%s\", but got token: \"%s\"", name, elementName, token);
  }

  static Error UNKNOWN_PROPERTY(final String propertyName, final int offset) {
    return new Error(offset, "Unknown property: \"%s\"", propertyName);
  }

  static Error RANGE_NOT_MATCHED(final Object range, final Object object, final int offset) {
    return new Error(offset, "Range %s does not match: %s", range, object);
  }

  static Error INTEGER_NOT_VALID(final Class type, final Object object, final int offset) {
    return new Error(offset, "Illegal %s .INTEGER value: %s", type, object);
  }

  static Error BOOLEAN_NOT_VALID(final String token, final int offset) {
    return new Error(offset, "Not a valid boolean token: %s", token);
  }

  static Error PROPERTY_NOT_NULLABLE(final String name, final Annotation annotation) {
    return new Error("Property \"%s\" is not nullable: %s", name, annotation);
  }

  static Error MEMBER_NOT_NULLABLE(final Annotation annotation) {
    return new Error("Member is not nullable: %s", annotation);
  }

  static Error PROPERTY_REQUIRED(final String name, final Object value) {
    return new Error("Property \"%s\" is required: %s", name, value);
  }

  static Error PATTERN_NOT_MATCHED(final String pattern, final String string, final int offset) {
    return new Error(offset, "Pattern \"%s\" does not match: \"%s\"", pattern, string);
  }

  static Error PATTERN_NOT_MATCHED_ANNOTATION(final Annotation annotation, final String string) {
    return new Error("%s: Pattern does not match: \"%s\"", annotation, string);
  }

  static Error INVALID_CONTENT_WAS_FOUND(final int index, final Annotation annotation) {
    return new Error("Invalid content was found starting with member index=%d: %s: ", index, annotation);
  }

  static Error INVALID_CONTENT_NOT_COMPLETE(final int index, final Annotation annotation) {
    return new Error("Invalid content was found starting with member index=%d: %s: Content is not complete", index, annotation);
  }

  static Error INVALID_CONTENT_IN_EMPTY_NOT_COMPLETE(final Annotation annotation) {
    return new Error("Invalid content was found in empty array: %s: Content is not complete", annotation);
  }

  static Error INVALID_CONTENT_MEMBERS_NOT_EXPECTED(final int index, final Annotation annotation, final Object object) {
    return new Error("Invalid content was found starting with member index=%d: %s: No members are expected at this point: %s", index, annotation, object);
  }

  private final Object[] args;
  private final String message;
  final int offset;
  private Error next;
  private String rendered;

  private Error(final String message) {
    this.offset = -1;
    this.message = message;
    this.args = null;
  }

  private Error(final int offset, final String message, final Object ... args) {
    this.offset = offset;
    this.message = message;
    this.args = args;
  }

  private Error(final String message, final Object ... args) {
    this.offset = -1;
    this.message = message;
    this.args = args;
  }

  Error append(final Error error) {
    this.next = error;
    return this;
  }

  @Override
  public String toString() {
    if (rendered != null)
      return rendered;

    final String str;
    if (args != null) {
      for (int i = 0; i < args.length; ++i) {
        final Object arg = args[i];
        final Object obj;
        if (arg instanceof Number || arg instanceof Boolean)
          obj = arg;
        else if (arg instanceof Annotation)
          obj = Annotations.toSortedString((Annotation)arg, JsdUtil.ATTRIBUTES);
        else if (arg instanceof Field)
          obj = ((Field)arg).getDeclaringClass().getName() + "#" + ((Field)arg).getName();
        else if (arg instanceof Class)
          obj = ((Class)arg).getSimpleName();
        else if (arg instanceof Error)
          obj = arg.toString();
        else
          obj = Strings.truncate(String.valueOf(arg), 128);

        args[i] = obj;
      }

      str = String.format(message, args);
      for (int i = 0; i < args.length; ++i)
        args[i] = null;
    }
    else {
      str = message;
    }

    if (next == null)
      return rendered = str;

    rendered = str + next.toString();
    next = null;
    return rendered;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy