com.powsybl.iidm.serde.BusbarSectionSerDe Maven / Gradle / Ivy
/**
* Copyright (c) 2016, 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;
import com.powsybl.iidm.network.Bus;
import com.powsybl.iidm.network.BusbarSection;
import com.powsybl.iidm.network.BusbarSectionAdder;
import com.powsybl.iidm.network.VoltageLevel;
import com.powsybl.iidm.serde.util.IidmSerDeUtil;
/**
*
* @author Geoffroy Jamgotchian {@literal }
*/
class BusbarSectionSerDe extends AbstractSimpleIdentifiableSerDe {
static final BusbarSectionSerDe INSTANCE = new BusbarSectionSerDe();
static final String ROOT_ELEMENT_NAME = "busbarSection";
static final String ARRAY_ELEMENT_NAME = "busbarSections";
@Override
protected String getRootElementName() {
return ROOT_ELEMENT_NAME;
}
@Override
protected void writeRootElementAttributes(BusbarSection bs, VoltageLevel vl, NetworkSerializerContext context) {
context.getWriter().writeIntAttribute("node", bs.getTerminal().getNodeBreakerView().getNode());
IidmSerDeUtil.runUntilMaximumVersion(IidmVersion.V_1_0, context, () -> {
context.getWriter().writeDoubleAttribute("v", bs.getV());
context.getWriter().writeDoubleAttribute("angle", bs.getAngle());
});
}
@Override
protected BusbarSectionAdder createAdder(VoltageLevel vl) {
return vl.getNodeBreakerView().newBusbarSection();
}
@Override
protected BusbarSection readRootElementAttributes(BusbarSectionAdder adder, VoltageLevel voltageLevel, NetworkDeserializerContext context) {
int node = context.getReader().readIntAttribute("node");
BusbarSection bbs = adder.setNode(node)
.add();
IidmSerDeUtil.runUntilMaximumVersion(IidmVersion.V_1_0, context, () -> {
double v = context.getReader().readDoubleAttribute("v");
double angle = context.getReader().readDoubleAttribute("angle");
context.getEndTasks().add(() -> {
Bus b = bbs.getTerminal().getBusView().getBus();
if (b != null) {
b.setV(v).setAngle(angle);
}
});
});
return bbs;
}
@Override
protected void readSubElements(BusbarSection bs, NetworkDeserializerContext context) {
context.getReader().readChildNodes(e -> readSubElement(e, bs, context));
}
}