|
@@ -6,30 +6,51 @@ package com.keystar.plane.inspection.service.impl;
|
|
|
* @Describe 报告接口实现类
|
|
|
*/
|
|
|
|
|
|
-import cn.hutool.core.text.CharSequenceUtil;
|
|
|
-import cn.hutool.core.util.StrUtil;
|
|
|
import com.keystar.plane.inspection.bo.PlaneInspectionResultBo;
|
|
|
+import com.keystar.plane.inspection.entity.PlanePhotoEntity;
|
|
|
+import com.keystar.plane.inspection.mapper.PhotoResultMapper;
|
|
|
import com.keystar.plane.inspection.service.IReportService;
|
|
|
+import com.keystar.plane.inspection.service.PhotoResultService;
|
|
|
+import com.keystar.plane.inspection.service.PlanePhotoService;
|
|
|
+import com.keystar.plane.inspection.service.TangyangDataService;
|
|
|
import freemarker.cache.ClassTemplateLoader;
|
|
|
import freemarker.template.Configuration;
|
|
|
import freemarker.template.Template;
|
|
|
import freemarker.template.Version;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.aop.framework.AopContext;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
|
+import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import javax.annotation.Resource;
|
|
|
import java.io.*;
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
+import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
|
|
|
@Service
|
|
|
@Slf4j
|
|
|
+//@EnableAspectJAutoProxy(exposeProxy = true)
|
|
|
public class ReportServiceImpl implements IReportService {
|
|
|
|
|
|
final MinioService minioService;
|
|
|
|
|
|
@Autowired
|
|
|
+ private PlanePhotoService planePhotoService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private PhotoResultMapper photoResultMapper;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private TangyangDataService tangyangDataService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private PhotoResultService photoResultService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
public ReportServiceImpl(MinioService minioService) {
|
|
|
this.minioService = minioService;
|
|
|
}
|
|
@@ -84,7 +105,7 @@ public class ReportServiceImpl implements IReportService {
|
|
|
Template template = configuration.getTemplate("report.ftl", StandardCharsets.UTF_8.toString());
|
|
|
|
|
|
//todo: 记得修改路径和名字(这里后面确定路径后要挂载目录)
|
|
|
- mFile = new File("D:\\temp\\1.doc");
|
|
|
+ mFile = new File("F:\\temp\\1.doc");
|
|
|
|
|
|
fileOutputStream = new FileOutputStream(mFile);
|
|
|
|
|
@@ -120,89 +141,152 @@ public class ReportServiceImpl implements IReportService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public String pic2Base64FromMinio(String minioAddr) {
|
|
|
-
|
|
|
- String[] paths = StrUtil.splitToArray(minioAddr, "/");
|
|
|
-
|
|
|
- InputStream inputStream = null;
|
|
|
- ByteArrayOutputStream byteArrayOutputStream = null;
|
|
|
-
|
|
|
- try {
|
|
|
- inputStream = minioService.getObject(paths[1], StrUtil.sub(minioAddr,
|
|
|
- CharSequenceUtil.length(paths[1]) + 2, CharSequenceUtil.length(minioAddr)));
|
|
|
-
|
|
|
- byteArrayOutputStream = new ByteArrayOutputStream();
|
|
|
-
|
|
|
- byte[] bytes = new byte[10240];
|
|
|
- int mReadLength = 0;
|
|
|
-
|
|
|
- while ((mReadLength = inputStream.read(bytes)) != -1) {
|
|
|
- byteArrayOutputStream.write(bytes, 0, mReadLength);
|
|
|
- }
|
|
|
-
|
|
|
- return Base64.getEncoder().encodeToString(byteArrayOutputStream.toByteArray());
|
|
|
- }catch (Exception e) {
|
|
|
-
|
|
|
- }finally {
|
|
|
- if (inputStream != null) {
|
|
|
- try {
|
|
|
- inputStream.close();
|
|
|
- }catch (Exception e) {
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
- if (byteArrayOutputStream != null) {
|
|
|
- try {
|
|
|
- byteArrayOutputStream.close();
|
|
|
- }catch (Exception e) {
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return "";
|
|
|
+ public void getMonthReport() throws ParseException {
|
|
|
+ //((ReportServiceImpl)AopContext.currentProxy()).genMonthReport();
|
|
|
+ genMonthReport();
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public String pic2Base64FromPath(String filePath) {
|
|
|
-
|
|
|
- FileInputStream fileInputStream = null;
|
|
|
- ByteArrayOutputStream byteArrayOutputStream = null;
|
|
|
-
|
|
|
- try {
|
|
|
-
|
|
|
- fileInputStream = new FileInputStream(filePath);
|
|
|
-
|
|
|
- byteArrayOutputStream = new ByteArrayOutputStream();
|
|
|
-
|
|
|
- byte[] bytes = new byte[10240];
|
|
|
- int mReadLength = 0;
|
|
|
-
|
|
|
- while ((mReadLength = fileInputStream.read(bytes)) != -1) {
|
|
|
- byteArrayOutputStream.write(bytes, 0, mReadLength);
|
|
|
- }
|
|
|
-
|
|
|
- return Base64.getEncoder().encodeToString(byteArrayOutputStream.toByteArray());
|
|
|
- }catch (Exception e) {
|
|
|
-
|
|
|
- }finally {
|
|
|
- if (fileInputStream != null) {
|
|
|
- try {
|
|
|
- fileInputStream.close();
|
|
|
- }catch (Exception e) {
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
- if (byteArrayOutputStream != null) {
|
|
|
- try {
|
|
|
- byteArrayOutputStream.close();
|
|
|
- }catch (Exception e) {
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
+ @Async
|
|
|
+ public void genMonthReport() throws ParseException {
|
|
|
+
|
|
|
+ Map<String, String> mFlyCountMap = new HashMap<>();
|
|
|
+
|
|
|
+ //本月飞行总架次
|
|
|
+ mFlyCountMap.put("TotalSortie", planePhotoService.getTotalSortie().toString());
|
|
|
+ //有效巡检架次
|
|
|
+ mFlyCountMap.put("EffectiveSortie", planePhotoService.getEffectiveSortie().toString());
|
|
|
+ //有效巡检天数
|
|
|
+ mFlyCountMap.put("EffectiveInspectionDate", planePhotoService.getEffectiveInspectionDate().toString());
|
|
|
+
|
|
|
+ Map<String, String> mSummaryMap = new HashMap<>();
|
|
|
+ //方阵总数(16不需要修改)
|
|
|
+ mSummaryMap.put("TotalFZ", "16");
|
|
|
+ //组串总数(4624不需要修改)
|
|
|
+ mSummaryMap.put("TotalPVString", "4624");
|
|
|
+ //光伏板总数(124848不需要修改)
|
|
|
+ mSummaryMap.put("TotalPVPanel", "124848");
|
|
|
+ //无人机巡检覆盖方阵数
|
|
|
+ mSummaryMap.put("CoveredFZ", "16");
|
|
|
+ //无人机巡检覆盖方阵百分比
|
|
|
+ mSummaryMap.put("CoveredFZPct", "100%");
|
|
|
+ //本月巡检覆盖组串总数
|
|
|
+ mSummaryMap.put("CoveredPVString", "4624");
|
|
|
+ //本月巡检覆盖组串百分比
|
|
|
+ mSummaryMap.put("CoveredPVStringPct", "100%");
|
|
|
+ //本月巡检覆盖光伏板总数
|
|
|
+ mSummaryMap.put("CoveredPVPanel", "124848");
|
|
|
+ //本月巡检覆盖光伏板百分比
|
|
|
+ mSummaryMap.put("CoveredPVPanelPct", "100%");
|
|
|
+ //无人机未巡检方阵数
|
|
|
+ mSummaryMap.put("UncoveredFZ", "0");
|
|
|
+ //无人机未巡检方阵百分比
|
|
|
+ mSummaryMap.put("UnCoveredFZPct", "0");
|
|
|
+ //本月未巡检组串总数
|
|
|
+ mSummaryMap.put("UncoveredPVString", "0");
|
|
|
+ //本月未巡检组串百分比
|
|
|
+ mSummaryMap.put("UncoveredPVStringPct", "0");
|
|
|
+ //本月未巡检光伏板总数
|
|
|
+ mSummaryMap.put("UncoveredPVPanel", "0");
|
|
|
+ //本月未巡检光伏板百分比
|
|
|
+ mSummaryMap.put("UncoveredPVPanelPct", "0");
|
|
|
+
|
|
|
+ //存在异常方阵数
|
|
|
+ Integer FltFZ = planePhotoService.getFltFZ();
|
|
|
+ mSummaryMap.put("FltFZ", FltFZ.toString());
|
|
|
+ double FltFZPct = (FltFZ.doubleValue() / 16.0) * 100.0;
|
|
|
+ //存在异常方阵百分比
|
|
|
+ mSummaryMap.put("FltFZPct", Double.toString(FltFZPct));
|
|
|
+
|
|
|
+
|
|
|
+ Integer DioFZ = 0,DioPVString = 0,DioPVPanel = 0;
|
|
|
+ List<PlanePhotoEntity> photoEntityList = planePhotoService.queryNewRecordByMission();
|
|
|
+ for (PlanePhotoEntity photoEntity : photoEntityList){
|
|
|
+ Integer recordId = photoEntity.getRecordId();
|
|
|
+ DioFZ = DioFZ + photoResultMapper.queryFltPz(recordId, "diodeFault").size();
|
|
|
+ DioPVString = DioPVString + photoResultMapper.queryFltPVString(recordId, "diodeFault").size();
|
|
|
+ DioPVPanel = DioPVPanel + photoResultMapper.queryFltPVPanel(recordId, "diodeFault").size();
|
|
|
}
|
|
|
-
|
|
|
- return "";
|
|
|
-
|
|
|
+ //存在二极管故障的方阵数
|
|
|
+ mSummaryMap.put("DioFZ", Integer.toString(DioFZ));
|
|
|
+ //存在二极管故障的方阵百分比
|
|
|
+ mSummaryMap.put("DioFZPct", Double.toString((FltFZ.doubleValue() / 16.0) * 100.0));
|
|
|
+ //存在二极管故障的组串总数
|
|
|
+ mSummaryMap.put("DioPVString", Integer.toString(DioPVString));
|
|
|
+ //存在二极管故障的组串百分比
|
|
|
+ mSummaryMap.put("DioPVStringPct", Double.toString((DioPVString.doubleValue() / 4624.0) * 100.0));
|
|
|
+ //存在二极管故障的光伏板总数
|
|
|
+ mSummaryMap.put("DioPVPanel", Integer.toString(DioPVPanel));
|
|
|
+ //存在二极管故障的光伏板百分比
|
|
|
+ mSummaryMap.put("DioPVPanelPct", Double.toString((DioPVPanel.doubleValue() / 124848.0) * 100.0));
|
|
|
+
|
|
|
+
|
|
|
+ Integer HtsptFZ = 0,HtsptPVString = 0,HtsptPVPanel = 0;
|
|
|
+ for (PlanePhotoEntity photoEntity : photoEntityList){
|
|
|
+ Integer recordId = photoEntity.getRecordId();
|
|
|
+ HtsptFZ = HtsptFZ + photoResultMapper.queryFltPz(recordId, "covered").size();
|
|
|
+ HtsptPVString = HtsptPVString + photoResultMapper.queryFltPVString(recordId, "covered").size();
|
|
|
+ HtsptPVPanel = HtsptPVPanel + photoResultMapper.queryFltPVPanel(recordId, "covered").size();
|
|
|
+ }
|
|
|
+ //存在热斑的方阵数
|
|
|
+ mSummaryMap.put("HtsptFZ", Integer.toString(HtsptFZ));
|
|
|
+ //存在热斑的方阵百分比
|
|
|
+ mSummaryMap.put("HtsptFZPct", Double.toString((HtsptFZ.doubleValue() / 16.0) * 100.0));
|
|
|
+ //存在热斑的组串总数
|
|
|
+ mSummaryMap.put("HtsptPVString", Integer.toString(HtsptPVString));
|
|
|
+ //存在热斑的组串百分比
|
|
|
+ mSummaryMap.put("HtsptPVStringPct", Double.toString((HtsptPVString.doubleValue() / 4624.0) * 100.0));
|
|
|
+ //存在热斑的光伏板总数
|
|
|
+ mSummaryMap.put("HtsptPVPanel", Integer.toString(HtsptPVPanel));
|
|
|
+ //存在热斑的光伏板百分比
|
|
|
+ mSummaryMap.put("HtsptPVPanelPct", Double.toString((HtsptPVPanel.doubleValue() / 124848.0) * 100.0));
|
|
|
+
|
|
|
+ //存在掉串的方阵数
|
|
|
+ mSummaryMap.put("OcFZ", "0");
|
|
|
+ //存在掉串的方阵百分比
|
|
|
+ mSummaryMap.put("OcFZPct", "0%");
|
|
|
+ //存在掉串的组串总数
|
|
|
+ mSummaryMap.put("OcPVString", "0");
|
|
|
+ //存在掉串的组串百分比
|
|
|
+ mSummaryMap.put("OcPVStringPct", "0%");
|
|
|
+ //存在掉串的光伏板总数
|
|
|
+ mSummaryMap.put("OcPVPanel", "0");
|
|
|
+ //存在掉串的光伏板百分比
|
|
|
+ mSummaryMap.put("OcPVPanelPct", "0%");
|
|
|
+
|
|
|
+
|
|
|
+ //存在异常组串总数
|
|
|
+ Integer FltPVString = DioPVString + HtsptPVString;
|
|
|
+ mSummaryMap.put("FltPVString", String.valueOf(FltPVString));
|
|
|
+ //存在异常组串百分比
|
|
|
+ mSummaryMap.put("FltPVStringPct", Double.toString((FltPVString.doubleValue() / 4624.0) * 100.0));
|
|
|
+
|
|
|
+ //存在异常光伏板总数
|
|
|
+ Integer FltPVPanel = DioPVPanel + HtsptPVPanel;
|
|
|
+ mSummaryMap.put("FltPVPanel", String.valueOf(FltPVPanel));
|
|
|
+ //存在异常光伏板百分比
|
|
|
+ mSummaryMap.put("FltPVPanelPct", Double.toString((FltPVPanel.doubleValue() / 124848.0) * 100.0));
|
|
|
+
|
|
|
+ //下面这些可能要宇峰那边帮忙算
|
|
|
+ //二极管故障损失量
|
|
|
+ Double dioLose = tangyangDataService.getDioLose();
|
|
|
+ mSummaryMap.put("DioLose", String.valueOf(dioLose));
|
|
|
+ //热斑损失电量
|
|
|
+ Double htsptLose = tangyangDataService.getHtsptLose();
|
|
|
+ mSummaryMap.put("HtsptLose",String.valueOf(htsptLose));
|
|
|
+ //掉串损失电量
|
|
|
+ mSummaryMap.put("OcLose", "0");
|
|
|
+ //月度损失电量
|
|
|
+ Double totalLose = dioLose + htsptLose;
|
|
|
+ mSummaryMap.put("TotalLose", String.valueOf(totalLose));
|
|
|
+
|
|
|
+ System.out.println(mFlyCountMap.toString() + mSummaryMap.toString());
|
|
|
+
|
|
|
+ //查库组装巡检结果集合传入函数即可
|
|
|
+ List<PlaneInspectionResultBo> planeInspectionResultBoList = photoResultService.listInspectionResult();
|
|
|
+// List<PlaneInspectionResultBo> planeInspectionResultBoList = photoResultService.listInspectionResult();
|
|
|
+
|
|
|
+// reportService.createReport(mFlyCountMap, mSummaryMap, planeInspectionResultBoList);
|
|
|
+ // 多线程
|
|
|
+ createReport(mFlyCountMap, mSummaryMap, planeInspectionResultBoList);
|
|
|
}
|
|
|
}
|