com.powsybl.iidm.serde.extensions.LoadDetailSerDe Maven / Gradle / Ivy
/**
* 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.iidm.serde.extensions;
import com.google.auto.service.AutoService;
import com.powsybl.commons.extensions.AbstractExtensionSerDe;
import com.powsybl.commons.extensions.ExtensionSerDe;
import com.powsybl.commons.io.DeserializerContext;
import com.powsybl.commons.io.SerializerContext;
import com.powsybl.iidm.network.Load;
import com.powsybl.iidm.network.extensions.LoadDetail;
import com.powsybl.iidm.network.extensions.LoadDetailAdder;
/**
* @author Geoffroy Jamgotchian {@literal }
*/
@AutoService(ExtensionSerDe.class)
public class LoadDetailSerDe extends AbstractExtensionSerDe {
public LoadDetailSerDe() {
super("detail", "network", LoadDetail.class,
"loadDetail.xsd",
"http://www.itesla_project.eu/schema/iidm/ext/load_detail/1_0",
"ld");
}
@Override
public void write(LoadDetail detail, SerializerContext context) {
context.getWriter().writeDoubleAttribute("fixedActivePower", detail.getFixedActivePower());
context.getWriter().writeDoubleAttribute("fixedReactivePower", detail.getFixedReactivePower());
context.getWriter().writeDoubleAttribute("variableActivePower", detail.getVariableActivePower());
context.getWriter().writeDoubleAttribute("variableReactivePower", detail.getVariableReactivePower());
}
@Override
public LoadDetail read(Load load, DeserializerContext context) {
double fixedActivePower = context.getReader().readDoubleAttribute("fixedActivePower");
if (Double.isNaN(fixedActivePower)) {
fixedActivePower = context.getReader().readDoubleAttribute("subLoad1ActivePower");
}
double fixedReactivePower = context.getReader().readDoubleAttribute("fixedReactivePower");
if (Double.isNaN(fixedReactivePower)) {
fixedReactivePower = context.getReader().readDoubleAttribute("subLoad1ReactivePower");
}
double variableActivePower = context.getReader().readDoubleAttribute("variableActivePower");
if (Double.isNaN(variableActivePower)) {
variableActivePower = context.getReader().readDoubleAttribute("subLoad2ActivePower");
}
double variableReactivePower = context.getReader().readDoubleAttribute("variableReactivePower");
if (Double.isNaN(variableReactivePower)) {
variableReactivePower = context.getReader().readDoubleAttribute("subLoad2ReactivePower");
}
context.getReader().readEndNode();
return load.newExtension(LoadDetailAdder.class)
.withFixedActivePower(fixedActivePower)
.withFixedReactivePower(fixedReactivePower)
.withVariableActivePower(variableActivePower)
.withVariableReactivePower(variableReactivePower)
.add();
}
}