使用 java.time.Instant代替 java.util.Date
This commit is contained in:
parent
a14ce86632
commit
7e9e27f562
@ -1,7 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.conf;
|
package com.genersoft.iot.vmp.conf;
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.gb28181.task.ISubscribeTask;
|
import com.genersoft.iot.vmp.gb28181.task.ISubscribeTask;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.response.cmd.CatalogResponseMessageHandler;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@ -9,25 +8,27 @@ import org.springframework.context.annotation.Bean;
|
|||||||
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.time.Instant;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
import java.util.concurrent.ScheduledFuture;
|
import java.util.concurrent.ScheduledFuture;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 动态定时任务
|
* 动态定时任务
|
||||||
|
* @author lin
|
||||||
*/
|
*/
|
||||||
@Component
|
@Component
|
||||||
public class DynamicTask {
|
public class DynamicTask {
|
||||||
|
|
||||||
private Logger logger = LoggerFactory.getLogger(DynamicTask.class);
|
private final Logger logger = LoggerFactory.getLogger(DynamicTask.class);
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private ThreadPoolTaskScheduler threadPoolTaskScheduler;
|
private ThreadPoolTaskScheduler threadPoolTaskScheduler;
|
||||||
|
|
||||||
private Map<String, ScheduledFuture<?>> futureMap = new ConcurrentHashMap<>();
|
private final Map<String, ScheduledFuture<?>> futureMap = new ConcurrentHashMap<>();
|
||||||
private Map<String, Runnable> runnableMap = new ConcurrentHashMap<>();
|
private final Map<String, Runnable> runnableMap = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
public ThreadPoolTaskScheduler threadPoolTaskScheduler() {
|
public ThreadPoolTaskScheduler threadPoolTaskScheduler() {
|
||||||
@ -47,7 +48,7 @@ public class DynamicTask {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public void startCron(String key, Runnable task, int cycleForCatalog) {
|
public void startCron(String key, Runnable task, int cycleForCatalog) {
|
||||||
ScheduledFuture future = futureMap.get(key);
|
ScheduledFuture<?> future = futureMap.get(key);
|
||||||
if (future != null) {
|
if (future != null) {
|
||||||
if (future.isCancelled()) {
|
if (future.isCancelled()) {
|
||||||
logger.debug("任务【{}】已存在但是关闭状态!!!", key);
|
logger.debug("任务【{}】已存在但是关闭状态!!!", key);
|
||||||
@ -76,7 +77,9 @@ public class DynamicTask {
|
|||||||
*/
|
*/
|
||||||
public void startDelay(String key, Runnable task, int delay) {
|
public void startDelay(String key, Runnable task, int delay) {
|
||||||
stop(key);
|
stop(key);
|
||||||
Date starTime = new Date(System.currentTimeMillis() + delay);
|
|
||||||
|
// 获取执行的时刻
|
||||||
|
Instant startInstant = Instant.now().plusMillis(TimeUnit.MILLISECONDS.toMillis(delay));
|
||||||
|
|
||||||
ScheduledFuture future = futureMap.get(key);
|
ScheduledFuture future = futureMap.get(key);
|
||||||
if (future != null) {
|
if (future != null) {
|
||||||
@ -88,7 +91,7 @@ public class DynamicTask {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// scheduleWithFixedDelay 必须等待上一个任务结束才开始计时period, cycleForCatalog表示执行的间隔
|
// scheduleWithFixedDelay 必须等待上一个任务结束才开始计时period, cycleForCatalog表示执行的间隔
|
||||||
future = threadPoolTaskScheduler.schedule(task, starTime);
|
future = threadPoolTaskScheduler.schedule(task, startInstant);
|
||||||
if (future != null){
|
if (future != null){
|
||||||
futureMap.put(key, future);
|
futureMap.put(key, future);
|
||||||
runnableMap.put(key, task);
|
runnableMap.put(key, task);
|
||||||
|
@ -27,8 +27,7 @@ package com.genersoft.iot.vmp.gb28181.auth;
|
|||||||
|
|
||||||
import java.security.MessageDigest;
|
import java.security.MessageDigest;
|
||||||
import java.security.NoSuchAlgorithmException;
|
import java.security.NoSuchAlgorithmException;
|
||||||
import java.text.DecimalFormat;
|
import java.time.Instant;
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
import javax.sip.address.URI;
|
import javax.sip.address.URI;
|
||||||
@ -90,17 +89,12 @@ public class DigestServerAuthenticationHelper {
|
|||||||
* @return a generated nonce.
|
* @return a generated nonce.
|
||||||
*/
|
*/
|
||||||
private String generateNonce() {
|
private String generateNonce() {
|
||||||
// Get the time of day and run MD5 over it.
|
long time = Instant.now().toEpochMilli();
|
||||||
Date date = new Date();
|
|
||||||
long time = date.getTime();
|
|
||||||
Random rand = new Random();
|
Random rand = new Random();
|
||||||
long pad = rand.nextLong();
|
long pad = rand.nextLong();
|
||||||
// String nonceString = (new Long(time)).toString()
|
|
||||||
// + (new Long(pad)).toString();
|
|
||||||
String nonceString = Long.valueOf(time).toString()
|
String nonceString = Long.valueOf(time).toString()
|
||||||
+ Long.valueOf(pad).toString();
|
+ Long.valueOf(pad).toString();
|
||||||
byte mdbytes[] = messageDigest.digest(nonceString.getBytes());
|
byte mdbytes[] = messageDigest.digest(nonceString.getBytes());
|
||||||
// Convert the mdbytes array into a hex string.
|
|
||||||
return toHexString(mdbytes);
|
return toHexString(mdbytes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.bean;
|
package com.genersoft.iot.vmp.gb28181.bean;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.time.Instant;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class CatalogData {
|
public class CatalogData {
|
||||||
private int sn; // 命令序列号
|
private int sn; // 命令序列号
|
||||||
private int total;
|
private int total;
|
||||||
private List<DeviceChannel> channelList;
|
private List<DeviceChannel> channelList;
|
||||||
private Date lastTime;
|
private Instant lastTime;
|
||||||
private Device device;
|
private Device device;
|
||||||
private String errorMsg;
|
private String errorMsg;
|
||||||
|
|
||||||
@ -41,11 +41,11 @@ public class CatalogData {
|
|||||||
this.channelList = channelList;
|
this.channelList = channelList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getLastTime() {
|
public Instant getLastTime() {
|
||||||
return lastTime;
|
return lastTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLastTime(Date lastTime) {
|
public void setLastTime(Instant lastTime) {
|
||||||
this.lastTime = lastTime;
|
this.lastTime = lastTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package com.genersoft.iot.vmp.gb28181.bean;
|
package com.genersoft.iot.vmp.gb28181.bean;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.time.Instant;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -20,7 +20,7 @@ public class RecordInfo {
|
|||||||
|
|
||||||
private int sumNum;
|
private int sumNum;
|
||||||
|
|
||||||
private Date lastTime;
|
private Instant lastTime;
|
||||||
|
|
||||||
private List<RecordItem> recordList;
|
private List<RecordItem> recordList;
|
||||||
|
|
||||||
@ -72,11 +72,11 @@ public class RecordInfo {
|
|||||||
this.sn = sn;
|
this.sn = sn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getLastTime() {
|
public Instant getLastTime() {
|
||||||
return lastTime;
|
return lastTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setLastTime(Date lastTime) {
|
public void setLastTime(Instant lastTime) {
|
||||||
this.lastTime = lastTime;
|
this.lastTime = lastTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,8 @@ import com.genersoft.iot.vmp.utils.DateUtil;
|
|||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
import java.text.ParseException;
|
import java.text.ParseException;
|
||||||
import java.util.Date;
|
import java.time.Instant;
|
||||||
|
import java.time.temporal.TemporalAccessor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description:设备录像bean
|
* @description:设备录像bean
|
||||||
@ -116,17 +117,17 @@ public class RecordItem implements Comparable<RecordItem>{
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int compareTo(@NotNull RecordItem recordItem) {
|
public int compareTo(@NotNull RecordItem recordItem) {
|
||||||
try {
|
TemporalAccessor startTimeNow = DateUtil.formatter.parse(startTime);
|
||||||
Date startTime_now = DateUtil.format.parse(startTime);
|
TemporalAccessor startTimeParam = DateUtil.formatter.parse(recordItem.getStartTime());
|
||||||
Date startTime_param = DateUtil.format.parse(recordItem.getStartTime());
|
Instant startTimeParamInstant = Instant.from(startTimeParam);
|
||||||
if (startTime_param.compareTo(startTime_now) > 0) {
|
Instant startTimeNowInstant = Instant.from(startTimeNow);
|
||||||
return -1;
|
if (startTimeNowInstant.equals(startTimeParamInstant)) {
|
||||||
}else {
|
return 0;
|
||||||
return 1;
|
}else if (Instant.from(startTimeParam).isAfter(Instant.from(startTimeNow)) ) {
|
||||||
}
|
return -1;
|
||||||
} catch (ParseException e) {
|
}else {
|
||||||
e.printStackTrace();
|
return 1;
|
||||||
}
|
}
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,11 +9,14 @@ import org.springframework.stereotype.Component;
|
|||||||
import javax.sip.*;
|
import javax.sip.*;
|
||||||
import javax.sip.header.CallIdHeader;
|
import javax.sip.header.CallIdHeader;
|
||||||
import javax.sip.message.Response;
|
import javax.sip.message.Response;
|
||||||
import java.util.Calendar;
|
import java.time.Instant;
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
@Component
|
@Component
|
||||||
public class SipSubscribe {
|
public class SipSubscribe {
|
||||||
|
|
||||||
@ -23,28 +26,25 @@ public class SipSubscribe {
|
|||||||
|
|
||||||
private Map<String, SipSubscribe.Event> okSubscribes = new ConcurrentHashMap<>();
|
private Map<String, SipSubscribe.Event> okSubscribes = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
private Map<String, Date> okTimeSubscribes = new ConcurrentHashMap<>();
|
private Map<String, Instant> okTimeSubscribes = new ConcurrentHashMap<>();
|
||||||
private Map<String, Date> errorTimeSubscribes = new ConcurrentHashMap<>();
|
private Map<String, Instant> errorTimeSubscribes = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
// @Scheduled(cron="*/5 * * * * ?") //每五秒执行一次
|
// @Scheduled(cron="*/5 * * * * ?") //每五秒执行一次
|
||||||
// @Scheduled(fixedRate= 100 * 60 * 60 )
|
// @Scheduled(fixedRate= 100 * 60 * 60 )
|
||||||
@Scheduled(cron="0 0/5 * * * ?") //每5分钟执行一次
|
@Scheduled(cron="0 0/5 * * * ?") //每5分钟执行一次
|
||||||
public void execute(){
|
public void execute(){
|
||||||
logger.info("[定时任务] 清理过期的SIP订阅信息");
|
logger.info("[定时任务] 清理过期的SIP订阅信息");
|
||||||
Calendar calendar = Calendar.getInstance();
|
|
||||||
calendar.setTime(new Date());
|
Instant instant = Instant.now().minusMillis(TimeUnit.MINUTES.toMillis(5));
|
||||||
calendar.set(Calendar.MINUTE, calendar.get(Calendar.MINUTE) - 5);
|
|
||||||
|
|
||||||
for (String key : okTimeSubscribes.keySet()) {
|
for (String key : okTimeSubscribes.keySet()) {
|
||||||
if (okTimeSubscribes.get(key).before(calendar.getTime())){
|
if (okTimeSubscribes.get(key).isBefore(instant)){
|
||||||
// logger.info("[定时任务] 清理过期的订阅信息: {}", key);
|
|
||||||
okSubscribes.remove(key);
|
okSubscribes.remove(key);
|
||||||
okTimeSubscribes.remove(key);
|
okTimeSubscribes.remove(key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (String key : errorTimeSubscribes.keySet()) {
|
for (String key : errorTimeSubscribes.keySet()) {
|
||||||
if (errorTimeSubscribes.get(key).before(calendar.getTime())){
|
if (errorTimeSubscribes.get(key).isBefore(instant)){
|
||||||
// logger.info("[定时任务] 清理过期的订阅信息: {}", key);
|
|
||||||
errorSubscribes.remove(key);
|
errorSubscribes.remove(key);
|
||||||
errorTimeSubscribes.remove(key);
|
errorTimeSubscribes.remove(key);
|
||||||
}
|
}
|
||||||
@ -117,12 +117,12 @@ public class SipSubscribe {
|
|||||||
|
|
||||||
public void addErrorSubscribe(String key, SipSubscribe.Event event) {
|
public void addErrorSubscribe(String key, SipSubscribe.Event event) {
|
||||||
errorSubscribes.put(key, event);
|
errorSubscribes.put(key, event);
|
||||||
errorTimeSubscribes.put(key, new Date());
|
errorTimeSubscribes.put(key, Instant.now());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addOkSubscribe(String key, SipSubscribe.Event event) {
|
public void addOkSubscribe(String key, SipSubscribe.Event event) {
|
||||||
okSubscribes.put(key, event);
|
okSubscribes.put(key, event);
|
||||||
okTimeSubscribes.put(key, new Date());
|
okTimeSubscribes.put(key, Instant.now());
|
||||||
}
|
}
|
||||||
|
|
||||||
public SipSubscribe.Event getErrorSubscribe(String key) {
|
public SipSubscribe.Event getErrorSubscribe(String key) {
|
||||||
|
@ -4,25 +4,21 @@ import com.genersoft.iot.vmp.gb28181.bean.CatalogData;
|
|||||||
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.SyncStatus;
|
import com.genersoft.iot.vmp.gb28181.bean.SyncStatus;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.RequestMessage;
|
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.scheduling.annotation.Scheduled;
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.time.Instant;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
public class CatalogDataCatch {
|
public class CatalogDataCatch {
|
||||||
|
|
||||||
public static Map<String, CatalogData> data = new ConcurrentHashMap<>();
|
public static Map<String, CatalogData> data = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private DeferredResultHolder deferredResultHolder;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IVideoManagerStorage storager;
|
private IVideoManagerStorage storager;
|
||||||
|
|
||||||
@ -34,7 +30,7 @@ public class CatalogDataCatch {
|
|||||||
catalogData.setDevice(device);
|
catalogData.setDevice(device);
|
||||||
catalogData.setSn(sn);
|
catalogData.setSn(sn);
|
||||||
catalogData.setStatus(CatalogData.CatalogDataStatus.ready);
|
catalogData.setStatus(CatalogData.CatalogDataStatus.ready);
|
||||||
catalogData.setLastTime(new Date(System.currentTimeMillis()));
|
catalogData.setLastTime(Instant.now());
|
||||||
data.put(device.getDeviceId(), catalogData);
|
data.put(device.getDeviceId(), catalogData);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -48,7 +44,7 @@ public class CatalogDataCatch {
|
|||||||
catalogData.setDevice(device);
|
catalogData.setDevice(device);
|
||||||
catalogData.setChannelList(Collections.synchronizedList(new ArrayList<>()));
|
catalogData.setChannelList(Collections.synchronizedList(new ArrayList<>()));
|
||||||
catalogData.setStatus(CatalogData.CatalogDataStatus.runIng);
|
catalogData.setStatus(CatalogData.CatalogDataStatus.runIng);
|
||||||
catalogData.setLastTime(new Date(System.currentTimeMillis()));
|
catalogData.setLastTime(Instant.now());
|
||||||
data.put(deviceId, catalogData);
|
data.put(deviceId, catalogData);
|
||||||
}else {
|
}else {
|
||||||
// 同一个设备的通道同步请求只考虑一个,其他的直接忽略
|
// 同一个设备的通道同步请求只考虑一个,其他的直接忽略
|
||||||
@ -59,7 +55,7 @@ public class CatalogDataCatch {
|
|||||||
catalogData.setDevice(device);
|
catalogData.setDevice(device);
|
||||||
catalogData.setStatus(CatalogData.CatalogDataStatus.runIng);
|
catalogData.setStatus(CatalogData.CatalogDataStatus.runIng);
|
||||||
catalogData.getChannelList().addAll(deviceChannelList);
|
catalogData.getChannelList().addAll(deviceChannelList);
|
||||||
catalogData.setLastTime(new Date(System.currentTimeMillis()));
|
catalogData.setLastTime(Instant.now());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -102,16 +98,13 @@ public class CatalogDataCatch {
|
|||||||
@Scheduled(fixedRate = 5 * 1000) //每5秒执行一次, 发现数据5秒未更新则移除数据并认为数据接收超时
|
@Scheduled(fixedRate = 5 * 1000) //每5秒执行一次, 发现数据5秒未更新则移除数据并认为数据接收超时
|
||||||
private void timerTask(){
|
private void timerTask(){
|
||||||
Set<String> keys = data.keySet();
|
Set<String> keys = data.keySet();
|
||||||
Calendar calendarBefore5S = Calendar.getInstance();
|
|
||||||
calendarBefore5S.setTime(new Date());
|
|
||||||
calendarBefore5S.set(Calendar.SECOND, calendarBefore5S.get(Calendar.SECOND) - 5);
|
|
||||||
|
|
||||||
Calendar calendarBefore30S = Calendar.getInstance();
|
Instant instantBefore5S = Instant.now().minusMillis(TimeUnit.SECONDS.toMillis(5));
|
||||||
calendarBefore30S.setTime(new Date());
|
Instant instantBefore30S = Instant.now().minusMillis(TimeUnit.SECONDS.toMillis(30));
|
||||||
calendarBefore30S.set(Calendar.SECOND, calendarBefore30S.get(Calendar.SECOND) - 30);
|
|
||||||
for (String deviceId : keys) {
|
for (String deviceId : keys) {
|
||||||
CatalogData catalogData = data.get(deviceId);
|
CatalogData catalogData = data.get(deviceId);
|
||||||
if ( catalogData.getLastTime().before(calendarBefore5S.getTime())) { // 超过五秒收不到消息任务超时, 只更新这一部分数据
|
if ( catalogData.getLastTime().isBefore(instantBefore5S)) { // 超过五秒收不到消息任务超时, 只更新这一部分数据
|
||||||
if (catalogData.getStatus().equals(CatalogData.CatalogDataStatus.runIng)) {
|
if (catalogData.getStatus().equals(CatalogData.CatalogDataStatus.runIng)) {
|
||||||
storager.resetChannels(catalogData.getDevice().getDeviceId(), catalogData.getChannelList());
|
storager.resetChannels(catalogData.getDevice().getDeviceId(), catalogData.getChannelList());
|
||||||
if (catalogData.getTotal() != catalogData.getChannelList().size()) {
|
if (catalogData.getTotal() != catalogData.getChannelList().size()) {
|
||||||
@ -124,7 +117,7 @@ public class CatalogDataCatch {
|
|||||||
}
|
}
|
||||||
catalogData.setStatus(CatalogData.CatalogDataStatus.end);
|
catalogData.setStatus(CatalogData.CatalogDataStatus.end);
|
||||||
}
|
}
|
||||||
if (catalogData.getStatus().equals(CatalogData.CatalogDataStatus.end) && catalogData.getLastTime().before(calendarBefore30S.getTime())) { // 超过三十秒,如果标记为end则删除
|
if (catalogData.getStatus().equals(CatalogData.CatalogDataStatus.end) && catalogData.getLastTime().isBefore(instantBefore30S)) { // 超过三十秒,如果标记为end则删除
|
||||||
data.remove(deviceId);
|
data.remove(deviceId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,16 +3,15 @@ package com.genersoft.iot.vmp.gb28181.session;
|
|||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.*;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.callback.RequestMessage;
|
import com.genersoft.iot.vmp.gb28181.transmit.callback.RequestMessage;
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
|
||||||
import com.genersoft.iot.vmp.utils.DateUtil;
|
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.scheduling.annotation.Scheduled;
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import java.text.SimpleDateFormat;
|
import java.time.Instant;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author lin
|
* @author lin
|
||||||
@ -35,7 +34,7 @@ public class RecordDataCatch {
|
|||||||
recordInfo.setSn(sn.trim());
|
recordInfo.setSn(sn.trim());
|
||||||
recordInfo.setSumNum(sumNum);
|
recordInfo.setSumNum(sumNum);
|
||||||
recordInfo.setRecordList(Collections.synchronizedList(new ArrayList<>()));
|
recordInfo.setRecordList(Collections.synchronizedList(new ArrayList<>()));
|
||||||
recordInfo.setLastTime(new Date(System.currentTimeMillis()));
|
recordInfo.setLastTime(Instant.now());
|
||||||
recordInfo.getRecordList().addAll(recordItems);
|
recordInfo.getRecordList().addAll(recordItems);
|
||||||
data.put(key, recordInfo);
|
data.put(key, recordInfo);
|
||||||
}else {
|
}else {
|
||||||
@ -44,7 +43,7 @@ public class RecordDataCatch {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
recordInfo.getRecordList().addAll(recordItems);
|
recordInfo.getRecordList().addAll(recordItems);
|
||||||
recordInfo.setLastTime(new Date(System.currentTimeMillis()));
|
recordInfo.setLastTime(Instant.now());
|
||||||
}
|
}
|
||||||
return recordInfo.getRecordList().size();
|
return recordInfo.getRecordList().size();
|
||||||
}
|
}
|
||||||
@ -52,14 +51,12 @@ public class RecordDataCatch {
|
|||||||
@Scheduled(fixedRate = 5 * 1000) //每5秒执行一次, 发现数据5秒未更新则移除数据并认为数据接收超时
|
@Scheduled(fixedRate = 5 * 1000) //每5秒执行一次, 发现数据5秒未更新则移除数据并认为数据接收超时
|
||||||
private void timerTask(){
|
private void timerTask(){
|
||||||
Set<String> keys = data.keySet();
|
Set<String> keys = data.keySet();
|
||||||
Calendar calendarBefore5S = Calendar.getInstance();
|
// 获取五秒前的时刻
|
||||||
calendarBefore5S.setTime(new Date());
|
Instant instantBefore5S = Instant.now().minusMillis(TimeUnit.SECONDS.toMillis(5));
|
||||||
calendarBefore5S.set(Calendar.SECOND, calendarBefore5S.get(Calendar.SECOND) - 5);
|
|
||||||
|
|
||||||
for (String key : keys) {
|
for (String key : keys) {
|
||||||
RecordInfo recordInfo = data.get(key);
|
RecordInfo recordInfo = data.get(key);
|
||||||
// 超过五秒收不到消息任务超时, 只更新这一部分数据
|
// 超过五秒收不到消息任务超时, 只更新这一部分数据
|
||||||
if ( recordInfo.getLastTime().before(calendarBefore5S.getTime())) {
|
if ( recordInfo.getLastTime().isBefore(instantBefore5S)) {
|
||||||
// 处理录像数据, 返回给前端
|
// 处理录像数据, 返回给前端
|
||||||
String msgKey = DeferredResultHolder.CALLBACK_CMD_RECORDINFO + recordInfo.getDeviceId() + recordInfo.getSn();
|
String msgKey = DeferredResultHolder.CALLBACK_CMD_RECORDINFO + recordInfo.getDeviceId() + recordInfo.getSn();
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ import javax.sip.header.CallIdHeader;
|
|||||||
import javax.sip.message.Request;
|
import javax.sip.message.Request;
|
||||||
import javax.sip.message.Response;
|
import javax.sip.message.Response;
|
||||||
import java.text.ParseException;
|
import java.text.ParseException;
|
||||||
import java.util.Date;
|
import java.time.Instant;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -180,16 +180,16 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
|
|
||||||
Long startTime = null;
|
Long startTime = null;
|
||||||
Long stopTime = null;
|
Long stopTime = null;
|
||||||
Date start = null;
|
Instant start = null;
|
||||||
Date end = null;
|
Instant end = null;
|
||||||
if (sdp.getTimeDescriptions(false) != null && sdp.getTimeDescriptions(false).size() > 0) {
|
if (sdp.getTimeDescriptions(false) != null && sdp.getTimeDescriptions(false).size() > 0) {
|
||||||
TimeDescriptionImpl timeDescription = (TimeDescriptionImpl)(sdp.getTimeDescriptions(false).get(0));
|
TimeDescriptionImpl timeDescription = (TimeDescriptionImpl)(sdp.getTimeDescriptions(false).get(0));
|
||||||
TimeField startTimeFiled = (TimeField)timeDescription.getTime();
|
TimeField startTimeFiled = (TimeField)timeDescription.getTime();
|
||||||
startTime = startTimeFiled.getStartTime();
|
startTime = startTimeFiled.getStartTime();
|
||||||
stopTime = startTimeFiled.getStopTime();
|
stopTime = startTimeFiled.getStopTime();
|
||||||
|
|
||||||
start = new Date(startTime*1000);
|
start = Instant.ofEpochMilli(startTime*1000);
|
||||||
end = new Date(stopTime*1000);
|
end = Instant.ofEpochMilli(stopTime*1000);
|
||||||
}
|
}
|
||||||
// 获取支持的格式
|
// 获取支持的格式
|
||||||
Vector mediaDescriptions = sdp.getMediaDescriptions(true);
|
Vector mediaDescriptions = sdp.getMediaDescriptions(true);
|
||||||
@ -335,8 +335,8 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
sendRtpItem.setStreamId(ssrcInfo.getStream());
|
sendRtpItem.setStreamId(ssrcInfo.getStream());
|
||||||
// 写入redis, 超时时回复
|
// 写入redis, 超时时回复
|
||||||
redisCatchStorage.updateSendRTPSever(sendRtpItem);
|
redisCatchStorage.updateSendRTPSever(sendRtpItem);
|
||||||
playService.playBack(mediaServerItem, ssrcInfo, device.getDeviceId(), channelId, DateUtil.format.format(start),
|
playService.playBack(mediaServerItem, ssrcInfo, device.getDeviceId(), channelId, DateUtil.formatter.format(start),
|
||||||
DateUtil.format.format(end), null, result -> {
|
DateUtil.formatter.format(end), null, result -> {
|
||||||
if (result.getCode() != 0){
|
if (result.getCode() != 0){
|
||||||
logger.warn("录像回放失败");
|
logger.warn("录像回放失败");
|
||||||
if (result.getEvent() != null) {
|
if (result.getEvent() != null) {
|
||||||
|
@ -24,8 +24,6 @@ import javax.sip.SipException;
|
|||||||
import javax.sip.header.ViaHeader;
|
import javax.sip.header.ViaHeader;
|
||||||
import javax.sip.message.Response;
|
import javax.sip.message.Response;
|
||||||
import java.text.ParseException;
|
import java.text.ParseException;
|
||||||
import java.util.Calendar;
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
public class KeepaliveNotifyMessageHandler extends SIPRequestProcessorParent implements InitializingBean, IMessageHandler {
|
public class KeepaliveNotifyMessageHandler extends SIPRequestProcessorParent implements InitializingBean, IMessageHandler {
|
||||||
|
@ -11,24 +11,18 @@ import com.genersoft.iot.vmp.gb28181.task.impl.CatalogSubscribeTask;
|
|||||||
import com.genersoft.iot.vmp.gb28181.task.impl.MobilePositionSubscribeTask;
|
import com.genersoft.iot.vmp.gb28181.task.impl.MobilePositionSubscribeTask;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.SyncStatus;
|
import com.genersoft.iot.vmp.gb28181.bean.SyncStatus;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.service.IMediaService;
|
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
import com.genersoft.iot.vmp.storager.dao.DeviceMapper;
|
import com.genersoft.iot.vmp.storager.dao.DeviceMapper;
|
||||||
import com.genersoft.iot.vmp.utils.DateUtil;
|
import com.genersoft.iot.vmp.utils.DateUtil;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.beans.factory.annotation.Qualifier;
|
|
||||||
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
import javax.sip.DialogState;
|
import java.time.Instant;
|
||||||
import javax.sip.TimeoutEvent;
|
|
||||||
import java.text.ParseException;
|
|
||||||
import java.util.Calendar;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设备业务(目录订阅)
|
* 设备业务(目录订阅)
|
||||||
@ -101,9 +95,7 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
// 刷新过期任务
|
// 刷新过期任务
|
||||||
String registerExpireTaskKey = registerExpireTaskKeyPrefix + device.getDeviceId();
|
String registerExpireTaskKey = registerExpireTaskKeyPrefix + device.getDeviceId();
|
||||||
dynamicTask.stop(registerExpireTaskKey);
|
dynamicTask.stop(registerExpireTaskKey);
|
||||||
dynamicTask.startDelay(registerExpireTaskKey, ()->{
|
dynamicTask.startDelay(registerExpireTaskKey, ()-> offline(device.getDeviceId()), device.getExpires() * 1000);
|
||||||
offline(device.getDeviceId());
|
|
||||||
}, device.getExpires() * 1000);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -217,18 +209,9 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean expire(Device device) {
|
public boolean expire(Device device) {
|
||||||
Date registerTimeDate;
|
Instant registerTimeDate = Instant.from(DateUtil.formatter.parse(device.getRegisterTime()));
|
||||||
try {
|
Instant expireInstant = registerTimeDate.plusMillis(TimeUnit.SECONDS.toMillis(device.getExpires()));
|
||||||
registerTimeDate = DateUtil.format.parse(device.getRegisterTime());
|
return expireInstant.isBefore(Instant.now());
|
||||||
} catch (ParseException e) {
|
|
||||||
logger.error("设备时间格式化失败:{}->{} ", device.getDeviceId(), device.getRegisterTime() );
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
int expires = device.getExpires();
|
|
||||||
Calendar calendarForExpire = Calendar.getInstance();
|
|
||||||
calendarForExpire.setTime(registerTimeDate);
|
|
||||||
calendarForExpire.set(Calendar.SECOND, calendarForExpire.get(Calendar.SECOND) + expires);
|
|
||||||
return calendarForExpire.before(DateUtil.getNow());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user