HvdcRangeActionArrayDeserializer.java
/*
* Copyright (c) 2021, 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.openrao.data.crac.io.json.deserializers;
import com.powsybl.openrao.commons.OpenRaoException;
import com.powsybl.openrao.data.crac.io.json.JsonSerializationConstants;
import com.powsybl.openrao.data.crac.api.Crac;
import com.powsybl.openrao.data.crac.api.rangeaction.HvdcRangeActionAdder;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
import java.io.IOException;
import java.util.Map;
/**
* @author Godelaine de Montmorillon {@literal <godelaine.demontmorillon at rte-france.com>}
*/
public final class HvdcRangeActionArrayDeserializer {
private HvdcRangeActionArrayDeserializer() {
}
public static void deserialize(JsonParser jsonParser, String version, Crac crac, Map<String, String> networkElementsNamesPerId) throws IOException {
if (networkElementsNamesPerId == null) {
throw new OpenRaoException(String.format("Cannot deserialize %s before %s", JsonSerializationConstants.HVDC_RANGE_ACTIONS, JsonSerializationConstants.NETWORK_ELEMENTS_NAME_PER_ID));
}
while (jsonParser.nextToken() != JsonToken.END_ARRAY) {
HvdcRangeActionAdder hvdcRangeActionAdder = crac.newHvdcRangeAction();
while (!jsonParser.nextToken().isStructEnd()) {
if (StandardRangeActionDeserializer.addCommonElement(hvdcRangeActionAdder, jsonParser, version)) {
continue;
}
if (jsonParser.getCurrentName().equals(JsonSerializationConstants.NETWORK_ELEMENT_ID)) {
readNetworkElementId(jsonParser, networkElementsNamesPerId, hvdcRangeActionAdder);
} else {
throw new OpenRaoException("Unexpected field in HvdcRangeAction: " + jsonParser.getCurrentName());
}
}
if (JsonSerializationConstants.getPrimaryVersionNumber(version) <= 1 && JsonSerializationConstants.getSubVersionNumber(version) < 3) {
// initial setpoint was not exported then, set default value to 0 to avoid errors
hvdcRangeActionAdder.withInitialSetpoint(0);
}
hvdcRangeActionAdder.add();
}
}
private static void readNetworkElementId(JsonParser jsonParser, Map<String, String> networkElementsNamesPerId, HvdcRangeActionAdder hvdcRangeActionAdder) throws IOException {
String networkElementId = jsonParser.nextTextValue();
if (networkElementsNamesPerId.containsKey(networkElementId)) {
hvdcRangeActionAdder.withNetworkElement(networkElementId, networkElementsNamesPerId.get(networkElementId));
} else {
hvdcRangeActionAdder.withNetworkElement(networkElementId);
}
}
}