MqttServiceImpl.java 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. package com.keystar.plane.inspection.service.impl;
  2. import cn.hutool.core.util.IdUtil;
  3. import com.drew.imaging.jpeg.JpegProcessingException;
  4. import com.fasterxml.jackson.core.JsonProcessingException;
  5. import com.fasterxml.jackson.databind.ObjectMapper;
  6. import com.keystar.mqtt.bo.MqttMessageBo;
  7. import com.keystar.plane.inspection.bo.NewFileBo;
  8. import com.keystar.plane.inspection.bo.PhotoMqttMessageBo;
  9. import com.keystar.plane.inspection.dao.PlanePhotoVo;
  10. import com.keystar.plane.inspection.entity.PlanePhotoEntity;
  11. import com.keystar.plane.inspection.service.MqttService;
  12. import com.keystar.plane.inspection.service.PhotoService;
  13. import com.keystar.plane.inspection.service.PlanePhotoService;
  14. import com.keystar.plane.inspection.utils.FileUtil;
  15. import lombok.extern.slf4j.Slf4j;
  16. import org.eclipse.paho.client.mqttv3.MqttAsyncClient;
  17. import org.eclipse.paho.client.mqttv3.MqttException;
  18. import org.eclipse.paho.client.mqttv3.MqttMessage;
  19. import org.springframework.beans.factory.annotation.Autowired;
  20. import org.springframework.stereotype.Service;
  21. import java.io.File;
  22. import java.io.IOException;
  23. import java.net.URLEncoder;
  24. import java.nio.charset.StandardCharsets;
  25. import java.text.ParseException;
  26. import java.text.SimpleDateFormat;
  27. import java.util.*;
  28. @Slf4j
  29. @Service
  30. public class MqttServiceImpl implements MqttService {
  31. @Autowired
  32. MqttAsyncClient mqttAsyncClient;
  33. @Autowired
  34. PhotoService photoService;
  35. @Autowired
  36. PlanePhotoService planePhotoService;
  37. @Autowired
  38. MqttService mqttService;
  39. private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
  40. @Override
  41. public void sendMqtt(List<PhotoMqttMessageBo> messageBos) throws JsonProcessingException {
  42. MqttMessage mqttMessage = new MqttMessage();
  43. Map<String, Object> map = new HashMap<>();
  44. map.put("data", messageBos);
  45. byte[] bytes = OBJECT_MAPPER.writeValueAsBytes(map);
  46. mqttMessage.setPayload(bytes);
  47. try {
  48. mqttAsyncClient.publish("LightSpot_recognize",mqttMessage);
  49. } catch (MqttException e) {
  50. }
  51. }
  52. /**
  53. * 发送最新任务图片目录给图像识别
  54. **/
  55. @Override
  56. public void sendPhotos(String path, String type) throws JsonProcessingException {
  57. // 获取新图片的minio地址
  58. // List<String> newPhoto = FileUtil.getNewPhoto(path);
  59. // MqttMessage mqttMessage = new MqttMessage();
  60. // for (String photoPath : newPhoto){
  61. // // 先初步判断
  62. //
  63. //
  64. // // 每张图片单独发一个MQ
  65. // PhotoMqttMessageBo mqttMessageBo = new PhotoMqttMessageBo();
  66. // mqttMessageBo.setFuncIndex(type);
  67. // mqttMessageBo.setInfraredImagePath(photoPath);
  68. // byte[] bytes = OBJECT_MAPPER.writeValueAsBytes(mqttMessageBo);
  69. // mqttMessage.setPayload(bytes);
  70. // try {
  71. // mqttAsyncClient.publish("LightSpot_recognize",mqttMessage);
  72. // } catch (MqttException e) {
  73. //
  74. // }
  75. // }
  76. }
  77. /**
  78. * 发送最新图片目录mqtt给图像
  79. **/
  80. @Override
  81. public void sendPhotoFile(String path, String type) throws JsonProcessingException {
  82. // 获取最新修改的目录地址
  83. // String newFilePath = FileUtil.getNewFilePath();
  84. //
  85. // PhotoMqttMessageBo photoMqttMessageBo = new PhotoMqttMessageBo();
  86. // Map<String, List<PhotoMqttMessageBo>> map = new HashMap<>();
  87. // photoMqttMessageBo.setFunc_index("0");
  88. // photoMqttMessageBo.setInfrared_image_path(path);
  89. // MqttMessage mqttMessage = new MqttMessage();
  90. // List<PhotoMqttMessageBo> messageBoList = new ArrayList<>();
  91. // messageBoList.add(photoMqttMessageBo);
  92. // map.put("data", messageBoList);
  93. // byte[] bytes = OBJECT_MAPPER.writeValueAsBytes(map);
  94. // mqttMessage.setPayload(bytes);
  95. // try {
  96. // mqttAsyncClient.publish("sunboard_recognize_result",mqttMessage);
  97. // } catch (MqttException e) {
  98. //
  99. // }
  100. }
  101. @Override
  102. public void sendPhotoMqtt() throws IOException, JpegProcessingException, ParseException, InterruptedException {
  103. // NewFileBo newFile = FileUtil.getNewFilePath();
  104. NewFileBo newFile = new NewFileBo();
  105. newFile.setMissionId(2420);
  106. newFile.setRecordId(1871);
  107. newFile.setPath("/data/photo/"+ "2420" + "/" + "1871");
  108. log.info("=====返回的最新的图片文件目录:" + newFile.toString());
  109. File path = new File(newFile.getPath());
  110. log.info("=====图片目录:" + path.getPath());
  111. File[] files = path.listFiles();
  112. SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  113. if (files != null){
  114. log.info("======目录里面的文件数:" + files.length);
  115. // 取出红外图片
  116. List <PlanePhotoEntity> photoEntityList = new ArrayList<>();
  117. for ( File file : files){
  118. log.info("========图片名:" + file.getPath());
  119. if (file.getName().contains("THRM.jpg") || file.getName().contains("T.jpg") || file.getName().contains("T.JPG") || file.getName().contains("THRM.JPG")){
  120. log.info("=======红外图片地址:" + file.getPath());
  121. // 且图片是在光伏区内
  122. PlanePhotoVo planePhotoVo = photoService.queryPhoto(file.getPath());
  123. log.info("======图片算法判断结果:"+ planePhotoVo.toString());
  124. if (planePhotoVo.getPZName() != null){
  125. // 将图片入库
  126. PlanePhotoEntity planePhotoEntity = new PlanePhotoEntity();
  127. planePhotoEntity.setId(IdUtil.getSnowflake().nextId());
  128. // minio地址
  129. String minioPath = "/nest/photo/"+newFile.getMissionId()+"/"+newFile.getRecordId()+"/"+file.getName();
  130. // String s = new String(minioPath.getBytes(StandardCharsets.UTF_8));
  131. // String encode = URLEncoder.encode(s, "UTF-8");
  132. planePhotoEntity.setPath(minioPath);
  133. planePhotoEntity.setPzName(planePhotoVo.getPZName());
  134. String joined = String.join(",", planePhotoVo.getPVNames());
  135. planePhotoEntity.setPvName(joined);
  136. planePhotoEntity.setTime(sd.parse(sd.format(new Date(file.lastModified()))));
  137. planePhotoEntity.setMissionId(newFile.getMissionId());
  138. planePhotoEntity.setRecordId(newFile.getRecordId());
  139. photoEntityList.add(planePhotoEntity);
  140. // planePhotoService.save(planePhotoEntity);
  141. // log.info("======将图片入库:" + planePhotoEntity.toString());
  142. // // 发送mqtt给图像识别
  143. // Thread.sleep(3000);
  144. // PhotoMqttMessageBo photoMqttMessageBo = new PhotoMqttMessageBo();
  145. // photoMqttMessageBo.setId(planePhotoEntity.getId());
  146. // photoMqttMessageBo.setFunc_index("0");
  147. // photoMqttMessageBo.setInfrared_image_path(minioPath);
  148. // mqttService.sendMqtt(photoMqttMessageBo);
  149. // log.info("======将图片发送mqtt给图像识别:" + photoMqttMessageBo.toString());
  150. }
  151. }
  152. }
  153. // 遍历完图片后,一起入库和发给图像识别
  154. planePhotoService.saveBatch(photoEntityList);
  155. log.info("======遍历完成,将图像信息入库======");
  156. List<String> funcIndex = new ArrayList<>();
  157. // 二极管故障
  158. funcIndex.add("1");
  159. // 遮挡
  160. funcIndex.add("1");
  161. // 掉串
  162. funcIndex.add("0");
  163. List<PhotoMqttMessageBo> messageBoList = new ArrayList<>();
  164. for ( PlanePhotoEntity photoEntity : photoEntityList){
  165. PhotoMqttMessageBo photoMqttMessageBo = new PhotoMqttMessageBo();
  166. photoMqttMessageBo.setId(photoEntity.getId());
  167. photoMqttMessageBo.setFuncIndex(funcIndex);
  168. photoMqttMessageBo.setVisibleImagePath("");
  169. photoMqttMessageBo.setInfraredImagePath(photoEntity.getPath());
  170. messageBoList.add(photoMqttMessageBo);
  171. }
  172. mqttService.sendMqtt(messageBoList);
  173. }else {
  174. log.info("======文件夹是空的======");
  175. }
  176. }
  177. }