
fr.ird.observe.services.gson.ObserveBlobsContainerAdapter Maven / Gradle / Ivy
package fr.ird.observe.services.gson;
/*-
* #%L
* ObServe Toolkit :: Common Service
* %%
* Copyright (C) 2008 - 2018 IRD, Ultreia.io
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program. If not, see
* .
* #L%
*/
import com.google.common.collect.ImmutableMap;
import com.google.common.reflect.TypeToken;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import fr.ird.observe.dto.db.ObserveBlobsContainer;
import java.lang.reflect.Type;
import java.util.Map;
/**
* Created on 10/12/16.
*
* @author Tony Chemit - [email protected]
* @since 5.1
*/
public class ObserveBlobsContainerAdapter implements JsonDeserializer, JsonSerializer {
@Override
public ObserveBlobsContainer deserialize(JsonElement json, Type type, JsonDeserializationContext context) throws JsonParseException {
JsonObject jsonObject = json.getAsJsonObject();
String tableName = jsonObject.get("tableName").getAsString();
String columnName = jsonObject.get("columnName").getAsString();
Type mapType = ImmutableMapAdapter.mapOf(TypeToken.of(String.class), TypeToken.of(byte[].class)).getType();
Map blobsById = context.deserialize(jsonObject.get("blobsById"), mapType);
return new ObserveBlobsContainer(tableName, columnName, ImmutableMap.copyOf(blobsById));
}
@Override
public JsonElement serialize(ObserveBlobsContainer src, Type typeOfSrc, JsonSerializationContext context) {
JsonObject element = new JsonObject();
element.add("tableName", context.serialize(src.getTableName()));
element.add("columnName", context.serialize(src.getColumnName()));
element.add("blobsById", context.serialize(src.getBlobsById().asMultimap().asMap()));
return element;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy