com.powsybl.contingency.json.DefaultContingencyListDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-contingency-api Show documentation
Show all versions of powsybl-contingency-api Show documentation
An API to describe and trigger contingencies
/**
* Copyright (c) 2020, 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.contingency.json;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import com.powsybl.commons.json.JsonUtil;
import com.powsybl.contingency.Contingency;
import com.powsybl.contingency.contingency.list.DefaultContingencyList;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
/**
* @author Mathieu Bague {@literal }
*/
public class DefaultContingencyListDeserializer extends StdDeserializer {
public DefaultContingencyListDeserializer() {
super(DefaultContingencyList.class);
}
public DefaultContingencyList deserialize(JsonParser parser, DeserializationContext ctx) throws IOException {
String name = null;
List contingencies = Collections.emptyList();
while (parser.nextToken() != JsonToken.END_OBJECT) {
switch (parser.currentName()) {
case "version" -> parser.nextToken();
case "name" -> name = parser.nextTextValue();
case "type" -> {
if (!parser.nextTextValue().equals(DefaultContingencyList.TYPE)) {
throw new IllegalStateException("type should be: " + DefaultContingencyList.TYPE);
}
}
case "contingencies" -> {
parser.nextToken();
contingencies = JsonUtil.readList(ctx, parser, Contingency.class);
}
default -> throw new IllegalStateException("Unexpected field: " + parser.currentName());
}
}
return new DefaultContingencyList(name, contingencies);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy