Search in sources :

Example 1 with GetPowerQualityProfileResponse

use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileResponse in project open-smart-grid-platform by OSGP.

the class GetPowerQualityProfileResponseMappingTest method shouldConvertGetPowerQualityProfileResponse.

@Test
public void shouldConvertGetPowerQualityProfileResponse() {
    // Arrange
    final ObisCodeValues obisCode = this.makeObisCode();
    final List<CaptureObject> captureObjects = this.makeCaptureObjects();
    final List<ProfileEntry> profileEntries = this.makeProfileEntries();
    final PowerQualityProfileData responseData = new PowerQualityProfileData(obisCode, captureObjects, profileEntries);
    final GetPowerQualityProfileResponse source = new GetPowerQualityProfileResponse();
    source.setPowerQualityProfileDatas(Collections.singletonList(responseData));
    // Act
    final org.opensmartgridplatform.adapter.ws.schema.smartmetering.bundle.GetPowerQualityProfileResponse target = this.monitoringMapper.map(source, org.opensmartgridplatform.adapter.ws.schema.smartmetering.bundle.GetPowerQualityProfileResponse.class);
    // Assert
    final org.opensmartgridplatform.adapter.ws.schema.smartmetering.monitoring.PowerQualityProfileData mappedResponseData = target.getPowerQualityProfileDatas().get(0);
    this.assertObisCode(mappedResponseData.getLogicalName(), obisCode);
    this.assertCaptureObjects(mappedResponseData.getCaptureObjectList().getCaptureObjects(), captureObjects);
    this.assertProfileEntries(mappedResponseData.getProfileEntryList().getProfileEntries(), profileEntries);
}
Also used : ObisCodeValues(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.ObisCodeValues) ProfileEntry(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.ProfileEntry) PowerQualityProfileData(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.PowerQualityProfileData) GetPowerQualityProfileResponse(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileResponse) CaptureObject(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.CaptureObject) Test(org.junit.jupiter.api.Test)

Example 2 with GetPowerQualityProfileResponse

use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileResponse in project open-smart-grid-platform by OSGP.

the class GetPowerQualityProfileDtoConverter method convert.

@Override
public GetPowerQualityProfileResponse convert(final GetPowerQualityProfileResponseDto source, final Type<? extends GetPowerQualityProfileResponse> destinationType, final MappingContext mappingContext) {
    final GetPowerQualityProfileResponse response = new GetPowerQualityProfileResponse();
    final List<PowerQualityProfileData> powerQualityProfileDatas = new ArrayList<>();
    for (final PowerQualityProfileDataDto responseDataDto : source.getPowerQualityProfileResponseDatas()) {
        final ObisCodeValues obisCodeValues = this.mapperFactory.getMapperFacade().map(responseDataDto.getLogicalName(), ObisCodeValues.class);
        final List<CaptureObject> captureObjects = new ArrayList<>(this.mapperFacade.mapAsList(responseDataDto.getCaptureObjects(), CaptureObject.class));
        final List<ProfileEntry> profileEntries = this.makeProfileEntries(responseDataDto);
        powerQualityProfileDatas.add(new PowerQualityProfileData(obisCodeValues, captureObjects, profileEntries));
    }
    response.setPowerQualityProfileDatas(powerQualityProfileDatas);
    return response;
}
Also used : GetPowerQualityProfileResponse(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileResponse) ObisCodeValues(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.ObisCodeValues) PowerQualityProfileDataDto(org.opensmartgridplatform.dto.valueobjects.smartmetering.PowerQualityProfileDataDto) CaptureObject(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.CaptureObject) ProfileEntry(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.ProfileEntry) ArrayList(java.util.ArrayList) PowerQualityProfileData(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.PowerQualityProfileData)

Example 3 with GetPowerQualityProfileResponse

use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileResponse in project open-smart-grid-platform by OSGP.

the class MonitoringService method handleGetPowerQualityProfileResponse.

public void handleGetPowerQualityProfileResponse(final MessageMetadata messageMetadata, final ResponseMessageResultType deviceResult, final OsgpException exception, final GetPowerQualityProfileResponseDto getPowerQualityProfileResponseDto) {
    LOGGER.info("GetPowerQualityProfileResponse for MessageType: {}", messageMetadata.getMessageType());
    ResponseMessageResultType result = deviceResult;
    if (exception != null) {
        LOGGER.error(DEVICE_RESPONSE_NOT_OK_LOG_MSG, exception);
        result = ResponseMessageResultType.NOT_OK;
    }
    final GetPowerQualityProfileResponse getPowerQualityProfileResponse = this.monitoringMapper.map(getPowerQualityProfileResponseDto, GetPowerQualityProfileResponse.class);
    final ResponseMessage responseMessage = ResponseMessage.newResponseMessageBuilder().withMessageMetadata(messageMetadata).withResult(result).withOsgpException(exception).withDataObject(getPowerQualityProfileResponse).build();
    this.webServiceResponseMessageSender.send(responseMessage, messageMetadata.getMessageType());
}
Also used : GetPowerQualityProfileResponse(org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileResponse) ResponseMessage(org.opensmartgridplatform.shared.infra.jms.ResponseMessage) ResponseMessageResultType(org.opensmartgridplatform.shared.infra.jms.ResponseMessageResultType)

Aggregations

GetPowerQualityProfileResponse (org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileResponse)3 CaptureObject (org.opensmartgridplatform.domain.core.valueobjects.smartmetering.CaptureObject)2 ObisCodeValues (org.opensmartgridplatform.domain.core.valueobjects.smartmetering.ObisCodeValues)2 PowerQualityProfileData (org.opensmartgridplatform.domain.core.valueobjects.smartmetering.PowerQualityProfileData)2 ProfileEntry (org.opensmartgridplatform.domain.core.valueobjects.smartmetering.ProfileEntry)2 ArrayList (java.util.ArrayList)1 Test (org.junit.jupiter.api.Test)1 PowerQualityProfileDataDto (org.opensmartgridplatform.dto.valueobjects.smartmetering.PowerQualityProfileDataDto)1 ResponseMessage (org.opensmartgridplatform.shared.infra.jms.ResponseMessage)1 ResponseMessageResultType (org.opensmartgridplatform.shared.infra.jms.ResponseMessageResultType)1