/* * Copyright (C) 2008 Google Inc. * * 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. */ package org.mcteam.factions.gson; import java.lang.reflect.Type; /** * implementation of a deserialization context for Gson * * @author Inderjeet Singh */ final class JsonDeserializationContextDefault implements JsonDeserializationContext { private final ObjectNavigatorFactory navigatorFactory; private final ParameterizedTypeHandlerMap> deserializers; private final MappedObjectConstructor objectConstructor; JsonDeserializationContextDefault(ObjectNavigatorFactory navigatorFactory, ParameterizedTypeHandlerMap> deserializers, MappedObjectConstructor objectConstructor) { this.navigatorFactory = navigatorFactory; this.deserializers = deserializers; this.objectConstructor = objectConstructor; } ObjectConstructor getObjectConstructor() { return objectConstructor; } @SuppressWarnings("unchecked") public T deserialize(JsonElement json, Type typeOfT) throws JsonParseException { if (json == null || json.isJsonNull()) { return null; } else if (json.isJsonArray()) { return (T) fromJsonArray(typeOfT, json.getAsJsonArray(), this); } else if (json.isJsonObject()) { return (T) fromJsonObject(typeOfT, json.getAsJsonObject(), this); } else if (json.isJsonPrimitive()) { return (T) fromJsonPrimitive(typeOfT, json.getAsJsonPrimitive(), this); } else { throw new JsonParseException("Failed parsing JSON source: " + json + " to Json"); } } private T fromJsonArray(Type arrayType, JsonArray jsonArray, JsonDeserializationContext context) throws JsonParseException { JsonArrayDeserializationVisitor visitor = new JsonArrayDeserializationVisitor( jsonArray, arrayType, navigatorFactory, objectConstructor, deserializers, context); ObjectNavigator on = navigatorFactory.create(new ObjectTypePair(null, arrayType, true)); on.accept(visitor); return visitor.getTarget(); } private T fromJsonObject(Type typeOfT, JsonObject jsonObject, JsonDeserializationContext context) throws JsonParseException { JsonObjectDeserializationVisitor visitor = new JsonObjectDeserializationVisitor( jsonObject, typeOfT, navigatorFactory, objectConstructor, deserializers, context); ObjectNavigator on = navigatorFactory.create(new ObjectTypePair(null, typeOfT, true)); on.accept(visitor); return visitor.getTarget(); } @SuppressWarnings("unchecked") private T fromJsonPrimitive(Type typeOfT, JsonPrimitive json, JsonDeserializationContext context) throws JsonParseException { JsonObjectDeserializationVisitor visitor = new JsonObjectDeserializationVisitor( json, typeOfT, navigatorFactory, objectConstructor, deserializers, context); ObjectNavigator on = navigatorFactory.create(new ObjectTypePair(json.getAsObject(), typeOfT, true)); on.accept(visitor); Object target = visitor.getTarget(); return (T) target; } }