|
@@ -45,126 +45,157 @@ public class CacheContext implements CommandLineRunner {
|
|
|
private IWindturbinepowerService windturbinepowerService;
|
|
|
@Resource
|
|
|
private RedisService redisService;
|
|
|
+ @Resource
|
|
|
+ private IWindturbinetestingpointaiService windturbinetestingpointaiService;
|
|
|
+ @Resource
|
|
|
+ private IWindpowerstationtestingpointService windpowerstationtestingpointService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private IWindturbinepowercurvefittingService windturbinepowercurvefittingService;
|
|
|
@Value("${runWindpowerstation}")
|
|
|
private String runWindpowerstation;
|
|
|
-
|
|
|
+ @Resource
|
|
|
+ private IWindturbinetestingpointdisService windturbinetestingpointdisService;
|
|
|
public static List<Windturbine> wtls = new ArrayList<>();
|
|
|
public static List<Project> projects = new ArrayList<>();
|
|
|
- public static List<Line> lines = new ArrayList<>();
|
|
|
- public static List<Windpowerstation> wpls = new ArrayList<>();
|
|
|
- public static List<Meterpoint> meterpoints = new ArrayList<>();
|
|
|
- public static Map<String,Meterpoint> meterpointMap = new HashMap<>();
|
|
|
- public static Map<String,List<Project>> wppromap = new HashMap<>();
|
|
|
- public static Map<String,List<Line>> prolinemap = new HashMap<>();
|
|
|
- public static Map<String,List<Windturbine>> linewtmap = new HashMap<>();
|
|
|
+ public static List<Line> lines = new ArrayList<>();
|
|
|
+ public static List<Windpowerstation> wpls = new ArrayList<>();
|
|
|
+ public static List<Meterpoint> meterpoints = new ArrayList<>();
|
|
|
+ public static Map<String, Meterpoint> meterpointMap = new HashMap<>();
|
|
|
+ public static Map<String, List<Project>> wppromap = new HashMap<>();
|
|
|
+ public static Map<String, List<Line>> prolinemap = new HashMap<>();
|
|
|
+ public static Map<String, List<Windturbine>> linewtmap = new HashMap<>();
|
|
|
public static Map<String, Map<String, Windturbinetestingpointnew>> wtpAimap = new HashMap<>();// 风电机测点AI表
|
|
|
- public static Map<String,Map<String, Windpowerstationpointnew>> linepointmap =new HashMap<>();
|
|
|
- public static Map<String,Map<String, Windpowerstationpointnew>> propointmap =new HashMap<>();
|
|
|
- public static Map<String,Map<String, Windpowerstationpointnew>> wppointmap =new HashMap<>();
|
|
|
- public static Map<String,Project> proMap = new HashMap<>();
|
|
|
- public static Map<String,List<Windturbinestatusdi>> statusMap = new HashMap<>();
|
|
|
- public static Map<String,Map<Double,Double>> zbzglMap = new HashMap<>();
|
|
|
- public static Map<String,Equipmentmodel> modelMap = new HashMap<>();
|
|
|
- public static Map<String,Map<Double,Double>> zzsglMap = new HashMap<>();
|
|
|
- public static Map<String,Double> modelpower = new HashMap<>();
|
|
|
+ public static Map<String, Map<String, Windpowerstationpointnew>> linepointmap = new HashMap<>();
|
|
|
+ public static Map<String, Map<String, Windpowerstationpointnew>> propointmap = new HashMap<>();
|
|
|
+ public static Map<String, Map<String, Windpowerstationpointnew>> wppointmap = new HashMap<>();
|
|
|
+ public static Map<String, Project> proMap = new HashMap<>();
|
|
|
+ public static Map<String, List<Windturbinestatusdi>> statusMap = new HashMap<>();
|
|
|
+ public static Map<String, Map<Double, Double>> zbzglMap = new HashMap<>();
|
|
|
+ public static Map<String, Equipmentmodel> modelMap = new HashMap<>();
|
|
|
+ public static Map<String, Map<Double, Double>> zzsglMap = new HashMap<>();
|
|
|
+ public static Map<String, Double> modelpower = new HashMap<>();
|
|
|
+
|
|
|
+ public static Map<String, Integer> redisDbMap = new HashMap<>();
|
|
|
+
|
|
|
+ public static Map<String, Map<String, Windturbinetestingpointai>> wtPointmap = new HashMap<>();// 风电机测点AI表
|
|
|
+
|
|
|
+
|
|
|
+ public static Map<String, Map<String, Windpowerstationtestingpoint>> wpPointmap = new HashMap<>();
|
|
|
+
|
|
|
+ public static Map<String, Map<Double, Windturbinepowercurvefitting>> curveFittingPowerMap = new HashMap<>();
|
|
|
+
|
|
|
+ public static List<Windturbinetestingpointdis> pointdis = new ArrayList<>();
|
|
|
+
|
|
|
@Override
|
|
|
public void run(String... args) throws Exception {
|
|
|
logger.info("缓存开始------------------------------------------------------------");
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
List<String> runWpids = Arrays.asList(runWindpowerstation.split(","));
|
|
|
- logger.info(runWpids.get(0)+"------------------"+runWpids.size());
|
|
|
+ logger.info(runWpids.get(0) + "------------------" + runWpids.size());
|
|
|
|
|
|
List<Equipmentmodel> equipmentmodels = equipmentmodelService.list();
|
|
|
- equipmentmodels.stream().forEach(e->{
|
|
|
- modelMap.put(e.getId(),e);
|
|
|
+ equipmentmodels.stream().forEach(e -> {
|
|
|
+ modelMap.put(e.getId(), e);
|
|
|
});
|
|
|
|
|
|
- wtls = windturbineService.list().stream().filter(i->runWpids.contains(i.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
- logger.info(wtls.size()+"");
|
|
|
- wtls.forEach(wt->{
|
|
|
+ wtls = windturbineService.list().stream().filter(i -> runWpids.contains(i.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
+ logger.info(wtls.size() + "");
|
|
|
+ wtls.forEach(wt -> {
|
|
|
Equipmentmodel equipmentmodel = modelMap.get(wt.getModelid());
|
|
|
- modelpower.put(wt.getId(),equipmentmodel.getPowerproduction());
|
|
|
+ modelpower.put(wt.getId(), equipmentmodel.getPowerproduction());
|
|
|
|
|
|
String wtString = redisService.get(wt.getId());
|
|
|
Map<String, Windturbinetestingpointnew> stringWindturbinetestingpointnewMap = JSONObject.parseObject(wtString, new TypeReference<Map<String, Windturbinetestingpointnew>>() {
|
|
|
});
|
|
|
- wtpAimap.put(wt.getId(),stringWindturbinetestingpointnewMap);
|
|
|
+ wtpAimap.put(wt.getId(), stringWindturbinetestingpointnewMap);
|
|
|
|
|
|
- if (linewtmap.containsKey(wt.getLineid())){
|
|
|
+ if (linewtmap.containsKey(wt.getLineid())) {
|
|
|
linewtmap.get(wt.getLineid()).add(wt);
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
List<Windturbine> lines = new ArrayList<>();
|
|
|
lines.add(wt);
|
|
|
- linewtmap.put(wt.getLineid(),lines);
|
|
|
+ linewtmap.put(wt.getLineid(), lines);
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- projects = projectService.list().stream().filter(i->runWpids.contains(i.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
- projects.stream().forEach(p->{
|
|
|
- proMap.put(p.getId(),p);
|
|
|
- if (wppromap.containsKey(p.getWindpowerstationid())){
|
|
|
+ projects = projectService.list().stream().filter(i -> runWpids.contains(i.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
+ projects.stream().forEach(p -> {
|
|
|
+ proMap.put(p.getId(), p);
|
|
|
+ if (wppromap.containsKey(p.getWindpowerstationid())) {
|
|
|
wppromap.get(p.getWindpowerstationid()).add(p);
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
List<Project> prolist = new ArrayList<>();
|
|
|
prolist.add(p);
|
|
|
- wppromap.put(p.getWindpowerstationid(),prolist);
|
|
|
+ wppromap.put(p.getWindpowerstationid(), prolist);
|
|
|
}
|
|
|
String pjString = redisService.get(p.getId());
|
|
|
Map<String, Windpowerstationpointnew> stringWindpowerstationpointnewMap = JSONObject.parseObject(pjString, new TypeReference<Map<String, Windpowerstationpointnew>>() {
|
|
|
});
|
|
|
- propointmap.put(p.getId(),stringWindpowerstationpointnewMap);
|
|
|
+ propointmap.put(p.getId(), stringWindpowerstationpointnewMap);
|
|
|
|
|
|
});
|
|
|
|
|
|
- lines = lineService.list().stream().filter(i-> StringUtils.isNotNull(proMap.get(i.getProjectid())) && runWpids.contains(proMap.get(i.getProjectid()).getWindpowerstationid())).collect(Collectors.toList());
|
|
|
- lines.stream().forEach(l->{
|
|
|
- if (prolinemap.containsKey(l.getProjectid())){
|
|
|
+ lines = lineService.list().stream().filter(i -> StringUtils.isNotNull(proMap.get(i.getProjectid())) && runWpids.contains(proMap.get(i.getProjectid()).getWindpowerstationid())).collect(Collectors.toList());
|
|
|
+ lines.stream().forEach(l -> {
|
|
|
+ if (prolinemap.containsKey(l.getProjectid())) {
|
|
|
prolinemap.get(l.getProjectid()).add(l);
|
|
|
- }else {
|
|
|
+ } else {
|
|
|
List<Line> lineList = new ArrayList<>();
|
|
|
lineList.add(l);
|
|
|
- prolinemap.put(l.getProjectid(),lineList);
|
|
|
+ prolinemap.put(l.getProjectid(), lineList);
|
|
|
}
|
|
|
String lnString = redisService.get(l.getId());
|
|
|
Map<String, Windpowerstationpointnew> stringWindpowerstationpointnewMap = JSONObject.parseObject(lnString, new TypeReference<Map<String, Windpowerstationpointnew>>() {
|
|
|
});
|
|
|
- linepointmap.put(l.getId(),stringWindpowerstationpointnewMap);
|
|
|
+ linepointmap.put(l.getId(), stringWindpowerstationpointnewMap);
|
|
|
});
|
|
|
|
|
|
- wpls = windpowerstationService.list().stream().filter(i->runWpids.contains(i.getId())).collect(Collectors.toList());;
|
|
|
- meterpoints = meterpointService.list().stream().filter(i->runWpids.contains(i.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
+ wpls = windpowerstationService.list().stream().filter(i -> runWpids.contains(i.getId())).collect(Collectors.toList());
|
|
|
+ ;
|
|
|
+ meterpoints = meterpointService.list().stream().filter(i -> runWpids.contains(i.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
meterpoints.stream().forEach(meterpoint -> {
|
|
|
- meterpointMap.put(meterpoint.getId(),meterpoint);
|
|
|
+ meterpointMap.put(meterpoint.getId(), meterpoint);
|
|
|
});
|
|
|
|
|
|
|
|
|
- wpls.stream().forEach(wp->{
|
|
|
+ wpls.stream().forEach(wp -> {
|
|
|
String wpString = redisService.get(wp.getId());
|
|
|
Map<String, Windpowerstationpointnew> stringMapMap = JSONObject.parseObject(wpString, new TypeReference<Map<String, Windpowerstationpointnew>>() {
|
|
|
});
|
|
|
- wppointmap.put(wp.getId(),stringMapMap);
|
|
|
+ wppointmap.put(wp.getId(), stringMapMap);
|
|
|
});
|
|
|
|
|
|
String sszzt = redisService.get("SSZZT");
|
|
|
- statusMap = JSONObject.parseObject(sszzt, new TypeReference<Map<String,List<Windturbinestatusdi>>>() {
|
|
|
+ statusMap = JSONObject.parseObject(sszzt, new TypeReference<Map<String, List<Windturbinestatusdi>>>() {
|
|
|
});
|
|
|
|
|
|
|
|
|
-
|
|
|
String zbzgl = redisService.get("ZBZGL");
|
|
|
- zbzglMap = JSONObject.parseObject(zbzgl, new TypeReference<Map<String,Map<Double,Double>>>() {
|
|
|
+ zbzglMap = JSONObject.parseObject(zbzgl, new TypeReference<Map<String, Map<Double, Double>>>() {
|
|
|
});
|
|
|
|
|
|
- List<Windturbinepower> windturbinepowerList = windturbinepowerService.list().stream().filter(windturbinepower -> runWindpowerstation.contains(windturbinepower.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
- windturbinepowerList.stream().forEach(w -> {
|
|
|
- if (zzsglMap.containsKey(w.getWindturbineid())){
|
|
|
- zzsglMap.get(w.getWindturbineid()).put(w.getSpeed(),w.getTheorypower());
|
|
|
- }else {
|
|
|
- Map<Double,Double> tempMap = new HashMap<>();
|
|
|
- tempMap.put(w.getSpeed(),w.getTheorypower());
|
|
|
- zzsglMap.put(w.getWindturbineid(),tempMap);
|
|
|
- }
|
|
|
+// List<Windturbinepower> windturbinepowerList = windturbinepowerService.list().stream().filter(windturbinepower -> runWindpowerstation.contains(windturbinepower.getWindpowerstationid())).collect(Collectors.toList());
|
|
|
+// windturbinepowerList.stream().forEach(w -> {
|
|
|
+// if (zzsglMap.containsKey(w.getWindturbineid())){
|
|
|
+// zzsglMap.get(w.getWindturbineid()).put(w.getSpeed(),w.getTheorypower());
|
|
|
+// }else {
|
|
|
+// Map<Double,Double> tempMap = new HashMap<>();
|
|
|
+// tempMap.put(w.getSpeed(),w.getTheorypower());
|
|
|
+// zzsglMap.put(w.getWindturbineid(),tempMap);
|
|
|
+// }
|
|
|
+//
|
|
|
+// });
|
|
|
|
|
|
- });
|
|
|
+ for (int i = 0; i < 8; i++) {
|
|
|
+ Set<String> keys = redisService.keys(i);
|
|
|
+
|
|
|
+ for (String key : keys) {
|
|
|
+ redisDbMap.put(key, i);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
// String wpString = redisService.get("PRODUCT-WP");
|
|
|
// wppointmap = JSONObject.parseObject(wpString, new TypeReference<Map<String, Map<String, Windpowerstationpointnew>>>() {
|
|
@@ -179,6 +210,98 @@ public class CacheContext implements CommandLineRunner {
|
|
|
// String wtString = redisService.get("PRODUCT-WT");
|
|
|
// wtpAimap = JSONObject.parseObject(wtString, new TypeReference<Map<String, Map<String, Windturbinetestingpointnew>>>() {
|
|
|
// });
|
|
|
+ redisService.select(8);
|
|
|
+
|
|
|
+ // initial();
|
|
|
+
|
|
|
+ String wtPointString = redisService.get("wtPointmap");
|
|
|
+ wtPointmap = JSONObject.parseObject(wtPointString, new TypeReference<Map<String, Map<String, Windturbinetestingpointai>>>() {
|
|
|
+ });
|
|
|
+
|
|
|
+ String wpPointString = redisService.get("wpPointmap");
|
|
|
+ wpPointmap = JSONObject.parseObject(wpPointString, new TypeReference<Map<String, Map<String, Windpowerstationtestingpoint>>>() {
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ String curveFittingPowerString = redisService.get("curveFittingPowerMap");
|
|
|
+ curveFittingPowerMap = JSONObject.parseObject(curveFittingPowerString, new TypeReference<Map<String, Map<Double, Windturbinepowercurvefitting>>>() {
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ String pointdisString = redisService.get("pointdis");
|
|
|
+ pointdis = JSONObject.parseObject(pointdisString, new TypeReference<List<Windturbinetestingpointdis>>() {
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
logger.info("缓存结束------------------------------------------------------------");
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ private void initial() {
|
|
|
+
|
|
|
+ List<Windturbinetestingpointai> wtpointlist = windturbinetestingpointaiService.list();
|
|
|
+
|
|
|
+
|
|
|
+ Map<String, Windturbinetestingpointai> map = null;
|
|
|
+
|
|
|
+ if (wtpointlist != null && !wtpointlist.isEmpty()) {
|
|
|
+ for (Windturbinetestingpointai mp : wtpointlist) {
|
|
|
+ if (wtPointmap.containsKey(mp.getWindturbineid())) {
|
|
|
+ map = wtPointmap.get(mp.getWindturbineid());
|
|
|
+ map.put(mp.getUniformcode(), mp);
|
|
|
+ } else {
|
|
|
+ map = new HashMap<String, Windturbinetestingpointai>();
|
|
|
+ map.put(mp.getUniformcode(), mp);
|
|
|
+ wtPointmap.put(mp.getWindturbineid(), map);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ String s = JSONObject.toJSONString(wtPointmap);
|
|
|
+ redisService.set("wtPointmap", s);
|
|
|
+
|
|
|
+
|
|
|
+ List<Windpowerstationtestingpoint> list = windpowerstationtestingpointService.list();
|
|
|
+
|
|
|
+ Map<String, Windpowerstationtestingpoint> items = null;
|
|
|
+ if (list != null && !list.isEmpty()) {
|
|
|
+ for (int i = 0; i < list.size(); i++) {
|
|
|
+ Windpowerstationtestingpoint point = list.get(i);
|
|
|
+ if (wpPointmap.containsKey(point.getWindpowerstationid())) {
|
|
|
+ items = wpPointmap.get(point.getWindpowerstationid());
|
|
|
+ items.put(point.getUniformcode(), point);
|
|
|
+ } else {
|
|
|
+ items = new HashMap<String, Windpowerstationtestingpoint>();
|
|
|
+ wpPointmap.put(point.getWindpowerstationid(), items);
|
|
|
+ items.put(point.getUniformcode(), point);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ s = JSONObject.toJSONString(wpPointmap);
|
|
|
+ redisService.set("wpPointmap", s);
|
|
|
+
|
|
|
+
|
|
|
+ List<Windturbinepowercurvefitting> econWtPowerCurveFittings = windturbinepowercurvefittingService.list();
|
|
|
+ if (StringUtils.isNotNull(econWtPowerCurveFittings)) {
|
|
|
+ econWtPowerCurveFittings.stream().forEach(curveFitting -> {
|
|
|
+ if (curveFittingPowerMap.containsKey(curveFitting.getWindturbineid())) {
|
|
|
+ curveFittingPowerMap.get(curveFitting.getWindturbineid()).put(curveFitting.getSpeed(), curveFitting);
|
|
|
+ } else {
|
|
|
+ Map<Double, Windturbinepowercurvefitting> powerMap = new HashMap<>();
|
|
|
+ powerMap.put(curveFitting.getSpeed(), curveFitting);
|
|
|
+ curveFittingPowerMap.put(curveFitting.getWindturbineid(), powerMap);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ s = JSONObject.toJSONString(curveFittingPowerMap);
|
|
|
+ redisService.set("curveFittingPowerMap", s);
|
|
|
+
|
|
|
+
|
|
|
+ pointdis = windturbinetestingpointdisService.list();
|
|
|
+
|
|
|
+ s = JSONObject.toJSONString(pointdis);
|
|
|
+ redisService.set("pointdis", s);
|
|
|
+ }
|
|
|
}
|