com.powsybl.contingency.json.ListOfContingencyListsDeserializer 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) 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/.
*/
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.list.ContingencyList;
import com.powsybl.contingency.contingency.list.ListOfContingencyLists;
import java.io.IOException;
import java.util.Collections;
import java.util.List;
/**
* @author Etienne Lesot
*/
public class ListOfContingencyListsDeserializer extends StdDeserializer {
public ListOfContingencyListsDeserializer() {
super(ListOfContingencyLists.class);
}
@Override
public ListOfContingencyLists deserialize(JsonParser parser, DeserializationContext deserializationContext) throws IOException {
String name = null;
List contingencyLists = Collections.emptyList();
while (parser.nextToken() != JsonToken.END_OBJECT) {
switch (parser.getCurrentName()) {
case "version":
parser.nextToken();
break;
case "name":
name = parser.nextTextValue();
break;
case "type":
parser.nextToken();
break;
case "contingencyLists":
parser.nextToken();
contingencyLists = JsonUtil.readList(deserializationContext, parser, ContingencyList.class);
break;
default:
throw new IllegalStateException("Unexpected field: " + parser.getCurrentName());
}
}
return new ListOfContingencyLists(name, contingencyLists);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy