use of org.opensmartgridplatform.dto.valueobjects.smartmetering.GetGsmDiagnosticRequestDto in project open-smart-grid-platform by OSGP.
the class GetGsmDiagnosticCommandExecutor method execute.
@Override
public GetGsmDiagnosticResponseDto execute(final DlmsConnectionManager conn, final DlmsDevice device, final GetGsmDiagnosticRequestDto getGsmDiagnosticQuery, final MessageMetadata messageMetadata) throws ProtocolAdapterException {
final DlmsObject dlmsObject = this.dlmsObjectConfigService.getDlmsObjectForCommunicationMethod(device, DlmsObjectType.GSM_DIAGNOSTIC);
final AttributeAddress[] addresses = this.createAttributeAddresses(dlmsObject);
final String addressesDescriptions = JdlmsObjectToStringUtil.describeAttributes(addresses);
conn.getDlmsMessageListener().setDescription("Get GsmDiagnostic, retrieve attributes: " + addressesDescriptions);
LOGGER.info("Get GsmDiagnostic, retrieve attributes: {}", addressesDescriptions);
final List<GetResult> getResultList = this.dlmsHelper.getAndCheck(conn, device, "Get GsmDiagnostic", addresses);
LOGGER.info("GetResultList: {}", describeGetResults(getResultList));
if (!getResultList.stream().allMatch(result -> result.getResultCode() == AccessResultCode.SUCCESS)) {
throw new ProtocolAdapterException("Get gsm diagnostic failed for " + device.getDeviceId());
}
return this.createGetGsmDiagnosticResponse(getResultList);
}
use of org.opensmartgridplatform.dto.valueobjects.smartmetering.GetGsmDiagnosticRequestDto in project open-smart-grid-platform by OSGP.
the class ManagementService method getGsmDiagnostic.
public void getGsmDiagnostic(final MessageMetadata messageMetadata, final GetGsmDiagnosticRequestData request) throws FunctionalException {
LOGGER.info("Get gsm diagnostic for organisationIdentification: {} for deviceIdentification: {}", messageMetadata.getOrganisationIdentification(), messageMetadata.getDeviceIdentification());
final GetGsmDiagnosticRequestDto requestDto = this.managementMapper.map(request, GetGsmDiagnosticRequestDto.class);
final SmartMeter smartMeter = this.domainHelperService.findSmartMeter(messageMetadata.getDeviceIdentification());
this.osgpCoreRequestMessageSender.send(requestDto, messageMetadata.builder().withIpAddress(smartMeter.getIpAddress()).withNetworkSegmentIds(smartMeter.getBtsId(), smartMeter.getCellId()).build());
}
use of org.opensmartgridplatform.dto.valueobjects.smartmetering.GetGsmDiagnosticRequestDto in project open-smart-grid-platform by OSGP.
the class GetGsmDiagnosticCommandExecutorIntegrationTest method testExecute.
private void testExecute(final Protocol protocol, final CommunicationMethod method, final boolean expectObjectNotFound) throws Exception {
// SETUP
final MessageMetadata messageMetadata = MessageMetadata.newBuilder().withCorrelationUid("123456").build();
// Reset stub
this.connectionStub.clearRequestedAttributeAddresses();
// Create device with requested protocol version and communication method
final DlmsDevice device = this.createDlmsDevice(protocol, method);
// Create request object
final GetGsmDiagnosticRequestDto request = new GetGsmDiagnosticRequestDto();
// Get expected addresses
final AttributeAddress expectedAddressOperator = this.createAttributeAddress(method, 2);
final AttributeAddress expectedAddressRegistrationStatus = this.createAttributeAddress(method, 3);
final AttributeAddress expectedAddressCsStatus = this.createAttributeAddress(method, 4);
final AttributeAddress expectedAddressPsStatus = this.createAttributeAddress(method, 5);
final AttributeAddress expectedAddressCellInfo = this.createAttributeAddress(method, 6);
final AttributeAddress expectedAddressAdjacentCells = this.createAttributeAddress(method, 7);
final AttributeAddress expectedAddressCaptureTime = this.createAttributeAddress(method, 8);
// Reading of capture_time is disabled for now, therefore only 6 addresses expected
final int expectedTotalNumberOfAttributeAddresses = 6;
// Set responses in stub
this.setResponseForOperator(expectedAddressOperator);
this.setResponseForRegistrationStatus(expectedAddressRegistrationStatus);
this.setResponseForCsStatus(expectedAddressCsStatus);
this.setResponseForPsStatus(expectedAddressPsStatus);
this.setResponseForCellInfo(expectedAddressCellInfo);
this.setResponseForAdjacentCells(expectedAddressAdjacentCells);
this.setResponseForCaptureTime(expectedAddressCaptureTime);
// CALL
GetGsmDiagnosticResponseDto response = null;
try {
response = this.executor.execute(this.connectionManagerStub, device, request, messageMetadata);
} catch (final ProtocolAdapterException e) {
if (expectObjectNotFound) {
assertThat(e.getMessage()).isEqualTo("Did not find GSM_DIAGNOSTIC object with communication method " + method.getMethodName() + " for device 6789012");
return;
} else {
fail("Unexpected ProtocolAdapterException: " + e.getMessage());
}
}
// VERIFY
// Get resulting requests from connection stub
final List<AttributeAddress> requestedAttributeAddresses = this.connectionStub.getRequestedAttributeAddresses();
assertThat(requestedAttributeAddresses.size()).isEqualTo(expectedTotalNumberOfAttributeAddresses);
// Check response
assertThat(response).isNotNull();
assertThat(response).isNotNull();
assertThat(response.getOperator()).isEqualTo("Operator");
assertThat(response.getModemRegistrationStatus()).isEqualTo(ModemRegistrationStatusDto.REGISTERED_ROAMING);
assertThat(response.getCircuitSwitchedStatus()).isEqualTo(CircuitSwitchedStatusDto.INACTIVE);
assertThat(response.getPacketSwitchedStatus()).isEqualTo(PacketSwitchedStatusDto.CDMA);
final CellInfoDto cellInfo = response.getCellInfo();
assertThat(cellInfo.getCellId()).isEqualTo(93L);
assertThat(cellInfo.getLocationId()).isEqualTo(2232);
assertThat(cellInfo.getSignalQuality()).isEqualTo(SignalQualityDto.MINUS_87_DBM);
assertThat(cellInfo.getBitErrorRate()).isEqualTo(BitErrorRateDto.RXQUAL_6);
assertThat(cellInfo.getMobileCountryCode()).isEqualTo(204);
assertThat(cellInfo.getMobileNetworkCode()).isEqualTo(66);
assertThat(cellInfo.getChannelNumber()).isEqualTo(107);
final List<AdjacentCellInfoDto> adjacentCells = response.getAdjacentCells();
assertThat(adjacentCells.size()).isEqualTo(3);
assertThat(adjacentCells.get(0).getCellId()).isEqualTo(85L);
assertThat(adjacentCells.get(0).getSignalQuality()).isEqualTo(SignalQualityDto.MINUS_65_DBM);
// Reading of capture_time is disabled, so don't check the capture time
// assertThat(response.getCaptureTime())
// .isEqualTo(new DateTime(2021, 4, 1, 9, 28, DateTimeZone.UTC).toDate());
}
use of org.opensmartgridplatform.dto.valueobjects.smartmetering.GetGsmDiagnosticRequestDto in project open-smart-grid-platform by OSGP.
the class GetGsmDiagnosticRequestMessageProcessor method handleMessage.
@Override
protected Serializable handleMessage(final DlmsConnectionManager conn, final DlmsDevice device, final Serializable requestObject, final MessageMetadata messageMetadata) throws OsgpException {
this.assertRequestObjectType(GetGsmDiagnosticRequestDto.class, requestObject);
final GetGsmDiagnosticRequestDto requestDto = (GetGsmDiagnosticRequestDto) requestObject;
return this.managementService.getGsmDiagnostic(conn, device, requestDto, messageMetadata);
}
Aggregations