济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
7.4 KiB

10 months ago
package com.zc.business.controller;
import com.google.gson.Gson;
import com.zc.business.domain.DcHolidays;
import com.zc.business.domain.DcNoStakeWarningTable;
import com.zc.business.domain.DcTollStationStatisticsData;
import com.zc.business.domain.DcTollStationStatisticsDataMap;
10 months ago
import com.zc.business.service.IDcGantryStatisticsDataService;
import com.zc.business.service.IDcHolidaysService;
import com.zc.business.service.IDcTollStationStatisticsDataService;
10 months ago
import com.zc.business.service.impl.DcNoStakeWarningTableServiceImpl;
import com.zc.common.core.websocket.WebSocketService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
import java.text.ParseException;
import java.text.SimpleDateFormat;
10 months ago
import java.time.LocalDate;
import java.time.LocalDateTime;
10 months ago
import java.time.format.DateTimeFormatter;
import java.util.*;
import java.util.stream.Collectors;
10 months ago
/**
*
*/
@Component
public class DcTrafficFlowWarning {
@Resource
private DcNoStakeWarningTableServiceImpl dcNoStakeWarningTableService;
@Autowired
private IDcHolidaysService dcHolidaysService;
@Autowired
private IDcGantryStatisticsDataService dcGantryStatisticsDataService;
@Autowired
private IDcTollStationStatisticsDataService iDcTollStationStatisticsDataService;
10 months ago
//@Scheduled(cron = "0/10 * * * * ?")
@Scheduled(cron = "0 0 9 * * ?")
public void DcTrafficFlow() throws ParseException {
10 months ago
// 获取当前日期
LocalDate currentDate = LocalDate.now();
// 获取当前年份
int currentYear = currentDate.getYear();
DcHolidays dcHolidays = new DcHolidays();
dcHolidays.setDate(currentYear);
//查询当前年份假期
List<DcHolidays> dcHolidaysList = dcHolidaysService.selectDcHolidaysList(dcHolidays);
// 计算当前日期加上七天的日期
LocalDate dateAfterSevenDays = currentDate.plusDays(7);
// 格式化日期输出(可选)
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
DateTimeFormatter formatterStr = DateTimeFormatter.ofPattern("yyyy年M月d日");
// String formattedDate = dateAfterSevenDays.format(formatter);
String formattedDateStr = dateAfterSevenDays.format(formatterStr);
String formattedDate ="2024-05-01";
10 months ago
for (DcHolidays holidays : dcHolidaysList) {
String vacation = holidays.getVacation();
String[] dates = vacation.split("\\|");
//判断当前日期+ 7天 与 日期 数据对比
if (formattedDate.equals(dates[0])) {
//当前假期名称
String name = holidays.getName();
dcHolidays.setDate(currentYear - 1);
10 months ago
DcHolidays dcHolidaysLast = dcHolidaysService.selectDcHolidaysListNameByDate(currentYear - 1, name);
10 months ago
String vacation1 = dcHolidaysLast.getVacation();
String[] date = vacation1.split("\\|");
Map<String, Map<String, List<Map<String, String>>>> mapListOne = new HashMap<>();
10 months ago
Map<String, List<Map<String, String>>> map = new HashMap<>();
Map<String, List<Map<String, String>>> map2 = new HashMap<>();
Map<String, List<Map<String, String>>> map3 = new HashMap<>();
Map<String, List<Map<String, String>>> map4 = new HashMap<>();
10 months ago
for (int i1 = 0; i1 < date.length; i1++) {
//交通流
List<Map<String, String>> mapList = dcGantryStatisticsDataService.realTimeTrafficFlow(date[i1], "1", "4");
List<Map<String, String>> mapList2 = dcGantryStatisticsDataService.realTimeTrafficFlow(date[i1], "3", "4");
//收费站
// access_type 1 入口 2出口
// period_type 时间颗粒度
List<Map<String, String>> dcTollStationStatisticsDataTwo = iDcTollStationStatisticsDataService.TollBoothStatistics(date[i1], "2", "4");
List<Map<String, String>> dcTollStationStatisticsData = iDcTollStationStatisticsDataService.TollBoothStatistics(date[i1], "1", "4");
10 months ago
// 计算当前日期加上七天后的日期
LocalDate dateAfterSevenDay = currentDate.plusDays(7 + i1);
10 months ago
DateTimeFormatter formattedDateLst = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String formatted = dateAfterSevenDay.format(formattedDateLst);
map.put(formatted, mapList);
map2.put(formatted, mapList2);
map3.put(formatted, dcTollStationStatisticsData);
map4.put(formatted, dcTollStationStatisticsDataTwo);
10 months ago
}
/* //根据时间进行升序排序
Map<String, List<Map<String, String>>> sortedMap = map3.entrySet().stream()
.sorted(Map.Entry.comparingByKey())
.collect(Collectors.toMap(
Map.Entry::getKey,
Map.Entry::getValue,
(oldValue, newValue) -> oldValue, // 如果有重复的key,默认保留旧值
LinkedHashMap::new // 为了保持排序,使用LinkedHashMap
));
// 用排序后的Map替换原来的map3
map3 = sortedMap;*/
mapListOne.put("1", map);//菏泽方向
mapListOne.put("3", map2);//济南方向
mapListOne.put("4", map3);//收费站入口
mapListOne.put("5", map4);//收费站出口
10 months ago
// 创建Gson对象
Gson gson = new Gson();
// 将Map转换为JSON字符串
String jsonString = gson.toJson(mapListOne);
DcNoStakeWarningTable dcNoStakeWarningTable = new DcNoStakeWarningTable();
// 计算当前日期加上七天的日期
LocalDate dateAfterSevenDa = currentDate.plusDays(7+date.length);
// 计算当前日期加上七天的日期
// 格式化日期输出(可选)
DateTimeFormatter formatte = DateTimeFormatter.ofPattern("M月d日");
String formattedDa = dateAfterSevenDa.format(formatte);
dcNoStakeWarningTable.setWarningDescription("预计"+ formattedDateStr+"-"+formattedDa+",高速车流量剧增。平台预警提醒您:提前调度路管人员前往匝道等交通事故多发路段巡查,以便及时救援。");
10 months ago
dcNoStakeWarningTable.setWarningType("1");
dcNoStakeWarningTable.setOtherConfig(jsonString);
dcNoStakeWarningTable.setWarningTime(new Date());
//存入记录
10 months ago
dcNoStakeWarningTableService.addDcNoStakeWarningTable(dcNoStakeWarningTable);
Long id = dcNoStakeWarningTable.getId();
Map<String, Object> contentMap = new HashMap<>();
contentMap.put("content", "预计"+ formattedDateStr+"-"+formattedDa+",高速车流量剧增。平台预警提醒您:提前调度路管人员前往匝道等交通事故多发路段巡查,以便及时救援。");
contentMap.put("id", id);
10 months ago
WebSocketService.broadcast("trafficFlowDataEarlyWarning", contentMap);
System.out.println(jsonString);
10 months ago
}
}
}
}