use of com.alliander.osgp.adapter.protocol.iec61850.infra.networking.helper.Function in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850GetStatusCommand method getStatusFromDevice.
public DeviceStatusDto getStatusFromDevice(final Iec61850Client iec61850Client, final DeviceConnection deviceConnection, final Ssld ssld) throws ProtocolAdapterException {
final Function<DeviceStatusDto> function = new Function<DeviceStatusDto>() {
@Override
public DeviceStatusDto apply(final DeviceMessageLog deviceMessageLog) throws Exception {
// getting the light relay values
final List<LightValueDto> lightValues = new ArrayList<>();
for (final DeviceOutputSetting deviceOutputSetting : ssld.getOutputSettings()) {
final LogicalNode logicalNode = LogicalNode.getSwitchComponentByIndex(deviceOutputSetting.getInternalId());
final NodeContainer position = deviceConnection.getFcModelNode(LogicalDevice.LIGHTING, logicalNode, DataAttribute.POSITION, Fc.ST);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), position.getFcmodelNode());
final BdaBoolean state = position.getBoolean(SubDataAttribute.STATE);
final boolean on = state.getValue();
lightValues.add(new LightValueDto(deviceOutputSetting.getExternalId(), on, null));
LOGGER.info(String.format("Got status of relay %d => %s", deviceOutputSetting.getInternalId(), on ? "on" : "off"));
deviceMessageLog.addVariable(logicalNode, DataAttribute.POSITION, Fc.ST, Boolean.toString(on));
}
final NodeContainer eventBuffer = deviceConnection.getFcModelNode(LogicalDevice.LIGHTING, LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.EVENT_BUFFER, Fc.CF);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), eventBuffer.getFcmodelNode());
final String filter = eventBuffer.getString(SubDataAttribute.EVENT_BUFFER_FILTER);
LOGGER.info("Got EvnBuf.enbEvnType filter {}", filter);
deviceMessageLog.addVariable(LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.EVENT_BUFFER, Fc.CF, filter);
final Set<EventNotificationTypeDto> notificationTypes = EventType.getNotificationTypesForFilter(filter);
int eventNotificationsMask = 0;
for (final EventNotificationTypeDto notificationType : notificationTypes) {
eventNotificationsMask |= notificationType.getValue();
}
final NodeContainer softwareConfiguration = deviceConnection.getFcModelNode(LogicalDevice.LIGHTING, LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.SOFTWARE_CONFIGURATION, Fc.CF);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), softwareConfiguration.getFcmodelNode());
String lightTypeValue = softwareConfiguration.getString(SubDataAttribute.LIGHT_TYPE);
// Fix for Kaifa bug KI-31
if (lightTypeValue == null || lightTypeValue.isEmpty()) {
lightTypeValue = "RELAY";
}
final LightTypeDto lightType = LightTypeDto.valueOf(lightTypeValue);
deviceMessageLog.addVariable(LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.SOFTWARE_CONFIGURATION, Fc.CF, lightTypeValue);
DeviceMessageLoggingService.logMessage(deviceMessageLog, deviceConnection.getDeviceIdentification(), deviceConnection.getOrganisationIdentification(), false);
/*
* The preferredLinkType and actualLinkType are hard-coded to
* LinkTypeDto.ETHERNET, other link types do not apply to the
* device type in use.
*/
return new DeviceStatusDto(lightValues, LinkTypeDto.ETHERNET, LinkTypeDto.ETHERNET, lightType, eventNotificationsMask);
}
};
return iec61850Client.sendCommandWithRetry(function, "GetStatus", deviceConnection.getDeviceIdentification());
}
use of com.alliander.osgp.adapter.protocol.iec61850.infra.networking.helper.Function in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850PowerUsageHistoryCommand method getPowerUsageHistoryDataFromDevice.
public List<PowerUsageDataDto> getPowerUsageHistoryDataFromDevice(final Iec61850Client iec61850Client, final DeviceConnection deviceConnection, final PowerUsageHistoryMessageDataContainerDto powerUsageHistoryContainer, final List<DeviceOutputSetting> deviceOutputSettingsLightRelays) throws ProtocolAdapterException {
final Function<List<PowerUsageDataDto>> function = new Function<List<PowerUsageDataDto>>() {
@Override
public List<PowerUsageDataDto> apply(final DeviceMessageLog deviceMessageLog) throws Exception {
final HistoryTermTypeDto historyTermType = powerUsageHistoryContainer.getHistoryTermType();
if (historyTermType != null) {
LOGGER.info("device: {}, ignoring HistoryTermType ({}) determining power usage history", deviceConnection.getDeviceIdentification(), historyTermType);
}
final TimePeriodDto timePeriod = powerUsageHistoryContainer.getTimePeriod();
final List<PowerUsageDataDto> powerUsageHistoryData = new ArrayList<>();
for (final DeviceOutputSetting deviceOutputSetting : deviceOutputSettingsLightRelays) {
final List<PowerUsageDataDto> powerUsageData = Iec61850PowerUsageHistoryCommand.this.getPowerUsageHistoryDataFromRelay(iec61850Client, deviceConnection, timePeriod, deviceOutputSetting, deviceMessageLog);
powerUsageHistoryData.addAll(powerUsageData);
}
DeviceMessageLoggingService.logMessage(deviceMessageLog, deviceConnection.getDeviceIdentification(), deviceConnection.getOrganisationIdentification(), false);
/*
* This way of gathering leads to PowerUsageData elements per
* relay. If it is necessary to only include one PowerUsageData
* element for the device, where data for the different relays
* is combined in the SsldData.relayData some sort of merge
* needs to be performed.
*
* This can either be a rework of the list currently returned,
* or it can be a list constructed based on an altered return
* type from getPowerUsageHistoryDataFromRelay (for instance a
* Map of Date to a Map of Relay Index to Total Lighting
* Minutes).
*/
return powerUsageHistoryData;
}
};
return iec61850Client.sendCommandWithRetry(function, "GetPowerUsageHistory", deviceConnection.getDeviceIdentification());
}
use of com.alliander.osgp.adapter.protocol.iec61850.infra.networking.helper.Function in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850RebootCommand method rebootDevice.
public void rebootDevice(final Iec61850Client iec61850Client, final DeviceConnection deviceConnection) throws ProtocolAdapterException {
final Function<Void> function = new Function<Void>() {
@Override
public Void apply(final DeviceMessageLog deviceMessageLog) throws Exception {
final NodeContainer rebootOperationNode = deviceConnection.getFcModelNode(LogicalDevice.LIGHTING, LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.REBOOT_OPERATION, Fc.CO);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), rebootOperationNode.getFcmodelNode());
LOGGER.info("device: {}, rebootOperationNode: {}", deviceConnection.getDeviceIdentification(), rebootOperationNode);
final NodeContainer oper = rebootOperationNode.getChild(SubDataAttribute.OPERATION);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), oper.getFcmodelNode());
LOGGER.info("device: {}, oper: {}", deviceConnection.getDeviceIdentification(), oper);
final BdaBoolean ctlVal = oper.getBoolean(SubDataAttribute.CONTROL_VALUE);
LOGGER.info("device: {}, ctlVal: {}", deviceConnection.getDeviceIdentification(), ctlVal);
ctlVal.setValue(true);
LOGGER.info("device: {}, set ctlVal to true in order to reboot the device", deviceConnection.getDeviceIdentification());
oper.write();
deviceMessageLog.addVariable(LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.REBOOT_OPERATION, Fc.ST, SubDataAttribute.OPERATION, SubDataAttribute.CONTROL_VALUE, Boolean.toString(true));
DeviceMessageLoggingService.logMessage(deviceMessageLog, deviceConnection.getDeviceIdentification(), deviceConnection.getOrganisationIdentification(), false);
return null;
}
};
iec61850Client.sendCommandWithRetry(function, "Reboot", deviceConnection.getDeviceIdentification());
}
use of com.alliander.osgp.adapter.protocol.iec61850.infra.networking.helper.Function in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850UpdateSslCertificateCommand method pushSslCertificateToDevice.
public void pushSslCertificateToDevice(final Iec61850Client iec61850Client, final DeviceConnection deviceConnection, final CertificationDto certification) throws ProtocolAdapterException {
final Function<Void> function = new Function<Void>() {
@Override
public Void apply(final DeviceMessageLog deviceMessageLog) throws Exception {
LOGGER.info("Reading the certificate authority url");
final NodeContainer sslConfiguration = deviceConnection.getFcModelNode(LogicalDevice.LIGHTING, LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.CERTIFICATE_AUTHORITY_REPLACE, Fc.CF);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), sslConfiguration.getFcmodelNode());
// Removing trailing and leading slashes (if present) from the
// domain and the URL.
String adjustedDomain = certification.getCertificateDomain();
if (adjustedDomain.endsWith("/")) {
adjustedDomain = adjustedDomain.substring(0, adjustedDomain.length() - 1);
}
String adjustedUrl = certification.getCertificateUrl();
if (adjustedUrl.startsWith("/")) {
adjustedUrl = adjustedUrl.substring(1, adjustedUrl.length());
}
final String fullUrl = adjustedDomain.concat("/").concat(adjustedUrl);
LOGGER.info("Updating the certificate download url to {}", fullUrl);
sslConfiguration.writeString(SubDataAttribute.URL, fullUrl);
deviceMessageLog.addVariable(LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.CERTIFICATE_AUTHORITY_REPLACE, Fc.CF, SubDataAttribute.URL, fullUrl);
final NodeContainer clock = deviceConnection.getFcModelNode(LogicalDevice.LIGHTING, LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.CLOCK, Fc.CF);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), clock.getFcmodelNode());
final DateTime deviceTime = new DateTime(clock.getDate(SubDataAttribute.CURRENT_TIME));
final Date oneMinuteFromNow = deviceTime.plusMinutes(1).toDate();
LOGGER.info("Updating the certificate download start time to: {}", oneMinuteFromNow);
sslConfiguration.writeDate(SubDataAttribute.START_TIME, oneMinuteFromNow);
deviceMessageLog.addVariable(LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.CERTIFICATE_AUTHORITY_REPLACE, Fc.CF, SubDataAttribute.START_TIME, simpleDateFormat.format(oneMinuteFromNow));
DeviceMessageLoggingService.logMessage(deviceMessageLog, deviceConnection.getDeviceIdentification(), deviceConnection.getOrganisationIdentification(), false);
return null;
}
};
iec61850Client.sendCommandWithRetry(function, "UpdateSslCertificate", deviceConnection.getDeviceIdentification());
}
use of com.alliander.osgp.adapter.protocol.iec61850.infra.networking.helper.Function in project Protocol-Adapter-IEC61850 by OSGP.
the class Iec61850TransitionCommand method transitionDevice.
public void transitionDevice(final Iec61850Client iec61850Client, final DeviceConnection deviceConnection, final TransitionMessageDataContainerDto transitionMessageDataContainer) throws ProtocolAdapterException {
final TransitionTypeDto transitionType = transitionMessageDataContainer.getTransitionType();
LOGGER.info("device: {}, transition: {}", deviceConnection.getDeviceIdentification(), transitionType);
final boolean controlValueForTransition = transitionType.equals(TransitionTypeDto.DAY_NIGHT);
final DateTime dateTime = transitionMessageDataContainer.getDateTime();
if (dateTime != null) {
LOGGER.warn("device: {}, setting date/time {} for transition {} not supported", deviceConnection.getDeviceIdentification(), dateTime, transitionType);
}
final Function<Void> function = new Function<Void>() {
@Override
public Void apply(final DeviceMessageLog deviceMessageLog) throws Exception {
final NodeContainer sensorNode = deviceConnection.getFcModelNode(LogicalDevice.LIGHTING, LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.SENSOR, Fc.CO);
iec61850Client.readNodeDataValues(deviceConnection.getConnection().getClientAssociation(), sensorNode.getFcmodelNode());
LOGGER.info("device: {}, sensorNode: {}", deviceConnection.getDeviceIdentification(), sensorNode);
final NodeContainer oper = sensorNode.getChild(SubDataAttribute.OPERATION);
LOGGER.info("device: {}, oper: {}", deviceConnection.getDeviceIdentification(), oper);
final BdaBoolean ctlVal = oper.getBoolean(SubDataAttribute.CONTROL_VALUE);
LOGGER.info("device: {}, ctlVal: {}", deviceConnection.getDeviceIdentification(), ctlVal);
ctlVal.setValue(controlValueForTransition);
LOGGER.info("device: {}, set ctlVal to {} in order to transition the device", deviceConnection.getDeviceIdentification(), controlValueForTransition);
oper.write();
deviceMessageLog.addVariable(LogicalNode.STREET_LIGHT_CONFIGURATION, DataAttribute.SENSOR, Fc.CO, SubDataAttribute.OPERATION, SubDataAttribute.CONTROL_VALUE, Boolean.toString(controlValueForTransition));
DeviceMessageLoggingService.logMessage(deviceMessageLog, deviceConnection.getDeviceIdentification(), deviceConnection.getOrganisationIdentification(), false);
return null;
}
};
iec61850Client.sendCommandWithRetry(function, "SetTransition", deviceConnection.getDeviceIdentification());
}
Aggregations