648540858
3 years ago
14 changed files with 172 additions and 27 deletions
@ -0,0 +1,32 @@ |
|||
package com.genersoft.iot.vmp.gb28181.event.record; |
|||
|
|||
import com.genersoft.iot.vmp.gb28181.bean.DeviceAlarm; |
|||
import com.genersoft.iot.vmp.gb28181.bean.RecordInfo; |
|||
import org.springframework.context.ApplicationEvent; |
|||
|
|||
/** |
|||
* @description: 录像查询结束时间 |
|||
* @author: pan |
|||
* @data: 2022-02-23 |
|||
*/ |
|||
|
|||
public class RecordEndEvent extends ApplicationEvent { |
|||
/** |
|||
* |
|||
*/ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public RecordEndEvent(Object source) { |
|||
super(source); |
|||
} |
|||
|
|||
private RecordInfo recordInfo; |
|||
|
|||
public RecordInfo getRecordInfo() { |
|||
return recordInfo; |
|||
} |
|||
|
|||
public void setRecordInfo(RecordInfo recordInfo) { |
|||
this.recordInfo = recordInfo; |
|||
} |
|||
} |
@ -0,0 +1,43 @@ |
|||
package com.genersoft.iot.vmp.gb28181.event.record; |
|||
|
|||
import com.genersoft.iot.vmp.gb28181.bean.RecordItem; |
|||
import org.slf4j.Logger; |
|||
import org.slf4j.LoggerFactory; |
|||
import org.springframework.context.ApplicationListener; |
|||
import org.springframework.stereotype.Component; |
|||
import org.springframework.web.servlet.mvc.method.annotation.SseEmitter; |
|||
|
|||
import java.io.IOException; |
|||
import java.util.*; |
|||
|
|||
/** |
|||
* @description: 录像查询结束时间 |
|||
* @author: pan |
|||
* @data: 2022-02-23 |
|||
*/ |
|||
|
|||
@Component |
|||
public class RecordEndEventListener implements ApplicationListener<RecordEndEvent> { |
|||
|
|||
private final static Logger logger = LoggerFactory.getLogger(RecordEndEventListener.class); |
|||
|
|||
private static Map<String, SseEmitter> sseEmitters = new Hashtable<>(); |
|||
|
|||
public void addSseEmitters(String browserId, SseEmitter sseEmitter) { |
|||
sseEmitters.put(browserId, sseEmitter); |
|||
} |
|||
|
|||
public interface RecordEndEventHandler{ |
|||
void handler(List<RecordItem> recordItems); |
|||
} |
|||
|
|||
private Map<String, RecordEndEventHandler> handlerMap = new HashMap<>(); |
|||
@Override |
|||
public void onApplicationEvent(RecordEndEvent event) { |
|||
if (logger.isDebugEnabled()) { |
|||
logger.debug("录像查询完成事件触发,deviceId:{}, channelId: {}, 录像数量{}条", event.getRecordInfo().getDeviceId(), |
|||
event.getRecordInfo().getChannelId(), event.getRecordInfo().getRecordList().size() ); |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,22 @@ |
|||
package com.genersoft.iot.vmp.storager.dao.dto; |
|||
|
|||
public class ChannelSourceInfo { |
|||
private String name; |
|||
private int count; |
|||
|
|||
public String getName() { |
|||
return name; |
|||
} |
|||
|
|||
public void setName(String name) { |
|||
this.name = name; |
|||
} |
|||
|
|||
public int getCount() { |
|||
return count; |
|||
} |
|||
|
|||
public void setCount(int count) { |
|||
this.count = count; |
|||
} |
|||
} |
Loading…
Reference in new issue