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

org.nuiton.topia.persistence.gson.TopiaBlobsContainerAdapter Maven / Gradle / Ivy

package org.nuiton.topia.persistence.gson;

/*-
 * #%L
 * ToPIA Extension :: persistence
 * %%
 * Copyright (C) 2018 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.TypeParameter;
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 org.nuiton.topia.persistence.script.TopiaBlobsContainer;

import java.lang.reflect.Type;
import java.util.Map;

/**
 * Created on 10/12/16.
 *
 * @author Tony Chemit - [email protected]
 * @since 5.1
 */
public class TopiaBlobsContainerAdapter implements JsonDeserializer, JsonSerializer {

    private static  TypeToken> mapOf(TypeToken keyType, TypeToken valueType) {
        return new TypeToken>() {
        }
                .where(new TypeParameter() {
                }, keyType)
                .where(new TypeParameter() {
                }, valueType);
    }

    @Override
    public TopiaBlobsContainer 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 = mapOf(TypeToken.of(String.class), TypeToken.of(byte[].class)).getType();
        Map blobsById = context.deserialize(jsonObject.get("blobsById"), mapType);
        return new TopiaBlobsContainer(tableName, columnName, ImmutableMap.copyOf(blobsById));
    }

    @Override
    public JsonElement serialize(TopiaBlobsContainer 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()));
        return element;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy