From 8d9a2d656e4ae007590c622e5f7c228adacdca49 Mon Sep 17 00:00:00 2001
From: rain <167982779@qq.com>
Date: Fri, 14 Jun 2024 10:11:36 +0800
Subject: [PATCH] 统一风格

---
 src/main/java/com/dji/sample/manage/service/impl/LiveStreamServiceImpl.java |  228 ++++++++++++++++++++++++++++++++++----------------------
 1 files changed, 137 insertions(+), 91 deletions(-)

diff --git a/src/main/java/com/dji/sample/manage/service/impl/LiveStreamServiceImpl.java b/src/main/java/com/dji/sample/manage/service/impl/LiveStreamServiceImpl.java
index 371ad97..c37dba9 100644
--- a/src/main/java/com/dji/sample/manage/service/impl/LiveStreamServiceImpl.java
+++ b/src/main/java/com/dji/sample/manage/service/impl/LiveStreamServiceImpl.java
@@ -2,22 +2,20 @@
 
 import com.dji.sample.common.error.LiveErrorEnum;
 import com.dji.sample.common.model.ResponseResult;
-import com.dji.sample.component.mqtt.model.CommonTopicReceiver;
 import com.dji.sample.component.mqtt.model.CommonTopicResponse;
+import com.dji.sample.component.mqtt.model.ServiceReply;
 import com.dji.sample.component.mqtt.service.IMessageSenderService;
-import com.dji.sample.manage.model.Chan;
+import com.dji.sample.component.redis.RedisConst;
+import com.dji.sample.component.redis.RedisOpsUtils;
 import com.dji.sample.manage.model.dto.*;
 import com.dji.sample.manage.model.enums.DeviceDomainEnum;
-import com.dji.sample.manage.model.enums.LiveMethodEnum;
+import com.dji.sample.manage.model.enums.LiveStreamMethodEnum;
 import com.dji.sample.manage.model.enums.LiveUrlTypeEnum;
 import com.dji.sample.manage.model.enums.LiveVideoQualityEnum;
 import com.dji.sample.manage.model.param.DeviceQueryParam;
 import com.dji.sample.manage.model.receiver.CapacityDeviceReceiver;
-import com.dji.sample.manage.model.receiver.ServiceReplyReceiver;
-import com.dji.sample.manage.service.ICapacityCameraService;
-import com.dji.sample.manage.service.IDeviceService;
-import com.dji.sample.manage.service.ILiveStreamService;
-import com.dji.sample.manage.service.IWorkspaceService;
+import com.dji.sample.manage.model.receiver.LiveCapacityReceiver;
+import com.dji.sample.manage.service.*;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
@@ -26,7 +24,7 @@
 import java.lang.reflect.Field;
 import java.util.*;
 import java.util.concurrent.ConcurrentHashMap;
-import java.util.concurrent.atomic.AtomicInteger;
+import java.util.stream.Collectors;
 
 import static com.dji.sample.component.mqtt.model.TopicConst.*;
 
@@ -51,61 +49,90 @@
     @Autowired
     private IMessageSenderService messageSender;
 
