From f88c70d38ce1c9c0d04460d0c225373c84dc2eca Mon Sep 17 00:00:00 2001 From: dengming <dengming@ctfo.com> Date: 星期四, 10 三月 2022 17:27:07 +0800 Subject: [PATCH] 删除重复字段,channelId字段查询了两次 --- src/main/java/com/genersoft/iot/vmp/service/impl/DeviceServiceImpl.java | 33 ++++++++++++++++----------------- 1 files changed, 16 insertions(+), 17 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/service/impl/DeviceServiceImpl.java b/src/main/java/com/genersoft/iot/vmp/service/impl/DeviceServiceImpl.java index 595f38c..675ed4e 100644 --- a/src/main/java/com/genersoft/iot/vmp/service/impl/DeviceServiceImpl.java +++ b/src/main/java/com/genersoft/iot/vmp/service/impl/DeviceServiceImpl.java @@ -10,6 +10,9 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +/** + * 璁惧涓氬姟锛堢洰褰曡闃咃級 + */ @Service public class DeviceServiceImpl implements IDeviceService { @@ -27,12 +30,19 @@ if (device == null || device.getSubscribeCycleForCatalog() < 0) { return false; } + if (dynamicTask.contains(device.getDeviceId())) { + logger.info("[娣诲姞鐩綍璁㈤槄] 璁惧{}鐨勭洰褰曡闃呬互瀛樺湪", device.getDeviceId()); + return false; + } + logger.info("[娣诲姞鐩綍璁㈤槄] 璁惧{}", device.getDeviceId()); // 娣诲姞鐩綍璁㈤槄 CatalogSubscribeTask catalogSubscribeTask = new CatalogSubscribeTask(device, sipCommander); catalogSubscribeTask.run(); // 鎻愬墠寮�濮嬪埛鏂拌闃� - String cron = getCron(device.getSubscribeCycleForCatalog() - 60); - dynamicTask.startCron(device.getDeviceId(), catalogSubscribeTask, cron); + int subscribeCycleForCatalog = device.getSubscribeCycleForCatalog(); + // 璁剧疆鏈�灏忓�间负30 + subscribeCycleForCatalog = Math.max(subscribeCycleForCatalog, 30); + dynamicTask.startCron(device.getDeviceId(), catalogSubscribeTask, subscribeCycleForCatalog - 5); return true; } @@ -41,21 +51,10 @@ if (device == null || device.getSubscribeCycleForCatalog() < 0) { return false; } - dynamicTask.stopCron(device.getDeviceId()); + logger.info("绉婚櫎鐩綍璁㈤槄: {}", device.getDeviceId()); + dynamicTask.stop(device.getDeviceId()); + device.setSubscribeCycleForCatalog(0); + sipCommander.catalogSubscribe(device, null, null); return true; - } - - public String getCron(int time) { - if (time <= 59) { - return "0/" + time +" * * * * ?"; - }else if (time <= 60* 59) { - int minute = time/(60); - return "0 0/" + minute +" * * * ?"; - }else if (time <= 60* 60* 59) { - int hour = time/(60*60); - return "0 0 0/" + hour +" * * ?"; - }else { - return "0 0/10 * * * ?"; - } } } -- Gitblit v1.8.0