|
@@ -2,20 +2,27 @@ package cn.com.taiji.video.service.impl;
|
|
|
|
|
|
|
|
|
import cn.com.taiji.video.mapper.HtDpVideoMapper;
|
|
|
-import cn.com.taiji.video.model.HtDpVideo;
|
|
|
-import cn.com.taiji.video.model.VideoDTO;
|
|
|
+import cn.com.taiji.video.model.*;
|
|
|
+import cn.com.taiji.video.service.IHtDpVideoAnalysisService;
|
|
|
import cn.com.taiji.video.service.IVideoUrlService;
|
|
|
-import com.alibaba.fastjson.JSON;
|
|
|
+import cn.com.taiji.video.utils.DataUtils;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
+import com.hikvision.artemis.sdk.ArtemisHttpUtil;
|
|
|
+import com.hikvision.artemis.sdk.config.ArtemisConfig;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.http.*;
|
|
|
+import org.springframework.scheduling.annotation.Scheduled;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.LinkedMultiValueMap;
|
|
|
import org.springframework.util.MultiValueMap;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
-import javax.annotation.Resource;
|
|
|
+import java.time.*;
|
|
|
+import java.time.format.DateTimeFormatter;
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
@@ -35,6 +42,24 @@ public class VideoUrlServiceImpl implements IVideoUrlService {
|
|
|
@Autowired
|
|
|
private HtDpVideoMapper videoMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IHtDpVideoAnalysisService videoAnalysisService;
|
|
|
+
|
|
|
+ @Value("${taiji.faceTaskId}")
|
|
|
+ private String faceTaskId;
|
|
|
+
|
|
|
+ @Value("${taiji.carTaskId}")
|
|
|
+ private String carTaskId;
|
|
|
+
|
|
|
+ @Value("${taiji.url}")
|
|
|
+ private String analysisUrl;
|
|
|
+
|
|
|
+ @Value("${taiji.ak}")
|
|
|
+ private String ak;
|
|
|
+
|
|
|
+ @Value("${taiji.sk}")
|
|
|
+ private String sk;
|
|
|
+
|
|
|
String url = "http://10.110.80.31:8888";
|
|
|
|
|
|
@Override
|
|
@@ -84,4 +109,172 @@ public class VideoUrlServiceImpl implements IVideoUrlService {
|
|
|
public List<VideoDTO> queryVideoList() {
|
|
|
return videoMapper.selectVideoList();
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void queryTestPie(Integer type, LocalDate startDate, LocalDate endDate) {
|
|
|
+ DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM");
|
|
|
+ ArtemisConfig.host=analysisUrl;
|
|
|
+ ArtemisConfig.appKey=ak;
|
|
|
+ ArtemisConfig.appSecret=sk;
|
|
|
+ final String artemispath = "/artemis";
|
|
|
+ List<LocalDate> localDates = DataUtils.getAllDatesInTheDateRange(startDate, endDate);
|
|
|
+ if (null != localDates && localDates.size() > 0) {
|
|
|
+ localDates.forEach(item -> {
|
|
|
+ long startTimestamp = LocalDateTime.of(item, LocalTime.MIN).toInstant(ZoneOffset.ofHours(8)).toEpochMilli();
|
|
|
+ long endTimestamp = LocalDateTime.of(item, LocalTime.MAX).toInstant(ZoneOffset.ofHours(8)).toEpochMilli();
|
|
|
+ log.info("开始时间:{} ;结束时间:{}",startTimestamp,endTimestamp);
|
|
|
+ HtDpVideoAnalysis videoAnalysis = new HtDpVideoAnalysis();
|
|
|
+ videoAnalysis.setYear(String.valueOf(item.getYear()));
|
|
|
+ videoAnalysis.setYearMonth(item.format(fmt));
|
|
|
+ videoAnalysis.setStatDate(item);
|
|
|
+ videoAnalysis.setType(type);
|
|
|
+ String taskId = carTaskId;
|
|
|
+ if (1 == type) {
|
|
|
+ taskId = faceTaskId;
|
|
|
+ }
|
|
|
+ videoAnalysis.setTaskId(taskId);
|
|
|
+ String previewurlsapi = artemispath + "/api/v2/tasks/picture/statistics/"+taskId+"/"+ startTimestamp +"/"+endTimestamp;
|
|
|
+ log.info(previewurlsapi);
|
|
|
+
|
|
|
+ Map<String, String> path = new HashMap<String, String>(2) {
|
|
|
+ {
|
|
|
+ put("https://", previewurlsapi);//根据现场环境部署确认是http还是https
|
|
|
+ }
|
|
|
+ };
|
|
|
+ String contentType = "application/json";
|
|
|
+ // post请求application/json类型参数
|
|
|
+ String result = ArtemisHttpUtil.doGetArtemis(path, null, null, contentType, null);
|
|
|
+ log.info(result);
|
|
|
+ JSONObject jsonObject = JSONObject.parseObject(result).getJSONObject("data");
|
|
|
+ videoAnalysis.setPicAnalysisTotal(jsonObject.getInteger("picAnalysisTotal"));
|
|
|
+ videoAnalysis.setPicAnalysisFailCount(jsonObject.getInteger("picAnalysisFailCount"));
|
|
|
+ videoAnalysis.setPicAnalysisSuccessCount(jsonObject.getInteger("picAnalysisSuccessCount"));
|
|
|
+ videoAnalysis.setPicCaptureTotal(jsonObject.getInteger("picCaptureTotal"));
|
|
|
+ videoAnalysis.setPicFilterCount(jsonObject.getInteger("picFilterCount"));
|
|
|
+ videoAnalysis.setPicSubmitFailCount(jsonObject.getInteger("picSubmitFailCount"));
|
|
|
+ videoAnalysis.setPicSubmitSuccessCount(jsonObject.getInteger("picSubmitSuccessCount"));
|
|
|
+ videoAnalysisService.saveOrUpdate(
|
|
|
+ videoAnalysis,
|
|
|
+ Wrappers.<HtDpVideoAnalysis>lambdaUpdate()
|
|
|
+ .eq(HtDpVideoAnalysis::getType,type)
|
|
|
+ .eq(HtDpVideoAnalysis::getStatDate,item));
|
|
|
+
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Scheduled(cron = "0 0 5 * * ?")
|
|
|
+ public void scheduleOne() {
|
|
|
+ log.info("===========定时开始===========");
|
|
|
+ LocalDate localDate = LocalDate.now().plusDays(-1);
|
|
|
+ log.info("统计日期:{}",localDate);
|
|
|
+ log.info("获取视频解析人员");
|
|
|
+ this.querytime(1,localDate);
|
|
|
+ log.info("获取视频解析车辆");
|
|
|
+ this.querytime(2,localDate);
|
|
|
+ log.info("===========定时结束===========");
|
|
|
+ }
|
|
|
+
|
|
|
+ public void querytime(Integer type, LocalDate localDate) {
|
|
|
+ DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM");
|
|
|
+ ArtemisConfig.host=analysisUrl;
|
|
|
+ ArtemisConfig.appKey=ak;
|
|
|
+ ArtemisConfig.appSecret=sk;
|
|
|
+ final String artemispath = "/artemis";
|
|
|
+ long startTimestamp = LocalDateTime.of(localDate, LocalTime.MIN).toInstant(ZoneOffset.ofHours(8)).toEpochMilli();
|
|
|
+ long endTimestamp = LocalDateTime.of(localDate, LocalTime.MAX).toInstant(ZoneOffset.ofHours(8)).toEpochMilli();
|
|
|
+ log.info("开始时间:{} ;结束时间:{}",startTimestamp,endTimestamp);
|
|
|
+ HtDpVideoAnalysis videoAnalysis = new HtDpVideoAnalysis();
|
|
|
+ videoAnalysis.setYear(String.valueOf(localDate.getYear()));
|
|
|
+ videoAnalysis.setYearMonth(localDate.format(fmt));
|
|
|
+ videoAnalysis.setStatDate(localDate);
|
|
|
+ videoAnalysis.setType(type);
|
|
|
+ String taskId = carTaskId;
|
|
|
+ if (1 == type) {
|
|
|
+ taskId = faceTaskId;
|
|
|
+ }
|
|
|
+ videoAnalysis.setTaskId(taskId);
|
|
|
+ String previewurlsapi = artemispath + "/api/v2/tasks/picture/statistics/"+taskId+"/"+ startTimestamp +"/"+endTimestamp;
|
|
|
+ log.info(previewurlsapi);
|
|
|
+
|
|
|
+ Map<String, String> path = new HashMap<String, String>(2) {
|
|
|
+ {
|
|
|
+ put("https://", previewurlsapi);//根据现场环境部署确认是http还是https
|
|
|
+ }
|
|
|
+ };
|
|
|
+ String contentType = "application/json";
|
|
|
+ // post请求application/json类型参数
|
|
|
+ String result = ArtemisHttpUtil.doGetArtemis(path, null, null, contentType, null);
|
|
|
+ log.info(result);
|
|
|
+ JSONObject jsonObject = JSONObject.parseObject(result).getJSONObject("data");
|
|
|
+ videoAnalysis.setPicAnalysisTotal(jsonObject.getInteger("picAnalysisTotal"));
|
|
|
+ videoAnalysis.setPicAnalysisFailCount(jsonObject.getInteger("picAnalysisFailCount"));
|
|
|
+ videoAnalysis.setPicAnalysisSuccessCount(jsonObject.getInteger("picAnalysisSuccessCount"));
|
|
|
+ videoAnalysis.setPicCaptureTotal(jsonObject.getInteger("picCaptureTotal"));
|
|
|
+ videoAnalysis.setPicFilterCount(jsonObject.getInteger("picFilterCount"));
|
|
|
+ videoAnalysis.setPicSubmitFailCount(jsonObject.getInteger("picSubmitFailCount"));
|
|
|
+ videoAnalysis.setPicSubmitSuccessCount(jsonObject.getInteger("picSubmitSuccessCount"));
|
|
|
+ videoAnalysisService.saveOrUpdate(
|
|
|
+ videoAnalysis,
|
|
|
+ Wrappers.<HtDpVideoAnalysis>lambdaUpdate()
|
|
|
+ .eq(HtDpVideoAnalysis::getType,type)
|
|
|
+ .eq(HtDpVideoAnalysis::getStatDate,localDate));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public VideoAnalysisPieDTO queryPieRecord(Integer type) {
|
|
|
+ LocalDate localDate = LocalDate.now();
|
|
|
+ String year = String.valueOf(localDate.getYear());
|
|
|
+ DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM");
|
|
|
+ String yearMonth = localDate.format(fmt);
|
|
|
+ List<AnalysisDTO> analysisDTO;
|
|
|
+ if (1 == type) {
|
|
|
+ analysisDTO = videoAnalysisService.queryFilter(year, null);
|
|
|
+ } else {
|
|
|
+ analysisDTO = videoAnalysisService.queryFilter(null,yearMonth);
|
|
|
+ }
|
|
|
+ VideoAnalysisPieDTO videoAnalysisPieDTO = new VideoAnalysisPieDTO();
|
|
|
+ // videoAnalysisPieDTO.setAnalysis(analysisDTO);
|
|
|
+ Integer total = 0;
|
|
|
+ Integer face = 0;
|
|
|
+ Integer car = 0;
|
|
|
+ Integer body = 0;
|
|
|
+ if (null != analysisDTO && analysisDTO.size() > 0) {
|
|
|
+ for (AnalysisDTO dto: analysisDTO) {
|
|
|
+ total += dto.getCount();
|
|
|
+ if (dto.getType() == 1) {
|
|
|
+ face = dto.getCount();
|
|
|
+ }
|
|
|
+ if (dto.getType() == 2) {
|
|
|
+ car = dto.getCount();
|
|
|
+ }
|
|
|
+ if (dto.getType() == 3) {
|
|
|
+ body = dto.getCount();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ videoAnalysisPieDTO.setTotal(total);
|
|
|
+ videoAnalysisPieDTO.setFace(face);
|
|
|
+ videoAnalysisPieDTO.setCar(car);
|
|
|
+ videoAnalysisPieDTO.setBody(body);
|
|
|
+
|
|
|
+ return videoAnalysisPieDTO;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<VideoAnalysisLineDTO> queryLineRecord(Integer type) {
|
|
|
+
|
|
|
+ LocalDate localDate = LocalDate.now();
|
|
|
+ String year = String.valueOf(localDate.getYear());
|
|
|
+ DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM");
|
|
|
+ String yearMonth = localDate.format(fmt);
|
|
|
+ List<VideoAnalysisLineDTO> analysisLineDTO;
|
|
|
+ if (1 == type) {
|
|
|
+ analysisLineDTO = videoAnalysisService.querytotal(year, null);
|
|
|
+ } else {
|
|
|
+ analysisLineDTO = videoAnalysisService.querytotal(null,yearMonth);
|
|
|
+ }
|
|
|
+
|
|
|
+ return analysisLineDTO;
|
|
|
+ }
|
|
|
}
|