648540858
2022-01-25 1dbb559b388831b5f15e690d0b33d24b1faaa983
src/main/java/com/genersoft/iot/vmp/storager/IVideoManagerStorager.java
@@ -1,17 +1,17 @@
package com.genersoft.iot.vmp.storager;
import java.util.List;
import com.genersoft.iot.vmp.gb28181.bean.Device;
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyDto;
import com.genersoft.iot.vmp.vmanager.platform.bean.ChannelReduce;
import com.genersoft.iot.vmp.gb28181.bean.MobilePosition;
import com.genersoft.iot.vmp.gb28181.bean.*;
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
import com.github.pagehelper.PageInfo;
import java.util.List;
/**    
 * @Description:视频设备数据存储接口
 * @description:视频设备数据存储接口
 * @author: swwheihei
 * @date:   2020年5月6日 下午2:14:31     
 */
@@ -51,6 +51,14 @@
   public void updateChannel(String deviceId, DeviceChannel channel);
   /**
    * 批量添加设备通道
    *
    * @param deviceId 设备id
    * @param channels 多个通道
    */
   public int updateChannels(String deviceId, List<DeviceChannel> channels);
   /**
    * 开始播放
    * @param deviceId 设备id
    * @param channelId 通道ID
@@ -82,6 +90,8 @@
    * @return
    */
   public PageInfo queryChannelsByDeviceId(String deviceId, String query, Boolean hasSubChannel, Boolean online, int page, int count);
   public List<DeviceChannel> queryChannelsByDeviceIdWithStartAndLimit(String deviceId, String query, Boolean hasSubChannel, Boolean online, int start, int limit);
   /**
    * 获取某个设备的通道列表
@@ -90,6 +100,7 @@
    * @return
    */
   public List<DeviceChannel> queryChannelsByDeviceId(String deviceId);
   public List<DeviceChannel> queryOnlineChannelsByDeviceId(String deviceId);
   /**
    * 获取某个设备的通道
@@ -97,6 +108,13 @@
    * @param channelId 通道ID
    */
   public DeviceChannel queryChannel(String deviceId, String channelId);
   /**
    * 删除通道
    * @param deviceId 设备ID
    * @param channelId 通道ID
    */
   public int delChannel(String deviceId, String channelId);
   /**
    * 获取多个设备
@@ -136,6 +154,13 @@
    * @return true:更新成功  false:更新失败
    */
   public boolean outline(String deviceId);
   /**
    * 更新所有设备离线
    *
    * @return true:更新成功  false:更新失败
    */
   public boolean outlineForAll();
   /**
@@ -196,7 +221,7 @@
    * @param platformGbId
    * @return
    */
   ParentPlatform queryParentPlatById(String platformGbId);
   ParentPlatform queryParentPlatByServerGBId(String platformGbId);
   /**
    * 所有平台离线
@@ -220,7 +245,7 @@
    * @param channelReduces
    * @return
    */
   int updateChannelForGB(String platformId, List<ChannelReduce> channelReduces);
   int updateChannelForGB(String platformId, List<ChannelReduce> channelReduces, String catalogId);
   /**
    *  移除上级平台的通道信息
@@ -233,12 +258,15 @@
    DeviceChannel queryChannelInParentPlatform(String platformId, String channelId);
    List<PlatformCatalog> queryChannelInParentPlatformAndCatalog(String platformId, String catalogId);
    List<PlatformCatalog> queryStreamInParentPlatformAndCatalog(String platformId, String catalogId);
    Device queryVideoDeviceByPlatformIdAndChannelId(String platformId, String channelId);
   /**
    * 添加Mobile Position设备移动位置
    * @param MobilePosition
    * @param mobilePosition
    * @return
    */
   public boolean insertMobilePosition(MobilePosition mobilePosition);
