use of org.opensmartgridplatform.dto.valueobjects.ScheduleMessageDataContainerDto in project open-smart-grid-platform by OSGP.
the class PublicLightingSetScheduleRequestMessageProcessor method handleSetScheduleGetConfigurationResponse.
private void handleSetScheduleGetConfigurationResponse(final SetScheduleDeviceRequest deviceRequest, final GetConfigurationDeviceResponse deviceResponse) {
// Configuration is retrieved, so now continue with setting the
// astronomical offsets
LOGGER.info(LOG_MESSAGE_CALL_DEVICE_SERVICE, deviceRequest.getMessageType(), ScheduleMessageTypeDto.SET_ASTRONOMICAL_OFFSETS, deviceRequest.getDomain(), deviceRequest.getDomainVersion());
final ScheduleMessageTypeDto nextRequest = this.determineNextRequest(deviceRequest, deviceResponse);
LOGGER.info("Request after getConfiguration: {}", nextRequest);
final ScheduleMessageDataContainerDto dataContainer = new ScheduleMessageDataContainerDto.Builder(deviceRequest.getScheduleMessageDataContainer().getSchedule()).withConfiguration(deviceResponse.getConfiguration()).withScheduleMessageType(nextRequest).build();
final SetScheduleDeviceRequest newDeviceRequest = new SetScheduleDeviceRequest(createDeviceRequestBuilder(deviceRequest), dataContainer, RelayTypeDto.LIGHT);
this.deviceService.setSchedule(newDeviceRequest);
}
use of org.opensmartgridplatform.dto.valueobjects.ScheduleMessageDataContainerDto in project open-smart-grid-platform by OSGP.
the class PublicLightingSetScheduleRequestMessageProcessor method processSignedOslpEnvelope.
@Override
public void processSignedOslpEnvelope(final String deviceIdentification, final SignedOslpEnvelopeDto signedOslpEnvelopeDto) {
final UnsignedOslpEnvelopeDto unsignedOslpEnvelopeDto = signedOslpEnvelopeDto.getUnsignedOslpEnvelopeDto();
final OslpEnvelope oslpEnvelope = signedOslpEnvelopeDto.getOslpEnvelope();
final String correlationUid = unsignedOslpEnvelopeDto.getCorrelationUid();
final String organisationIdentification = unsignedOslpEnvelopeDto.getOrganisationIdentification();
final String domain = unsignedOslpEnvelopeDto.getDomain();
final String domainVersion = unsignedOslpEnvelopeDto.getDomainVersion();
final String messageType = unsignedOslpEnvelopeDto.getMessageType();
final int messagePriority = unsignedOslpEnvelopeDto.getMessagePriority();
final String ipAddress = unsignedOslpEnvelopeDto.getIpAddress();
final int retryCount = unsignedOslpEnvelopeDto.getRetryCount();
final boolean isScheduled = unsignedOslpEnvelopeDto.isScheduled();
final ScheduleMessageDataContainerDto dataContainer = (ScheduleMessageDataContainerDto) unsignedOslpEnvelopeDto.getExtraData();
final DeviceRequest.Builder builder = DeviceRequest.newBuilder().organisationIdentification(organisationIdentification).deviceIdentification(deviceIdentification).correlationUid(correlationUid).domain(domain).domainVersion(domainVersion).messageType(messageType).messagePriority(messagePriority).ipAddress(ipAddress).retryCount(retryCount).isScheduled(isScheduled);
final SetScheduleDeviceRequest deviceRequest = new SetScheduleDeviceRequest(builder, dataContainer, RelayTypeDto.LIGHT);
final DeviceResponseHandler deviceResponseHandler = new DeviceResponseHandler() {
@Override
public void handleResponse(final DeviceResponse deviceResponse) {
PublicLightingSetScheduleRequestMessageProcessor.this.handleResponse(deviceResponse, deviceRequest);
}
@Override
public void handleException(final Throwable t, final DeviceResponse deviceResponse) {
PublicLightingSetScheduleRequestMessageProcessor.this.handleUnableToConnectDeviceResponse(deviceResponse, t, domain, domainVersion, messageType, isScheduled, retryCount);
}
};
try {
this.deviceService.doSetSchedule(oslpEnvelope, deviceRequest, deviceResponseHandler, ipAddress, domain, domainVersion, messageType, messagePriority, retryCount, isScheduled, dataContainer.getPageInfo());
} catch (final IOException e) {
this.handleError(e, correlationUid, organisationIdentification, deviceIdentification, domain, domainVersion, messageType, messagePriority, retryCount);
}
}
use of org.opensmartgridplatform.dto.valueobjects.ScheduleMessageDataContainerDto in project open-smart-grid-platform by OSGP.
the class PublicLightingSetScheduleRequestMessageProcessor method processMessage.
@Override
public void processMessage(final ObjectMessage message) {
LOGGER.debug("Processing public lighting set schedule request message");
final MessageMetadata messageMetadata;
final ScheduleDto schedule;
try {
messageMetadata = MessageMetadata.fromMessage(message);
schedule = (ScheduleDto) message.getObject();
} catch (final JMSException e) {
LOGGER.error("UNRECOVERABLE ERROR, unable to read ObjectMessage instance, giving up.", e);
return;
}
try {
this.pendingSetScheduleRequestService.removeExpiredPendingSetScheduleRequestRecords(messageMetadata.getDeviceIdentification());
final List<PendingSetScheduleRequest> pendingSetScheduleRequestList = this.pendingSetScheduleRequestService.getAllByDeviceIdentificationNotExpired(messageMetadata.getDeviceIdentification());
if (!pendingSetScheduleRequestList.isEmpty()) {
throw new FunctionalException(FunctionalExceptionType.SET_SCHEDULE_WITH_ASTRONOMICAL_OFFSETS_IN_PROGRESS, ComponentType.PROTOCOL_OSLP, new Throwable(String.format("A set schedule with astronomical offsets is already in progress for device %s", messageMetadata.getDeviceIdentification())));
}
ScheduleMessageDataContainerDto.Builder builder = new ScheduleMessageDataContainerDto.Builder(schedule);
if (schedule.getAstronomicalSunriseOffset() != null || schedule.getAstronomicalSunsetOffset() != null) {
LOGGER.info("Set a schedule for a device with astronomical offsets");
builder = builder.withScheduleMessageType(ScheduleMessageTypeDto.RETRIEVE_CONFIGURATION);
}
final ScheduleMessageDataContainerDto scheduleMessageDataContainer = builder.build();
this.printDomainInfo(messageMetadata.getMessageType(), messageMetadata.getDomain(), messageMetadata.getDomainVersion());
final SetScheduleDeviceRequest deviceRequest = new SetScheduleDeviceRequest(DeviceRequest.newBuilder().messageMetaData(messageMetadata), scheduleMessageDataContainer, RelayTypeDto.LIGHT);
this.deviceService.setSchedule(deviceRequest);
} catch (final RuntimeException e) {
this.handleError(e, messageMetadata);
} catch (final FunctionalException e) {
this.handleFunctionalException(e, messageMetadata);
}
}
use of org.opensmartgridplatform.dto.valueobjects.ScheduleMessageDataContainerDto in project open-smart-grid-platform by OSGP.
the class OslpDeviceSteps method aPendingSetScheduleRequest.
@Given("^a pending set schedule request that expires within \"([^\"]*)\" minutes$")
public void aPendingSetScheduleRequest(final int expiresInMinutes, final Map<String, String> settings) {
final String deviceIdentification = getString(settings, PlatformKeys.KEY_DEVICE_IDENTIFICATION, PlatformDefaults.DEFAULT_DEVICE_IDENTIFICATION);
final String deviceUid = getString(settings, PlatformKeys.KEY_DEVICE_UID, PlatformDefaults.DEVICE_UID);
final String organisationIdentification = getString(settings, PlatformKeys.KEY_ORGANIZATION_IDENTIFICATION, PlatformDefaults.DEFAULT_ORGANIZATION_IDENTIFICATION);
final Date expireDateTime = Date.from(ZonedDateTime.now().plusMinutes(expiresInMinutes).toInstant());
// just add a dummy DeviceRequest and a dummy
// ScheduleMessageDataContainerDto
final PendingSetScheduleRequest pendingSetScheduleRequest = PendingSetScheduleRequest.builder().deviceIdentification(deviceIdentification).deviceUid(deviceUid).expiredAt(expireDateTime).deviceRequest(new DeviceRequest(organisationIdentification, deviceIdentification, null, 4)).scheduleMessageDataContainerDto(new ScheduleMessageDataContainerDto.Builder(null).build()).build();
this.pendingSetScheduleRequestRepository.save(pendingSetScheduleRequest);
}
use of org.opensmartgridplatform.dto.valueobjects.ScheduleMessageDataContainerDto in project open-smart-grid-platform by OSGP.
the class DeviceManagementService method handleSetSchedule.
public void handleSetSchedule(final String deviceUid) throws TechnicalException {
final List<PendingSetScheduleRequest> pendingSetScheduleRequestList = this.pendingSetScheduleRequestService.getAllByDeviceUidNotExpired(deviceUid);
if (pendingSetScheduleRequestList.isEmpty()) {
// schedule with astronomical offsets
return;
}
if (pendingSetScheduleRequestList.size() > 1) {
throw new TechnicalException(String.format("Currently there are %d pending set schedule requests for device %s. Only one is allowed.", pendingSetScheduleRequestList.size(), deviceUid));
}
final PendingSetScheduleRequest pendingSetScheduleRequest = pendingSetScheduleRequestList.get(0);
final ScheduleMessageDataContainerDto dto = pendingSetScheduleRequest.getScheduleMessageDataContainerDto();
ScheduleMessageDataContainerDto.Builder builder = new ScheduleMessageDataContainerDto.Builder(dto.getSchedule());
builder = builder.withScheduleMessageType(ScheduleMessageTypeDto.SET_SCHEDULE);
final ScheduleMessageDataContainerDto scheduleMessageDataContainer = builder.build();
final DeviceRequest deviceRequest = pendingSetScheduleRequest.getDeviceRequest();
final MessageMetadata messageMetadata = this.getMessageMetadataFromDeviceRequest(deviceRequest);
final SetScheduleDeviceRequest newDeviceRequest = new SetScheduleDeviceRequest(DeviceRequest.newBuilder().messageMetaData(messageMetadata), scheduleMessageDataContainer, RelayTypeDto.LIGHT);
this.deviceService.setSchedule(newDeviceRequest);
this.pendingSetScheduleRequestService.remove(pendingSetScheduleRequest);
}
Aggregations