| | |
| | | import com.dji.sample.common.model.ResponseResult; |
| | | import com.dji.sample.component.mqtt.model.CommonTopicResponse; |
| | | import com.dji.sample.component.mqtt.model.ServiceReply; |
| | | import com.dji.sample.component.mqtt.model.StateDataEnum; |
| | | import com.dji.sample.component.mqtt.service.IMessageSenderService; |
| | | import com.dji.sample.component.redis.RedisConst; |
| | | import com.dji.sample.component.redis.RedisOpsUtils; |
| | |
| | | @Autowired |
| | | private IMessageSenderService messageSender; |
| | | |
| | | @Autowired |
| | | private RedisOpsUtils redisOps; |
| | | |
| | | @Override |
| | | public List<CapacityDeviceDTO> getLiveCapacity(String workspaceId) { |
| | | |
| | |
| | | |
| | | // Query the live capability of each drone. |
| | | return devicesList.stream() |
| | | .filter(device -> redisOps.checkExist(RedisConst.DEVICE_ONLINE_PREFIX + device.getDeviceSn())) |
| | | .filter(device -> RedisOpsUtils.checkExist(RedisConst.DEVICE_ONLINE_PREFIX + device.getDeviceSn())) |
| | | .map(device -> CapacityDeviceDTO.builder() |
| | | .name(Objects.requireNonNullElse(device.getNickname(), device.getDeviceName())) |
| | | .sn(device.getDeviceSn()) |
| | |
| | | // Solve timing problems |
| | | for (CapacityDeviceReceiver capacityDeviceReceiver : liveCapacityReceiver.getDeviceList()) { |
| | | long last = (long) Objects.requireNonNullElse( |
| | | redisOps.get(StateDataEnum.LIVE_CAPACITY + RedisConst.DELIMITER + capacityDeviceReceiver.getSn()), 0L); |
| | | RedisOpsUtils.get(RedisConst.LIVE_CAPACITY + capacityDeviceReceiver.getSn()), 0L); |
| | | if (last > timestamp) { |
| | | return; |
| | | } |
| | |
| | | .toString()); |
| | | break; |
| | | case RTSP: |
| | | String url = receiveReply.getInfo().toString(); |
| | | this.resolveUrlUser(url, live); |
| | | Object url = Objects.requireNonNullElse(receiveReply.getOutput(), receiveReply.getInfo()); |
| | | this.resolveUrlUser(String.valueOf(url), live); |
| | | break; |
| | | case UNKNOWN: |
| | | return ResponseResult.error(LiveErrorEnum.URL_TYPE_NOT_SUPPORTED); |
| | |
| | | String respTopic = THING_MODEL_PRE + PRODUCT + responseResult.getData().getDeviceSn() + SERVICES_SUF; |
| | | |
| | | ServiceReply receiveReply = this.publishLiveSetQuality(respTopic, liveParam); |
| | | if (ResponseResult.CODE_SUCCESS == receiveReply.getResult()) { |
| | | if (ResponseResult.CODE_SUCCESS != receiveReply.getResult()) { |
| | | return ResponseResult.error(LiveErrorEnum.find(receiveReply.getResult())); |
| | | } |
| | | |
| | |
| | | if (ResponseResult.CODE_SUCCESS != responseResult.getCode()) { |
| | | return responseResult; |
| | | } |
| | | if (DeviceDomainEnum.GATEWAY.getDesc().equals(responseResult.getData().getDomain())) { |
| | | if (DeviceDomainEnum.GATEWAY.getVal() == responseResult.getData().getDomain()) { |
| | | return ResponseResult.error(LiveErrorEnum.FUNCTION_NOT_SUPPORT); |
| | | } |
| | | |
| | |
| | | return ResponseResult.error(LiveErrorEnum.NO_AIRCRAFT); |
| | | } |
| | | |
| | | if (deviceOpt.get().getDomain().equals(DeviceDomainEnum.DOCK.getDesc())) { |
| | | if (DeviceDomainEnum.DOCK.getVal() == deviceOpt.get().getDomain()) { |
| | | return ResponseResult.success(deviceOpt.get()); |
| | | } |
| | | List<DeviceDTO> gatewayList = deviceService.getDevicesByParams( |