|
@@ -12,6 +12,10 @@ import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
+import com.bz.smart_city.dto.MeterReadData;
|
|
|
+import com.bz.smart_city.service.DeviceDataService;
|
|
|
+import com.zcxk.zoniot.smartcity.common.model.DeviceData;
|
|
|
+import com.zcxk.zoniot.smartcity.common.model.DeviceMeasuringData;
|
|
|
import org.apache.commons.collections.MapUtils;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.InitializingBean;
|
|
@@ -78,12 +82,16 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
|
|
|
|
|
|
@Autowired
|
|
|
JobAndTriggerService jobAndTriggerService;
|
|
|
-
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ DeviceDataService deviceDataService ;
|
|
|
+
|
|
|
@Override
|
|
|
public void generalPushMethod(DeviceDataPushConfig config) {
|
|
|
log.info("begin generalPushMethod ,config = {}",JSON.toJSONString(config));
|
|
|
- // 1,查询推送记录
|
|
|
- PushLog lastLog = pushLogMapper.findLastRecord(config.getId(), 2); // 1档案;2数据
|
|
|
+ // 1,查询推送记录
|
|
|
+ // 1档案;2数据
|
|
|
+ PushLog lastLog = pushLogMapper.findLastRecord(config.getId(), 2);
|
|
|
// 2,计算推送数据时间;如果为首次推送,则判断是否需要将历史数据推送给对方;
|
|
|
Date beginDate = null ;
|
|
|
Date endDate = new Date();
|
|
@@ -91,7 +99,8 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
|
|
|
beginDate = lastLog.getPushTime() ;
|
|
|
}
|
|
|
else {
|
|
|
- Integer isNeedHistory = config.getIsNeedHistory(); // 是否需要历史数据 1是 ; 0否
|
|
|
+ // 是否需要历史数据 1是 ; 0否
|
|
|
+ Integer isNeedHistory = config.getIsNeedHistory();
|
|
|
if(isNeedHistory == 1) {
|
|
|
beginDate = DateTimeUtil.parseDate("1900-01-01", "yyyy-MM-dd");
|
|
|
}
|
|
@@ -106,7 +115,8 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
|
|
|
String pushBuildings = config.getPushBuildings();
|
|
|
log.info("begin query push data size , pushCustomers ={}, pushCommunitys={}, pushBuildings={}, beginDate={}, endDate={}",
|
|
|
pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate);
|
|
|
- int dataSize = deviceDataDimMapper.countDataSize(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate);
|
|
|
+ int dataSize = deviceDataService.countDeviceDataSize(pushCustomers,pushCommunitys, pushBuildings, beginDate, endDate).intValue();
|
|
|
+ //int dataSize = deviceDataDimMapper.countDataSize(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate);
|
|
|
log.info("end query push data size , size = {}",dataSize);
|
|
|
// 4,判断是否需要分批次进行推送
|
|
|
if(dataSize != 0) {
|
|
@@ -114,19 +124,29 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
|
|
|
int batch = dataSize % config.getMaxLimit() == 0 ? dataSize / config.getMaxLimit() : dataSize / config.getMaxLimit() + 1 ;
|
|
|
// 按批次进行推送
|
|
|
for(int i = 1 ;i <= batch; i++) {
|
|
|
- int offset = (i - 1) * config.getMaxLimit();
|
|
|
+ //int offset = (i - 1) * config.getMaxLimit();
|
|
|
+ int index = i-1;
|
|
|
int limit = config.getMaxLimit();
|
|
|
- List<DeviceDataDim> conditionList = deviceDataDimMapper.queryDataWithPage(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate, offset, limit);
|
|
|
+ //List<DeviceDataDim> conditionList = deviceDataDimMapper.queryDataWithPage(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate, offset, limit);
|
|
|
+ List<DeviceData> deviceDataList = deviceDataService.queryDataWithPage(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate, index, limit);
|
|
|
List<Map<String,Object>> dataMapList = new ArrayList<Map<String,Object>>();
|
|
|
// 查询测点数据
|
|
|
- for(DeviceDataDim condition : conditionList) {
|
|
|
+// for(DeviceDataDim condition : conditionList) {
|
|
|
+// Map<String,Object> dataMap = new HashMap<String,Object>();
|
|
|
+// dataMap.put("deviceNo", condition.getDeviceNo());
|
|
|
+// dataMap.put("deviceType", condition.getEquipmentType());
|
|
|
+// dataMap.put("sendTime", DateTimeUtil.formatDate(condition.getSendTime(), DateTimeUtil.DATE_TIME_FORMAT));
|
|
|
+// List<Map<String, Object>> datas = deviceDataDimMapper.getDeviceDataByTime(condition.getDeviceId(), condition.getSendTime(), condition.getDeviceType());
|
|
|
+// dataMap.put("datas", datas);
|
|
|
+//
|
|
|
+// dataMapList.add(dataMap);
|
|
|
+// }
|
|
|
+ for(DeviceData deviceData : deviceDataList){
|
|
|
Map<String,Object> dataMap = new HashMap<String,Object>();
|
|
|
- dataMap.put("deviceNo", condition.getDeviceNo());
|
|
|
- dataMap.put("deviceType", condition.getEquipmentType());
|
|
|
- dataMap.put("sendTime", DateTimeUtil.formatDate(condition.getSendTime(), DateTimeUtil.DATE_TIME_FORMAT));
|
|
|
- List<Map<String, Object>> datas = deviceDataDimMapper.getDeviceDataByTime(condition.getDeviceId(), condition.getSendTime(), condition.getDeviceType());
|
|
|
- dataMap.put("datas", datas);
|
|
|
-
|
|
|
+ dataMap.put("deviceNo", deviceData.getDeviceNo());
|
|
|
+ dataMap.put("deviceType", deviceData.getDeviceTypeName());
|
|
|
+ dataMap.put("sendTime",DateTimeUtil.formatDate(deviceData.getReceiveTime(), DateTimeUtil.DATE_TIME_FORMAT));
|
|
|
+ dataMap.put("datas", deviceData.getData());
|
|
|
dataMapList.add(dataMap);
|
|
|
}
|
|
|
// 发送数据
|
|
@@ -135,16 +155,25 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
|
|
|
}
|
|
|
else {
|
|
|
// 不需要分批次进行发送
|
|
|
- List<DeviceDataDim> conditionList = deviceDataDimMapper.queryDataWithPage(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate, 0, dataSize);
|
|
|
+ //List<DeviceDataDim> conditionList = deviceDataDimMapper.queryDataWithPage(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate, 0, dataSize);
|
|
|
+ List<DeviceData> deviceDataList = deviceDataService.queryDataWithPage(pushCustomers, pushCommunitys, pushBuildings, beginDate, endDate, 0, dataSize);
|
|
|
List<Map<String,Object>> dataMapList = new ArrayList<Map<String,Object>>();
|
|
|
// 查询测点数据
|
|
|
- for(DeviceDataDim condition : conditionList) {
|
|
|
+// for(DeviceDataDim condition : conditionList) {
|
|
|
+// Map<String,Object> dataMap = new HashMap<String,Object>();
|
|
|
+// dataMap.put("deviceNo", condition.getDeviceNo());
|
|
|
+// dataMap.put("deviceType", condition.getEquipmentType());
|
|
|
+// dataMap.put("sendTime", DateTimeUtil.formatDate(condition.getSendTime(), DateTimeUtil.DATE_TIME_FORMAT));
|
|
|
+// List<Map<String, Object>> datas = deviceDataDimMapper.getDeviceDataByTime(condition.getDeviceId(), condition.getSendTime(), condition.getDeviceType());
|
|
|
+// dataMap.put("datas", datas);
|
|
|
+// dataMapList.add(dataMap);
|
|
|
+// }
|
|
|
+ for(DeviceData deviceData : deviceDataList){
|
|
|
Map<String,Object> dataMap = new HashMap<String,Object>();
|
|
|
- dataMap.put("deviceNo", condition.getDeviceNo());
|
|
|
- dataMap.put("deviceType", condition.getEquipmentType());
|
|
|
- dataMap.put("sendTime", DateTimeUtil.formatDate(condition.getSendTime(), DateTimeUtil.DATE_TIME_FORMAT));
|
|
|
- List<Map<String, Object>> datas = deviceDataDimMapper.getDeviceDataByTime(condition.getDeviceId(), condition.getSendTime(), condition.getDeviceType());
|
|
|
- dataMap.put("datas", datas);
|
|
|
+ dataMap.put("deviceNo", deviceData.getDeviceNo());
|
|
|
+ dataMap.put("deviceType", deviceData.getDeviceTypeName());
|
|
|
+ dataMap.put("sendTime",DateTimeUtil.formatDate(deviceData.getReceiveTime(), DateTimeUtil.DATE_TIME_FORMAT));
|
|
|
+ dataMap.put("datas", deviceData.getData());
|
|
|
dataMapList.add(dataMap);
|
|
|
}
|
|
|
// 发送数据
|
|
@@ -268,12 +297,17 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
|
|
|
index = start + j;
|
|
|
d = (DeviceDto)deviceList.get(index);
|
|
|
index++;
|
|
|
- DeviceDataDim deviceData = deviceDataDimMapper.queryMeterLastData(d.getId());
|
|
|
+ // 数据库改造修改
|
|
|
+ // DeviceDataDim deviceData = deviceDataDimMapper.queryMeterLastData(d.getId());
|
|
|
+ DeviceData data = deviceDataService.queryDeviceLastData(d.getId());
|
|
|
+ DeviceDataDim deviceData = buildDeviceDataDim(data);
|
|
|
if (deviceData != null)
|
|
|
{
|
|
|
deviceData.setMeterCode(d.getWaterMeterNo());
|
|
|
records.add(deviceData);
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
PostData postData = new PostData();
|
|
|
postData.companyId = this.companyId;
|
|
@@ -313,6 +347,32 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ protected DeviceDataDim buildDeviceDataDim(DeviceData data){
|
|
|
+ DeviceDataDim ddd = null;
|
|
|
+ if(data != null){
|
|
|
+ ddd = new DeviceDataDim();
|
|
|
+ ddd.setDeviceId(data.getDeviceId());
|
|
|
+ ddd.setDeviceNo(data.getDeviceNo());
|
|
|
+ ddd.setSendTime(data.getReceiveTime());
|
|
|
+ List<DeviceMeasuringData> measuringDataList = data.getData();
|
|
|
+ // 富锦目前只有LoRa表
|
|
|
+ ddd.setMeasuringData(getMeasuringDataValue(measuringDataList,"WSV"));
|
|
|
+ ddd.setMeasuringCode("WSV");
|
|
|
+ }
|
|
|
+ return ddd;
|
|
|
+ }
|
|
|
+ protected String getMeasuringDataValue(List<DeviceMeasuringData> measuringDataList , String measuringCode){
|
|
|
+ String measuringValue = "";
|
|
|
+ if(measuringDataList != null && measuringDataList.size() != 0){
|
|
|
+ for(DeviceMeasuringData measuringData : measuringDataList){
|
|
|
+ if(measuringData.getMeasuringCode().equals(measuringCode)){
|
|
|
+ measuringValue = measuringData.getMeasuringData();
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return measuringValue ;
|
|
|
+ }
|
|
|
public static String formatDate(Date date, String format) {
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat(format);
|
|
|
String formatStr = sdf.format(date);
|