
io.vertigo.vega.engines.webservice.json.UiListDeltaDeserializer Maven / Gradle / Ivy
The newest version!
/*
* vertigo - application development platform
*
* Copyright (C) 2013-2024, Vertigo.io, [email protected]
*
* 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 io.vertigo.vega.engines.webservice.json;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import io.vertigo.datamodel.data.model.DataObject;
import io.vertigo.vega.webservice.model.UiObject;
/**
* ParameterizedType use for UiListDelta.
* @author npiedeloup
*/
final class UiListDeltaDeserializer implements JsonDeserializer> {
/** {@inheritDoc} */
@Override
public UiListDelta deserialize(final JsonElement json, final Type typeOfT, final JsonDeserializationContext context) {
final Type[] typeParameters = ((ParameterizedType) typeOfT).getActualTypeArguments();
final Class dtoClass = (Class) typeParameters[0]; // Id has only one parameterized type T
final Type uiObjectType = new KnownParameterizedType(UiObject.class, dtoClass);
final JsonObject jsonObject = json.getAsJsonObject();
final Map> collCreates = parseUiObjectMap(jsonObject, "collCreates", uiObjectType, context);
final Map> collUpdates = parseUiObjectMap(jsonObject, "collUpdates", uiObjectType, context);
final Map> collDeletes = parseUiObjectMap(jsonObject, "collDeletes", uiObjectType, context);
return new UiListDelta<>(dtoClass, collCreates, collUpdates, collDeletes);
}
private Map> parseUiObjectMap(final JsonObject jsonObject, final String propertyName, final Type uiObjectType, final JsonDeserializationContext context) {
final Map> uiObjectMap = new HashMap<>();
final JsonObject jsonUiObjectMap = jsonObject.getAsJsonObject(propertyName);
if (jsonUiObjectMap != null) {
for (final Entry entry : jsonUiObjectMap.entrySet()) {
final String entryName = entry.getKey();
final UiObject inputDto = context.deserialize(entry.getValue(), uiObjectType);
uiObjectMap.put(entryName, inputDto);
}
}
return uiObjectMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy