|
|
@ -34,6 +34,7 @@ import org.springframework.util.ObjectUtils; |
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
import java.io.IOException; |
|
|
|
import java.net.SocketTimeoutException; |
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
import java.util.*; |
|
|
|
import java.util.concurrent.CountDownLatch; |
|
|
@ -868,7 +869,7 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
|
// 构造设备控制记录数据格式
|
|
|
|
List<HashMap<String, List<Map<String, Object>>>> propsList = new ArrayList<>(); |
|
|
|
// 调用状态 0正常 1异常
|
|
|
|
Integer status = UniversalEnum.ZERO.getNumber(); |
|
|
|
Integer status = UniversalEnum.ONE.getNumber(); |
|
|
|
HashMap<String, List<Map<String, Object>>> proDevice = new HashMap<>(); |
|
|
|
// devices
|
|
|
|
List<Map<String, Object>> dev = new ArrayList<>(); |
|
|
@ -1116,14 +1117,32 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
|
} |
|
|
|
proDevice.put("functions", functionList); |
|
|
|
propsList.add(proDevice); |
|
|
|
|
|
|
|
} catch (HttpException | IOException e) { |
|
|
|
log.error(e.toString()); |
|
|
|
// 存在语音广播超时
|
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("device", device.getId()); |
|
|
|
result.put("deviceName", device.getDeviceName()); |
|
|
|
result.put("deviceType", device.getDeviceType()); |
|
|
|
if (e instanceof SocketTimeoutException) { |
|
|
|
// 超时
|
|
|
|
result.put("content", "设备响应超时"); |
|
|
|
} |
|
|
|
JSONObject returnResult = new JSONObject(); |
|
|
|
returnResult.put("code",UniversalEnum.FIVE_HUNDRED.getNumber()); |
|
|
|
returnResult.put("msg","设备响应超时"); |
|
|
|
result.put("result", returnResult); |
|
|
|
status = UniversalEnum.ONE.getNumber(); |
|
|
|
dcOperLog.add(result); |
|
|
|
resultArray.add(result); |
|
|
|
}finally { |
|
|
|
// 语音广播恢复操作不存记录
|
|
|
|
if (!(device.getDeviceType().equals(DeviceTypeConstants.ROAD_SECTION_VOICE_BROADCASTING.toString()) |
|
|
|
&& operationType.equals(UniversalEnum.TWO.getNumber()))) { |
|
|
|
insertEquipmentControlRecordTable(device, propsList, dcOperLog, status, remark.toString(),eventId); |
|
|
|
} |
|
|
|
|
|
|
|
} catch (HttpException | IOException e) { |
|
|
|
log.error(e.toString()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|