-    @Override
-    public List<CapacityDeviceDTO> getLiveCapacity(String workspaceId) {
+    @Autowired
+    private IDeviceRedisService deviceRedisService;
 
-        // Query all drone data in this workspace.
+    @Override
+    public List<CapacityDeviceDTO> getLiveCapacity(String workspaceId,String sn) {
+
+        // Query all devices in this workspace.
+        //查询该工作区中的所有设备。
         List<DeviceDTO> devicesList = deviceService.getDevicesByParams(
                 DeviceQueryParam.builder()
                         .workspaceId(workspaceId)
-                        .domain(DeviceDomainEnum.SUB_DEVICE.getVal())
+                        .deviceSn(sn)
+                        .domains(List.of(DeviceDomainEnum.SUB_DEVICE.getVal(), DeviceDomainEnum.DOCK.getVal()))
                         .build());
 
-        List<CapacityDeviceDTO> capacityDevicesList = new ArrayList<>();
         // Query the live capability of each drone.
-        devicesList.forEach(device -> capacityDevicesList.add(CapacityDeviceDTO.builder()
-                .name(device.getDeviceName())
-                .sn(device.getDeviceSn())
-                .camerasList(capacityCameraService.getCapacityCameraByDeviceSn(device.getDeviceSn()))
-                .build()));
-
-        return capacityDevicesList;
+        return devicesList.stream()
+                //过滤出在线设备
+                .filter(device -> deviceRedisService.checkDeviceOnline(device.getDeviceSn()))
+                .map(device -> CapacityDeviceDTO.builder()
+                        .name(Objects.requireNonNullElse(device.getNickname(), device.getDeviceName()))
+                        .sn(device.getDeviceSn())
+                        .camerasList(capacityCameraService.getCapacityCameraByDeviceSn(device.getDeviceSn()))
+                        .build())
+                .collect(Collectors.toList());
     }
 
     @Override
-    public Boolean saveLiveCapacity(CapacityDeviceReceiver capacityDeviceReceiver) {
-        return capacityCameraService.saveCapacityCameraReceiverList(
-                capacityDeviceReceiver.getCameraList(),
-                capacityDeviceReceiver.getSn());
+    public void saveLiveCapacity(LiveCapacityReceiver liveCapacityReceiver, Long timestamp) {
+        // Solve timing problems
+        for (CapacityDeviceReceiver capacityDeviceReceiver : liveCapacityReceiver.getDeviceList()) {
+            long last = (long) Objects.requireNonNullElse(
+                    RedisOpsUtils.get(RedisConst.LIVE_CAPACITY + capacityDeviceReceiver.getSn()), 0L);
+            if (last > timestamp) {
+                return;
+            }
+            capacityCameraService.saveCapacityCameraReceiverList(
+                    capacityDeviceReceiver.getCameraList(),
+                    capacityDeviceReceiver.getSn(), timestamp);
+        }
     }
 
     @Override
     public ResponseResult liveStart(LiveTypeDTO liveParam) {
+
+//        String streamId_2 = liveParam.getVideoId().replace("/","_");
+//        String streamId_1 = liveParam.getVideoId().replace("_","/");
+//        liveParam.setVideoId(streamId_2);
+
         // Check if this lens is available live.
+        //检查镜头是否可用
         ResponseResult responseResult = this.checkBeforeLive(liveParam.getVideoId());
-        if (responseResult.getCode() != 0) {
+        if (ResponseResult.CODE_SUCCESS != responseResult.getCode()) {
             return responseResult;
         }
 
-        List<DeviceDTO> data = (List<DeviceDTO>)responseResult.getData();
+        DeviceDTO data = (DeviceDTO)responseResult.getData();
         // target topic
+        //thing/product/{gateway_sn}/services   云平台向设备发送的服务
         String respTopic = THING_MODEL_PRE + PRODUCT +
-                data.get(0).getDeviceSn() + SERVICES_SUF;
-        Optional<ServiceReplyReceiver> receiveReplyOpt = this.publishLiveStart(respTopic, liveParam);
+                data.getDeviceSn() + SERVICES_SUF;
 
-        if (receiveReplyOpt.isEmpty()) {
-            return ResponseResult.error(LiveErrorEnum.NO_REPLY);
+        //获取返回结果
+        ServiceReply receiveReply = this.publishLiveStart(respTopic, liveParam);
+
+        //相机已经在直播中,请勿重复开启直播
+        if(receiveReply.getResult() == 513003) {
+            LiveDTO live = new LiveDTO();
+            live.setUrl(liveParam.getUrl().replace("rtmp", "https").replace("735","700") + ".flv");
+            return ResponseResult.success(live);
         }
-        if (receiveReplyOpt.get().getResult() != 0) {
-            return ResponseResult.error(LiveErrorEnum.find(receiveReplyOpt.get().getResult()));
+
+        if (ResponseResult.CODE_SUCCESS != receiveReply.getResult()) {
+            return ResponseResult.error(LiveErrorEnum.find(receiveReply.getResult()));
         }
 
         LiveUrlTypeEnum urlType = LiveUrlTypeEnum.find(liveParam.getUrlType());
         LiveDTO live = new LiveDTO();
 
+        //对不同的协议类型做处理
         switch (urlType) {
             case RTMP:
-                live.setUrl(liveParam.getUrl().replace("rtmp", "webrtc"));
+//                live.setUrl(liveParam.getUrl().replace("rtmp", "webrtc"));
+                live.setUrl(liveParam.getUrl().replace("rtmp", "https").replace("735","700") + ".flv");
                 break;
             case GB28181:
                 LiveUrlGB28181DTO gb28181 = urlToGB28181(liveParam.getUrl());
@@ -119,7 +146,7 @@
                         .toString());
                 break;
             case RTSP:
-                String url = receiveReplyOpt.get().getInfo();
+                String url = receiveReply.getOutput().toString();
                 this.resolveUrlUser(url, live);
                 break;
             case UNKNOWN:
@@ -131,19 +158,19 @@
 
     @Override
     public ResponseResult liveStop(String videoId) {
-        ResponseResult<List<DeviceDTO>> responseResult = this.checkBeforeLive(videoId);
+        ResponseResult<DeviceDTO> responseResult = this.checkBeforeLive(videoId);
         if (responseResult.getCode() != 0) {
             return responseResult;
         }
 
-        String respTopic = THING_MODEL_PRE + PRODUCT + responseResult.getData().get(0).getDeviceSn() + SERVICES_SUF;
+        //thing/product/{gateway_sn}/services
+        String respTopic = THING_MODEL_PRE + PRODUCT + responseResult.getData().getDeviceSn() + SERVICES_SUF;
 
-        Optional<ServiceReplyReceiver> receiveReplyOpt = this.publishLiveStop(respTopic, videoId);
-        if (receiveReplyOpt.isEmpty()) {
-            return ResponseResult.error(LiveErrorEnum.NO_REPLY);
-        }
-        if (receiveReplyOpt.get().getResult() != 0) {
-            return ResponseResult.error(LiveErrorEnum.find(receiveReplyOpt.get().getResult()));
+        videoId = videoId.replace("_","/");
+
+        ServiceReply receiveReply = this.publishLiveStop(respTopic, videoId);
+        if (receiveReply.getResult() != 0) {
+            return ResponseResult.error(LiveErrorEnum.find(receiveReply.getResult()));
         }
 
         return ResponseResult.success();
@@ -156,46 +183,91 @@
             return ResponseResult.error(LiveErrorEnum.ERROR_PARAMETERS);
         }
 
-        ResponseResult<List<DeviceDTO>> responseResult = this.checkBeforeLive(liveParam.getVideoId());
+        ResponseResult<DeviceDTO> responseResult = this.checkBeforeLive(liveParam.getVideoId());
 
         if (responseResult.getCode() != 0) {
             return responseResult;
         }
 
-        String respTopic = THING_MODEL_PRE + PRODUCT + responseResult.getData().get(0).getDeviceSn() + SERVICES_SUF;
+        String respTopic = THING_MODEL_PRE + PRODUCT + responseResult.getData().getDeviceSn() + SERVICES_SUF;
 
-        Optional<ServiceReplyReceiver> receiveReplyOpt = this.publishLiveSetQuality(respTopic, liveParam);
-        if (receiveReplyOpt.isEmpty()) {
-            return ResponseResult.error(LiveErrorEnum.NO_REPLY);
-        }
-        if (receiveReplyOpt.get().getResult() != 0) {
-            return ResponseResult.error(LiveErrorEnum.find(receiveReplyOpt.get().getResult()));
+        ServiceReply receiveReply = this.publishLiveSetQuality(respTopic, liveParam);
+        if (ResponseResult.CODE_SUCCESS != receiveReply.getResult()) {
+            return ResponseResult.error(LiveErrorEnum.find(receiveReply.getResult()));
         }
 
         return ResponseResult.success();
     }
 
+    @Override
+    public ResponseResult liveLensChange(LiveTypeDTO liveParam) {
+        if (!StringUtils.hasText(liveParam.getVideoType())) {
+            return ResponseResult.error(LiveErrorEnum.ERROR_PARAMETERS);
+        }
+
+        ResponseResult<DeviceDTO> responseResult = this.checkBeforeLive(liveParam.getVideoId());
+        if (ResponseResult.CODE_SUCCESS != responseResult.getCode()) {
+            return responseResult;
+        }
+        if (DeviceDomainEnum.GATEWAY.getVal() == responseResult.getData().getDomain()) {
+            return ResponseResult.error(LiveErrorEnum.FUNCTION_NOT_SUPPORT);
+        }
+
+        String respTopic = THING_MODEL_PRE + PRODUCT + responseResult.getData().getDeviceSn() + SERVICES_SUF;
+
+        ServiceReply receiveReply = this.publishLiveLensChange(respTopic, liveParam);
+
+        if (ResponseResult.CODE_SUCCESS != receiveReply.getResult()) {
+            return ResponseResult.error(LiveErrorEnum.find(receiveReply.getResult()));
+        }
+
+        return ResponseResult.success();
+    }
+
+    private ServiceReply publishLiveLensChange(String respTopic, LiveTypeDTO liveParam) {
+        CommonTopicResponse<LiveTypeDTO> response = new CommonTopicResponse<>();
+        response.setTid(UUID.randomUUID().toString());
+        response.setBid(UUID.randomUUID().toString());
+        response.setMethod(LiveStreamMethodEnum.LIVE_LENS_CHANGE.getMethod());
+        response.setData(liveParam);
+
+        return messageSender.publishWithReply(ServiceReply.class, respTopic, response);
+    }
+
     /**
      * Check if this lens is available live.
+     * 检查镜头是否可用
      * @param videoId
      * @return
      */
-    private ResponseResult checkBeforeLive(String videoId) {
+    private ResponseResult<DeviceDTO> checkBeforeLive(String videoId) {
+        if (!StringUtils.hasText(videoId)) {
+            return ResponseResult.error(LiveErrorEnum.ERROR_PARAMETERS);
+        }
         String[] videoIdArr = videoId.split("/");
         // drone sn / enumeration value of the location where the payload is mounted / payload lens
         if (videoIdArr.length != 3) {
             return ResponseResult.error(LiveErrorEnum.ERROR_PARAMETERS);
         }
 
+        Optional<DeviceDTO> deviceOpt = deviceService.getDeviceBySn(videoIdArr[0]);
+        // Check if the gateway device connected to this drone exists
+        if (deviceOpt.isEmpty()) {
+            return ResponseResult.error(LiveErrorEnum.NO_AIRCRAFT);
+        }
+
+        if (DeviceDomainEnum.DOCK.getVal() == deviceOpt.get().getDomain()) {
+            return ResponseResult.success(deviceOpt.get());
+        }
         List<DeviceDTO> gatewayList = deviceService.getDevicesByParams(
                 DeviceQueryParam.builder()
                         .childSn(videoIdArr[0])
                         .build());
-        // Check if the gateway device connected to this drone exists
         if (gatewayList.isEmpty()) {
             return ResponseResult.error(LiveErrorEnum.NO_FLIGHT_CONTROL);
         }
-        return ResponseResult.success(gatewayList);
+
+        return ResponseResult.success(gatewayList.get(0));
     }
 
     /**
@@ -246,18 +318,19 @@
 
     /**
      * Send a message to the pilot via mqtt to start the live streaming.
+     *通过mqtt向飞行员发送消息以启动直播。
      * @param topic
      * @param liveParam
      * @return
      */
-    private Optional<ServiceReplyReceiver> publishLiveStart(String topic, LiveTypeDTO liveParam) {
+    private ServiceReply publishLiveStart(String topic, LiveTypeDTO liveParam) {
         CommonTopicResponse<LiveTypeDTO> response = new CommonTopicResponse<>();
         response.setTid(UUID.randomUUID().toString());
         response.setBid(UUID.randomUUID().toString());
         response.setData(liveParam);
-        response.setMethod(LiveMethodEnum.LIVE_START_PUSH.getMethod());
+        response.setMethod(LiveStreamMethodEnum.LIVE_START_PUSH.getMethod());
 
-        return this.publishLive(topic, response);
+        return messageSender.publishWithReply(ServiceReply.class, topic, response);
     }
 
     /**
@@ -266,17 +339,17 @@
      * @param liveParam
      * @return
      */
-    private Optional<ServiceReplyReceiver> publishLiveSetQuality(String respTopic, LiveTypeDTO liveParam) {
+    private ServiceReply publishLiveSetQuality(String respTopic, LiveTypeDTO liveParam) {
         Map<String, Object> data = new ConcurrentHashMap<>(Map.of(
                 "video_id", liveParam.getVideoId(),
                 "video_quality", liveParam.getVideoQuality()));
         CommonTopicResponse<Map<String, Object>> response = new CommonTopicResponse<>();
         response.setTid(UUID.randomUUID().toString());
         response.setBid(UUID.randomUUID().toString());
-        response.setMethod(LiveMethodEnum.LIVE_SET_QUALITY.getMethod());
+        response.setMethod(LiveStreamMethodEnum.LIVE_SET_QUALITY.getMethod());
         response.setData(data);
 
-        return this.publishLive(respTopic, response);
+        return messageSender.publishWithReply(ServiceReply.class, respTopic, response);
     }
 
     /**
@@ -285,42 +358,15 @@
      * @param videoId
      * @return
      */
-    private Optional<ServiceReplyReceiver> publishLiveStop(String topic, String videoId) {
+    private ServiceReply publishLiveStop(String topic, String videoId) {
         Map<String, String> data = new ConcurrentHashMap<>(Map.of("video_id", videoId));
         CommonTopicResponse<Map<String, String>> response = new CommonTopicResponse<>();
         response.setTid(UUID.randomUUID().toString());
         response.setBid(UUID.randomUUID().toString());
         response.setData(data);
-        response.setMethod(LiveMethodEnum.LIVE_STOP_PUSH.getMethod());
+        response.setMethod(LiveStreamMethodEnum.LIVE_STOP_PUSH.getMethod());
 
-        return this.publishLive(topic, response);
+        return messageSender.publishWithReply(ServiceReply.class, topic, response);
     }
 
-    /**
-     * Send live streaming start message and receive a response at the same time
-     * @param topic
-     * @param response  notification of whether the start is successful.
-     * @return
-     */
-    private Optional<ServiceReplyReceiver> publishLive(String topic, CommonTopicResponse response) {
-        AtomicInteger time = new AtomicInteger(0);
-        // Retry three times
-        while (time.getAndIncrement() < 3) {
-            messageSender.publish(topic, response);
-
-            Chan<CommonTopicReceiver<ServiceReplyReceiver>> chan = Chan.getInstance();
-            // If the message is not received in 0.5 seconds then resend it again.
-            CommonTopicReceiver<ServiceReplyReceiver> receiver = chan.get(response.getMethod());
-            if (receiver == null) {
-                continue;
-            }
-            // Need to match tid and bid.
-            if (receiver.getTid().equals(response.getTid()) &&
-                    receiver.getBid().equals(response.getBid())) {
-                return Optional.ofNullable(receiver.getData());
-            }
-        }
-        return Optional.empty();
-    }
-
-}
\ No newline at end of file
+}

--
Gitblit v1.9.3