@@ -268,14 +296,14 @@
    * @param streamProxyDto
    * @return
    */
   public int addStreamProxy(StreamProxyDto streamProxyDto);
   public boolean addStreamProxy(StreamProxyItem streamProxyDto);
   /**
    * 更新代理流
    * @param streamProxyDto
    * @return
    */
   public int updateStreamProxy(StreamProxyDto streamProxyDto);
   public boolean updateStreamProxy(StreamProxyItem streamProxyDto);
   /**
    * 移除代理流
@@ -290,7 +318,7 @@
    * @param enable
    * @return
    */
   public List<StreamProxyDto> getStreamProxyListForEnable(boolean enable);
   public List<StreamProxyItem> getStreamProxyListForEnable(boolean enable);
   /**
    * 按照是app和stream获取代理流
@@ -298,7 +326,7 @@
    * @param stream
    * @return
    */
   public StreamProxyDto queryStreamProxy(String app, String stream);
   public StreamProxyItem queryStreamProxy(String app, String stream);
   /**
    * 获取代理流
@@ -306,5 +334,140 @@
    * @param count
    * @return
    */
   PageInfo<StreamProxyDto> queryStreamProxyList(Integer page, Integer count);
   PageInfo<StreamProxyItem> queryStreamProxyList(Integer page, Integer count);
   /**
    * 根据国标ID获取平台关联的直播流
    * @param platformId
    * @param channelId
    * @return
    */
   GbStream queryStreamInParentPlatform(String platformId, String channelId);
   /**
    * 获取平台关联的直播流
    * @param platformId
    * @return
    */
   List<GbStream> queryGbStreamListInPlatform(String platformId);
   /**
    * 批量更新推流列表
    * @param streamPushItems
    */
   void updateMediaList(List<StreamPushItem> streamPushItems);
   /**
    * 更新单个推流
    * @param streamPushItem
    */
   void updateMedia(StreamPushItem streamPushItem);
   /**
    * 移除单个推流
    * @param app
    * @param stream
    */
   int removeMedia(String app, String stream);
   /**
    * 清空推流列表
    */
   void clearMediaList();
   /**
    * 设置流离线
    * @param app
    * @param streamId
    */
   int mediaOutline(String app, String streamId);
   /**
    * 设置平台在线/离线
    * @param online
    */
   void updateParentPlatformStatus(String platformGbID, boolean online);
   /**
    * 更新媒体节点
    * @param mediaServerItem
    */
   void updateMediaServer(MediaServerItem mediaServerItem);
   /**
    * 根据媒体ID获取启用/不启用的代理列表
    * @param id 媒体ID
    * @param b 启用/不启用
    * @return
    */
   List<StreamProxyItem> getStreamProxyListForEnableInMediaServer(String id, boolean b);
   /**
    * 根据通道ID获取其所在设备
    * @param channelId  通道ID
    * @return
    */
    Device queryVideoDeviceByChannelId(String channelId);
   /**
    * 通道上线
    * @param channelId 通道ID
    */
   void deviceChannelOnline(String deviceId, String channelId);
   /**
    * 通道离线
    * @param channelId 通道ID
    */
   void deviceChannelOffline(String deviceId, String channelId);
   /**
    * 通过app与stream获取StreamProxy
    * @param app
    * @param streamId
    * @return
    */
    StreamProxyItem getStreamProxyByAppAndStream(String app, String streamId);
   /**
    * catlog查询结束后完全重写通道信息
    * @param deviceId
    * @param deviceChannelList
    */
   boolean resetChannels(String deviceId, List<DeviceChannel> deviceChannelList);
   /**
    * 获取目录信息
    * @param platformId
    * @param parentId
    * @return
    */
    List<PlatformCatalog> getChildrenCatalogByPlatform(String platformId, String parentId);
   int addCatalog(PlatformCatalog platformCatalog);
   PlatformCatalog getCatalog(String id);
   int delCatalog(String id);
   int updateCatalog(PlatformCatalog platformCatalog);
   int setDefaultCatalog(String platformId, String catalogId);
   List<PlatformCatalog> queryCatalogInPlatform(String serverGBId);
    int delRelation(PlatformCatalog platformCatalog);
   int updateStreamGPS(List<GPSMsgInfo> gpsMsgInfo);
   List<ParentPlatform> queryPlatFormListForGBWithGBId(String channelId, List<String> platforms);
   List<ParentPlatform> queryPlatFormListForStreamWithGBId(String app, String stream, List<String> platforms);
   GbStream getGbStream(String app, String streamId);
   void delCatalogByPlatformId(String serverGBId);
   void delRelationByPlatformId(String serverGBId);
}