BoatPollutionWarningServiceImpl.java 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. package com.shanghaichengdi.service.impl;
  2. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  3. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  4. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  5. import com.shanghaichengdi.common.enums.*;
  6. import com.shanghaichengdi.common.exception.BizException;
  7. import com.shanghaichengdi.common.properties.GpsStartTimeProperties;
  8. import com.shanghaichengdi.common.properties.WarningProperties;
  9. import com.shanghaichengdi.common.util.LocalDateTimeUtil;
  10. import com.shanghaichengdi.dao.entity.*;
  11. import com.shanghaichengdi.dao.mapper.BoatPollutionWarningMapper;
  12. import com.shanghaichengdi.model.vo.BoatAISVO;
  13. import com.shanghaichengdi.service.*;
  14. import lombok.extern.slf4j.Slf4j;
  15. import org.springframework.stereotype.Service;
  16. import javax.annotation.Resource;
  17. import java.text.SimpleDateFormat;
  18. import java.time.Duration;
  19. import java.time.LocalDateTime;
  20. import java.time.ZoneId;
  21. import java.util.*;
  22. import java.util.concurrent.CompletableFuture;
  23. import java.util.stream.Collectors;
  24. /**
  25. * @ClassName BoatPollutionWarningServiceImpl
  26. * @Author Tevin
  27. * @DATE 2024/12/27 11:42
  28. * @Description TODO
  29. **/
  30. @Slf4j
  31. @Service
  32. public class BoatPollutionWarningServiceImpl extends ServiceImpl<BoatPollutionWarningMapper, BoatPollutionWarning> implements IBoatPollutionWarningService {
  33. @Resource
  34. private GpsStartTimeProperties gpsStartTimeProperties;
  35. @Resource
  36. private WarningProperties warningProperties;
  37. @Resource
  38. private IGpsinfoHistoryService gpsinfoHistoryService;
  39. @Resource
  40. private IGpsinfoRealtimeService gpsinfoRealtimeService;
  41. @Resource
  42. private IDictDistrictPortService dictDistrictPortService;
  43. @Resource
  44. private IBoatPollutionSupervisionService boatPollutionSupervisionService;
  45. @Resource
  46. private ISerialService serialService;
  47. @Resource
  48. private IBoatWaterPollutantAcceptFService boatWaterPollutantAcceptFService;
  49. @Resource
  50. private ICCbShipEepReportRecService ccbShipEepReportRecService;
  51. /**
  52. * 处理市内短驳船预警
  53. */
  54. public void handleShortBarge() {
  55. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge start==========");
  56. LocalDateTime handleStartTime = LocalDateTime.now();
  57. Date maxGpsTime = boatPollutionSupervisionService.getMaxGpsTime(SupervisionTypeEnum.SHORT_BARGE.getStatusCode());
  58. LocalDateTime startdefaultLocalDateTime = LocalDateTimeUtil.parse(gpsStartTimeProperties.getGpsstartsime());
  59. Date startTime = Optional.ofNullable(maxGpsTime).orElse(Date.from(startdefaultLocalDateTime.atZone(ZoneId.systemDefault()).toInstant()));
  60. LocalDateTime startLocalDateTime = startTime.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime();
  61. long diffMillis = Duration.between(startLocalDateTime, LocalDateTime.now()).toMillis();
  62. if (diffMillis <= 0) {
  63. return;
  64. }
  65. LocalDateTime endLocalDateTime = this.calSuperviseEndTime(startLocalDateTime, diffMillis);
  66. Date endTime = Date.from(endLocalDateTime.atZone(ZoneId.systemDefault()).toInstant());
  67. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.getShotBargeAis==========");
  68. //查询开始结束时间段内的市内短驳船AIS历史数据进行分析
  69. // List<BoatAISVO> boatAISList = gpsinfoHistoryService.getShotBargeAisHistory(startTime, endTime);
  70. List<BoatAISVO> boatAISList = gpsinfoRealtimeService.getShotBargeAisRealtime(startTime, endTime);
  71. if (boatAISList.isEmpty()) {
  72. throw new BizException("未查到船舶AIS数据!");
  73. }
  74. // 查询全部有效的监管船舶
  75. List<BoatPollutionSupervision> boatPollutionSupervisionList = boatPollutionSupervisionService.list();
  76. if (boatPollutionSupervisionList.isEmpty()) {
  77. throw new BizException("未查到船舶监管记录!");
  78. }
  79. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.dictDistrictPortList==========");
  80. List<DictDistrictPort> dictDistrictPortList = dictDistrictPortService.getDictDistrictPortList();
  81. Map<String, List<BoatAISVO>> boatAISVOMap = boatAISList.stream().collect(Collectors.groupingBy(BoatAISVO::getDeviceId));
  82. List<Map<String, List<BoatAISVO>>> boatAISVOMaplist = splitMap(boatAISVOMap, 50);
  83. boatAISVOMaplist.forEach(subBoatAISVOMap -> CompletableFuture.runAsync(() -> {
  84. {
  85. boatAISVOMap.forEach((k, v) -> {
  86. //查询船舶最近监管记录
  87. List<BoatPollutionSupervision> bpsList = boatPollutionSupervisionList.stream().filter(x -> x.getMmsi().equals(k) && x.getSupervisionState().equals(SupervisionStateEnum.SUPERVISING.getStatusCode())).sorted(Comparator.comparing(BoatPollutionSupervision::getCreatedTime).reversed()).collect(Collectors.toList());
  88. LocalDateTime gpsTime = LocalDateTimeUtil.parse(v.get(0).getGpsTime());
  89. //进出港申报记录
  90. LambdaQueryWrapper<CCbShipEepReportRec> cCbShipEepReportRecLambdaQueryWrapper = new LambdaQueryWrapper<>();
  91. if (v.get(0).getShipId() != null) {
  92. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipId, v.get(0).getShipId())
  93. .le(CCbShipEepReportRec::getReportTime, gpsTime)
  94. .ge(CCbShipEepReportRec::getReportTime, gpsTime.minusDays(20))
  95. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  96. .orderByDesc(CCbShipEepReportRec::getReportTime);
  97. } else if (v.get(0).getDeviceId() != null) {
  98. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getMmsi, v.get(0).getDeviceId())
  99. .le(CCbShipEepReportRec::getReportTime, gpsTime)
  100. .ge(CCbShipEepReportRec::getReportTime, gpsTime.minusDays(20))
  101. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  102. .orderByDesc(CCbShipEepReportRec::getReportTime);
  103. } else {
  104. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipNameCn, v.get(0).getShipName())
  105. .le(CCbShipEepReportRec::getReportTime, gpsTime)
  106. .ge(CCbShipEepReportRec::getReportTime, gpsTime.minusDays(20))
  107. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  108. .orderByDesc(CCbShipEepReportRec::getReportTime);
  109. }
  110. List<CCbShipEepReportRec> ccbShipEepReportRecList = ccbShipEepReportRecService.list(cCbShipEepReportRecLambdaQueryWrapper);
  111. if (!bpsList.isEmpty()) {
  112. BoatPollutionSupervision bps = bpsList.get(0);
  113. if (bps.getHasWarning().equals(HasWarningEnum.HAS.getStatusCode())) {
  114. //有预警
  115. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.start==========");
  116. BoatPollutionWarning boatPollutionWarning = this.getOne(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getSupervisionCode, bps.getCode()));
  117. if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.UNDISPOSED.getStatusCode())) {
  118. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  119. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.undisposed.removeWarning==========");
  120. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  121. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  122. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  123. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  124. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  125. }
  126. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CONFIRM.getStatusCode())) {
  127. //查询排放物
  128. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  129. if (v.get(0).getShipName() != null) {
  130. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  131. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  132. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  133. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  134. .le(BoatWaterPollutantAcceptF::getFirstDtm, boatPollutionWarning.getWarningTime().plusDays(5).isAfter(gpsTime) ? gpsTime : boatPollutionWarning.getWarningTime().plusDays(5))
  135. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  136. } else {
  137. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  138. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  139. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  140. .le(BoatWaterPollutantAcceptF::getFirstDtm, boatPollutionWarning.getWarningTime().plusDays(5).isAfter(gpsTime) ? gpsTime : boatPollutionWarning.getWarningTime().plusDays(5))
  141. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  142. }
  143. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  144. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  145. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  146. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.Y5.pollutant_release==========");
  147. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  148. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  149. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  150. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  151. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  152. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  153. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  154. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  155. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  156. this.lambdaUpdate()
  157. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  158. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  159. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  160. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  161. } else {
  162. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.Y5.warning_exceed==========");
  163. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  164. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  165. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  166. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  167. this.lambdaUpdate()
  168. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  169. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  170. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.WARNING_EXCEED.getStatusCode())
  171. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  172. }
  173. } else {
  174. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  175. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.N5.pollutant_release==========");
  176. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  177. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  178. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  179. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  180. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  181. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  182. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  183. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  184. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  185. this.lambdaUpdate()
  186. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  187. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  188. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  189. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  190. } else {
  191. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.N5.updateBoatPollutionSupervision==========");
  192. boatPollutionSupervisionService.lambdaUpdate()
  193. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  194. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  195. }
  196. }
  197. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CANCEL.getStatusCode())) {
  198. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.cancel.removeWarning==========");
  199. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  200. }
  201. } else {
  202. //无预警
  203. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.start==========");
  204. //查询排放物
  205. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  206. if (v.get(0).getShipName() != null) {
  207. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  208. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  209. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  210. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  211. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  212. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  213. } else {
  214. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  215. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  216. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  217. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  218. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  219. }
  220. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  221. //查询是否到监控周期内的第五天
  222. if (gpsTime.isAfter(bps.getStartTime().plusDays(5))) {
  223. //是否有排放记录
  224. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  225. //结束监管
  226. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.overBoatPollutionWarning==========");
  227. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  228. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  229. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  230. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  231. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  232. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  233. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  234. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  235. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  236. } else {
  237. //生成预警
  238. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.generateBoatPollutionWarning==========");
  239. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getHasWarning, HasWarningEnum.HAS.getStatusCode())
  240. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  241. .set(BoatPollutionSupervision::getWarningCount, bps.getWarningCount() + 1)
  242. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  243. BoatPollutionWarning boatPollutionWarningItem = new BoatPollutionWarning();
  244. boatPollutionWarningItem.setCode(serialService.getCusNumber("bpw"));
  245. boatPollutionWarningItem.setSupervisionCode(bps.getCode());
  246. boatPollutionWarningItem.setBoatName(bps.getBoatName());
  247. boatPollutionWarningItem.setMmsi(bps.getMmsi());
  248. boatPollutionWarningItem.setType(SewageTypeEnum.SEWAGE.getType());
  249. boatPollutionWarningItem.setWarningTime(gpsTime);
  250. boatPollutionWarningItem.setReportCode(ccbShipEepReportRecList.get(0).getReportNo());
  251. boatPollutionWarningItem.setWarningState(WarningStateEnum.WANNING.getStatusCode());
  252. boatPollutionWarningItem.setIsRead(IsReadEnum.UNREAD.getStatusCode());
  253. boatPollutionWarningItem.setDistrict(this.getDistinct(ccbShipEepReportRecList.get(0), dictDistrictPortList));
  254. boatPollutionWarningItem.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  255. boatPollutionWarningItem.setRelieveType(RelieveTypeEnum.WARNING.getStatusCode());
  256. boatPollutionWarningItem.setSendmsgFlag(SendMsgFlagEnum.UNSENT.getStatusCode());
  257. boatPollutionWarningItem.setWarnCount(0);
  258. boatPollutionWarningItem.setFilterState(FilterStateEnum.UNDISPOSED.getStatusCode());
  259. this.save(boatPollutionWarningItem);
  260. }
  261. } else {
  262. //是否有排放记录
  263. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  264. //结束监管
  265. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.overBoatPollutionSupervision==========");
  266. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  267. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  268. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  269. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  270. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  271. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  272. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  273. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  274. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  275. } else {
  276. //更新监管
  277. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.updateBoatPollutionSupervision==========");
  278. boatPollutionSupervisionService.lambdaUpdate()
  279. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  280. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISING.getStatusCode())
  281. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  282. }
  283. }
  284. }
  285. } else {
  286. if (!ccbShipEepReportRecList.isEmpty()) {
  287. //新增监管记录
  288. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge saveBoatPollutionSupervision==========");
  289. BoatPollutionSupervision boatPollutionSupervision = new BoatPollutionSupervision();
  290. boatPollutionSupervision.setCode(serialService.getCusNumber("bps"));
  291. boatPollutionSupervision.setMmsi(k);
  292. boatPollutionSupervision.setStartTime(gpsTime);
  293. boatPollutionSupervision.setGpsTime(gpsTime);
  294. boatPollutionSupervision.setIsBreak(IsBreakEnum.VALID_0.getStatusCode());
  295. boatPollutionSupervision.setHasWarning(HasWarningEnum.NONE.getStatusCode());
  296. boatPollutionSupervision.setReportId(ccbShipEepReportRecList.get(0).getReportId());
  297. boatPollutionSupervision.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  298. boatPollutionSupervision.setBoatName(v.get(0).getShipName());
  299. boatPollutionSupervision.setOutCount(0);
  300. boatPollutionSupervision.setSupervisionType(SupervisionTypeEnum.SHORT_BARGE.getStatusCode());
  301. boatPollutionSupervision.setSupervisionState(SupervisionStateEnum.SUPERVISING.getStatusCode());
  302. boatPollutionSupervision.setPredictwarnSwTime(gpsTime.plusDays(Long.parseLong(warningProperties.getPollutionday())));
  303. boatPollutionSupervision.setWarningCount(0);
  304. boatPollutionSupervisionService.save(boatPollutionSupervision);
  305. }
  306. }
  307. });
  308. }
  309. }));
  310. LocalDateTime handleEndTime = LocalDateTime.now();
  311. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge crossTime:[" + Duration.between(handleStartTime, handleEndTime).toMillis() + " milliseconds]==========");
  312. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge end==========");
  313. }
  314. /**
  315. * 处理普通船舶预警
  316. */
  317. public void handleOrdinaryShip() {
  318. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip start==========");
  319. LocalDateTime handleStartTime = LocalDateTime.now();
  320. Date maxGpsTime = boatPollutionSupervisionService.getMaxGpsTime(SupervisionTypeEnum.ORDINARY_SHIP_TYPE.getStatusCode());
  321. LocalDateTime startdefaultLocalDateTime = LocalDateTimeUtil.parse(gpsStartTimeProperties.getGpsstartsime());
  322. Date startTime = Optional.ofNullable(maxGpsTime).orElse(Date.from(startdefaultLocalDateTime.atZone(ZoneId.systemDefault()).toInstant()));
  323. LocalDateTime startLocalDateTime = startTime.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime();
  324. SimpleDateFormat sdf = new SimpleDateFormat(" yyyy-MM-dd HH:mm:ss ");
  325. long diffMillis = Duration.between(startLocalDateTime, LocalDateTime.now()).toMillis();
  326. if (diffMillis <= 0) {
  327. return;
  328. }
  329. LocalDateTime endLocalDateTime = this.calSuperviseEndTime(startLocalDateTime, diffMillis);
  330. Date endTime = Date.from(endLocalDateTime.atZone(ZoneId.systemDefault()).toInstant());
  331. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.getShotBargeAis==========");
  332. //查询开始结束时间段内的市内短驳船AIS历史数据进行分析
  333. List<BoatAISVO> boatAISList = gpsinfoHistoryService.getOrdinaryShipAisHistory(startTime, endTime);
  334. if (boatAISList.isEmpty()) {
  335. throw new BizException("未查到船舶AIS数据!");
  336. }
  337. // 查询全部有效的监管船舶
  338. List<BoatPollutionSupervision> boatPollutionSupervisionList = boatPollutionSupervisionService.list();
  339. if (boatPollutionSupervisionList.isEmpty()) {
  340. throw new BizException("未查到船舶监管记录!");
  341. }
  342. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.dictDistrictPortList==========");
  343. List<DictDistrictPort> dictDistrictPortList = dictDistrictPortService.getDictDistrictPortList();
  344. Map<String, List<BoatAISVO>> boatAISVOMap = boatAISList.stream().collect(Collectors.groupingBy(BoatAISVO::getDeviceId));
  345. List<Map<String, List<BoatAISVO>>> boatAISVOMaplist = splitMap(boatAISVOMap, 50);
  346. boatAISVOMaplist.forEach(subBoatAISVOMap -> CompletableFuture.runAsync(() -> {
  347. {
  348. boatAISVOMap.forEach((k, v) -> {
  349. //查询船舶最近监管记录
  350. List<BoatPollutionSupervision> bpsList = boatPollutionSupervisionList.stream().filter(x -> x.getMmsi().equals(k) && x.getSupervisionState().equals(SupervisionStateEnum.SUPERVISING.getStatusCode())).sorted(Comparator.comparing(BoatPollutionSupervision::getCreatedTime).reversed()).collect(Collectors.toList());
  351. LocalDateTime gpsTime = LocalDateTimeUtil.parse(v.get(0).getGpsTime());
  352. if (!bpsList.isEmpty()) {
  353. BoatPollutionSupervision bps = bpsList.get(0);
  354. //查询排放物
  355. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  356. if (!v.get(0).getShipName().isEmpty()) {
  357. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getSewageType, v.get(0).getDeviceId())
  358. .eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  359. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  360. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  361. .gt(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  362. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  363. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  364. } else {
  365. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getSewageType, v.get(0).getShipName())
  366. .eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  367. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  368. .gt(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  369. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  370. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  371. }
  372. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  373. if (bps.getHasWarning().equals(HasWarningEnum.HAS.getStatusCode())) {
  374. //有预警
  375. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.start==========");
  376. BoatPollutionWarning boatPollutionWarning = this.getOne(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getSupervisionCode, bps.getCode()));
  377. if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.UNDISPOSED.getStatusCode())) {
  378. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  379. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.undisposed.removeWarning==========");
  380. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  381. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  382. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  383. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  384. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  385. }
  386. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CONFIRM.getStatusCode())) {
  387. //判断是否到预警后的第5天
  388. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  389. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  390. //有排污
  391. //查询是否出港
  392. boolean isOut = false;
  393. Integer outCount = 0;
  394. LocalDateTime outTime = null;
  395. for (int i = 0; i < v.size(); i++) {
  396. if (v.get(i).getState() == 0) {
  397. outCount++;
  398. if (outCount >= 3) {
  399. isOut = true;
  400. outTime = LocalDateTime.parse(v.get(i - 2).getGpsTime());
  401. break;
  402. }
  403. } else if (v.get(i).getState() == 1) {
  404. outCount = 0;
  405. }
  406. }
  407. if (isOut) {
  408. if (outTime.isBefore(gpsTime)) {
  409. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.leave_port==========");
  410. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  411. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  412. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  413. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  414. this.lambdaUpdate()
  415. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  416. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  417. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.LEAVE_PORT.getStatusCode())
  418. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  419. } else {
  420. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.pollutant_release2==========");
  421. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  422. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  423. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  424. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  425. this.lambdaUpdate()
  426. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  427. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  428. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  429. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  430. }
  431. } else {
  432. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.pollutant_release==========");
  433. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  434. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  435. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  436. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  437. this.lambdaUpdate()
  438. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  439. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  440. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  441. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  442. }
  443. } else {
  444. //无排污
  445. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.warning_exceed==========");
  446. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  447. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  448. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  449. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  450. this.lambdaUpdate()
  451. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  452. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  453. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.WARNING_EXCEED.getStatusCode())
  454. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  455. }
  456. } else {
  457. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  458. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.N5.pollutant_release==========");
  459. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  460. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  461. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  462. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  463. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  464. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  465. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  466. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  467. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  468. this.lambdaUpdate()
  469. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  470. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  471. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  472. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  473. } else {
  474. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.N5.updateBoatPollutionSupervision==========");
  475. boatPollutionSupervisionService.lambdaUpdate()
  476. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  477. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  478. this.lambdaUpdate()
  479. .set(BoatPollutionWarning::getWarnCount, boatPollutionWarning.getWarnCount() + 1)
  480. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  481. }
  482. }
  483. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CANCEL.getStatusCode())) {
  484. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.removeWarning==========");
  485. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  486. }
  487. }
  488. } else {
  489. //无预警
  490. //查询近三次AIS中是否有一个点在围栏内
  491. boolean isIn = false;
  492. LocalDateTime inTime = null;
  493. for (BoatAISVO boatAISVO : v) {
  494. if (boatAISVO.getState() == 1) {
  495. inTime = LocalDateTimeUtil.parse(boatAISVO.getGpsTime());
  496. isIn = true;
  497. break;
  498. }
  499. }
  500. if (isIn) {
  501. //有一个点在围栏内
  502. //查询进出港申报地是上海的申报记录
  503. LambdaQueryWrapper<CCbShipEepReportRec> cCbShipEepReportRecLambdaQueryWrapper = new LambdaQueryWrapper<>();
  504. if (v.get(0).getShipId() != null) {
  505. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipId, v.get(0).getShipId())
  506. .between(CCbShipEepReportRec::getReportTime, inTime.minusDays(1), inTime)
  507. .eq(CCbShipEepReportRec::getArrivalOrLeave, ArrivalOrLeaveEnum.ARRIVAL.getStatusCode())
  508. .likeRight(CCbShipEepReportRec::getOrgCode, "29").orderByDesc(CCbShipEepReportRec::getReportTime);
  509. } else if (v.get(0).getDeviceId() != null) {
  510. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getMmsi, v.get(0).getDeviceId())
  511. .between(CCbShipEepReportRec::getReportTime, inTime.minusDays(1), inTime)
  512. .eq(CCbShipEepReportRec::getArrivalOrLeave, ArrivalOrLeaveEnum.ARRIVAL.getStatusCode())
  513. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  514. .orderByDesc(CCbShipEepReportRec::getReportTime);
  515. } else if (v.get(0).getShipName() != null) {
  516. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipNameCn, v.get(0).getShipName())
  517. .between(CCbShipEepReportRec::getReportTime, inTime.minusDays(1), inTime)
  518. .eq(CCbShipEepReportRec::getArrivalOrLeave, ArrivalOrLeaveEnum.ARRIVAL.getStatusCode())
  519. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  520. .orderByDesc(CCbShipEepReportRec::getReportTime);
  521. }
  522. List<CCbShipEepReportRec> ccbShipEepReportRecList = ccbShipEepReportRecService.list(cCbShipEepReportRecLambdaQueryWrapper);
  523. if (!ccbShipEepReportRecList.isEmpty()) {
  524. //查询前5天是否有排放记录
  525. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  526. if (v.get(0).getShipName() != null) {
  527. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  528. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  529. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  530. .gt(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime.minusDays(5))
  531. .le(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime)
  532. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  533. } else {
  534. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getShipName())
  535. .eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  536. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  537. .gt(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime.minusDays(5))
  538. .le(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime)
  539. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  540. }
  541. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  542. if (boatWaterPollutantAcceptFList.isEmpty()) {
  543. //新增监管记录
  544. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip saveBoatPollutionSupervision==========");
  545. BoatPollutionSupervision boatPollutionSupervision = new BoatPollutionSupervision();
  546. boatPollutionSupervision.setCode(serialService.getCusNumber("bps"));
  547. boatPollutionSupervision.setMmsi(k);
  548. boatPollutionSupervision.setStartTime(gpsTime);
  549. boatPollutionSupervision.setGpsTime(gpsTime);
  550. boatPollutionSupervision.setIsBreak(IsBreakEnum.VALID_0.getStatusCode());
  551. boatPollutionSupervision.setHasWarning(HasWarningEnum.HAS.getStatusCode());
  552. boatPollutionSupervision.setReportId(ccbShipEepReportRecList.get(0).getReportId());
  553. boatPollutionSupervision.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  554. boatPollutionSupervision.setBoatName(v.get(0).getShipName());
  555. boatPollutionSupervision.setOutCount(0);
  556. boatPollutionSupervision.setSupervisionType(SupervisionTypeEnum.ORDINARY_SHIP_TYPE.getStatusCode());
  557. boatPollutionSupervision.setSupervisionState(SupervisionStateEnum.SUPERVISING.getStatusCode());
  558. boatPollutionSupervision.setPredictwarnSwTime(gpsTime.plusDays(Long.parseLong(warningProperties.getPollutionday())));
  559. boatPollutionSupervision.setWarningCount(0);
  560. boatPollutionSupervisionService.save(boatPollutionSupervision);
  561. //生成预警
  562. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.generateBoatPollutionWarning==========");
  563. BoatPollutionWarning boatPollutionWarningItem = new BoatPollutionWarning();
  564. boatPollutionWarningItem.setCode(serialService.getCusNumber("obpw"));
  565. boatPollutionWarningItem.setSupervisionCode(boatPollutionSupervision.getCode());
  566. boatPollutionWarningItem.setBoatName(boatPollutionSupervision.getBoatName());
  567. boatPollutionWarningItem.setMmsi(boatPollutionSupervision.getMmsi());
  568. boatPollutionWarningItem.setType(SewageTypeEnum.SEWAGE.getType());
  569. boatPollutionWarningItem.setWarningTime(gpsTime);
  570. boatPollutionWarningItem.setReportCode(ccbShipEepReportRecList.get(0).getReportNo());
  571. boatPollutionWarningItem.setWarningState(WarningStateEnum.WANNING.getStatusCode());
  572. boatPollutionWarningItem.setIsRead(IsReadEnum.UNREAD.getStatusCode());
  573. boatPollutionWarningItem.setDistrict(this.getDistinct(ccbShipEepReportRecList.get(0), dictDistrictPortList));
  574. boatPollutionWarningItem.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  575. boatPollutionWarningItem.setRelieveType(RelieveTypeEnum.WARNING.getStatusCode());
  576. boatPollutionWarningItem.setSendmsgFlag(SendMsgFlagEnum.UNSENT.getStatusCode());
  577. boatPollutionWarningItem.setWarnCount(0);
  578. boatPollutionWarningItem.setFilterState(FilterStateEnum.UNDISPOSED.getStatusCode());
  579. this.save(boatPollutionWarningItem);
  580. }
  581. }
  582. }
  583. }
  584. });
  585. }
  586. }));
  587. LocalDateTime handleEndTime = LocalDateTime.now();
  588. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge crossTime:[" + Duration.between(handleStartTime, handleEndTime).toMillis() + " milliseconds]==========");
  589. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip end==========");
  590. }
  591. /**
  592. * 计算监控时间
  593. *
  594. * @param startTime
  595. * @param diffMillis
  596. * @return
  597. */
  598. private LocalDateTime calSuperviseEndTime(LocalDateTime startTime, long diffMillis) {
  599. int millsAdd = 0;
  600. if (diffMillis <= 600000) {
  601. millsAdd = 600;
  602. } else if (diffMillis <= 1800000) {
  603. millsAdd = 1800;
  604. } else if (diffMillis <= 3600000) {
  605. millsAdd = 3600;
  606. } else if (diffMillis <= 5400000) {
  607. millsAdd = 5400;
  608. } else if (diffMillis <= 7200000) {
  609. millsAdd = 7200;
  610. } else {
  611. millsAdd = 7200;
  612. }
  613. return startTime.plusSeconds(millsAdd);
  614. }
  615. /**
  616. * 获取泊位信息
  617. *
  618. * @param cCbShipEepReportRec
  619. * @param districtPortList
  620. * @return
  621. */
  622. private String getDistinct(CCbShipEepReportRec cCbShipEepReportRec, List<DictDistrictPort> districtPortList) {
  623. // log.info(report.toString());
  624. String district = "未知";
  625. for (int i = 0; i < districtPortList.size(); i++) {
  626. if (cCbShipEepReportRec.getBerthName().equals(districtPortList.get(i).getBerthname())) {
  627. district = districtPortList.get(i).getTeam() + "-" + districtPortList.get(i).getLochus();
  628. // log.info("匹配到内河泊位,所属区县大队为:"+district);
  629. }
  630. }
  631. // 进出港类型 0进港 1出港
  632. if (cCbShipEepReportRec.getArrivalOrLeave() == 0) {
  633. if (cCbShipEepReportRec.getReportPortCode().indexOf("31") == 0) {
  634. // 受理机构是01开头代表上海外港
  635. if (cCbShipEepReportRec.getOrgCode().indexOf("01") == 0) {
  636. district = "上海海事局辖区";
  637. // log.info("匹配到进港申报到 "+district);
  638. }
  639. }
  640. } else {
  641. if (cCbShipEepReportRec.getNextPortCode().indexOf("31") == 0) {
  642. // 受理机构是01开头代表上海外港
  643. if (cCbShipEepReportRec.getOrgCode().indexOf("01") == 0) {
  644. district = "上海海事局辖区";
  645. // log.info("匹配到出港申报到 "+district);
  646. }
  647. }
  648. }
  649. return district;
  650. }
  651. private List<Map<String, List<BoatAISVO>>> splitMap(Map<String, List<BoatAISVO>> map, int splitSize) {
  652. List<Map<String, List<BoatAISVO>>> result = new ArrayList<>();
  653. int count = 0;
  654. Map<String, List<BoatAISVO>> subMap = new HashMap<>();
  655. for (Map.Entry<String, List<BoatAISVO>> entry : map.entrySet()) {
  656. subMap.put(entry.getKey(), entry.getValue());
  657. count++;
  658. if (count == splitSize) {
  659. result.add(subMap);
  660. subMap = new HashMap<>();
  661. count = 0;
  662. }
  663. }
  664. if (!subMap.isEmpty()) {
  665. result.add(subMap);
  666. }
  667. return result;
  668. }
  669. }