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

fr.ird.observe.gson.DtoModelNavigationAggregateModelAdapter Maven / Gradle / Ivy

There is a newer version: 4.34
Show newest version
package fr.ird.observe.gson;

/*-
 * #%L
 * ObServe Toolkit :: Common Dto
 * %%
 * Copyright (C) 2017 - 2020 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.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import com.google.gson.reflect.TypeToken;
import fr.ird.observe.navigation.model.DtoModelNavigationAggregateModel;
import fr.ird.observe.navigation.model.DtoModelNavigationModel;
import fr.ird.observe.navigation.model.DtoModelNavigationNode;
import io.ultreia.java4all.lang.Objects2;

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

/**
 * Created by tchemit on 28/05/2018.
 *
 * @author Tony Chemit - [email protected]
 */
public class DtoModelNavigationAggregateModelAdapter implements JsonSerializer, JsonDeserializer {

    @Override
    public JsonElement serialize(DtoModelNavigationAggregateModel src, Type typeOfSrc, JsonSerializationContext context) {
        ImmutableMap.Builder>, ImmutableMap>, String>> builder = ImmutableMap.builder();
        for (DtoModelNavigationModel model : src.getEnabledModels()) {

            ImmutableMap.Builder>, String> nodeBuilder = ImmutableMap.builder();
            for (DtoModelNavigationNode node : model.getNodesWithIds()) {
                nodeBuilder.put((Class) node.getClass(), node.getId());
            }
            builder.put((Class>) model.getClass(), nodeBuilder.build());
        }
        return context.serialize(builder.build());
    }

    @Override
    public DtoModelNavigationAggregateModel deserialize(JsonElement json, Type type, JsonDeserializationContext context) throws JsonParseException {

        ImmutableMap>, ImmutableMap>, String>> models = context.deserialize(json, new TypeToken>, ImmutableMap>, String>>>() {
        }.getType());
        DtoModelNavigationAggregateModel result = (DtoModelNavigationAggregateModel) Objects2.newInstance((Class) type);
        for (Map.Entry>, ImmutableMap>, String>> entry : models.entrySet()) {
            DtoModelNavigationModel model = result.forModelType(entry.getKey()).get();
            for (Map.Entry>, String> nodeEntry : entry.getValue().entrySet()) {
                model.getNode(nodeEntry.getKey()).setId(nodeEntry.getValue());
            }
        }
        return result;
    }

    static class DtoModelNavigationAggregateModelStr {

        private final Class type;
        private final ImmutableList> models;

        DtoModelNavigationAggregateModelStr(Class type, ImmutableList> models) {
            this.type = type;
            this.models = models;
        }

        public Class getType() {
            return type;
        }

        public ImmutableList> getModels() {
            return models;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy