优化APP设备列表查询速度

This commit is contained in:
磷叶 2024-11-06 17:59:11 +08:00
parent 41eef23439
commit 791a919280
3 changed files with 93 additions and 68 deletions

View File

@ -16,6 +16,8 @@ import java.util.Date;
@Data
@Builder
public class IotDeviceInfo {
private String mac;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date at; // 时间

View File

@ -33,21 +33,29 @@ public class IotConverterImpl implements IotConverter {
List<CurrentDatastream> ds1 = data1 == null ? data2.getDatastreams() : data1.getDatastreams();
List<CurrentDatastream> ds2 = data2 == null ? data1.getDatastreams() : data2.getDatastreams();
String mac = null;
try {
mac = data1.getTitle();
} catch (Exception e) {
mac = data2.getTitle();
}
if (CollectionUtils.isNotEmptyElement(ds1)) {
return this.toIotDeviceInfo(ds1, ds2);
return this.toIotDeviceInfo(ds1, ds2, mac);
} else if (CollectionUtils.isNotEmptyElement(ds2)) {
return this.toIotDeviceInfo(ds2, ds1);
return this.toIotDeviceInfo(ds2, ds1, mac);
}
return null;
}
private IotDeviceInfo toIotDeviceInfo(List<CurrentDatastream> ds1, List<CurrentDatastream> ds2) {
private IotDeviceInfo toIotDeviceInfo(List<CurrentDatastream> ds1, List<CurrentDatastream> ds2, String mac) {
if (CollectionUtils.isEmptyElement(ds1) && CollectionUtils.isEmptyElement(ds2)) {
return null;
}
IotDeviceInfo device = IotDeviceInfo.newDefaultInstance();
device.setMac(mac);
for (CurrentDatastream stream : ds1) {
String id = stream.getId(); // 数据点ID

View File

@ -1029,13 +1029,27 @@ public class DeviceServiceImpl implements DeviceService
// 拼接正在使用中的订单数量
deviceAssembler.assembleUsingBillCount(list);
// todo 列表根据产品ID分组
Map<String, List<DeviceVO>> group = list.stream().collect(Collectors.groupingBy(DeviceVO::getModelProductId));
for (Map.Entry<String, List<DeviceVO>> entry : group.entrySet()) {
List<DeviceVO> deviceList = entry.getValue();
List<String> macList = CollectionUtils.map(deviceList, DeviceVO::getMac);
macList.addAll(CollectionUtils.map(deviceList, DeviceVO::getMac2));
List<IotDeviceInfo> iotList = iotService.getDeviceInfo(macList, entry.getKey());
for (DeviceVO device : list) {
try {
if (StringUtils.isAnyBlank(device.getMac(), device.getModelProductId())) {
continue;
}
// 获取数据点信息
IotDeviceInfo deviceInfo = iotService.getDeviceInfo(device);
// IotDeviceInfo deviceInfo = iotService.getDeviceInfo(device);
IotDeviceInfo deviceInfo = iotList.stream()
.filter(item -> Objects.equals(device.getMac(), item.getMac()) || Objects.equals(device.getMac2(), item.getMac()))
.findFirst().orElse(null);
// 更新设备信息
device.setDeviceId(device.getDeviceId());
@ -1104,7 +1118,8 @@ public class DeviceServiceImpl implements DeviceService
this.updateIotInfo(device);
} catch (Exception e) {
log.error("更新设备信息失败deviceId:{}", device.getDeviceId(), e);
log.error("更新设备信息失败deviceId:{}, {}", device.getDeviceId(), e.getMessage());
}
}
}
}