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

com.powsybl.action.json.MultipleActionsActionBuilderDeserializer Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2022, RTE (http://www.rte-france.com)
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * SPDX-License-Identifier: MPL-2.0
 */
package com.powsybl.action.json;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.powsybl.action.ActionBuilder;
import com.powsybl.action.MultipleActionsActionBuilder;
import com.powsybl.commons.json.JsonUtil;
import com.powsybl.action.MultipleActionsAction;

import java.io.IOException;

/**
 * @author Etienne Lesot {@literal }
 */
public class MultipleActionsActionBuilderDeserializer extends StdDeserializer {

    public MultipleActionsActionBuilderDeserializer() {
        super(MultipleActionsAction.class);
    }

    @Override
    public MultipleActionsActionBuilder deserialize(JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {
        MultipleActionsActionBuilder builder = new MultipleActionsActionBuilder();
        JsonUtil.parsePolymorphicObject(jsonParser, name -> {
            switch (name) {
                case "type":
                    if (!MultipleActionsAction.NAME.equals(jsonParser.nextTextValue())) {
                        throw JsonMappingException.from(jsonParser, "Expected type " + MultipleActionsAction.NAME);
                    }
                    return true;
                case "id":
                    builder.withId(jsonParser.nextTextValue());
                    return true;
                case "actions":
                    jsonParser.nextToken();
                    builder.withActionBuilders(JsonUtil.readList(deserializationContext, jsonParser, ActionBuilder.class));
                    return true;
                default:
                    return false;
            }
        });
        return builder;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy