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

org.jsonx.JxDecoder 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) 2015 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.io.IOException;
import java.lang.annotation.Annotation;
import java.util.List;

import org.openjax.json.JsonParseException;
import org.openjax.json.JsonReader;
import org.libj.util.function.TriPredicate;

/**
 * Decoder that deserializes JSON documents to objects of {@code JxObject}
 * classes, or to lists conforming to a provided annotation class that declares
 * an {@link ArrayType} annotation.
 */
public final class JxDecoder {
  /**
   * Parses a JSON object from the supplied {@link JsonReader} as per the
   * specification of the provided {@code JxObject} class.
   *
   * @param  The type parameter for the return object of {@code JxObject}
   *          class.
   * @param type The class for the return object.
   * @param reader The {@link JsonReader} containing the JSON object.
   * @param onPropertyDecode Callback predicate to be called for each decoded
   *          JSON properties, accepting arguments of:
   *          
    *
  1. The {@code JxObject}.
  2. *
  3. The property name.
  4. *
  5. The property value.
  6. *
* @return A {@code JxObject} of the specified type representing the parsed * JSON object. * @throws DecodeException If an exception has occurred while decoding a JSON * document. * @throws IOException If an I/O error has occurred. */ @SuppressWarnings("unchecked") public static T parseObject(final Class type, final JsonReader reader, final TriPredicate onPropertyDecode) throws DecodeException, IOException { final String token = reader.readToken(); if (!"{".equals(token)) throw new DecodeException("Expected '{', but got '" + token + "'", reader.getPosition() - 1); final Object object = ObjectCodec.decodeObject(type, reader, onPropertyDecode); if (object instanceof Error) throw new DecodeException((Error)object); return (T)object; } /** * Parses a JSON object at the supplied {@link JsonReader} as per the * specification of the provided {@code JxObject} class. * * @param The type parameter for the return object of {@code JxObject} * class. * @param type The class for the return object. * @param reader The {@link JsonReader} containing the JSON object. * @return A {@code JxObject} of the specified type representing the parsed * JSON object. * @throws DecodeException If an exception has occurred while decoding a JSON * document. * @throws IOException If an I/O error has occurred. */ public static T parseObject(final Class type, final JsonReader reader) throws DecodeException, IOException { return parseObject(type, reader, null); } /** * Parses a JSON array from the supplied {@link JsonReader} as per the * specification of the provided annotation class that declares * an {@link ArrayType} annotation. * * @param annotationType The annotation class that declares * an {@link ArrayType} annotation. * @param reader The {@link JsonReader} containing the JSON array. * @return A {@code List} representing the parsed JSON array. * @throws DecodeException If an exception has occurred while decoding a JSON * document. * @throws JsonParseException If the content is not well formed. * @throws IOException If an I/O error has occurred. */ public static List parseArray(final Class annotationType, final JsonReader reader) throws DecodeException, JsonParseException, IOException { final String token = reader.readToken(); if (!"[".equals(token)) throw new DecodeException("Expected '[', but got '" + token + "'", reader.getPosition() - 1); final IdToElement idToElement = new IdToElement(); final int[] elementIds = JsdUtil.digest(annotationType.getAnnotations(), annotationType.getName(), idToElement); final Object array = ArrayCodec.decodeObject(idToElement.get(elementIds), idToElement.getMinIterate(), idToElement.getMaxIterate(), idToElement, reader, null); if (array instanceof Error) throw new DecodeException((Error)array); return (List)array; } private JxDecoder() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy