com.solidfire.core.serialization.OptionalAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solidfire-sdk-java Show documentation
Show all versions of solidfire-sdk-java Show documentation
Library for interfacing with the Public and Incubating SolidFire Element API.
The newest version!
/*
* Copyright © 2014-2016 NetApp, Inc. All Rights Reserved.
*
* 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 com.solidfire.core.serialization;
import com.solidfire.gson.*;
import com.solidfire.core.javautil.Optional;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
/**
* Handles serializing and deserializing Optional objects.
*/
public class OptionalAdapter implements JsonSerializer>, JsonDeserializer>, InstanceCreator> {
/**
* Gets the Class that this adapter serializes.
*
* @return The serializable Class.
*/
@SuppressWarnings("rawtypes")
static public Class serializingClass() {
return Optional.class;
}
public Optional> createInstance(Type type) {
return Optional.empty();
}
/**
* Serializes an Optional object.
*
* @param optional the value to serialize.
* @param type the type of the source object.
* @param context Context used for serialization.
* @return A tree of JsonElements corresponding to the serialized form of optional.
*/
public JsonElement serialize(Optional> optional, Type type, JsonSerializationContext context) {
if (!optional.isPresent()) {
// Nothing to serialize
return null;
}
// Defer serialization to handler for type contained in Optional
return context.serialize(optional.get());
}
/**
* Deserializes an Optional object.
*
* @param json the element to deserialize.
* @param typeOfT type of the expected return value.
* @param context Context used for deserialization.
* @return An Optional object containing an object of type typeOfT.
*/
public Optional> deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
if(!json.isJsonObject() && !json.isJsonArray()) {
if (json.isJsonNull() || json.getAsString() == null ) {
return Optional.empty();
}
}
ParameterizedType pType = (ParameterizedType) typeOfT;
Type genericType = pType.getActualTypeArguments()[0];
// Special handling for string, "" will return Optional.of("")
if (genericType.equals(String.class)) {
return Optional.of(json.getAsString());
}
if (!json.isJsonObject() && !json.isJsonArray() && json.getAsString().trim().length() == 0 ) {
return Optional.empty();
}
if (json.isJsonObject() || json.isJsonArray()) {
if (json.isJsonNull() ) {
return Optional.empty();
}
}
if (genericType.equals(Integer.class)) {
return Optional.of(json.getAsInt());
} else if (genericType.equals(Long.class)) {
return Optional.of(json.getAsLong());
} else if (genericType.equals(Double.class)) {
return Optional.of(json.getAsDouble());
}
// Defer deserialization to handler for type contained in Optional
Object obj = context.deserialize(json, genericType);
OptionalAdaptorUtils.initializeAllNullOptionalFieldsAsEmpty(obj);
return Optional.of(obj);
}
}