Merge branch '648540858:wvp-28181-2.0' into wvp-28181-2.0
This commit is contained in:
commit
a59095db0c
14
pom.xml
14
pom.xml
@ -61,6 +61,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||||||
|
<exclusions>
|
||||||
|
<!-- 去掉 Lettuce 的依赖, Spring Boot 优先使用 Lettuce 作为 Redis 客户端 -->
|
||||||
|
<exclusion>
|
||||||
|
<groupId>io.lettuce</groupId>
|
||||||
|
<artifactId>lettuce-core</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
@ -75,6 +82,12 @@
|
|||||||
<groupId>org.mybatis.spring.boot</groupId>
|
<groupId>org.mybatis.spring.boot</groupId>
|
||||||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||||||
<version>2.1.4</version>
|
<version>2.1.4</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<groupId>com.zaxxer</groupId>
|
||||||
|
<artifactId>HikariCP</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
@ -84,7 +97,6 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>redis.clients</groupId>
|
<groupId>redis.clients</groupId>
|
||||||
<artifactId>jedis</artifactId>
|
<artifactId>jedis</artifactId>
|
||||||
<version>${jedis-version}</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- druid数据库连接池 -->
|
<!-- druid数据库连接池 -->
|
||||||
|
785
sql/mysql.sql
785
sql/mysql.sql
@ -2,55 +2,60 @@
|
|||||||
--
|
--
|
||||||
-- Host: 127.0.0.1 Database: wvp2
|
-- Host: 127.0.0.1 Database: wvp2
|
||||||
-- ------------------------------------------------------
|
-- ------------------------------------------------------
|
||||||
-- Server version 8.0.29-0ubuntu0.22.04.2
|
-- Server version 8.0.29-0ubuntu0.22.04.3
|
||||||
|
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT = @@CHARACTER_SET_CLIENT */;
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS = @@CHARACTER_SET_RESULTS */;
|
||||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
/*!40101 SET @OLD_COLLATION_CONNECTION = @@COLLATION_CONNECTION */;
|
||||||
/*!50503 SET NAMES utf8mb4 */;
|
/*!50503 SET NAMES utf8mb4 */;
|
||||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
/*!40103 SET @OLD_TIME_ZONE = @@TIME_ZONE */;
|
||||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
/*!40103 SET TIME_ZONE = ' + 00:00' */;
|
||||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
/*!40014 SET @OLD_UNIQUE_CHECKS = @@UNIQUE_CHECKS, UNIQUE_CHECKS = 0 */;
|
||||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS = @@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS = 0 */;
|
||||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
/*!40101 SET @OLD_SQL_MODE = @@SQL_MODE, SQL_MODE = 'NO_AUTO_VALUE_ON_ZERO' */;
|
||||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
/*!40111 SET @OLD_SQL_NOTES = @@SQL_NOTES, SQL_NOTES = 0 */;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `device`
|
-- Table structure for table `device`
|
||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `device`;
|
DROP TABLE IF EXISTS `device`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `device` (
|
CREATE TABLE `device`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`manufacturer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`model` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`manufacturer` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`firmware` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`model` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`transport` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`firmware` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`streamMode` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`transport` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`online` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`streamMode` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`registerTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`online` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`keepaliveTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`registerTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`keepaliveTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`port` int NOT NULL,
|
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`expires` int NOT NULL,
|
`port` int NOT NULL,
|
||||||
`subscribeCycleForCatalog` int NOT NULL,
|
`expires` int NOT NULL,
|
||||||
`hostAddress` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`subscribeCycleForCatalog` int NOT NULL,
|
||||||
`charset` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`hostAddress` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`subscribeCycleForMobilePosition` int DEFAULT NULL,
|
`charset` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`mobilePositionSubmissionInterval` int DEFAULT '5',
|
`subscribeCycleForMobilePosition` int DEFAULT NULL,
|
||||||
`subscribeCycleForAlarm` int DEFAULT NULL,
|
`mobilePositionSubmissionInterval` int DEFAULT '5 ',
|
||||||
`ssrcCheck` int DEFAULT '0',
|
`subscribeCycleForAlarm` int DEFAULT NULL,
|
||||||
`geoCoordSys` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
`ssrcCheck` int DEFAULT '0 ',
|
||||||
`treeType` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
`geoCoordSys` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`treeType` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
UNIQUE KEY `device_deviceId_uindex` (`deviceId`) USING BTREE
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `device_deviceId_uindex` (`deviceId`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 53
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -58,8 +63,10 @@ CREATE TABLE `device` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `device` WRITE;
|
LOCK TABLES `device` WRITE;
|
||||||
/*!40000 ALTER TABLE `device` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `device`
|
||||||
/*!40000 ALTER TABLE `device` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `device`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -67,22 +74,26 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `device_alarm`;
|
DROP TABLE IF EXISTS `device_alarm`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `device_alarm` (
|
CREATE TABLE `device_alarm`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`channelId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`alarmPriority` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`channelId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`alarmMethod` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`alarmPriority` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`alarmTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`alarmMethod` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`alarmDescription` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`alarmTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`longitude` double DEFAULT NULL,
|
`alarmDescription` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`latitude` double DEFAULT NULL,
|
`longitude` double DEFAULT NULL,
|
||||||
`alarmType` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`latitude` double DEFAULT NULL,
|
||||||
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`alarmType` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -90,8 +101,10 @@ CREATE TABLE `device_alarm` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `device_alarm` WRITE;
|
LOCK TABLES `device_alarm` WRITE;
|
||||||
/*!40000 ALTER TABLE `device_alarm` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `device_alarm`
|
||||||
/*!40000 ALTER TABLE `device_alarm` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `device_alarm`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -99,50 +112,55 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `device_channel`;
|
DROP TABLE IF EXISTS `device_channel`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `device_channel` (
|
CREATE TABLE `device_channel`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`channelId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`channelId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`manufacture` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`model` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`manufacture` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`owner` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`model` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`civilCode` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`owner` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`block` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`civilCode` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`address` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`block` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`parentId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`address` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`safetyWay` int DEFAULT NULL,
|
`parentId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`registerWay` int DEFAULT NULL,
|
`safetyWay` int DEFAULT NULL,
|
||||||
`certNum` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`registerWay` int DEFAULT NULL,
|
||||||
`certifiable` int DEFAULT NULL,
|
`certNum` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`errCode` int DEFAULT NULL,
|
`certifiable` int DEFAULT NULL,
|
||||||
`endTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`errCode` int DEFAULT NULL,
|
||||||
`secrecy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`endTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`ipAddress` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`secrecy` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`port` int DEFAULT NULL,
|
`ipAddress` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`port` int DEFAULT NULL,
|
||||||
`PTZType` int DEFAULT NULL,
|
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`status` int DEFAULT NULL,
|
`PTZType` int DEFAULT NULL,
|
||||||
`longitude` double DEFAULT NULL,
|
`status` int DEFAULT NULL,
|
||||||
`latitude` double DEFAULT NULL,
|
`longitude` double DEFAULT NULL,
|
||||||
`streamId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`latitude` double DEFAULT NULL,
|
||||||
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`streamId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`parental` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`hasAudio` bit(1) DEFAULT NULL,
|
`parental` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`hasAudio` bit(1) DEFAULT NULL,
|
||||||
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`subCount` int DEFAULT '0',
|
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`longitudeGcj02` double DEFAULT NULL,
|
`subCount` int DEFAULT '0 ',
|
||||||
`latitudeGcj02` double DEFAULT NULL,
|
`longitudeGcj02` double DEFAULT NULL,
|
||||||
`longitudeWgs84` double DEFAULT NULL,
|
`latitudeGcj02` double DEFAULT NULL,
|
||||||
`latitudeWgs84` double DEFAULT NULL,
|
`longitudeWgs84` double DEFAULT NULL,
|
||||||
`businessGroupId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`latitudeWgs84` double DEFAULT NULL,
|
||||||
`gpsTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`businessGroupId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`gpsTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
UNIQUE KEY `device_channel_id_uindex` (`id`) USING BTREE,
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
UNIQUE KEY `device_channel_pk` (`channelId`,`deviceId`) USING BTREE
|
UNIQUE KEY `device_channel_id_uindex` (`id`) USING BTREE,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=19336 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `device_channel_pk` (`channelId`, `deviceId`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 19496
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -150,8 +168,10 @@ CREATE TABLE `device_channel` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `device_channel` WRITE;
|
LOCK TABLES `device_channel` WRITE;
|
||||||
/*!40000 ALTER TABLE `device_channel` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `device_channel`
|
||||||
/*!40000 ALTER TABLE `device_channel` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `device_channel`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -159,27 +179,32 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `device_mobile_position`;
|
DROP TABLE IF EXISTS `device_mobile_position`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `device_mobile_position` (
|
CREATE TABLE `device_mobile_position`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`channelId` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`deviceId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`deviceName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`channelId` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`time` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`deviceName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`longitude` double NOT NULL,
|
`time` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`latitude` double NOT NULL,
|
`longitude` double NOT NULL,
|
||||||
`altitude` double DEFAULT NULL,
|
`latitude` double NOT NULL,
|
||||||
`speed` double DEFAULT NULL,
|
`altitude` double DEFAULT NULL,
|
||||||
`direction` double DEFAULT NULL,
|
`speed` double DEFAULT NULL,
|
||||||
`reportSource` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`direction` double DEFAULT NULL,
|
||||||
`longitudeGcj02` double DEFAULT NULL,
|
`reportSource` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`latitudeGcj02` double DEFAULT NULL,
|
`longitudeGcj02` double DEFAULT NULL,
|
||||||
`longitudeWgs84` double DEFAULT NULL,
|
`latitudeGcj02` double DEFAULT NULL,
|
||||||
`latitudeWgs84` double DEFAULT NULL,
|
`longitudeWgs84` double DEFAULT NULL,
|
||||||
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`latitudeWgs84` double DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=6751 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 6956
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -187,8 +212,10 @@ CREATE TABLE `device_mobile_position` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `device_mobile_position` WRITE;
|
LOCK TABLES `device_mobile_position` WRITE;
|
||||||
/*!40000 ALTER TABLE `device_mobile_position` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `device_mobile_position`
|
||||||
/*!40000 ALTER TABLE `device_mobile_position` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `device_mobile_position`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -196,24 +223,29 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `gb_stream`;
|
DROP TABLE IF EXISTS `gb_stream`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `gb_stream` (
|
CREATE TABLE `gb_stream`
|
||||||
`gbStreamId` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`gbStreamId` int NOT NULL AUTO_INCREMENT,
|
||||||
`stream` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`gbId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`stream` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`gbId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`longitude` double DEFAULT NULL,
|
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`latitude` double DEFAULT NULL,
|
`longitude` double DEFAULT NULL,
|
||||||
`streamType` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`latitude` double DEFAULT NULL,
|
||||||
`mediaServerId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`streamType` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`mediaServerId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`gpsTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`gbStreamId`) USING BTREE,
|
`gpsTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
UNIQUE KEY `app` (`app`,`stream`) USING BTREE,
|
PRIMARY KEY (`gbStreamId`) USING BTREE,
|
||||||
UNIQUE KEY `gbId` (`gbId`) USING BTREE
|
UNIQUE KEY `app` (`app`, `stream`) USING BTREE,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=301740 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `gbId` (`gbId`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 301754
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -221,8 +253,10 @@ CREATE TABLE `gb_stream` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `gb_stream` WRITE;
|
LOCK TABLES `gb_stream` WRITE;
|
||||||
/*!40000 ALTER TABLE `gb_stream` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `gb_stream`
|
||||||
/*!40000 ALTER TABLE `gb_stream` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `gb_stream`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -230,20 +264,25 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `log`;
|
DROP TABLE IF EXISTS `log`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `log` (
|
CREATE TABLE `log`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`uri` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`address` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`uri` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`result` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`address` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`timing` bigint NOT NULL,
|
`result` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`timing` bigint NOT NULL,
|
||||||
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=37760 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 42703
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -251,8 +290,10 @@ CREATE TABLE `log` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `log` WRITE;
|
LOCK TABLES `log` WRITE;
|
||||||
/*!40000 ALTER TABLE `log` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `log`
|
||||||
/*!40000 ALTER TABLE `log` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `log`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -260,35 +301,39 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `media_server`;
|
DROP TABLE IF EXISTS `media_server`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `media_server` (
|
CREATE TABLE `media_server`
|
||||||
`id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
(
|
||||||
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`hookIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`ip` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`sdpIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`hookIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`streamIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`sdpIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`httpPort` int NOT NULL,
|
`streamIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`httpSSlPort` int NOT NULL,
|
`httpPort` int NOT NULL,
|
||||||
`rtmpPort` int NOT NULL,
|
`httpSSlPort` int NOT NULL,
|
||||||
`rtmpSSlPort` int NOT NULL,
|
`rtmpPort` int NOT NULL,
|
||||||
`rtpProxyPort` int NOT NULL,
|
`rtmpSSlPort` int NOT NULL,
|
||||||
`rtspPort` int NOT NULL,
|
`rtpProxyPort` int NOT NULL,
|
||||||
`rtspSSLPort` int NOT NULL,
|
`rtspPort` int NOT NULL,
|
||||||
`autoConfig` int NOT NULL,
|
`rtspSSLPort` int NOT NULL,
|
||||||
`secret` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`autoConfig` int NOT NULL,
|
||||||
`streamNoneReaderDelayMS` int NOT NULL,
|
`secret` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`rtpEnable` int NOT NULL,
|
`streamNoneReaderDelayMS` int NOT NULL,
|
||||||
`rtpPortRange` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`rtpEnable` int NOT NULL,
|
||||||
`sendRtpPortRange` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`rtpPortRange` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`recordAssistPort` int NOT NULL,
|
`sendRtpPortRange` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`defaultServer` int NOT NULL,
|
`recordAssistPort` int NOT NULL,
|
||||||
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`defaultServer` int NOT NULL,
|
||||||
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`hookAliveInterval` int NOT NULL,
|
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`hookAliveInterval` int NOT NULL,
|
||||||
UNIQUE KEY `media_server_i` (`ip`,`httpPort`) USING BTREE
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `media_server_i` (`ip`, `httpPort`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -296,8 +341,10 @@ CREATE TABLE `media_server` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `media_server` WRITE;
|
LOCK TABLES `media_server` WRITE;
|
||||||
/*!40000 ALTER TABLE `media_server` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `media_server`
|
||||||
/*!40000 ALTER TABLE `media_server` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `media_server`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -305,39 +352,44 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `parent_platform`;
|
DROP TABLE IF EXISTS `parent_platform`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `parent_platform` (
|
CREATE TABLE `parent_platform`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`enable` int DEFAULT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`enable` int DEFAULT NULL,
|
||||||
`serverGBId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`serverGBDomain` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`serverGBId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`serverIP` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`serverGBDomain` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`serverPort` int DEFAULT NULL,
|
`serverIP` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`deviceGBId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`serverPort` int DEFAULT NULL,
|
||||||
`deviceIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`deviceGBId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`devicePort` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`deviceIp` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`devicePort` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`expires` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`keepTimeout` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`expires` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`transport` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`keepTimeout` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`characterSet` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`transport` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`catalogId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`characterSet` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`ptz` int DEFAULT NULL,
|
`catalogId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`rtcp` int DEFAULT NULL,
|
`ptz` int DEFAULT NULL,
|
||||||
`status` bit(1) DEFAULT NULL,
|
`rtcp` int DEFAULT NULL,
|
||||||
`startOfflinePush` int DEFAULT '0',
|
`status` bit(1) DEFAULT NULL,
|
||||||
`administrativeDivision` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`startOfflinePush` int DEFAULT '0 ',
|
||||||
`catalogGroup` int DEFAULT '1',
|
`administrativeDivision` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`catalogGroup` int DEFAULT '1 ',
|
||||||
`updateTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`treeType` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
`updateTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`treeType` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
UNIQUE KEY `parent_platform_id_uindex` (`id`) USING BTREE,
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
UNIQUE KEY `parent_platform_pk` (`serverGBId`) USING BTREE
|
UNIQUE KEY `parent_platform_id_uindex` (`id`) USING BTREE,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `parent_platform_pk` (`serverGBId`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 40
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -345,8 +397,10 @@ CREATE TABLE `parent_platform` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `parent_platform` WRITE;
|
LOCK TABLES `parent_platform` WRITE;
|
||||||
/*!40000 ALTER TABLE `parent_platform` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `parent_platform`
|
||||||
/*!40000 ALTER TABLE `parent_platform` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `parent_platform`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -354,17 +408,21 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `platform_catalog`;
|
DROP TABLE IF EXISTS `platform_catalog`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `platform_catalog` (
|
CREATE TABLE `platform_catalog`
|
||||||
`id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
(
|
||||||
`platformId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`platformId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`parentId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`civilCode` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`parentId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`businessGroupId` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`civilCode` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
`businessGroupId` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -372,8 +430,10 @@ CREATE TABLE `platform_catalog` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `platform_catalog` WRITE;
|
LOCK TABLES `platform_catalog` WRITE;
|
||||||
/*!40000 ALTER TABLE `platform_catalog` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `platform_catalog`
|
||||||
/*!40000 ALTER TABLE `platform_catalog` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `platform_catalog`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -381,15 +441,20 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `platform_gb_channel`;
|
DROP TABLE IF EXISTS `platform_gb_channel`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `platform_gb_channel` (
|
CREATE TABLE `platform_gb_channel`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`platformId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`catalogId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`platformId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`deviceChannelId` int NOT NULL,
|
`catalogId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
`deviceChannelId` int NOT NULL,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=4912 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 4915
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -397,8 +462,10 @@ CREATE TABLE `platform_gb_channel` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `platform_gb_channel` WRITE;
|
LOCK TABLES `platform_gb_channel` WRITE;
|
||||||
/*!40000 ALTER TABLE `platform_gb_channel` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `platform_gb_channel`
|
||||||
/*!40000 ALTER TABLE `platform_gb_channel` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `platform_gb_channel`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -406,16 +473,21 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `platform_gb_stream`;
|
DROP TABLE IF EXISTS `platform_gb_stream`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `platform_gb_stream` (
|
CREATE TABLE `platform_gb_stream`
|
||||||
`platformId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
(
|
||||||
`catalogId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`platformId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`gbStreamId` int NOT NULL,
|
`catalogId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
`gbStreamId` int NOT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
UNIQUE KEY `platform_gb_stream_pk` (`platformId`,`catalogId`,`gbStreamId`) USING BTREE
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=302134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `platform_gb_stream_pk` (`platformId`, `catalogId`, `gbStreamId`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 302149
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -423,8 +495,10 @@ CREATE TABLE `platform_gb_stream` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `platform_gb_stream` WRITE;
|
LOCK TABLES `platform_gb_stream` WRITE;
|
||||||
/*!40000 ALTER TABLE `platform_gb_stream` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `platform_gb_stream`
|
||||||
/*!40000 ALTER TABLE `platform_gb_stream` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `platform_gb_stream`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -432,31 +506,36 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `stream_proxy`;
|
DROP TABLE IF EXISTS `stream_proxy`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `stream_proxy` (
|
CREATE TABLE `stream_proxy`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`stream` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`stream` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`src_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`dst_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`src_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`timeout_ms` int DEFAULT NULL,
|
`dst_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`ffmpeg_cmd_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`timeout_ms` int DEFAULT NULL,
|
||||||
`rtp_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`ffmpeg_cmd_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`mediaServerId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`rtp_type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`enable_hls` bit(1) DEFAULT NULL,
|
`mediaServerId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`enable_mp4` bit(1) DEFAULT NULL,
|
`enable_hls` bit(1) DEFAULT NULL,
|
||||||
`enable` bit(1) NOT NULL,
|
`enable_mp4` bit(1) DEFAULT NULL,
|
||||||
`status` bit(1) NOT NULL,
|
`enable` bit(1) NOT NULL,
|
||||||
`enable_remove_none_reader` bit(1) NOT NULL,
|
`status` bit(1) NOT NULL,
|
||||||
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`enable_remove_none_reader` bit(1) NOT NULL,
|
||||||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`updateTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`updateTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
UNIQUE KEY `stream_proxy_pk` (`app`,`stream`) USING BTREE
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `stream_proxy_pk` (`app`, `stream`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 66
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -464,8 +543,10 @@ CREATE TABLE `stream_proxy` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `stream_proxy` WRITE;
|
LOCK TABLES `stream_proxy` WRITE;
|
||||||
/*!40000 ALTER TABLE `stream_proxy` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `stream_proxy`
|
||||||
/*!40000 ALTER TABLE `stream_proxy` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `stream_proxy`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -473,25 +554,32 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `stream_push`;
|
DROP TABLE IF EXISTS `stream_push`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `stream_push` (
|
CREATE TABLE `stream_push`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`stream` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`app` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`totalReaderCount` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`stream` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`originType` int DEFAULT NULL,
|
`totalReaderCount` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`originTypeStr` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`originType` int DEFAULT NULL,
|
||||||
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`originTypeStr` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`aliveSecond` int DEFAULT NULL,
|
`createTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`mediaServerId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`aliveSecond` int DEFAULT NULL,
|
||||||
`serverId` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
`mediaServerId` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`pushTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`serverId` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`updateTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`pushTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`status` int DEFAULT NULL,
|
`updateTime` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`status` int DEFAULT NULL,
|
||||||
UNIQUE KEY `stream_push_pk` (`app`,`stream`) USING BTREE
|
`pushIng` int DEFAULT NULL,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=305390 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
`self` int DEFAULT NULL,
|
||||||
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
|
UNIQUE KEY `stream_push_pk` (`app`, `stream`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 305415
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -499,8 +587,10 @@ CREATE TABLE `stream_push` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `stream_push` WRITE;
|
LOCK TABLES `stream_push` WRITE;
|
||||||
/*!40000 ALTER TABLE `stream_push` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `stream_push`
|
||||||
/*!40000 ALTER TABLE `stream_push` ENABLE KEYS */;
|
DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `stream_push`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -508,19 +598,24 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `user`;
|
DROP TABLE IF EXISTS `user`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `user` (
|
CREATE TABLE `user`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`roleId` int NOT NULL,
|
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`roleId` int NOT NULL,
|
||||||
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`pushKey` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE,
|
`pushKey` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
UNIQUE KEY `user_username_uindex` (`username`) USING BTREE
|
PRIMARY KEY (`id`) USING BTREE,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
UNIQUE KEY `user_username_uindex` (`username`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 2
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -528,9 +623,13 @@ CREATE TABLE `user` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `user` WRITE;
|
LOCK TABLES `user` WRITE;
|
||||||
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `user`
|
||||||
INSERT INTO `user` VALUES (1,'admin','21232f297a57a5a743894a0e4a801fc3',1,'2021 - 04 - 13 14:14:57','2021 - 04 - 13 14:14:57','453df297a57a5a7438934sda801fc3');
|
DISABLE KEYS */;
|
||||||
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
|
INSERT INTO `user`
|
||||||
|
VALUES (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', 1, '2021 - 04 - 13 14:14:57', '2021 - 04 - 13 14:14:57',
|
||||||
|
'01685cb9573ae25ec6c52142402da7c5');
|
||||||
|
/*!40000 ALTER TABLE `user`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -538,16 +637,21 @@ UNLOCK TABLES;
|
|||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `user_role`;
|
DROP TABLE IF EXISTS `user_role`;
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
/*!50503 SET character_set_client = utf8mb4 */;
|
/*!50503 SET character_set_client = utf8mb4 */;
|
||||||
CREATE TABLE `user_role` (
|
CREATE TABLE `user_role`
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
(
|
||||||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
`authority` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`authority` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`createTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
PRIMARY KEY (`id`) USING BTREE
|
`updateTime` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
|
PRIMARY KEY (`id`) USING BTREE
|
||||||
|
) ENGINE = InnoDB
|
||||||
|
AUTO_INCREMENT = 2
|
||||||
|
DEFAULT CHARSET = utf8mb4
|
||||||
|
COLLATE = utf8mb4_general_ci
|
||||||
|
ROW_FORMAT = DYNAMIC;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
--
|
||||||
@ -555,18 +659,21 @@ CREATE TABLE `user_role` (
|
|||||||
--
|
--
|
||||||
|
|
||||||
LOCK TABLES `user_role` WRITE;
|
LOCK TABLES `user_role` WRITE;
|
||||||
/*!40000 ALTER TABLE `user_role` DISABLE KEYS */;
|
/*!40000 ALTER TABLE `user_role`
|
||||||
INSERT INTO `user_role` VALUES (1,'admin','0','2021-04-13 14:14:57','2021-04-13 14:14:57');
|
DISABLE KEYS */;
|
||||||
/*!40000 ALTER TABLE `user_role` ENABLE KEYS */;
|
INSERT INTO `user_role`
|
||||||
|
VALUES (1, 'admin', '0 ', '2021 - 04 - 13 14:14:57', '2021 - 04 - 13 14:14:57');
|
||||||
|
/*!40000 ALTER TABLE `user_role`
|
||||||
|
ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
/*!40103 SET TIME_ZONE = @OLD_TIME_ZONE */;
|
||||||
|
|
||||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
/*!40101 SET SQL_MODE = @OLD_SQL_MODE */;
|
||||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
/*!40014 SET FOREIGN_KEY_CHECKS = @OLD_FOREIGN_KEY_CHECKS */;
|
||||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
/*!40014 SET UNIQUE_CHECKS = @OLD_UNIQUE_CHECKS */;
|
||||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
/*!40101 SET CHARACTER_SET_CLIENT = @OLD_CHARACTER_SET_CLIENT */;
|
||||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
/*!40101 SET CHARACTER_SET_RESULTS = @OLD_CHARACTER_SET_RESULTS */;
|
||||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*!40101 SET COLLATION_CONNECTION = @OLD_COLLATION_CONNECTION */;
|
||||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
/*!40111 SET SQL_NOTES = @OLD_SQL_NOTES */;
|
||||||
|
|
||||||
-- Dump completed on 2022-07-17 23:15:09
|
-- Dump completed on 2022-07-27 14:51:08
|
||||||
|
@ -77,5 +77,8 @@ alter table platform_catalog
|
|||||||
alter table platform_catalog
|
alter table platform_catalog
|
||||||
add businessGroupId varchar(50) default null;
|
add businessGroupId varchar(50) default null;
|
||||||
|
|
||||||
|
/********************* ADD ***************************/
|
||||||
|
alter table stream_push
|
||||||
|
add self int DEFAULT NULL;
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package com.genersoft.iot.vmp.conf;
|
package com.genersoft.iot.vmp.conf;
|
||||||
|
|
||||||
import io.swagger.models.auth.In;
|
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
package com.genersoft.iot.vmp.conf.security;
|
package com.genersoft.iot.vmp.conf.security;
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.conf.security.dto.LoginUser;
|
import java.time.LocalDateTime;
|
||||||
import com.genersoft.iot.vmp.service.IUserService;
|
|
||||||
import com.genersoft.iot.vmp.storager.dao.dto.User;
|
|
||||||
import com.github.xiaoymin.knife4j.core.util.StrUtil;
|
|
||||||
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;
|
||||||
@ -12,7 +10,10 @@ import org.springframework.security.core.userdetails.UserDetailsService;
|
|||||||
import org.springframework.security.core.userdetails.UsernameNotFoundException;
|
import org.springframework.security.core.userdetails.UsernameNotFoundException;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import com.alibaba.excel.util.StringUtils;
|
||||||
|
import com.genersoft.iot.vmp.conf.security.dto.LoginUser;
|
||||||
|
import com.genersoft.iot.vmp.service.IUserService;
|
||||||
|
import com.genersoft.iot.vmp.storager.dao.dto.User;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户登录认证逻辑
|
* 用户登录认证逻辑
|
||||||
@ -27,7 +28,7 @@ public class DefaultUserDetailsServiceImpl implements UserDetailsService {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
|
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
|
||||||
if (StrUtil.isBlank(username)) {
|
if (StringUtils.isBlank(username)) {
|
||||||
logger.info("登录用户:{} 不存在", username);
|
logger.info("登录用户:{} 不存在", username);
|
||||||
throw new UsernameNotFoundException("登录用户:" + username + " 不存在");
|
throw new UsernameNotFoundException("登录用户:" + username + " 不存在");
|
||||||
}
|
}
|
||||||
|
@ -3,8 +3,14 @@ package com.genersoft.iot.vmp.gb28181.bean;
|
|||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
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 Instant lastTime;
|
private Instant lastTime;
|
||||||
|
@ -2,12 +2,15 @@ package com.genersoft.iot.vmp.gb28181.bean;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 摄像机同步状态
|
* 摄像机同步状态
|
||||||
|
* @author lin
|
||||||
*/
|
*/
|
||||||
public class SyncStatus {
|
public class SyncStatus {
|
||||||
private int total;
|
private int total;
|
||||||
private int current;
|
private int current;
|
||||||
private String errorMsg;
|
private String errorMsg;
|
||||||
|
|
||||||
|
private boolean syncIng;
|
||||||
|
|
||||||
public int getTotal() {
|
public int getTotal() {
|
||||||
return total;
|
return total;
|
||||||
}
|
}
|
||||||
@ -31,4 +34,12 @@ public class SyncStatus {
|
|||||||
public void setErrorMsg(String errorMsg) {
|
public void setErrorMsg(String errorMsg) {
|
||||||
this.errorMsg = errorMsg;
|
this.errorMsg = errorMsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isSyncIng() {
|
||||||
|
return syncIng;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSyncIng(boolean syncIng) {
|
||||||
|
this.syncIng = syncIng;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -84,6 +84,11 @@ public class CatalogDataCatch {
|
|||||||
syncStatus.setCurrent(catalogData.getChannelList().size());
|
syncStatus.setCurrent(catalogData.getChannelList().size());
|
||||||
syncStatus.setTotal(catalogData.getTotal());
|
syncStatus.setTotal(catalogData.getTotal());
|
||||||
syncStatus.setErrorMsg(catalogData.getErrorMsg());
|
syncStatus.setErrorMsg(catalogData.getErrorMsg());
|
||||||
|
if (catalogData.getStatus().equals(CatalogData.CatalogDataStatus.end)) {
|
||||||
|
syncStatus.setSyncIng(false);
|
||||||
|
}else {
|
||||||
|
syncStatus.setSyncIng(true);
|
||||||
|
}
|
||||||
return syncStatus;
|
return syncStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,9 +39,9 @@ public class MobilePositionSubscribeTask implements ISubscribeTask {
|
|||||||
dynamicTask.stop(taskKey);
|
dynamicTask.stop(taskKey);
|
||||||
}
|
}
|
||||||
sipCommander.mobilePositionSubscribe(device, dialog, eventResult -> {
|
sipCommander.mobilePositionSubscribe(device, dialog, eventResult -> {
|
||||||
// if (eventResult.dialog != null || eventResult.dialog.getState().equals(DialogState.CONFIRMED)) {
|
if (eventResult.dialog != null || eventResult.dialog.getState().equals(DialogState.CONFIRMED)) {
|
||||||
// dialog = eventResult.dialog;
|
dialog = eventResult.dialog;
|
||||||
// }
|
}
|
||||||
ResponseEvent event = (ResponseEvent) eventResult.event;
|
ResponseEvent event = (ResponseEvent) eventResult.event;
|
||||||
if (event.getResponse().getRawContent() != null) {
|
if (event.getResponse().getRawContent() != null) {
|
||||||
// 成功
|
// 成功
|
||||||
|
@ -10,6 +10,9 @@ import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
|
|||||||
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommander;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommander;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.SIPRequestHeaderProvider;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.SIPRequestHeaderProvider;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeFactory;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeForStreamChange;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookType;
|
||||||
import com.genersoft.iot.vmp.utils.DateUtil;
|
import com.genersoft.iot.vmp.utils.DateUtil;
|
||||||
import com.genersoft.iot.vmp.gb28181.utils.NumericUtil;
|
import com.genersoft.iot.vmp.gb28181.utils.NumericUtil;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
|
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
|
||||||
@ -348,25 +351,19 @@ public class SIPCommander implements ISIPCommander {
|
|||||||
@Override
|
@Override
|
||||||
public void playStreamCmd(MediaServerItem mediaServerItem, SSRCInfo ssrcInfo, Device device, String channelId,
|
public void playStreamCmd(MediaServerItem mediaServerItem, SSRCInfo ssrcInfo, Device device, String channelId,
|
||||||
ZLMHttpHookSubscribe.Event event, SipSubscribe.Event okEvent, SipSubscribe.Event errorEvent) {
|
ZLMHttpHookSubscribe.Event event, SipSubscribe.Event okEvent, SipSubscribe.Event errorEvent) {
|
||||||
String streamId = ssrcInfo.getStream();
|
String stream = ssrcInfo.getStream();
|
||||||
try {
|
try {
|
||||||
if (device == null) {
|
if (device == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String streamMode = device.getStreamMode().toUpperCase();
|
String streamMode = device.getStreamMode().toUpperCase();
|
||||||
|
|
||||||
logger.info("{} 分配的ZLM为: {} [{}:{}]", streamId, mediaServerItem.getId(), mediaServerItem.getIp(), ssrcInfo.getPort());
|
logger.info("{} 分配的ZLM为: {} [{}:{}]", stream, mediaServerItem.getId(), mediaServerItem.getIp(), ssrcInfo.getPort());
|
||||||
// 添加订阅
|
HookSubscribeForStreamChange hookSubscribe = HookSubscribeFactory.on_stream_changed("rtp", stream, true, "rtmp", mediaServerItem.getId());
|
||||||
JSONObject subscribeKey = new JSONObject();
|
subscribe.addSubscribe(hookSubscribe, (MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
||||||
subscribeKey.put("app", "rtp");
|
|
||||||
subscribeKey.put("stream", streamId);
|
|
||||||
subscribeKey.put("regist", true);
|
|
||||||
subscribeKey.put("schema", "rtmp");
|
|
||||||
subscribeKey.put("mediaServerId", mediaServerItem.getId());
|
|
||||||
subscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, subscribeKey,
|
|
||||||
(MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
|
||||||
if (event != null) {
|
if (event != null) {
|
||||||
event.response(mediaServerItemInUse, json);
|
event.response(mediaServerItemInUse, json);
|
||||||
|
subscribe.removeSubscribe(hookSubscribe);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
//
|
//
|
||||||
@ -440,7 +437,7 @@ public class SIPCommander implements ISIPCommander {
|
|||||||
errorEvent.response(e);
|
errorEvent.response(e);
|
||||||
}), e ->{
|
}), e ->{
|
||||||
// 这里为例避免一个通道的点播只有一个callID这个参数使用一个固定值
|
// 这里为例避免一个通道的点播只有一个callID这个参数使用一个固定值
|
||||||
streamSession.put(device.getDeviceId(), channelId ,"play", streamId, ssrcInfo.getSsrc(), mediaServerItem.getId(), ((ResponseEvent)e.event).getClientTransaction(), VideoStreamSessionManager.SessionType.play);
|
streamSession.put(device.getDeviceId(), channelId ,"play", stream, ssrcInfo.getSsrc(), mediaServerItem.getId(), ((ResponseEvent)e.event).getClientTransaction(), VideoStreamSessionManager.SessionType.play);
|
||||||
streamSession.put(device.getDeviceId(), channelId ,"play", e.dialog);
|
streamSession.put(device.getDeviceId(), channelId ,"play", e.dialog);
|
||||||
okEvent.response(e);
|
okEvent.response(e);
|
||||||
});
|
});
|
||||||
@ -530,21 +527,14 @@ public class SIPCommander implements ISIPCommander {
|
|||||||
|
|
||||||
CallIdHeader callIdHeader = device.getTransport().equals("TCP") ? tcpSipProvider.getNewCallId()
|
CallIdHeader callIdHeader = device.getTransport().equals("TCP") ? tcpSipProvider.getNewCallId()
|
||||||
: udpSipProvider.getNewCallId();
|
: udpSipProvider.getNewCallId();
|
||||||
|
HookSubscribeForStreamChange hookSubscribe = HookSubscribeFactory.on_stream_changed("rtp", ssrcInfo.getStream(), true, "rtmp", mediaServerItem.getId());
|
||||||
// 添加订阅
|
// 添加订阅
|
||||||
JSONObject subscribeKey = new JSONObject();
|
subscribe.addSubscribe(hookSubscribe, (MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
||||||
subscribeKey.put("app", "rtp");
|
|
||||||
subscribeKey.put("stream", ssrcInfo.getStream());
|
|
||||||
subscribeKey.put("regist", true);
|
|
||||||
subscribeKey.put("schema", "rtmp");
|
|
||||||
subscribeKey.put("mediaServerId", mediaServerItem.getId());
|
|
||||||
logger.debug("录像回放添加订阅,订阅内容:" + subscribeKey);
|
|
||||||
subscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, subscribeKey,
|
|
||||||
(MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
|
||||||
if (hookEvent != null) {
|
if (hookEvent != null) {
|
||||||
InviteStreamInfo inviteStreamInfo = new InviteStreamInfo(mediaServerItemInUse, json, callIdHeader.getCallId(), "rtp", ssrcInfo.getStream());
|
InviteStreamInfo inviteStreamInfo = new InviteStreamInfo(mediaServerItemInUse, json, callIdHeader.getCallId(), "rtp", ssrcInfo.getStream());
|
||||||
hookEvent.call(inviteStreamInfo);
|
hookEvent.call(inviteStreamInfo);
|
||||||
}
|
}
|
||||||
|
subscribe.removeSubscribe(hookSubscribe);
|
||||||
});
|
});
|
||||||
Request request = headerProvider.createPlaybackInviteRequest(device, channelId, content.toString(), null, "fromplybck" + tm, null, callIdHeader, ssrcInfo.getSsrc());
|
Request request = headerProvider.createPlaybackInviteRequest(device, channelId, content.toString(), null, "fromplybck" + tm, null, callIdHeader, ssrcInfo.getSsrc());
|
||||||
|
|
||||||
@ -643,21 +633,15 @@ public class SIPCommander implements ISIPCommander {
|
|||||||
CallIdHeader callIdHeader = device.getTransport().equals("TCP") ? tcpSipProvider.getNewCallId()
|
CallIdHeader callIdHeader = device.getTransport().equals("TCP") ? tcpSipProvider.getNewCallId()
|
||||||
: udpSipProvider.getNewCallId();
|
: udpSipProvider.getNewCallId();
|
||||||
|
|
||||||
|
HookSubscribeForStreamChange hookSubscribe = HookSubscribeFactory.on_stream_changed("rtp", ssrcInfo.getStream(), true, null, mediaServerItem.getId());
|
||||||
// 添加订阅
|
// 添加订阅
|
||||||
JSONObject subscribeKey = new JSONObject();
|
subscribe.addSubscribe(hookSubscribe, (MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
||||||
subscribeKey.put("app", "rtp");
|
|
||||||
subscribeKey.put("stream", ssrcInfo.getStream());
|
|
||||||
subscribeKey.put("regist", true);
|
|
||||||
subscribeKey.put("mediaServerId", mediaServerItem.getId());
|
|
||||||
logger.debug("录像回放添加订阅,订阅内容:" + subscribeKey.toString());
|
|
||||||
subscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, subscribeKey,
|
|
||||||
(MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
|
||||||
hookEvent.call(new InviteStreamInfo(mediaServerItem, json, callIdHeader.getCallId(), "rtp", ssrcInfo.getStream()));
|
hookEvent.call(new InviteStreamInfo(mediaServerItem, json, callIdHeader.getCallId(), "rtp", ssrcInfo.getStream()));
|
||||||
subscribe.removeSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, subscribeKey);
|
subscribe.removeSubscribe(hookSubscribe);
|
||||||
subscribeKey.put("regist", false);
|
hookSubscribe.getContent().put("regist", false);
|
||||||
subscribeKey.put("schema", "rtmp");
|
hookSubscribe.getContent().put("schema", "rtmp");
|
||||||
// 添加流注销的订阅,注销了后向设备发送bye
|
// 添加流注销的订阅,注销了后向设备发送bye
|
||||||
subscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, subscribeKey,
|
subscribe.addSubscribe(hookSubscribe,
|
||||||
(MediaServerItem mediaServerItemForEnd, JSONObject jsonForEnd)->{
|
(MediaServerItem mediaServerItemForEnd, JSONObject jsonForEnd)->{
|
||||||
ClientTransaction transaction = streamSession.getTransaction(device.getDeviceId(), channelId, ssrcInfo.getStream(), callIdHeader.getCallId());
|
ClientTransaction transaction = streamSession.getTransaction(device.getDeviceId(), channelId, ssrcInfo.getStream(), callIdHeader.getCallId());
|
||||||
if (transaction != null) {
|
if (transaction != null) {
|
||||||
|
@ -126,7 +126,7 @@ public class ByeRequestProcessor extends SIPRequestProcessorParent implements In
|
|||||||
SsrcTransaction ssrcTransactionForPlay = streamSession.getSsrcTransaction(device.getDeviceId(), channelId, "play", null);
|
SsrcTransaction ssrcTransactionForPlay = streamSession.getSsrcTransaction(device.getDeviceId(), channelId, "play", null);
|
||||||
if (ssrcTransactionForPlay != null){
|
if (ssrcTransactionForPlay != null){
|
||||||
SIPDialog dialogForPlay = (SIPDialog) SerializeUtils.deSerialize(ssrcTransactionForPlay.getDialog());
|
SIPDialog dialogForPlay = (SIPDialog) SerializeUtils.deSerialize(ssrcTransactionForPlay.getDialog());
|
||||||
if (dialogForPlay.getCallId().equals(callIdHeader.getCallId())){
|
if (dialogForPlay.getCallId().getCallId().equals(callIdHeader.getCallId())){
|
||||||
// 释放ssrc
|
// 释放ssrc
|
||||||
MediaServerItem mediaServerItem = mediaServerService.getOne(ssrcTransactionForPlay.getMediaServerId());
|
MediaServerItem mediaServerItem = mediaServerService.getOne(ssrcTransactionForPlay.getMediaServerId());
|
||||||
if (mediaServerItem != null) {
|
if (mediaServerItem != null) {
|
||||||
|
@ -419,18 +419,16 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (gbStream != null) {
|
} else if (gbStream != null) {
|
||||||
if (streamPushItem.isStatus()) {
|
if (streamPushItem != null && streamPushItem.isPushIng()) {
|
||||||
// 在线状态
|
// 推流状态
|
||||||
pushStream(evt, gbStream, streamPushItem, platform, callIdHeader, mediaServerItem, port, tcpActive,
|
pushStream(evt, gbStream, streamPushItem, platform, callIdHeader, mediaServerItem, port, tcpActive,
|
||||||
mediaTransmissionTCP, channelId, addressStr, ssrc, requesterId);
|
mediaTransmissionTCP, channelId, addressStr, ssrc, requesterId);
|
||||||
} else {
|
} else {
|
||||||
// 不在线 拉起
|
// 未推流 拉起
|
||||||
notifyStreamOnline(evt, gbStream, streamPushItem, platform, callIdHeader, mediaServerItem, port, tcpActive,
|
notifyStreamOnline(evt, gbStream, streamPushItem, platform, callIdHeader, mediaServerItem, port, tcpActive,
|
||||||
mediaTransmissionTCP, channelId, addressStr, ssrc, requesterId);
|
mediaTransmissionTCP, channelId, addressStr, ssrc, requesterId);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (SipException | InvalidArgumentException | ParseException e) {
|
} catch (SipException | InvalidArgumentException | ParseException e) {
|
||||||
@ -453,7 +451,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
int port, Boolean tcpActive, boolean mediaTransmissionTCP,
|
int port, Boolean tcpActive, boolean mediaTransmissionTCP,
|
||||||
String channelId, String addressStr, String ssrc, String requesterId) throws InvalidArgumentException, ParseException, SipException {
|
String channelId, String addressStr, String ssrc, String requesterId) throws InvalidArgumentException, ParseException, SipException {
|
||||||
// 推流
|
// 推流
|
||||||
if (streamPushItem.getServerId().equals(userSetting.getServerId())) {
|
if (streamPushItem.isSelf()) {
|
||||||
Boolean streamReady = zlmrtpServerFactory.isStreamReady(mediaServerItem, gbStream.getApp(), gbStream.getStream());
|
Boolean streamReady = zlmrtpServerFactory.isStreamReady(mediaServerItem, gbStream.getApp(), gbStream.getStream());
|
||||||
if (streamReady) {
|
if (streamReady) {
|
||||||
// 自平台内容
|
// 自平台内容
|
||||||
@ -502,7 +500,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
String channelId, String addressStr, String ssrc, String requesterId) throws InvalidArgumentException, ParseException, SipException {
|
String channelId, String addressStr, String ssrc, String requesterId) throws InvalidArgumentException, ParseException, SipException {
|
||||||
if ("proxy".equals(gbStream.getStreamType())) {
|
if ("proxy".equals(gbStream.getStreamType())) {
|
||||||
// TODO 控制启用以使设备上线
|
// TODO 控制启用以使设备上线
|
||||||
logger.info("[ app={}, stream={} ]通道离线,启用流后开始推流", gbStream.getApp(), gbStream.getStream());
|
logger.info("[ app={}, stream={} ]通道未推流,启用流后开始推流", gbStream.getApp(), gbStream.getStream());
|
||||||
responseAck(evt, Response.BAD_REQUEST, "channel [" + gbStream.getGbId() + "] offline");
|
responseAck(evt, Response.BAD_REQUEST, "channel [" + gbStream.getGbId() + "] offline");
|
||||||
} else if ("push".equals(gbStream.getStreamType())) {
|
} else if ("push".equals(gbStream.getStreamType())) {
|
||||||
if (!platform.isStartOfflinePush()) {
|
if (!platform.isStartOfflinePush()) {
|
||||||
@ -510,7 +508,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// 发送redis消息以使设备上线
|
// 发送redis消息以使设备上线
|
||||||
logger.info("[ app={}, stream={} ]通道离线,发送redis信息控制设备开始推流", gbStream.getApp(), gbStream.getStream());
|
logger.info("[ app={}, stream={} ]通道未推流,发送redis信息控制设备开始推流", gbStream.getApp(), gbStream.getStream());
|
||||||
|
|
||||||
MessageForPushChannel messageForPushChannel = MessageForPushChannel.getInstance(1,
|
MessageForPushChannel messageForPushChannel = MessageForPushChannel.getInstance(1,
|
||||||
gbStream.getApp(), gbStream.getStream(), gbStream.getGbId(), gbStream.getPlatformId(),
|
gbStream.getApp(), gbStream.getStream(), gbStream.getGbId(), gbStream.getPlatformId(),
|
||||||
@ -520,7 +518,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
dynamicTask.startDelay(callIdHeader.getCallId(), () -> {
|
dynamicTask.startDelay(callIdHeader.getCallId(), () -> {
|
||||||
logger.info("[ app={}, stream={} ] 等待设备开始推流超时", gbStream.getApp(), gbStream.getStream());
|
logger.info("[ app={}, stream={} ] 等待设备开始推流超时", gbStream.getApp(), gbStream.getStream());
|
||||||
try {
|
try {
|
||||||
mediaListManager.removedChannelOnlineEventLister(gbStream.getGbId());
|
mediaListManager.removedChannelOnlineEventLister(gbStream.getApp(), gbStream.getStream());
|
||||||
responseAck(evt, Response.REQUEST_TIMEOUT); // 超时
|
responseAck(evt, Response.REQUEST_TIMEOUT); // 超时
|
||||||
} catch (SipException e) {
|
} catch (SipException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
@ -535,7 +533,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
Boolean finalTcpActive = tcpActive;
|
Boolean finalTcpActive = tcpActive;
|
||||||
|
|
||||||
// 添加在本机上线的通知
|
// 添加在本机上线的通知
|
||||||
mediaListManager.addChannelOnlineEventLister(gbStream.getGbId(), (app, stream, serverId) -> {
|
mediaListManager.addChannelOnlineEventLister(gbStream.getApp(), gbStream.getStream(), (app, stream, serverId) -> {
|
||||||
dynamicTask.stop(callIdHeader.getCallId());
|
dynamicTask.stop(callIdHeader.getCallId());
|
||||||
if (serverId.equals(userSetting.getServerId())) {
|
if (serverId.equals(userSetting.getServerId())) {
|
||||||
SendRtpItem sendRtpItem = zlmrtpServerFactory.createSendRtpItem(mediaServerItem, addressStr, finalPort, ssrc, requesterId,
|
SendRtpItem sendRtpItem = zlmrtpServerFactory.createSendRtpItem(mediaServerItem, addressStr, finalPort, ssrc, requesterId,
|
||||||
@ -623,7 +621,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
// 离线
|
// 离线
|
||||||
// 查询是否在本机上线了
|
// 查询是否在本机上线了
|
||||||
StreamPushItem currentStreamPushItem = streamPushService.getPush(streamPushItem.getApp(), streamPushItem.getStream());
|
StreamPushItem currentStreamPushItem = streamPushService.getPush(streamPushItem.getApp(), streamPushItem.getStream());
|
||||||
if (currentStreamPushItem.isStatus()) {
|
if (currentStreamPushItem.isPushIng()) {
|
||||||
// 在线状态
|
// 在线状态
|
||||||
pushStream(evt, gbStream, streamPushItem, platform, callIdHeader, mediaServerItem, port, tcpActive,
|
pushStream(evt, gbStream, streamPushItem, platform, callIdHeader, mediaServerItem, port, tcpActive,
|
||||||
mediaTransmissionTCP, channelId, addressStr, ssrc, requesterId);
|
mediaTransmissionTCP, channelId, addressStr, ssrc, requesterId);
|
||||||
|
@ -92,39 +92,36 @@ public class NotifyRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
@Override
|
@Override
|
||||||
public void process(RequestEvent evt) {
|
public void process(RequestEvent evt) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
taskQueue.offer(new HandlerCatchData(evt, null, null));
|
taskQueue.offer(new HandlerCatchData(evt, null, null));
|
||||||
responseAck(evt, Response.OK);
|
responseAck(evt, Response.OK);
|
||||||
if (!taskQueueHandlerRun) {
|
if (!taskQueueHandlerRun) {
|
||||||
taskQueueHandlerRun = true;
|
taskQueueHandlerRun = true;
|
||||||
taskExecutor.execute(()-> {
|
taskExecutor.execute(()-> {
|
||||||
while (!taskQueue.isEmpty()) {
|
while (!taskQueue.isEmpty()) {
|
||||||
try {
|
try {
|
||||||
HandlerCatchData take = taskQueue.poll();
|
HandlerCatchData take = taskQueue.poll();
|
||||||
Element rootElement = getRootElement(take.getEvt());
|
Element rootElement = getRootElement(take.getEvt());
|
||||||
String cmd = XmlUtil.getText(rootElement, "CmdType");
|
String cmd = XmlUtil.getText(rootElement, "CmdType");
|
||||||
|
|
||||||
if (CmdType.CATALOG.equals(cmd)) {
|
if (CmdType.CATALOG.equals(cmd)) {
|
||||||
logger.info("接收到Catalog通知");
|
logger.info("接收到Catalog通知");
|
||||||
processNotifyCatalogList(take.getEvt());
|
processNotifyCatalogList(take.getEvt());
|
||||||
} else if (CmdType.ALARM.equals(cmd)) {
|
} else if (CmdType.ALARM.equals(cmd)) {
|
||||||
logger.info("接收到Alarm通知");
|
logger.info("接收到Alarm通知");
|
||||||
processNotifyAlarm(take.getEvt());
|
processNotifyAlarm(take.getEvt());
|
||||||
} else if (CmdType.MOBILE_POSITION.equals(cmd)) {
|
} else if (CmdType.MOBILE_POSITION.equals(cmd)) {
|
||||||
logger.info("接收到MobilePosition通知");
|
logger.info("接收到MobilePosition通知");
|
||||||
processNotifyMobilePosition(take.getEvt());
|
processNotifyMobilePosition(take.getEvt());
|
||||||
} else {
|
} else {
|
||||||
logger.info("接收到消息:" + cmd);
|
logger.info("接收到消息:" + cmd);
|
||||||
}
|
|
||||||
} catch (DocumentException e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
taskQueueHandlerRun = false;
|
} catch (DocumentException e) {
|
||||||
});
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
taskQueueHandlerRun = false;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
} catch (SipException | InvalidArgumentException | ParseException e) {
|
} catch (SipException | InvalidArgumentException | ParseException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
@ -174,7 +171,7 @@ public class NotifyRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
} else {
|
} else {
|
||||||
mobilePosition.setAltitude(0.0);
|
mobilePosition.setAltitude(0.0);
|
||||||
}
|
}
|
||||||
logger.info("[收到 移动位置订阅]:{}/{}->{}.{}", mobilePosition.getDeviceId(), mobilePosition.getChannelId(),
|
logger.info("[收到移动位置订阅通知]:{}/{}->{}.{}", mobilePosition.getDeviceId(), mobilePosition.getChannelId(),
|
||||||
mobilePosition.getLongitude(), mobilePosition.getLatitude());
|
mobilePosition.getLongitude(), mobilePosition.getLatitude());
|
||||||
mobilePosition.setReportSource("Mobile Position");
|
mobilePosition.setReportSource("Mobile Position");
|
||||||
|
|
||||||
@ -318,7 +315,7 @@ public class NotifyRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
|
|
||||||
Device device = redisCatchStorage.getDevice(deviceId);
|
Device device = redisCatchStorage.getDevice(deviceId);
|
||||||
if (device == null || device.getOnline() == 0) {
|
if (device == null || device.getOnline() == 0) {
|
||||||
logger.warn("[收到 目录订阅]:{}, 但是设备已经离线", (device != null ? device.getDeviceId():"" ));
|
logger.warn("[收到目录订阅]:{}, 但是设备已经离线", (device != null ? device.getDeviceId():"" ));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Element rootElement = getRootElement(evt, device.getCharset());
|
Element rootElement = getRootElement(evt, device.getCharset());
|
||||||
@ -339,28 +336,28 @@ public class NotifyRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
Element eventElement = itemDevice.element("Event");
|
Element eventElement = itemDevice.element("Event");
|
||||||
String event;
|
String event;
|
||||||
if (eventElement == null) {
|
if (eventElement == null) {
|
||||||
logger.warn("[收到 目录订阅]:{}, 但是Event为空, 设为默认值 ADD", (device != null ? device.getDeviceId():"" ));
|
logger.warn("[收到目录订阅]:{}, 但是Event为空, 设为默认值 ADD", (device != null ? device.getDeviceId():"" ));
|
||||||
event = CatalogEvent.ADD;
|
event = CatalogEvent.ADD;
|
||||||
}else {
|
}else {
|
||||||
event = eventElement.getText().toUpperCase();
|
event = eventElement.getText().toUpperCase();
|
||||||
}
|
}
|
||||||
DeviceChannel channel = XmlUtil.channelContentHander(itemDevice, device, event);
|
DeviceChannel channel = XmlUtil.channelContentHander(itemDevice, device, event);
|
||||||
channel.setDeviceId(device.getDeviceId());
|
channel.setDeviceId(device.getDeviceId());
|
||||||
logger.info("[收到 目录订阅]:{}/{}", device.getDeviceId(), channel.getChannelId());
|
logger.info("[收到目录订阅]:{}/{}", device.getDeviceId(), channel.getChannelId());
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case CatalogEvent.ON:
|
case CatalogEvent.ON:
|
||||||
// 上线
|
// 上线
|
||||||
logger.info("收到来自设备【{}】的通道【{}】上线通知", device.getDeviceId(), channel.getChannelId());
|
logger.info("[收到通道上线通知] 来自设备: {}, 通道 {}", device.getDeviceId(), channel.getChannelId());
|
||||||
storager.deviceChannelOnline(deviceId, channel.getChannelId());
|
storager.deviceChannelOnline(deviceId, channel.getChannelId());
|
||||||
break;
|
break;
|
||||||
case CatalogEvent.OFF :
|
case CatalogEvent.OFF :
|
||||||
// 离线
|
// 离线
|
||||||
logger.info("收到来自设备【{}】的通道【{}】离线通知", device.getDeviceId(), channel.getChannelId());
|
logger.info("[收到通道离线通知] 来自设备: {}, 通道 {}", device.getDeviceId(), channel.getChannelId());
|
||||||
storager.deviceChannelOffline(deviceId, channel.getChannelId());
|
storager.deviceChannelOffline(deviceId, channel.getChannelId());
|
||||||
break;
|
break;
|
||||||
case CatalogEvent.VLOST:
|
case CatalogEvent.VLOST:
|
||||||
// 视频丢失
|
// 视频丢失
|
||||||
logger.info("收到来自设备【{}】的通道【{}】视频丢失通知", device.getDeviceId(), channel.getChannelId());
|
logger.info("[收到通道视频丢失通知] 来自设备: {}, 通道 {}", device.getDeviceId(), channel.getChannelId());
|
||||||
storager.deviceChannelOffline(deviceId, channel.getChannelId());
|
storager.deviceChannelOffline(deviceId, channel.getChannelId());
|
||||||
break;
|
break;
|
||||||
case CatalogEvent.DEFECT:
|
case CatalogEvent.DEFECT:
|
||||||
@ -368,17 +365,17 @@ public class NotifyRequestProcessor extends SIPRequestProcessorParent implements
|
|||||||
break;
|
break;
|
||||||
case CatalogEvent.ADD:
|
case CatalogEvent.ADD:
|
||||||
// 增加
|
// 增加
|
||||||
logger.info("收到来自设备【{}】的增加通道【{}】通知", device.getDeviceId(), channel.getChannelId());
|
logger.info("[收到增加通道通知] 来自设备: {}, 通道 {}", device.getDeviceId(), channel.getChannelId());
|
||||||
deviceChannelService.updateChannel(deviceId, channel);
|
deviceChannelService.updateChannel(deviceId, channel);
|
||||||
break;
|
break;
|
||||||
case CatalogEvent.DEL:
|
case CatalogEvent.DEL:
|
||||||
// 删除
|
// 删除
|
||||||
logger.info("收到来自设备【{}】的删除通道【{}】通知", device.getDeviceId(), channel.getChannelId());
|
logger.info("[收到删除通道通知] 来自设备: {}, 通道 {}", device.getDeviceId(), channel.getChannelId());
|
||||||
storager.delChannel(deviceId, channel.getChannelId());
|
storager.delChannel(deviceId, channel.getChannelId());
|
||||||
break;
|
break;
|
||||||
case CatalogEvent.UPDATE:
|
case CatalogEvent.UPDATE:
|
||||||
// 更新
|
// 更新
|
||||||
logger.info("收到来自设备【{}】的更新通道【{}】通知", device.getDeviceId(), channel.getChannelId());
|
logger.info("[收到更新通道通知] 来自设备: {}, 通道 {}", device.getDeviceId(), channel.getChannelId());
|
||||||
deviceChannelService.updateChannel(deviceId, channel);
|
deviceChannelService.updateChannel(deviceId, channel);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@ -143,6 +143,7 @@ public class RegisterRequestProcessor extends SIPRequestProcessorParent implemen
|
|||||||
device.setGeoCoordSys("WGS84");
|
device.setGeoCoordSys("WGS84");
|
||||||
device.setTreeType("CivilCode");
|
device.setTreeType("CivilCode");
|
||||||
device.setDeviceId(deviceId);
|
device.setDeviceId(deviceId);
|
||||||
|
device.setOnline(0);
|
||||||
}
|
}
|
||||||
device.setIp(received);
|
device.setIp(received);
|
||||||
device.setPort(rPort);
|
device.setPort(rPort);
|
||||||
|
@ -69,7 +69,7 @@ public class AlarmNotifyMessageHandler extends SIPRequestProcessorParent impleme
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void handForDevice(RequestEvent evt, Device device, Element rootElement) {
|
public void handForDevice(RequestEvent evt, Device device, Element rootElement) {
|
||||||
logger.info("收到来自设备[{}]的报警通知", device.getDeviceId());
|
logger.info("[收到报警通知]设备:{}", device.getDeviceId());
|
||||||
// 回复200 OK
|
// 回复200 OK
|
||||||
try {
|
try {
|
||||||
responseAck(evt, Response.OK);
|
responseAck(evt, Response.OK);
|
||||||
|
@ -44,7 +44,7 @@ public class DeviceInfoQueryMessageHandler extends SIPRequestProcessorParent imp
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void handForPlatform(RequestEvent evt, ParentPlatform parentPlatform, Element rootElement) {
|
public void handForPlatform(RequestEvent evt, ParentPlatform parentPlatform, Element rootElement) {
|
||||||
logger.info("接收到DeviceInfo查询消息");
|
logger.info("[DeviceInfo查询]消息");
|
||||||
FromHeader fromHeader = (FromHeader) evt.getRequest().getHeader(FromHeader.NAME);
|
FromHeader fromHeader = (FromHeader) evt.getRequest().getHeader(FromHeader.NAME);
|
||||||
try {
|
try {
|
||||||
// 回复200 OK
|
// 回复200 OK
|
||||||
|
@ -111,6 +111,7 @@ public class CatalogResponseMessageHandler extends SIPRequestProcessorParent imp
|
|||||||
int sumNum = Integer.parseInt(sumNumElement.getText());
|
int sumNum = Integer.parseInt(sumNumElement.getText());
|
||||||
|
|
||||||
if (sumNum == 0) {
|
if (sumNum == 0) {
|
||||||
|
logger.info("[收到通道]设备:{}的: 0个", take.getDevice().getDeviceId());
|
||||||
// 数据已经完整接收
|
// 数据已经完整接收
|
||||||
storager.cleanChannelsForDevice(take.getDevice().getDeviceId());
|
storager.cleanChannelsForDevice(take.getDevice().getDeviceId());
|
||||||
catalogDataCatch.setChannelSyncEnd(take.getDevice().getDeviceId(), null);
|
catalogDataCatch.setChannelSyncEnd(take.getDevice().getDeviceId(), null);
|
||||||
@ -132,7 +133,7 @@ public class CatalogResponseMessageHandler extends SIPRequestProcessorParent imp
|
|||||||
}
|
}
|
||||||
int sn = Integer.parseInt(snElement.getText());
|
int sn = Integer.parseInt(snElement.getText());
|
||||||
catalogDataCatch.put(take.getDevice().getDeviceId(), sn, sumNum, take.getDevice(), channelList);
|
catalogDataCatch.put(take.getDevice().getDeviceId(), sn, sumNum, take.getDevice(), channelList);
|
||||||
logger.info("收到来自设备【{}】的通道: {}个,{}/{}", take.getDevice().getDeviceId(), channelList.size(), catalogDataCatch.get(take.getDevice().getDeviceId()) == null ? 0 :catalogDataCatch.get(take.getDevice().getDeviceId()).size(), sumNum);
|
logger.info("[收到通道]设备: {} -> {}个,{}/{}", take.getDevice().getDeviceId(), channelList.size(), catalogDataCatch.get(take.getDevice().getDeviceId()) == null ? 0 :catalogDataCatch.get(take.getDevice().getDeviceId()).size(), sumNum);
|
||||||
if (catalogDataCatch.get(take.getDevice().getDeviceId()).size() == sumNum) {
|
if (catalogDataCatch.get(take.getDevice().getDeviceId()).size() == sumNum) {
|
||||||
// 数据已经完整接收
|
// 数据已经完整接收
|
||||||
boolean resetChannelsResult = storager.resetChannels(take.getDevice().getDeviceId(), catalogDataCatch.get(take.getDevice().getDeviceId()));
|
boolean resetChannelsResult = storager.resetChannels(take.getDevice().getDeviceId(), catalogDataCatch.get(take.getDevice().getDeviceId()));
|
||||||
|
@ -26,7 +26,7 @@ import javax.sip.message.Response;
|
|||||||
@Component
|
@Component
|
||||||
public class RegisterResponseProcessor extends SIPResponseProcessorAbstract {
|
public class RegisterResponseProcessor extends SIPResponseProcessorAbstract {
|
||||||
|
|
||||||
private Logger logger = LoggerFactory.getLogger(RegisterResponseProcessor.class);
|
private final Logger logger = LoggerFactory.getLogger(RegisterResponseProcessor.class);
|
||||||
private final String method = "REGISTER";
|
private final String method = "REGISTER";
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
@ -69,11 +69,11 @@ public class RegisterResponseProcessor extends SIPResponseProcessorAbstract {
|
|||||||
|
|
||||||
ParentPlatformCatch parentPlatformCatch = redisCatchStorage.queryPlatformCatchInfo(platformGBId);
|
ParentPlatformCatch parentPlatformCatch = redisCatchStorage.queryPlatformCatchInfo(platformGBId);
|
||||||
if (parentPlatformCatch == null) {
|
if (parentPlatformCatch == null) {
|
||||||
logger.warn(String.format("收到 %s 的注册/注销%S请求, 但是平台缓存信息未查询到!!!", platformGBId, response.getStatusCode()));
|
logger.warn(String.format("[收到注册/注销%S请求]平台:%s,但是平台缓存信息未查询到!!!", response.getStatusCode(),platformGBId));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String action = parentPlatformCatch.getParentPlatform().getExpires().equals("0") ? "注销" : "注册";
|
String action = parentPlatformCatch.getParentPlatform().getExpires().equals("0") ? "注销" : "注册";
|
||||||
logger.info(String.format("收到 %s %s的%S响应", platformGBId, action, response.getStatusCode() ));
|
logger.info(String.format("[%s %S响应]%s ", action, response.getStatusCode(), platformGBId ));
|
||||||
ParentPlatform parentPlatform = parentPlatformCatch.getParentPlatform();
|
ParentPlatform parentPlatform = parentPlatformCatch.getParentPlatform();
|
||||||
if (parentPlatform == null) {
|
if (parentPlatform == null) {
|
||||||
logger.warn(String.format("收到 %s %s的%S请求, 但是平台信息未查询到!!!", platformGBId, action, response.getStatusCode()));
|
logger.warn(String.format("收到 %s %s的%S请求, 但是平台信息未查询到!!!", platformGBId, action, response.getStatusCode()));
|
||||||
|
@ -102,12 +102,13 @@ public class ZLMHttpHookListener {
|
|||||||
logger.debug("[ ZLM HOOK ] on_server_keepalive API调用,参数:" + json.toString());
|
logger.debug("[ ZLM HOOK ] on_server_keepalive API调用,参数:" + json.toString());
|
||||||
}
|
}
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
String mediaServerId = json.getString("mediaServerId");
|
||||||
List<ZLMHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(ZLMHttpHookSubscribe.HookType.on_server_keepalive);
|
List<ZLMHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(HookType.on_server_keepalive);
|
||||||
if (subscribes != null && subscribes.size() > 0) {
|
if (subscribes != null && subscribes.size() > 0) {
|
||||||
for (ZLMHttpHookSubscribe.Event subscribe : subscribes) {
|
for (ZLMHttpHookSubscribe.Event subscribe : subscribes) {
|
||||||
subscribe.response(null, json);
|
subscribe.response(null, json);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
mediaServerService.updateMediaServerKeepalive(mediaServerId, json.getJSONObject("data"));
|
||||||
|
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
@ -167,7 +168,7 @@ public class ZLMHttpHookListener {
|
|||||||
logger.debug("[ ZLM HOOK ]on_play API调用,参数:" + JSON.toJSONString(param));
|
logger.debug("[ ZLM HOOK ]on_play API调用,参数:" + JSON.toJSONString(param));
|
||||||
}
|
}
|
||||||
String mediaServerId = param.getMediaServerId();
|
String mediaServerId = param.getMediaServerId();
|
||||||
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.getSubscribe(ZLMHttpHookSubscribe.HookType.on_play, json);
|
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_play, json);
|
||||||
if (subscribe != null ) {
|
if (subscribe != null ) {
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
||||||
if (mediaInfo != null) {
|
if (mediaInfo != null) {
|
||||||
@ -240,6 +241,8 @@ public class ZLMHttpHookListener {
|
|||||||
if (mediaInfo != null) {
|
if (mediaInfo != null) {
|
||||||
assistRESTfulUtils.addStreamCallInfo(mediaInfo, param.getApp(), param.getStream(), callId, null);
|
assistRESTfulUtils.addStreamCallInfo(mediaInfo, param.getApp(), param.getStream(), callId, null);
|
||||||
}
|
}
|
||||||
|
}else {
|
||||||
|
zlmMediaListManager.sendStreamEvent(param.getApp(),param.getStream(), param.getMediaServerId());
|
||||||
}
|
}
|
||||||
|
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
@ -250,7 +253,7 @@ public class ZLMHttpHookListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.getSubscribe(ZLMHttpHookSubscribe.HookType.on_publish, json);
|
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_publish, json);
|
||||||
if (subscribe != null) {
|
if (subscribe != null) {
|
||||||
if (mediaInfo != null) {
|
if (mediaInfo != null) {
|
||||||
subscribe.response(mediaInfo, json);
|
subscribe.response(mediaInfo, json);
|
||||||
@ -374,7 +377,7 @@ public class ZLMHttpHookListener {
|
|||||||
logger.debug("[ ZLM HOOK ]on_shell_login API调用,参数:" + json.toString());
|
logger.debug("[ ZLM HOOK ]on_shell_login API调用,参数:" + json.toString());
|
||||||
}
|
}
|
||||||
String mediaServerId = json.getString("mediaServerId");
|
String mediaServerId = json.getString("mediaServerId");
|
||||||
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.getSubscribe(ZLMHttpHookSubscribe.HookType.on_shell_login, json);
|
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_shell_login, json);
|
||||||
if (subscribe != null ) {
|
if (subscribe != null ) {
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
||||||
if (mediaInfo != null) {
|
if (mediaInfo != null) {
|
||||||
@ -400,7 +403,7 @@ public class ZLMHttpHookListener {
|
|||||||
logger.info("[ ZLM HOOK ]on_stream_changed API调用,参数:" + JSONObject.toJSONString(item));
|
logger.info("[ ZLM HOOK ]on_stream_changed API调用,参数:" + JSONObject.toJSONString(item));
|
||||||
String mediaServerId = item.getMediaServerId();
|
String mediaServerId = item.getMediaServerId();
|
||||||
JSONObject json = (JSONObject) JSON.toJSON(item);
|
JSONObject json = (JSONObject) JSON.toJSON(item);
|
||||||
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.getSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, json);
|
ZLMHttpHookSubscribe.Event subscribe = this.subscribe.sendNotify(HookType.on_stream_changed, json);
|
||||||
if (subscribe != null ) {
|
if (subscribe != null ) {
|
||||||
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
MediaServerItem mediaInfo = mediaServerService.getOne(mediaServerId);
|
||||||
if (mediaInfo != null) {
|
if (mediaInfo != null) {
|
||||||
@ -461,7 +464,6 @@ public class ZLMHttpHookListener {
|
|||||||
StreamInfo streamInfoByAppAndStream = mediaService.getStreamInfoByAppAndStream(mediaServerItem,
|
StreamInfo streamInfoByAppAndStream = mediaService.getStreamInfoByAppAndStream(mediaServerItem,
|
||||||
app, stream, tracks, streamAuthorityInfo.getCallId());
|
app, stream, tracks, streamAuthorityInfo.getCallId());
|
||||||
item.setStreamInfo(streamInfoByAppAndStream);
|
item.setStreamInfo(streamInfoByAppAndStream);
|
||||||
item.setSeverId(userSetting.getServerId());
|
|
||||||
redisCatchStorage.addStream(mediaServerItem, type, app, stream, item);
|
redisCatchStorage.addStream(mediaServerItem, type, app, stream, item);
|
||||||
if (item.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
if (item.getOriginType() == OriginType.RTSP_PUSH.ordinal()
|
||||||
|| item.getOriginType() == OriginType.RTMP_PUSH.ordinal()
|
|| item.getOriginType() == OriginType.RTMP_PUSH.ordinal()
|
||||||
@ -469,20 +471,6 @@ public class ZLMHttpHookListener {
|
|||||||
item.setSeverId(userSetting.getServerId());
|
item.setSeverId(userSetting.getServerId());
|
||||||
zlmMediaListManager.addPush(item);
|
zlmMediaListManager.addPush(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
// List<GbStream> gbStreams = new ArrayList<>();
|
|
||||||
// if (streamPushItem == null || streamPushItem.getGbId() == null) {
|
|
||||||
// GbStream gbStream = storager.getGbStream(app, streamId);
|
|
||||||
// gbStreams.add(gbStream);
|
|
||||||
// }else {
|
|
||||||
// if (streamPushItem.getGbId() != null) {
|
|
||||||
// gbStreams.add(streamPushItem);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// if (gbStreams.size() > 0) {
|
|
||||||
// eventPublisher.catalogEventPublishForStream(null, gbStreams, CatalogEvent.ON);
|
|
||||||
// }
|
|
||||||
|
|
||||||
}else {
|
}else {
|
||||||
// 兼容流注销时类型从redis记录获取
|
// 兼容流注销时类型从redis记录获取
|
||||||
MediaItem mediaItem = redisCatchStorage.getStreamInfo(app, stream, mediaServerId);
|
MediaItem mediaItem = redisCatchStorage.getStreamInfo(app, stream, mediaServerId);
|
||||||
@ -626,16 +614,21 @@ public class ZLMHttpHookListener {
|
|||||||
}
|
}
|
||||||
String remoteAddr = request.getRemoteAddr();
|
String remoteAddr = request.getRemoteAddr();
|
||||||
jsonObject.put("ip", remoteAddr);
|
jsonObject.put("ip", remoteAddr);
|
||||||
List<ZLMHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(ZLMHttpHookSubscribe.HookType.on_server_started);
|
List<ZLMHttpHookSubscribe.Event> subscribes = this.subscribe.getSubscribes(HookType.on_server_started);
|
||||||
if (subscribes != null && subscribes.size() > 0) {
|
if (subscribes != null && subscribes.size() > 0) {
|
||||||
for (ZLMHttpHookSubscribe.Event subscribe : subscribes) {
|
for (ZLMHttpHookSubscribe.Event subscribe : subscribes) {
|
||||||
subscribe.response(null, jsonObject);
|
subscribe.response(null, jsonObject);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ZLMServerConfig zlmServerConfig = JSONObject.toJavaObject(jsonObject, ZLMServerConfig.class);
|
||||||
|
if (zlmServerConfig !=null ) {
|
||||||
|
mediaServerService.zlmServerOnline(zlmServerConfig);
|
||||||
|
}
|
||||||
JSONObject ret = new JSONObject();
|
JSONObject ret = new JSONObject();
|
||||||
ret.put("code", 0);
|
ret.put("code", 0);
|
||||||
ret.put("msg", "success");
|
ret.put("msg", "success");
|
||||||
return new ResponseEntity<String>(ret.toString(),HttpStatus.OK);
|
return new ResponseEntity<>(ret.toString(),HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
private Map<String, String> urlParamToMap(String params) {
|
private Map<String, String> urlParamToMap(String params) {
|
||||||
|
@ -1,12 +1,16 @@
|
|||||||
package com.genersoft.iot.vmp.media.zlm;
|
package com.genersoft.iot.vmp.media.zlm;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookType;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.IHookSubscribe;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
import org.springframework.util.CollectionUtils;
|
import org.springframework.util.CollectionUtils;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description:针对 ZLMediaServer的hook事件订阅
|
* @description:针对 ZLMediaServer的hook事件订阅
|
||||||
@ -16,51 +20,39 @@ import java.util.concurrent.ConcurrentHashMap;
|
|||||||
@Component
|
@Component
|
||||||
public class ZLMHttpHookSubscribe {
|
public class ZLMHttpHookSubscribe {
|
||||||
|
|
||||||
public enum HookType{
|
|
||||||
on_flow_report,
|
|
||||||
on_http_access,
|
|
||||||
on_play,
|
|
||||||
on_publish,
|
|
||||||
on_record_mp4,
|
|
||||||
on_rtsp_auth,
|
|
||||||
on_rtsp_realm,
|
|
||||||
on_shell_login,
|
|
||||||
on_stream_changed,
|
|
||||||
on_stream_none_reader,
|
|
||||||
on_stream_not_found,
|
|
||||||
on_server_started,
|
|
||||||
on_server_keepalive
|
|
||||||
}
|
|
||||||
|
|
||||||
@FunctionalInterface
|
@FunctionalInterface
|
||||||
public interface Event{
|
public interface Event{
|
||||||
void response(MediaServerItem mediaServerItem, JSONObject response);
|
void response(MediaServerItem mediaServerItem, JSONObject response);
|
||||||
}
|
}
|
||||||
|
|
||||||
private Map<HookType, Map<JSONObject, ZLMHttpHookSubscribe.Event>> allSubscribes = new ConcurrentHashMap<>();
|
private Map<HookType, Map<IHookSubscribe, ZLMHttpHookSubscribe.Event>> allSubscribes = new ConcurrentHashMap<>();
|
||||||
|
|
||||||
public void addSubscribe(HookType type, JSONObject hookResponse, ZLMHttpHookSubscribe.Event event) {
|
public void addSubscribe(IHookSubscribe hookSubscribe, ZLMHttpHookSubscribe.Event event) {
|
||||||
allSubscribes.computeIfAbsent(type, k -> new ConcurrentHashMap<>()).put(hookResponse, event);
|
if (hookSubscribe.getExpires() == null) {
|
||||||
|
// 默认5分钟过期
|
||||||
|
Instant expiresInstant = Instant.now().plusSeconds(TimeUnit.MINUTES.toSeconds(5));
|
||||||
|
hookSubscribe.setExpires(expiresInstant);
|
||||||
|
}
|
||||||
|
allSubscribes.computeIfAbsent(hookSubscribe.getHookType(), k -> new ConcurrentHashMap<>()).put(hookSubscribe, event);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ZLMHttpHookSubscribe.Event getSubscribe(HookType type, JSONObject hookResponse) {
|
public ZLMHttpHookSubscribe.Event sendNotify(HookType type, JSONObject hookResponse) {
|
||||||
ZLMHttpHookSubscribe.Event event= null;
|
ZLMHttpHookSubscribe.Event event= null;
|
||||||
Map<JSONObject, Event> eventMap = allSubscribes.get(type);
|
Map<IHookSubscribe, Event> eventMap = allSubscribes.get(type);
|
||||||
if (eventMap == null) {
|
if (eventMap == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
for (JSONObject key : eventMap.keySet()) {
|
for (IHookSubscribe key : eventMap.keySet()) {
|
||||||
Boolean result = null;
|
Boolean result = null;
|
||||||
for (String s : key.keySet()) {
|
for (String s : key.getContent().keySet()) {
|
||||||
if (result == null) {
|
if (result == null) {
|
||||||
result = key.getString(s).equals(hookResponse.getString(s));
|
result = key.getContent().getString(s).equals(hookResponse.getString(s));
|
||||||
}else {
|
}else {
|
||||||
if (key.getString(s) == null) {
|
if (key.getContent().getString(s) == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
result = result && key.getString(s).equals(hookResponse.getString(s));
|
result = result && key.getContent().getString(s).equals(hookResponse.getString(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
if (null != result && result) {
|
if (null != result && result) {
|
||||||
event = eventMap.get(key);
|
event = eventMap.get(key);
|
||||||
@ -69,26 +61,30 @@ public class ZLMHttpHookSubscribe {
|
|||||||
return event;
|
return event;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void removeSubscribe(HookType type, JSONObject hookResponse) {
|
public void removeSubscribe(IHookSubscribe hookSubscribe) {
|
||||||
Map<JSONObject, Event> eventMap = allSubscribes.get(type);
|
Map<IHookSubscribe, Event> eventMap = allSubscribes.get(hookSubscribe.getHookType());
|
||||||
if (eventMap == null) {
|
if (eventMap == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Set<Map.Entry<JSONObject, Event>> entries = eventMap.entrySet();
|
Set<Map.Entry<IHookSubscribe, Event>> entries = eventMap.entrySet();
|
||||||
if (entries.size() > 0) {
|
if (entries.size() > 0) {
|
||||||
List<Map.Entry<JSONObject, ZLMHttpHookSubscribe.Event>> entriesToRemove = new ArrayList<>();
|
List<Map.Entry<IHookSubscribe, ZLMHttpHookSubscribe.Event>> entriesToRemove = new ArrayList<>();
|
||||||
for (Map.Entry<JSONObject, ZLMHttpHookSubscribe.Event> entry : entries) {
|
for (Map.Entry<IHookSubscribe, ZLMHttpHookSubscribe.Event> entry : entries) {
|
||||||
JSONObject key = entry.getKey();
|
JSONObject content = entry.getKey().getContent();
|
||||||
|
if (content == null || content.size() == 0) {
|
||||||
|
entriesToRemove.add(entry);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
Boolean result = null;
|
Boolean result = null;
|
||||||
for (String s : key.keySet()) {
|
for (String s : content.keySet()) {
|
||||||
if (result == null) {
|
if (result == null) {
|
||||||
result = key.getString(s).equals(hookResponse.getString(s));
|
result = content.getString(s).equals(hookSubscribe.getContent().getString(s));
|
||||||
}else {
|
}else {
|
||||||
if (key.getString(s) == null) {
|
if (content.getString(s) == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
result = result && key.getString(s).equals(hookResponse.getString(s));
|
result = result && content.getString(s).equals(hookSubscribe.getContent().getString(s));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (null != result && result){
|
if (null != result && result){
|
||||||
@ -97,7 +93,7 @@ public class ZLMHttpHookSubscribe {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!CollectionUtils.isEmpty(entriesToRemove)) {
|
if (!CollectionUtils.isEmpty(entriesToRemove)) {
|
||||||
for (Map.Entry<JSONObject, ZLMHttpHookSubscribe.Event> entry : entriesToRemove) {
|
for (Map.Entry<IHookSubscribe, ZLMHttpHookSubscribe.Event> entry : entriesToRemove) {
|
||||||
entries.remove(entry);
|
entries.remove(entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -111,17 +107,25 @@ public class ZLMHttpHookSubscribe {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<ZLMHttpHookSubscribe.Event> getSubscribes(HookType type) {
|
public List<ZLMHttpHookSubscribe.Event> getSubscribes(HookType type) {
|
||||||
// ZLMHttpHookSubscribe.Event event= null;
|
Map<IHookSubscribe, Event> eventMap = allSubscribes.get(type);
|
||||||
Map<JSONObject, Event> eventMap = allSubscribes.get(type);
|
|
||||||
if (eventMap == null) {
|
if (eventMap == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
List<ZLMHttpHookSubscribe.Event> result = new ArrayList<>();
|
List<ZLMHttpHookSubscribe.Event> result = new ArrayList<>();
|
||||||
for (JSONObject key : eventMap.keySet()) {
|
for (IHookSubscribe key : eventMap.keySet()) {
|
||||||
result.add(eventMap.get(key));
|
result.add(eventMap.get(key));
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<IHookSubscribe> getAll(){
|
||||||
|
ArrayList<IHookSubscribe> result = new ArrayList<>();
|
||||||
|
Collection<Map<IHookSubscribe, Event>> values = allSubscribes.values();
|
||||||
|
for (Map<IHookSubscribe, Event> value : values) {
|
||||||
|
result.addAll(value.keySet());
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSONObject;
|
|||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
import com.genersoft.iot.vmp.media.zlm.dto.*;
|
||||||
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.service.IStreamProxyService;
|
import com.genersoft.iot.vmp.service.IStreamProxyService;
|
||||||
import com.genersoft.iot.vmp.service.IStreamPushService;
|
import com.genersoft.iot.vmp.service.IStreamPushService;
|
||||||
import com.genersoft.iot.vmp.service.bean.ThirdPartyGB;
|
import com.genersoft.iot.vmp.service.bean.ThirdPartyGB;
|
||||||
@ -63,99 +64,48 @@ public class ZLMMediaListManager {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private UserSetting userSetting;
|
private UserSetting userSetting;
|
||||||
|
|
||||||
private Map<String, ChannelOnlineEvent> channelOnlineEvents = new ConcurrentHashMap<>();
|
@Autowired
|
||||||
|
private ZLMRTPServerFactory zlmrtpServerFactory;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IMediaServerService mediaServerService;
|
||||||
|
|
||||||
public void updateMediaList(MediaServerItem mediaServerItem) {
|
private Map<String, ChannelOnlineEvent> channelOnPublishEvents = new ConcurrentHashMap<>();
|
||||||
storager.clearMediaList();
|
|
||||||
|
|
||||||
// 使用异步的当时更新媒体流列表
|
|
||||||
zlmresTfulUtils.getMediaList(mediaServerItem, (mediaList ->{
|
|
||||||
if (mediaList == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
String dataStr = mediaList.getString("data");
|
|
||||||
|
|
||||||
Integer code = mediaList.getInteger("code");
|
|
||||||
Map<String, StreamPushItem> result = new HashMap<>();
|
|
||||||
List<StreamPushItem> streamPushItems = null;
|
|
||||||
// 获取所有的国标关联
|
|
||||||
// List<GbStream> gbStreams = gbStreamMapper.selectAllByMediaServerId(mediaServerItem.getId());
|
|
||||||
if (code == 0 ) {
|
|
||||||
if (dataStr != null) {
|
|
||||||
streamPushItems = streamPushService.handleJSON(dataStr, mediaServerItem);
|
|
||||||
}
|
|
||||||
}else {
|
|
||||||
logger.warn("更新视频流失败,错误code: " + code);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (streamPushItems != null) {
|
|
||||||
storager.updateMediaList(streamPushItems);
|
|
||||||
for (StreamPushItem streamPushItem : streamPushItems) {
|
|
||||||
JSONObject jsonObject = new JSONObject();
|
|
||||||
jsonObject.put("app", streamPushItem.getApp());
|
|
||||||
jsonObject.put("stream", streamPushItem.getStream());
|
|
||||||
jsonObject.put("mediaServerId", mediaServerItem.getId());
|
|
||||||
subscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_play,jsonObject,
|
|
||||||
(MediaServerItem mediaServerItemInuse, JSONObject response)->{
|
|
||||||
updateMedia(mediaServerItem, response.getString("app"), response.getString("stream"));
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}));
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addMedia(MediaServerItem mediaServerItem, String app, String streamId) {
|
|
||||||
//使用异步更新推流
|
|
||||||
updateMedia(mediaServerItem, app, streamId);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StreamPushItem addPush(MediaItem mediaItem) {
|
public StreamPushItem addPush(MediaItem mediaItem) {
|
||||||
// 查找此直播流是否存在redis预设gbId
|
// 查找此直播流是否存在redis预设gbId
|
||||||
StreamPushItem transform = streamPushService.transform(mediaItem);
|
StreamPushItem transform = streamPushService.transform(mediaItem);
|
||||||
StreamPushItem pushInDb = streamPushService.getPush(mediaItem.getApp(), mediaItem.getStream());
|
StreamPushItem pushInDb = streamPushService.getPush(mediaItem.getApp(), mediaItem.getStream());
|
||||||
transform.setPushIng(true);
|
transform.setPushIng(mediaItem.isRegist());
|
||||||
transform.setUpdateTime(DateUtil.getNow());
|
transform.setUpdateTime(DateUtil.getNow());
|
||||||
transform.setPushTime(DateUtil.getNow());
|
transform.setPushTime(DateUtil.getNow());
|
||||||
|
transform.setSelf(userSetting.getServerId().equals(mediaItem.getSeverId()));
|
||||||
if (pushInDb == null) {
|
if (pushInDb == null) {
|
||||||
transform.setCreateTime(DateUtil.getNow());
|
transform.setCreateTime(DateUtil.getNow());
|
||||||
streamPushMapper.add(transform);
|
streamPushMapper.add(transform);
|
||||||
}else {
|
}else {
|
||||||
streamPushMapper.update(transform);
|
streamPushMapper.update(transform);
|
||||||
}
|
}
|
||||||
|
if (transform != null) {
|
||||||
|
if (getChannelOnlineEventLister(transform.getApp(), transform.getStream()) != null) {
|
||||||
|
getChannelOnlineEventLister(transform.getApp(), transform.getStream()).run(transform.getApp(), transform.getStream(), transform.getServerId());
|
||||||
|
removedChannelOnlineEventLister(transform.getApp(), transform.getStream());
|
||||||
|
}
|
||||||
|
}
|
||||||
return transform;
|
return transform;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void sendStreamEvent(String app, String stream, String mediaServerId) {
|
||||||
public void updateMedia(MediaServerItem mediaServerItem, String app, String streamId) {
|
MediaServerItem mediaServerItem = mediaServerService.getOne(mediaServerId);
|
||||||
//使用异步更新推流
|
// 查看推流状态
|
||||||
zlmresTfulUtils.getMediaList(mediaServerItem, app, streamId, "rtmp", json->{
|
if (zlmrtpServerFactory.isStreamReady(mediaServerItem, app, stream)) {
|
||||||
|
if (getChannelOnlineEventLister(app, stream) != null) {
|
||||||
if (json == null) {
|
getChannelOnlineEventLister(app, stream).run(app, stream, mediaServerId);
|
||||||
return;
|
removedChannelOnlineEventLister(app, stream);
|
||||||
}
|
}
|
||||||
String dataStr = json.getString("data");
|
}
|
||||||
|
|
||||||
Integer code = json.getInteger("code");
|
|
||||||
Map<String, StreamPushItem> result = new HashMap<>();
|
|
||||||
List<StreamPushItem> streamPushItems = null;
|
|
||||||
if (code == 0 ) {
|
|
||||||
if (dataStr != null) {
|
|
||||||
streamPushItems = streamPushService.handleJSON(dataStr, mediaServerItem);
|
|
||||||
}
|
|
||||||
}else {
|
|
||||||
logger.warn("更新视频流失败,错误code: " + code);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (streamPushItems != null && streamPushItems.size() == 1) {
|
|
||||||
storager.updateMedia(streamPushItems.get(0));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public int removeMedia(String app, String streamId) {
|
public int removeMedia(String app, String streamId) {
|
||||||
// 查找是否关联了国标, 关联了不删除, 置为离线
|
// 查找是否关联了国标, 关联了不删除, 置为离线
|
||||||
GbStream gbStream = gbStreamMapper.selectOne(app, streamId);
|
GbStream gbStream = gbStreamMapper.selectOne(app, streamId);
|
||||||
@ -163,48 +113,21 @@ public class ZLMMediaListManager {
|
|||||||
if (gbStream == null) {
|
if (gbStream == null) {
|
||||||
result = storager.removeMedia(app, streamId);
|
result = storager.removeMedia(app, streamId);
|
||||||
}else {
|
}else {
|
||||||
// TODO 暂不设置为离线
|
|
||||||
result =storager.mediaOffline(app, streamId);
|
result =storager.mediaOffline(app, streamId);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addChannelOnlineEventLister(String key, ChannelOnlineEvent callback) {
|
public void addChannelOnlineEventLister(String app, String stream, ChannelOnlineEvent callback) {
|
||||||
this.channelOnlineEvents.put(key,callback);
|
this.channelOnPublishEvents.put(app + "_" + stream, callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void removedChannelOnlineEventLister(String key) {
|
public void removedChannelOnlineEventLister(String app, String stream) {
|
||||||
this.channelOnlineEvents.remove(key);
|
this.channelOnPublishEvents.remove(app + "_" + stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ChannelOnlineEvent getChannelOnlineEventLister(String app, String stream) {
|
||||||
|
return this.channelOnPublishEvents.get(app + "_" + stream);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// public void clearAllSessions() {
|
|
||||||
// logger.info("清空所有国标相关的session");
|
|
||||||
// JSONObject allSessionJSON = zlmresTfulUtils.getAllSession();
|
|
||||||
// ZLMServerConfig mediaInfo = redisCatchStorage.getMediaInfo();
|
|
||||||
// HashSet<String> allLocalPorts = new HashSet();
|
|
||||||
// if (allSessionJSON.getInteger("code") == 0) {
|
|
||||||
// JSONArray data = allSessionJSON.getJSONArray("data");
|
|
||||||
// if (data.size() > 0) {
|
|
||||||
// for (int i = 0; i < data.size(); i++) {
|
|
||||||
// JSONObject sessionJOSN = data.getJSONObject(i);
|
|
||||||
// Integer local_port = sessionJOSN.getInteger("local_port");
|
|
||||||
// if (!local_port.equals(Integer.valueOf(mediaInfo.getHttpPort())) &&
|
|
||||||
// !local_port.equals(Integer.valueOf(mediaInfo.getHttpSSLport())) &&
|
|
||||||
// !local_port.equals(Integer.valueOf(mediaInfo.getRtmpPort())) &&
|
|
||||||
// !local_port.equals(Integer.valueOf(mediaInfo.getRtspPort())) &&
|
|
||||||
// !local_port.equals(Integer.valueOf(mediaInfo.getRtspSSlport())) &&
|
|
||||||
// !local_port.equals(Integer.valueOf(mediaInfo.getHookOnFlowReport()))){
|
|
||||||
// allLocalPorts.add(sessionJOSN.getInteger("local_port") + "");
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// if (allLocalPorts.size() > 0) {
|
|
||||||
// List<String> result = new ArrayList<>(allLocalPorts);
|
|
||||||
// String localPortSStr = String.join(",", result);
|
|
||||||
// zlmresTfulUtils.kickSessions(localPortSStr);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,7 @@ public class ZLMRTPServerFactory {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int createRTPServer(MediaServerItem mediaServerItem, String streamId, int ssrc) {
|
public int createRTPServer(MediaServerItem mediaServerItem, String streamId, int ssrc, Integer port) {
|
||||||
int result = -1;
|
int result = -1;
|
||||||
// 查询此rtp server 是否已经存在
|
// 查询此rtp server 是否已经存在
|
||||||
JSONObject rtpInfo = zlmresTfulUtils.getRtpInfo(mediaServerItem, streamId);
|
JSONObject rtpInfo = zlmresTfulUtils.getRtpInfo(mediaServerItem, streamId);
|
||||||
@ -105,7 +105,11 @@ public class ZLMRTPServerFactory {
|
|||||||
param.put("enable_tcp", 1);
|
param.put("enable_tcp", 1);
|
||||||
param.put("stream_id", streamId);
|
param.put("stream_id", streamId);
|
||||||
// 推流端口设置0则使用随机端口
|
// 推流端口设置0则使用随机端口
|
||||||
param.put("port", 0);
|
if (port == null) {
|
||||||
|
param.put("port", 0);
|
||||||
|
}else {
|
||||||
|
param.put("port", port);
|
||||||
|
}
|
||||||
param.put("ssrc", ssrc);
|
param.put("ssrc", ssrc);
|
||||||
JSONObject openRtpServerResultJson = zlmresTfulUtils.openRtpServer(mediaServerItem, param);
|
JSONObject openRtpServerResultJson = zlmresTfulUtils.openRtpServer(mediaServerItem, param);
|
||||||
|
|
||||||
@ -273,8 +277,10 @@ public class ZLMRTPServerFactory {
|
|||||||
* 查询待转推的流是否就绪
|
* 查询待转推的流是否就绪
|
||||||
*/
|
*/
|
||||||
public Boolean isStreamReady(MediaServerItem mediaServerItem, String app, String streamId) {
|
public Boolean isStreamReady(MediaServerItem mediaServerItem, String app, String streamId) {
|
||||||
JSONObject mediaInfo = zlmresTfulUtils.getMediaInfo(mediaServerItem, app, "rtmp", streamId);
|
JSONObject mediaInfo = zlmresTfulUtils.getMediaList(mediaServerItem, app, streamId);
|
||||||
return (mediaInfo.getInteger("code") == 0 && mediaInfo.getBoolean("online"));
|
return (mediaInfo.getInteger("code") == 0
|
||||||
|
&& mediaInfo.getJSONArray("data") != null
|
||||||
|
&& mediaInfo.getJSONArray("data").size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,22 +6,22 @@ import com.alibaba.fastjson.JSONObject;
|
|||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.MediaConfig;
|
import com.genersoft.iot.vmp.conf.MediaConfig;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeFactory;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeForServerStarted;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeForStreamChange;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.service.IStreamProxyService;
|
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
|
||||||
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.boot.CommandLineRunner;
|
import org.springframework.boot.CommandLineRunner;
|
||||||
import org.springframework.core.annotation.Order;
|
import org.springframework.core.annotation.Order;
|
||||||
import org.springframework.scheduling.annotation.Async;
|
import org.springframework.scheduling.annotation.Async;
|
||||||
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
import org.springframework.util.StringUtils;
|
|
||||||
|
|
||||||
|
import java.time.Instant;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
@Order(value=1)
|
@Order(value=1)
|
||||||
@ -37,18 +37,12 @@ public class ZLMRunner implements CommandLineRunner {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private ZLMHttpHookSubscribe hookSubscribe;
|
private ZLMHttpHookSubscribe hookSubscribe;
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private IStreamProxyService streamProxyService;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private EventPublisher publisher;
|
private EventPublisher publisher;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IMediaServerService mediaServerService;
|
private IMediaServerService mediaServerService;
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private IRedisCatchStorage redisCatchStorage;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private MediaConfig mediaConfig;
|
private MediaConfig mediaConfig;
|
||||||
|
|
||||||
@ -67,26 +61,24 @@ public class ZLMRunner implements CommandLineRunner {
|
|||||||
mediaServerService.updateToDatabase(mediaSerItem);
|
mediaServerService.updateToDatabase(mediaSerItem);
|
||||||
}
|
}
|
||||||
mediaServerService.syncCatchFromDatabase();
|
mediaServerService.syncCatchFromDatabase();
|
||||||
|
HookSubscribeForServerStarted hookSubscribeForServerStarted = HookSubscribeFactory.on_server_started();
|
||||||
|
// Instant expiresInstant = Instant.now().plusSeconds(TimeUnit.SECONDS.toSeconds(60));
|
||||||
|
// hookSubscribeForStreamChange.setExpires(expiresInstant);
|
||||||
// 订阅 zlm启动事件, 新的zlm也会从这里进入系统
|
// 订阅 zlm启动事件, 新的zlm也会从这里进入系统
|
||||||
hookSubscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_server_started,new JSONObject(),
|
hookSubscribe.addSubscribe(hookSubscribeForServerStarted,
|
||||||
(MediaServerItem mediaServerItem, JSONObject response)->{
|
(MediaServerItem mediaServerItem, JSONObject response)->{
|
||||||
ZLMServerConfig zlmServerConfig = JSONObject.toJavaObject(response, ZLMServerConfig.class);
|
ZLMServerConfig zlmServerConfig = JSONObject.toJavaObject(response, ZLMServerConfig.class);
|
||||||
if (zlmServerConfig !=null ) {
|
if (zlmServerConfig !=null ) {
|
||||||
if (startGetMedia != null) {
|
if (startGetMedia != null) {
|
||||||
startGetMedia.remove(zlmServerConfig.getGeneralMediaServerId());
|
startGetMedia.remove(zlmServerConfig.getGeneralMediaServerId());
|
||||||
|
if (startGetMedia.size() == 0) {
|
||||||
|
hookSubscribe.removeSubscribe(HookSubscribeFactory.on_server_started());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
mediaServerService.zlmServerOnline(zlmServerConfig);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// 订阅 zlm保活事件, 当zlm离线时做业务的处理
|
|
||||||
hookSubscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_server_keepalive,new JSONObject(),
|
|
||||||
(MediaServerItem mediaServerItem, JSONObject response)->{
|
|
||||||
String mediaServerId = response.getString("mediaServerId");
|
|
||||||
if (mediaServerId !=null ) {
|
|
||||||
mediaServerService.updateMediaServerKeepalive(mediaServerId, response.getJSONObject("data"));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// 获取zlm信息
|
// 获取zlm信息
|
||||||
logger.info("[zlm] 等待默认zlm中...");
|
logger.info("[zlm] 等待默认zlm中...");
|
||||||
@ -125,6 +117,9 @@ public class ZLMRunner implements CommandLineRunner {
|
|||||||
zlmServerConfigFirst.setIp(mediaServerItem.getIp());
|
zlmServerConfigFirst.setIp(mediaServerItem.getIp());
|
||||||
zlmServerConfigFirst.setHttpPort(mediaServerItem.getHttpPort());
|
zlmServerConfigFirst.setHttpPort(mediaServerItem.getHttpPort());
|
||||||
startGetMedia.remove(mediaServerItem.getId());
|
startGetMedia.remove(mediaServerItem.getId());
|
||||||
|
if (startGetMedia.size() == 0) {
|
||||||
|
hookSubscribe.removeSubscribe(HookSubscribeFactory.on_server_started());
|
||||||
|
}
|
||||||
mediaServerService.zlmServerOnline(zlmServerConfigFirst);
|
mediaServerService.zlmServerOnline(zlmServerConfigFirst);
|
||||||
}else {
|
}else {
|
||||||
logger.info("[ {} ]-[ {}:{} ]主动连接失败, 清理相关资源, 开始尝试重试连接",
|
logger.info("[ {} ]-[ {}:{} ]主动连接失败, 清理相关资源, 开始尝试重试连接",
|
||||||
@ -139,6 +134,9 @@ public class ZLMRunner implements CommandLineRunner {
|
|||||||
zlmServerConfig.setIp(mediaServerItem.getIp());
|
zlmServerConfig.setIp(mediaServerItem.getIp());
|
||||||
zlmServerConfig.setHttpPort(mediaServerItem.getHttpPort());
|
zlmServerConfig.setHttpPort(mediaServerItem.getHttpPort());
|
||||||
startGetMedia.remove(mediaServerItem.getId());
|
startGetMedia.remove(mediaServerItem.getId());
|
||||||
|
if (startGetMedia.size() == 0) {
|
||||||
|
hookSubscribe.removeSubscribe(HookSubscribeFactory.on_server_started());
|
||||||
|
}
|
||||||
mediaServerService.zlmServerOnline(zlmServerConfig);
|
mediaServerService.zlmServerOnline(zlmServerConfig);
|
||||||
}
|
}
|
||||||
}, 2000);
|
}, 2000);
|
||||||
|
@ -0,0 +1,33 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hook 订阅工厂
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
public class HookSubscribeFactory {
|
||||||
|
|
||||||
|
public static HookSubscribeForStreamChange on_stream_changed(String app, String stream, boolean regist, String scheam, String mediaServerId) {
|
||||||
|
HookSubscribeForStreamChange hookSubscribe = new HookSubscribeForStreamChange();
|
||||||
|
JSONObject subscribeKey = new com.alibaba.fastjson.JSONObject();
|
||||||
|
subscribeKey.put("app", app);
|
||||||
|
subscribeKey.put("stream", stream);
|
||||||
|
subscribeKey.put("regist", regist);
|
||||||
|
if (scheam != null) {
|
||||||
|
subscribeKey.put("schema", scheam);
|
||||||
|
}
|
||||||
|
subscribeKey.put("mediaServerId", mediaServerId);
|
||||||
|
hookSubscribe.setContent(subscribeKey);
|
||||||
|
|
||||||
|
return hookSubscribe;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static HookSubscribeForServerStarted on_server_started() {
|
||||||
|
HookSubscribeForServerStarted hookSubscribe = new HookSubscribeForServerStarted();
|
||||||
|
hookSubscribe.setContent(new JSONObject());
|
||||||
|
|
||||||
|
return hookSubscribe;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,44 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.alibaba.fastjson.annotation.JSONField;
|
||||||
|
|
||||||
|
import java.time.Instant;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hook订阅-流变化
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
public class HookSubscribeForServerStarted implements IHookSubscribe{
|
||||||
|
|
||||||
|
private HookType hookType = HookType.on_server_started;
|
||||||
|
|
||||||
|
private JSONObject content;
|
||||||
|
|
||||||
|
@JSONField(format="yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Instant expires;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HookType getHookType() {
|
||||||
|
return hookType;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public JSONObject getContent() {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setContent(JSONObject content) {
|
||||||
|
this.content = content;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Instant getExpires() {
|
||||||
|
return expires;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setExpires(Instant expires) {
|
||||||
|
this.expires = expires;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,43 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.alibaba.fastjson.annotation.JSONField;
|
||||||
|
|
||||||
|
import java.time.Instant;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hook订阅-流变化
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
public class HookSubscribeForStreamChange implements IHookSubscribe{
|
||||||
|
|
||||||
|
private HookType hookType = HookType.on_stream_changed;
|
||||||
|
|
||||||
|
private JSONObject content;
|
||||||
|
|
||||||
|
private Instant expires;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HookType getHookType() {
|
||||||
|
return hookType;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public JSONObject getContent() {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setContent(JSONObject content) {
|
||||||
|
this.content = content;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Instant getExpires() {
|
||||||
|
return expires;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setExpires(Instant expires) {
|
||||||
|
this.expires = expires;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* hook类型
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
|
||||||
|
public enum HookType {
|
||||||
|
|
||||||
|
on_flow_report,
|
||||||
|
on_http_access,
|
||||||
|
on_play,
|
||||||
|
on_publish,
|
||||||
|
on_record_mp4,
|
||||||
|
on_rtsp_auth,
|
||||||
|
on_rtsp_realm,
|
||||||
|
on_shell_login,
|
||||||
|
on_stream_changed,
|
||||||
|
on_stream_none_reader,
|
||||||
|
on_stream_not_found,
|
||||||
|
on_server_started,
|
||||||
|
on_server_keepalive
|
||||||
|
}
|
@ -0,0 +1,36 @@
|
|||||||
|
package com.genersoft.iot.vmp.media.zlm.dto;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
|
||||||
|
import java.time.Instant;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* zlm hook事件的参数
|
||||||
|
* @author lin
|
||||||
|
*/
|
||||||
|
public interface IHookSubscribe {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取hook类型
|
||||||
|
* @return hook类型
|
||||||
|
*/
|
||||||
|
HookType getHookType();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取hook的具体内容
|
||||||
|
* @return hook的具体内容
|
||||||
|
*/
|
||||||
|
JSONObject getContent();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置过期时间
|
||||||
|
* @param instant 过期时间
|
||||||
|
*/
|
||||||
|
void setExpires(Instant instant);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取过期时间
|
||||||
|
* @return 过期时间
|
||||||
|
*/
|
||||||
|
Instant getExpires();
|
||||||
|
}
|
@ -108,6 +108,13 @@ public class StreamPushItem extends GbStream implements Comparable<StreamPushIte
|
|||||||
*/
|
*/
|
||||||
private boolean pushIng;
|
private boolean pushIng;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否自己平台的推流
|
||||||
|
*/
|
||||||
|
private boolean self;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public String getVhost() {
|
public String getVhost() {
|
||||||
return vhost;
|
return vhost;
|
||||||
}
|
}
|
||||||
@ -290,5 +297,13 @@ public class StreamPushItem extends GbStream implements Comparable<StreamPushIte
|
|||||||
public void setPushIng(boolean pushIng) {
|
public void setPushIng(boolean pushIng) {
|
||||||
this.pushIng = pushIng;
|
this.pushIng = pushIng;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isSelf() {
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSelf(boolean self) {
|
||||||
|
this.self = self;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,6 +48,8 @@ public interface IMediaServerService {
|
|||||||
|
|
||||||
SSRCInfo openRTPServer(MediaServerItem mediaServerItem, String streamId, String ssrc, boolean ssrcCheck, boolean isPlayback);
|
SSRCInfo openRTPServer(MediaServerItem mediaServerItem, String streamId, String ssrc, boolean ssrcCheck, boolean isPlayback);
|
||||||
|
|
||||||
|
SSRCInfo openRTPServer(MediaServerItem mediaServerItem, String streamId, String ssrc, boolean ssrcCheck, boolean isPlayback, Integer port);
|
||||||
|
|
||||||
void closeRTPServer(String deviceId, String channelId, String ssrc);
|
void closeRTPServer(String deviceId, String channelId, String ssrc);
|
||||||
|
|
||||||
void clearRTPServer(MediaServerItem mediaServerItem);
|
void clearRTPServer(MediaServerItem mediaServerItem);
|
||||||
|
@ -96,4 +96,8 @@ public interface IStreamPushService {
|
|||||||
*/
|
*/
|
||||||
void online(List<StreamPushItemFromRedis> onlineStreams);
|
void online(List<StreamPushItemFromRedis> onlineStreams);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 增加推流
|
||||||
|
*/
|
||||||
|
boolean add(StreamPushItem stream);
|
||||||
}
|
}
|
||||||
|
@ -1,38 +0,0 @@
|
|||||||
package com.genersoft.iot.vmp.service;
|
|
||||||
|
|
||||||
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.scheduling.annotation.Scheduled;
|
|
||||||
import org.springframework.stereotype.Component;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 定时查找redis中的GPS推送消息,并保存到对应的流中
|
|
||||||
*/
|
|
||||||
@Component
|
|
||||||
public class StreamGPSSubscribeTask {
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private IRedisCatchStorage redisCatchStorage;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private IVideoManagerStorage storager;
|
|
||||||
|
|
||||||
|
|
||||||
@Scheduled(fixedRate = 30 * 1000) //每30秒执行一次
|
|
||||||
public void execute(){
|
|
||||||
List<GPSMsgInfo> gpsMsgInfo = redisCatchStorage.getAllGpsMsgInfo();
|
|
||||||
if (gpsMsgInfo.size() > 0) {
|
|
||||||
storager.updateStreamGPS(gpsMsgInfo);
|
|
||||||
for (GPSMsgInfo msgInfo : gpsMsgInfo) {
|
|
||||||
msgInfo.setStored(true);
|
|
||||||
redisCatchStorage.updateGpsMsgInfo(msgInfo);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
@ -86,10 +86,10 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
redisCatchStorage.clearCatchByDeviceId(device.getDeviceId());
|
redisCatchStorage.clearCatchByDeviceId(device.getDeviceId());
|
||||||
}
|
}
|
||||||
device.setUpdateTime(now);
|
device.setUpdateTime(now);
|
||||||
device.setOnline(1);
|
|
||||||
|
|
||||||
// 第一次上线
|
// 第一次上线 或则设备之前是离线状态--进行通道同步和设备信息查询
|
||||||
if (device.getCreateTime() == null) {
|
if (device.getCreateTime() == null) {
|
||||||
|
device.setOnline(1);
|
||||||
device.setCreateTime(now);
|
device.setCreateTime(now);
|
||||||
logger.info("[设备上线,首次注册]: {},查询设备信息以及通道信息", device.getDeviceId());
|
logger.info("[设备上线,首次注册]: {},查询设备信息以及通道信息", device.getDeviceId());
|
||||||
deviceMapper.add(device);
|
deviceMapper.add(device);
|
||||||
@ -97,8 +97,19 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
commander.deviceInfoQuery(device);
|
commander.deviceInfoQuery(device);
|
||||||
sync(device);
|
sync(device);
|
||||||
}else {
|
}else {
|
||||||
deviceMapper.update(device);
|
if(device.getOnline() == 0){
|
||||||
redisCatchStorage.updateDevice(device);
|
device.setOnline(1);
|
||||||
|
device.setCreateTime(now);
|
||||||
|
logger.info("[设备上线,离线状态下重新注册]: {},查询设备信息以及通道信息", device.getDeviceId());
|
||||||
|
deviceMapper.update(device);
|
||||||
|
redisCatchStorage.updateDevice(device);
|
||||||
|
commander.deviceInfoQuery(device);
|
||||||
|
sync(device);
|
||||||
|
}else {
|
||||||
|
deviceMapper.update(device);
|
||||||
|
redisCatchStorage.updateDevice(device);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 上线添加订阅
|
// 上线添加订阅
|
||||||
@ -125,6 +136,8 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
device.setOnline(0);
|
device.setOnline(0);
|
||||||
redisCatchStorage.updateDevice(device);
|
redisCatchStorage.updateDevice(device);
|
||||||
deviceMapper.update(device);
|
deviceMapper.update(device);
|
||||||
|
//进行通道离线
|
||||||
|
deviceChannelMapper.offlineByDeviceId(deviceId);
|
||||||
// 离线释放所有ssrc
|
// 离线释放所有ssrc
|
||||||
List<SsrcTransaction> ssrcTransactions = streamSession.getSsrcTransactionForAll(deviceId, null, null, null);
|
List<SsrcTransaction> ssrcTransactions = streamSession.getSsrcTransactionForAll(deviceId, null, null, null);
|
||||||
if (ssrcTransactions != null && ssrcTransactions.size() > 0) {
|
if (ssrcTransactions != null && ssrcTransactions.size() > 0) {
|
||||||
@ -147,7 +160,7 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
logger.info("[添加目录订阅] 设备{}", device.getDeviceId());
|
logger.info("[添加目录订阅] 设备{}", device.getDeviceId());
|
||||||
// 添加目录订阅
|
// 添加目录订阅
|
||||||
CatalogSubscribeTask catalogSubscribeTask = new CatalogSubscribeTask(device, sipCommander, dynamicTask);
|
CatalogSubscribeTask catalogSubscribeTask = new CatalogSubscribeTask(device, sipCommander, dynamicTask);
|
||||||
// 提前开始刷新订阅
|
// 刷新订阅
|
||||||
int subscribeCycleForCatalog = Math.max(device.getSubscribeCycleForCatalog(),30);
|
int subscribeCycleForCatalog = Math.max(device.getSubscribeCycleForCatalog(),30);
|
||||||
// 设置最小值为30
|
// 设置最小值为30
|
||||||
dynamicTask.startCron(device.getDeviceId() + "catalog", catalogSubscribeTask, (subscribeCycleForCatalog -1) * 1000);
|
dynamicTask.startCron(device.getDeviceId() + "catalog", catalogSubscribeTask, (subscribeCycleForCatalog -1) * 1000);
|
||||||
@ -182,8 +195,8 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
MobilePositionSubscribeTask mobilePositionSubscribeTask = new MobilePositionSubscribeTask(device, sipCommander, dynamicTask);
|
MobilePositionSubscribeTask mobilePositionSubscribeTask = new MobilePositionSubscribeTask(device, sipCommander, dynamicTask);
|
||||||
// 设置最小值为30
|
// 设置最小值为30
|
||||||
int subscribeCycleForCatalog = Math.max(device.getSubscribeCycleForMobilePosition(),30);
|
int subscribeCycleForCatalog = Math.max(device.getSubscribeCycleForMobilePosition(),30);
|
||||||
// 提前开始刷新订阅
|
// 刷新订阅
|
||||||
dynamicTask.startCron(device.getDeviceId() + "mobile_position" , mobilePositionSubscribeTask, (subscribeCycleForCatalog -1 ) * 1000);
|
dynamicTask.startCron(device.getDeviceId() + "mobile_position" , mobilePositionSubscribeTask, (subscribeCycleForCatalog) * 1000);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,29 +1,13 @@
|
|||||||
package com.genersoft.iot.vmp.service.impl;
|
package com.genersoft.iot.vmp.service.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import java.time.LocalDateTime;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import java.util.ArrayList;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import java.util.Collections;
|
||||||
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
import java.util.HashMap;
|
||||||
import com.genersoft.iot.vmp.conf.SipConfig;
|
import java.util.List;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import java.util.Map;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.SsrcTransaction;
|
import java.util.Set;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
|
||||||
import com.genersoft.iot.vmp.gb28181.session.SsrcConfig;
|
|
||||||
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMRTPServerFactory;
|
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMServerConfig;
|
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
|
||||||
import com.genersoft.iot.vmp.service.IStreamProxyService;
|
|
||||||
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
|
||||||
import com.genersoft.iot.vmp.storager.dao.MediaServerMapper;
|
|
||||||
import com.genersoft.iot.vmp.utils.DateUtil;
|
|
||||||
import com.genersoft.iot.vmp.utils.redis.JedisUtil;
|
|
||||||
import com.genersoft.iot.vmp.utils.redis.RedisUtil;
|
|
||||||
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
|
||||||
import okhttp3.*;
|
|
||||||
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;
|
||||||
@ -34,11 +18,30 @@ import org.springframework.transaction.TransactionDefinition;
|
|||||||
import org.springframework.transaction.TransactionStatus;
|
import org.springframework.transaction.TransactionStatus;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
import java.text.ParseException;
|
import com.alibaba.fastjson.JSON;
|
||||||
import java.text.SimpleDateFormat;
|
import com.alibaba.fastjson.JSONArray;
|
||||||
import java.time.LocalDateTime;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import java.util.*;
|
import com.genersoft.iot.vmp.common.VideoManagerConstants;
|
||||||
import java.util.stream.Collectors;
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.session.SsrcConfig;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.ZLMRESTfulUtils;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.ZLMRTPServerFactory;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.ZLMServerConfig;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
|
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
||||||
|
import com.genersoft.iot.vmp.storager.dao.MediaServerMapper;
|
||||||
|
import com.genersoft.iot.vmp.utils.DateUtil;
|
||||||
|
import com.genersoft.iot.vmp.utils.redis.JedisUtil;
|
||||||
|
import com.genersoft.iot.vmp.utils.redis.RedisUtil;
|
||||||
|
import com.genersoft.iot.vmp.vmanager.bean.WVPResult;
|
||||||
|
|
||||||
|
import okhttp3.OkHttpClient;
|
||||||
|
import okhttp3.Request;
|
||||||
|
import okhttp3.Response;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 媒体服务器节点管理
|
* 媒体服务器节点管理
|
||||||
@ -81,12 +84,6 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private RedisUtil redisUtil;
|
private RedisUtil redisUtil;
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private IVideoManagerStorage storager;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private IStreamProxyService streamProxyService;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private EventPublisher publisher;
|
private EventPublisher publisher;
|
||||||
|
|
||||||
@ -124,7 +121,7 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SSRCInfo openRTPServer(MediaServerItem mediaServerItem, String streamId, String presetSsrc, boolean ssrcCheck, boolean isPlayback) {
|
public SSRCInfo openRTPServer(MediaServerItem mediaServerItem, String streamId, String presetSsrc, boolean ssrcCheck, boolean isPlayback, Integer port) {
|
||||||
if (mediaServerItem == null || mediaServerItem.getId() == null) {
|
if (mediaServerItem == null || mediaServerItem.getId() == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -152,13 +149,18 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
}
|
}
|
||||||
int rtpServerPort = mediaServerItem.getRtpProxyPort();
|
int rtpServerPort = mediaServerItem.getRtpProxyPort();
|
||||||
if (mediaServerItem.isRtpEnable()) {
|
if (mediaServerItem.isRtpEnable()) {
|
||||||
rtpServerPort = zlmrtpServerFactory.createRTPServer(mediaServerItem, streamId, ssrcCheck?Integer.parseInt(ssrc):0);
|
rtpServerPort = zlmrtpServerFactory.createRTPServer(mediaServerItem, streamId, ssrcCheck?Integer.parseInt(ssrc):0, port);
|
||||||
}
|
}
|
||||||
redisUtil.set(key, mediaServerItem);
|
redisUtil.set(key, mediaServerItem);
|
||||||
return new SSRCInfo(rtpServerPort, ssrc, streamId);
|
return new SSRCInfo(rtpServerPort, ssrc, streamId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SSRCInfo openRTPServer(MediaServerItem mediaServerItem, String streamId, String ssrc, boolean ssrcCheck, boolean isPlayback) {
|
||||||
|
return openRTPServer(mediaServerItem, streamId, ssrc, ssrcCheck, isPlayback, null);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void closeRTPServer(String deviceId, String channelId, String stream) {
|
public void closeRTPServer(String deviceId, String channelId, String stream) {
|
||||||
String mediaServerId = streamSession.getMediaServerId(deviceId, channelId, stream);
|
String mediaServerId = streamSession.getMediaServerId(deviceId, channelId, stream);
|
||||||
@ -355,14 +357,15 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void zlmServerOnline(ZLMServerConfig zlmServerConfig) {
|
public void zlmServerOnline(ZLMServerConfig zlmServerConfig) {
|
||||||
logger.info("[ZLM] 正在连接 : {} -> {}:{}",
|
|
||||||
zlmServerConfig.getGeneralMediaServerId(), zlmServerConfig.getIp(), zlmServerConfig.getHttpPort());
|
|
||||||
|
|
||||||
MediaServerItem serverItem = mediaServerMapper.queryOne(zlmServerConfig.getGeneralMediaServerId());
|
MediaServerItem serverItem = mediaServerMapper.queryOne(zlmServerConfig.getGeneralMediaServerId());
|
||||||
if (serverItem == null) {
|
if (serverItem == null) {
|
||||||
logger.warn("[未注册的zlm] 拒接接入:{}来自{}:{}", zlmServerConfig.getGeneralMediaServerId(), zlmServerConfig.getIp(),zlmServerConfig.getHttpPort() );
|
logger.warn("[未注册的zlm] 拒接接入:{}来自{}:{}", zlmServerConfig.getGeneralMediaServerId(), zlmServerConfig.getIp(),zlmServerConfig.getHttpPort() );
|
||||||
logger.warn("请检查ZLM的<general.mediaServerId>配置是否与WVP的<media.id>一致");
|
logger.warn("请检查ZLM的<general.mediaServerId>配置是否与WVP的<media.id>一致");
|
||||||
return;
|
return;
|
||||||
|
}else {
|
||||||
|
logger.info("[ZLM] 正在连接 : {} -> {}:{}",
|
||||||
|
zlmServerConfig.getGeneralMediaServerId(), zlmServerConfig.getIp(), zlmServerConfig.getHttpPort());
|
||||||
}
|
}
|
||||||
serverItem.setHookAliveInterval(zlmServerConfig.getHookAliveInterval());
|
serverItem.setHookAliveInterval(zlmServerConfig.getHookAliveInterval());
|
||||||
if (serverItem.getHttpPort() == 0) {
|
if (serverItem.getHttpPort() == 0) {
|
||||||
@ -599,9 +602,6 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
boolean result = false;
|
boolean result = false;
|
||||||
OkHttpClient client = new OkHttpClient();
|
OkHttpClient client = new OkHttpClient();
|
||||||
String url = String.format("http://%s:%s/index/api/record", ip, port);
|
String url = String.format("http://%s:%s/index/api/record", ip, port);
|
||||||
|
|
||||||
FormBody.Builder builder = new FormBody.Builder();
|
|
||||||
|
|
||||||
Request request = new Request.Builder()
|
Request request = new Request.Builder()
|
||||||
.get()
|
.get()
|
||||||
.url(url)
|
.url(url)
|
||||||
@ -633,7 +633,6 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
MediaServerItem mediaServerItem = getOne(mediaServerId);
|
MediaServerItem mediaServerItem = getOne(mediaServerId);
|
||||||
if (mediaServerItem == null) {
|
if (mediaServerItem == null) {
|
||||||
// zlm连接重试
|
// zlm连接重试
|
||||||
|
|
||||||
logger.warn("[更新ZLM 保活信息]失败,未找到流媒体信息");
|
logger.warn("[更新ZLM 保活信息]失败,未找到流媒体信息");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -652,7 +651,7 @@ public class MediaServerServiceImpl implements IMediaServerService {
|
|||||||
mediaServerItemMap.put(mediaServerItem.getId(), mediaServerItem);
|
mediaServerItemMap.put(mediaServerItem.getId(), mediaServerItem);
|
||||||
}
|
}
|
||||||
for (MediaServerItem mediaServerItem : allInCatch) {
|
for (MediaServerItem mediaServerItem : allInCatch) {
|
||||||
if (mediaServerItemMap.get(mediaServerItem) == null) {
|
if (!mediaServerItemMap.containsKey(mediaServerItem.getId())) {
|
||||||
delete(mediaServerItem.getId());
|
delete(mediaServerItem.getId());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -67,9 +67,9 @@ public class MediaServiceImpl implements IMediaService {
|
|||||||
JSONObject mediaJSON = JSON.parseObject(JSON.toJSONString(data.get(0)), JSONObject.class);
|
JSONObject mediaJSON = JSON.parseObject(JSON.toJSONString(data.get(0)), JSONObject.class);
|
||||||
JSONArray tracks = mediaJSON.getJSONArray("tracks");
|
JSONArray tracks = mediaJSON.getJSONArray("tracks");
|
||||||
if (authority) {
|
if (authority) {
|
||||||
streamInfo = getStreamInfoByAppAndStream(mediaInfo, app, stream, tracks, streamAuthorityInfo.getCallId());
|
streamInfo = getStreamInfoByAppAndStream(mediaInfo, app, stream, tracks, addr,streamAuthorityInfo.getCallId());
|
||||||
}else {
|
}else {
|
||||||
streamInfo = getStreamInfoByAppAndStream(mediaInfo, app, stream, tracks, null);
|
streamInfo = getStreamInfoByAppAndStream(mediaInfo, app, stream, tracks, addr,null);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,43 @@
|
|||||||
package com.genersoft.iot.vmp.service.impl;
|
package com.genersoft.iot.vmp.service.impl;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.math.RoundingMode;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
import javax.sip.ResponseEvent;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.web.context.request.async.DeferredResult;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson.JSONArray;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
import com.genersoft.iot.vmp.conf.DynamicTask;
|
import com.genersoft.iot.vmp.conf.DynamicTask;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.*;
|
import com.genersoft.iot.vmp.gb28181.bean.Device;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.InviteStreamCallback;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.InviteStreamInfo;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.SsrcTransaction;
|
||||||
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
|
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
|
||||||
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
import com.genersoft.iot.vmp.gb28181.session.VideoStreamSessionManager;
|
||||||
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.gb28181.transmit.cmd.impl.SIPCommander;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommanderFroPlatform;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommanderFroPlatform;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeFactory;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeForStreamChange;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookType;
|
||||||
import com.genersoft.iot.vmp.utils.DateUtil;
|
import com.genersoft.iot.vmp.utils.DateUtil;
|
||||||
import com.genersoft.iot.vmp.media.zlm.AssistRESTfulUtils;
|
import com.genersoft.iot.vmp.media.zlm.AssistRESTfulUtils;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
|
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
|
||||||
@ -27,23 +52,11 @@ import com.genersoft.iot.vmp.service.bean.PlayBackResult;
|
|||||||
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
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 com.genersoft.iot.vmp.vmanager.gb28181.play.bean.PlayResult;
|
import com.genersoft.iot.vmp.vmanager.gb28181.play.bean.PlayResult;
|
||||||
import gov.nist.javax.sip.stack.SIPDialog;
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.http.HttpStatus;
|
|
||||||
import org.springframework.http.ResponseEntity;
|
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
import org.springframework.util.ResourceUtils;
|
|
||||||
import org.springframework.web.context.request.async.DeferredResult;
|
|
||||||
|
|
||||||
import javax.sip.ResponseEvent;
|
import gov.nist.javax.sip.stack.SIPDialog;
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.math.RoundingMode;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
@SuppressWarnings(value = {"rawtypes", "unchecked"})
|
@SuppressWarnings(value = {"rawtypes", "unchecked"})
|
||||||
@Service
|
@Service
|
||||||
@ -296,16 +309,10 @@ public class PlayServiceImpl implements IPlayService {
|
|||||||
// 单端口模式streamId也有变化,需要重新设置监听
|
// 单端口模式streamId也有变化,需要重新设置监听
|
||||||
if (!mediaServerItem.isRtpEnable()) {
|
if (!mediaServerItem.isRtpEnable()) {
|
||||||
// 添加订阅
|
// 添加订阅
|
||||||
JSONObject subscribeKey = new JSONObject();
|
HookSubscribeForStreamChange hookSubscribe = HookSubscribeFactory.on_stream_changed("rtp", stream, true, "rtmp", mediaServerItem.getId());
|
||||||
subscribeKey.put("app", "rtp");
|
subscribe.removeSubscribe(hookSubscribe);
|
||||||
subscribeKey.put("stream", stream);
|
hookSubscribe.getContent().put("stream", String.format("%08x", Integer.parseInt(ssrcInResponse)).toUpperCase());
|
||||||
subscribeKey.put("regist", true);
|
subscribe.addSubscribe(hookSubscribe, (MediaServerItem mediaServerItemInUse, JSONObject response)->{
|
||||||
subscribeKey.put("schema", "rtmp");
|
|
||||||
subscribeKey.put("mediaServerId", mediaServerItem.getId());
|
|
||||||
subscribe.removeSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed,subscribeKey);
|
|
||||||
subscribeKey.put("stream", String.format("%08x", Integer.parseInt(ssrcInResponse)).toUpperCase());
|
|
||||||
subscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, subscribeKey,
|
|
||||||
(MediaServerItem mediaServerItemInUse, JSONObject response)->{
|
|
||||||
logger.info("[ZLM HOOK] ssrc修正后收到订阅消息: " + response.toJSONString());
|
logger.info("[ZLM HOOK] ssrc修正后收到订阅消息: " + response.toJSONString());
|
||||||
dynamicTask.stop(timeOutTaskKey);
|
dynamicTask.stop(timeOutTaskKey);
|
||||||
// hook响应
|
// hook响应
|
||||||
@ -316,7 +323,7 @@ public class PlayServiceImpl implements IPlayService {
|
|||||||
// 关闭rtp server
|
// 关闭rtp server
|
||||||
mediaServerService.closeRTPServer(device.getDeviceId(), channelId, finalSsrcInfo.getStream());
|
mediaServerService.closeRTPServer(device.getDeviceId(), channelId, finalSsrcInfo.getStream());
|
||||||
// 重新开启ssrc server
|
// 重新开启ssrc server
|
||||||
mediaServerService.openRTPServer(mediaServerItem, finalSsrcInfo.getStream(), ssrcInResponse, device.isSsrcCheck(), false);
|
mediaServerService.openRTPServer(mediaServerItem, finalSsrcInfo.getStream(), ssrcInResponse, device.isSsrcCheck(), false, finalSsrcInfo.getPort());
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -531,14 +538,6 @@ public class PlayServiceImpl implements IPlayService {
|
|||||||
StreamInfo streamInfo = onPublishHandler(inviteStreamInfo.getMediaServerItem(), inviteStreamInfo.getResponse(), deviceId, channelId);
|
StreamInfo streamInfo = onPublishHandler(inviteStreamInfo.getMediaServerItem(), inviteStreamInfo.getResponse(), deviceId, channelId);
|
||||||
streamInfo.setStartTime(startTime);
|
streamInfo.setStartTime(startTime);
|
||||||
streamInfo.setEndTime(endTime);
|
streamInfo.setEndTime(endTime);
|
||||||
if (streamInfo == null) {
|
|
||||||
logger.warn("录像下载API调用失败!");
|
|
||||||
wvpResult.setCode(-1);
|
|
||||||
wvpResult.setMsg("录像下载API调用失败");
|
|
||||||
downloadResult.setCode(-1);
|
|
||||||
hookCallBack.call(downloadResult);
|
|
||||||
return ;
|
|
||||||
}
|
|
||||||
redisCatchStorage.startDownload(streamInfo, inviteStreamInfo.getCallId());
|
redisCatchStorage.startDownload(streamInfo, inviteStreamInfo.getCallId());
|
||||||
wvpResult.setCode(0);
|
wvpResult.setCode(0);
|
||||||
wvpResult.setMsg("success");
|
wvpResult.setMsg("success");
|
||||||
|
@ -8,6 +8,9 @@ import com.genersoft.iot.vmp.gb28181.bean.SendRtpItem;
|
|||||||
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
|
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMMediaListManager;
|
import com.genersoft.iot.vmp.media.zlm.ZLMMediaListManager;
|
||||||
import com.genersoft.iot.vmp.media.zlm.ZLMRTPServerFactory;
|
import com.genersoft.iot.vmp.media.zlm.ZLMRTPServerFactory;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeFactory;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookSubscribeForStreamChange;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.HookType;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.service.bean.*;
|
import com.genersoft.iot.vmp.service.bean.*;
|
||||||
@ -270,14 +273,9 @@ public class RedisGbPlayMsgListener implements MessageListener {
|
|||||||
}, userSetting.getPlatformPlayTimeout());
|
}, userSetting.getPlatformPlayTimeout());
|
||||||
|
|
||||||
// 添加订阅
|
// 添加订阅
|
||||||
JSONObject subscribeKey = new JSONObject();
|
HookSubscribeForStreamChange hookSubscribe = HookSubscribeFactory.on_stream_changed(content.getApp(), content.getStream(), true, "rtmp", mediaServerItem.getId());
|
||||||
subscribeKey.put("app", content.getApp());
|
|
||||||
subscribeKey.put("stream", content.getStream());
|
subscribe.addSubscribe(hookSubscribe, (MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
||||||
subscribeKey.put("regist", true);
|
|
||||||
subscribeKey.put("schema", "rtmp");
|
|
||||||
subscribeKey.put("mediaServerId", mediaServerItem.getId());
|
|
||||||
subscribe.addSubscribe(ZLMHttpHookSubscribe.HookType.on_stream_changed, subscribeKey,
|
|
||||||
(MediaServerItem mediaServerItemInUse, JSONObject json)->{
|
|
||||||
dynamicTask.stop(taskKey);
|
dynamicTask.stop(taskKey);
|
||||||
responseSendItem(mediaServerItem, content, toId, serial);
|
responseSendItem(mediaServerItem, content, toId, serial);
|
||||||
});
|
});
|
||||||
|
@ -1,16 +1,24 @@
|
|||||||
package com.genersoft.iot.vmp.service.impl;
|
package com.genersoft.iot.vmp.service.impl;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.HandlerCatchData;
|
||||||
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
|
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
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.data.redis.connection.Message;
|
import org.springframework.data.redis.connection.Message;
|
||||||
import org.springframework.data.redis.connection.MessageListener;
|
import org.springframework.data.redis.connection.MessageListener;
|
||||||
|
import org.springframework.scheduling.annotation.Scheduled;
|
||||||
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.ConcurrentLinkedQueue;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 接收来自redis的GPS更新通知
|
* 接收来自redis的GPS更新通知
|
||||||
* @author lin
|
* @author lin
|
||||||
@ -20,13 +28,50 @@ public class RedisGpsMsgListener implements MessageListener {
|
|||||||
|
|
||||||
private final static Logger logger = LoggerFactory.getLogger(RedisGpsMsgListener.class);
|
private final static Logger logger = LoggerFactory.getLogger(RedisGpsMsgListener.class);
|
||||||
|
|
||||||
|
private boolean taskQueueHandlerRun = false;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IRedisCatchStorage redisCatchStorage;
|
private IRedisCatchStorage redisCatchStorage;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IVideoManagerStorage storager;
|
||||||
|
|
||||||
|
private final ConcurrentLinkedQueue<Message> taskQueue = new ConcurrentLinkedQueue<>();
|
||||||
|
|
||||||
|
@Qualifier("taskExecutor")
|
||||||
|
@Autowired
|
||||||
|
private ThreadPoolTaskExecutor taskExecutor;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onMessage(@NotNull Message message, byte[] bytes) {
|
public void onMessage(@NotNull Message message, byte[] bytes) {
|
||||||
// TODO 加消息队列
|
taskQueue.offer(message);
|
||||||
GPSMsgInfo gpsMsgInfo = JSON.parseObject(message.getBody(), GPSMsgInfo.class);
|
if (!taskQueueHandlerRun) {
|
||||||
redisCatchStorage.updateGpsMsgInfo(gpsMsgInfo);
|
taskQueueHandlerRun = true;
|
||||||
|
taskExecutor.execute(() -> {
|
||||||
|
while (!taskQueue.isEmpty()) {
|
||||||
|
Message msg = taskQueue.poll();
|
||||||
|
GPSMsgInfo gpsMsgInfo = JSON.parseObject(msg.getBody(), GPSMsgInfo.class);
|
||||||
|
// 只是放入redis缓存起来
|
||||||
|
redisCatchStorage.updateGpsMsgInfo(gpsMsgInfo);
|
||||||
|
}
|
||||||
|
taskQueueHandlerRun = false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 定时将经纬度更新到数据库
|
||||||
|
*/
|
||||||
|
@Scheduled(fixedRate = 2 * 1000) //每2秒执行一次
|
||||||
|
public void execute(){
|
||||||
|
List<GPSMsgInfo> gpsMsgInfo = redisCatchStorage.getAllGpsMsgInfo();
|
||||||
|
if (gpsMsgInfo.size() > 0) {
|
||||||
|
storager.updateStreamGPS(gpsMsgInfo);
|
||||||
|
for (GPSMsgInfo msgInfo : gpsMsgInfo) {
|
||||||
|
msgInfo.setStored(true);
|
||||||
|
redisCatchStorage.updateGpsMsgInfo(msgInfo);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,7 @@ import com.genersoft.iot.vmp.media.zlm.ZLMMediaListManager;
|
|||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaItem;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.StreamPushItem;
|
||||||
import com.genersoft.iot.vmp.service.IStreamPushService;
|
import com.genersoft.iot.vmp.service.IStreamPushService;
|
||||||
|
import com.genersoft.iot.vmp.service.bean.GPSMsgInfo;
|
||||||
import com.genersoft.iot.vmp.service.bean.PushStreamStatusChangeFromRedisDto;
|
import com.genersoft.iot.vmp.service.bean.PushStreamStatusChangeFromRedisDto;
|
||||||
import com.genersoft.iot.vmp.service.bean.StreamPushItemFromRedis;
|
import com.genersoft.iot.vmp.service.bean.StreamPushItemFromRedis;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
@ -21,14 +22,17 @@ import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
|
|||||||
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.boot.ApplicationArguments;
|
import org.springframework.boot.ApplicationArguments;
|
||||||
import org.springframework.boot.ApplicationRunner;
|
import org.springframework.boot.ApplicationRunner;
|
||||||
import org.springframework.data.redis.connection.Message;
|
import org.springframework.data.redis.connection.Message;
|
||||||
import org.springframework.data.redis.connection.MessageListener;
|
import org.springframework.data.redis.connection.MessageListener;
|
||||||
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.concurrent.ConcurrentLinkedQueue;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -40,41 +44,60 @@ public class RedisPushStreamStatusMsgListener implements MessageListener, Applic
|
|||||||
|
|
||||||
private final static Logger logger = LoggerFactory.getLogger(RedisPushStreamStatusMsgListener.class);
|
private final static Logger logger = LoggerFactory.getLogger(RedisPushStreamStatusMsgListener.class);
|
||||||
|
|
||||||
|
private boolean taskQueueHandlerRun = false;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IRedisCatchStorage redisCatchStorage;
|
private IRedisCatchStorage redisCatchStorage;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IStreamPushService streamPushService;
|
private IStreamPushService streamPushService;
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private EventPublisher eventPublisher;
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private UserSetting userSetting;
|
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private DynamicTask dynamicTask;
|
private DynamicTask dynamicTask;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private final ConcurrentLinkedQueue<Message> taskQueue = new ConcurrentLinkedQueue<>();
|
||||||
|
|
||||||
|
@Qualifier("taskExecutor")
|
||||||
|
@Autowired
|
||||||
|
private ThreadPoolTaskExecutor taskExecutor;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onMessage(Message message, byte[] bytes) {
|
public void onMessage(Message message, byte[] bytes) {
|
||||||
PushStreamStatusChangeFromRedisDto statusChangeFromPushStream = JSON.parseObject(message.getBody(), PushStreamStatusChangeFromRedisDto.class);
|
// TODO 增加队列
|
||||||
if (statusChangeFromPushStream == null) {
|
logger.warn("[REDIS消息-推流设备状态变化]: {}", new String(message.getBody()));
|
||||||
logger.warn("[REDIS 消息]推流设备状态变化消息解析失败");
|
taskQueue.offer(message);
|
||||||
return;
|
|
||||||
}
|
if (!taskQueueHandlerRun) {
|
||||||
if (statusChangeFromPushStream.isSetAllOffline()) {
|
taskQueueHandlerRun = true;
|
||||||
// 所有设备离线
|
taskExecutor.execute(() -> {
|
||||||
streamPushService.allStreamOffline();
|
while (!taskQueue.isEmpty()) {
|
||||||
}
|
Message msg = taskQueue.poll();
|
||||||
if (statusChangeFromPushStream.getOfflineStreams() != null
|
PushStreamStatusChangeFromRedisDto statusChangeFromPushStream = JSON.parseObject(msg.getBody(), PushStreamStatusChangeFromRedisDto.class);
|
||||||
&& statusChangeFromPushStream.getOfflineStreams().size() > 0) {
|
if (statusChangeFromPushStream == null) {
|
||||||
// 更新部分设备离线
|
logger.warn("[REDIS消息]推流设备状态变化消息解析失败");
|
||||||
streamPushService.offline(statusChangeFromPushStream.getOfflineStreams());
|
return;
|
||||||
}
|
}
|
||||||
if (statusChangeFromPushStream.getOnlineStreams() != null &&
|
// 取消定时任务
|
||||||
statusChangeFromPushStream.getOnlineStreams().size() > 0) {
|
dynamicTask.stop(VideoManagerConstants.VM_MSG_GET_ALL_ONLINE_REQUESTED);
|
||||||
// 更新部分设备上线
|
if (statusChangeFromPushStream.isSetAllOffline()) {
|
||||||
streamPushService.online(statusChangeFromPushStream.getOnlineStreams());
|
// 所有设备离线
|
||||||
|
streamPushService.allStreamOffline();
|
||||||
|
}
|
||||||
|
if (statusChangeFromPushStream.getOfflineStreams() != null
|
||||||
|
&& statusChangeFromPushStream.getOfflineStreams().size() > 0) {
|
||||||
|
// 更新部分设备离线
|
||||||
|
streamPushService.offline(statusChangeFromPushStream.getOfflineStreams());
|
||||||
|
}
|
||||||
|
if (statusChangeFromPushStream.getOnlineStreams() != null &&
|
||||||
|
statusChangeFromPushStream.getOnlineStreams().size() > 0) {
|
||||||
|
// 更新部分设备上线
|
||||||
|
streamPushService.online(statusChangeFromPushStream.getOnlineStreams());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
taskQueueHandlerRun = false;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,7 +106,7 @@ public class RedisPushStreamStatusMsgListener implements MessageListener, Applic
|
|||||||
// 启动时设置所有推流通道离线,发起查询请求
|
// 启动时设置所有推流通道离线,发起查询请求
|
||||||
redisCatchStorage.sendStreamPushRequestedMsgForStatus();
|
redisCatchStorage.sendStreamPushRequestedMsgForStatus();
|
||||||
dynamicTask.startDelay(VideoManagerConstants.VM_MSG_GET_ALL_ONLINE_REQUESTED, ()->{
|
dynamicTask.startDelay(VideoManagerConstants.VM_MSG_GET_ALL_ONLINE_REQUESTED, ()->{
|
||||||
logger.info("[REDIS 消息]未收到redis回复推流设备状态,执行推流设备离线");
|
logger.info("[REDIS消息]未收到redis回复推流设备状态,执行推流设备离线");
|
||||||
// 五秒收不到请求就设置通道离线,然后通知上级离线
|
// 五秒收不到请求就设置通道离线,然后通知上级离线
|
||||||
streamPushService.allStreamOffline();
|
streamPushService.allStreamOffline();
|
||||||
}, 5000);
|
}, 5000);
|
||||||
|
@ -46,7 +46,7 @@ public class RedisStreamMsgListener implements MessageListener {
|
|||||||
|
|
||||||
JSONObject steamMsgJson = JSON.parseObject(message.getBody(), JSONObject.class);
|
JSONObject steamMsgJson = JSON.parseObject(message.getBody(), JSONObject.class);
|
||||||
if (steamMsgJson == null) {
|
if (steamMsgJson == null) {
|
||||||
logger.warn("[REDIS的ALARM通知]消息解析失败");
|
logger.warn("[收到redis 流变化]消息解析失败");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String serverId = steamMsgJson.getString("serverId");
|
String serverId = steamMsgJson.getString("serverId");
|
||||||
@ -55,7 +55,7 @@ public class RedisStreamMsgListener implements MessageListener {
|
|||||||
// 自己发送的消息忽略即可
|
// 自己发送的消息忽略即可
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
logger.info("[REDIS通知] 流变化: {}", new String(message.getBody()));
|
logger.info("[收到redis 流变化]: {}", new String(message.getBody()));
|
||||||
String app = steamMsgJson.getString("app");
|
String app = steamMsgJson.getString("app");
|
||||||
String stream = steamMsgJson.getString("stream");
|
String stream = steamMsgJson.getString("stream");
|
||||||
boolean register = steamMsgJson.getBoolean("register");
|
boolean register = steamMsgJson.getBoolean("register");
|
||||||
@ -72,9 +72,10 @@ public class RedisStreamMsgListener implements MessageListener {
|
|||||||
mediaItem.setOriginType(0);
|
mediaItem.setOriginType(0);
|
||||||
mediaItem.setOriginTypeStr("0");
|
mediaItem.setOriginTypeStr("0");
|
||||||
mediaItem.setOriginTypeStr("unknown");
|
mediaItem.setOriginTypeStr("unknown");
|
||||||
|
if (register) {
|
||||||
zlmMediaListManager.addPush(mediaItem);
|
zlmMediaListManager.addPush(mediaItem);
|
||||||
|
}else {
|
||||||
|
zlmMediaListManager.removeMedia(app, stream);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,10 @@ import com.github.pagehelper.PageInfo;
|
|||||||
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.jdbc.datasource.DataSourceTransactionManager;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.TransactionDefinition;
|
||||||
|
import org.springframework.transaction.TransactionStatus;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@ -69,6 +72,12 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private IMediaServerService mediaServerService;
|
private IMediaServerService mediaServerService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
DataSourceTransactionManager dataSourceTransactionManager;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
TransactionDefinition transactionDefinition;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<StreamPushItem> handleJSON(String jsonData, MediaServerItem mediaServerItem) {
|
public List<StreamPushItem> handleJSON(String jsonData, MediaServerItem mediaServerItem) {
|
||||||
if (jsonData == null) {
|
if (jsonData == null) {
|
||||||
@ -463,4 +472,27 @@ public class StreamPushServiceImpl implements IStreamPushService {
|
|||||||
// 发送通知
|
// 发送通知
|
||||||
eventPublisher.catalogEventPublishForStream(null, onlinePushers, CatalogEvent.ON);
|
eventPublisher.catalogEventPublishForStream(null, onlinePushers, CatalogEvent.ON);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean add(StreamPushItem stream) {
|
||||||
|
stream.setUpdateTime(DateUtil.getNow());
|
||||||
|
stream.setCreateTime(DateUtil.getNow());
|
||||||
|
stream.setServerId(userSetting.getServerId());
|
||||||
|
|
||||||
|
// 放在事务内执行
|
||||||
|
boolean result = false;
|
||||||
|
TransactionStatus transactionStatus = dataSourceTransactionManager.getTransaction(transactionDefinition);
|
||||||
|
try {
|
||||||
|
int addStreamResult = streamPushMapper.add(stream);
|
||||||
|
if (!StringUtils.isEmpty(stream.getGbId())) {
|
||||||
|
gbStreamMapper.add(stream);
|
||||||
|
}
|
||||||
|
dataSourceTransactionManager.commit(transactionStatus);
|
||||||
|
result = true;
|
||||||
|
}catch (Exception e) {
|
||||||
|
logger.error("批量移除流与平台的关系时错误", e);
|
||||||
|
dataSourceTransactionManager.rollback(transactionStatus);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -299,18 +299,6 @@ public interface IVideoManagerStorage {
|
|||||||
*/
|
*/
|
||||||
List<DeviceChannel> queryGbStreamListInPlatform(String platformId);
|
List<DeviceChannel> queryGbStreamListInPlatform(String platformId);
|
||||||
|
|
||||||
/**
|
|
||||||
* 批量更新推流列表
|
|
||||||
* @param streamPushItems
|
|
||||||
*/
|
|
||||||
void updateMediaList(List<StreamPushItem> streamPushItems);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 更新单个推流
|
|
||||||
* @param streamPushItem
|
|
||||||
*/
|
|
||||||
void updateMedia(StreamPushItem streamPushItem);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 移除单个推流
|
* 移除单个推流
|
||||||
* @param app
|
* @param app
|
||||||
@ -318,21 +306,6 @@ public interface IVideoManagerStorage {
|
|||||||
*/
|
*/
|
||||||
int removeMedia(String app, String stream);
|
int removeMedia(String app, String stream);
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取但个推流
|
|
||||||
* @param app
|
|
||||||
* @param stream
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
StreamPushItem getMedia(String app, String stream);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 清空推流列表
|
|
||||||
*/
|
|
||||||
void clearMediaList();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 设置流离线
|
* 设置流离线
|
||||||
*/
|
*/
|
||||||
|
@ -140,6 +140,9 @@ public interface DeviceChannelMapper {
|
|||||||
@Update(value = {"UPDATE device_channel SET status=0 WHERE deviceId=#{deviceId} AND channelId=#{channelId}"})
|
@Update(value = {"UPDATE device_channel SET status=0 WHERE deviceId=#{deviceId} AND channelId=#{channelId}"})
|
||||||
void offline(String deviceId, String channelId);
|
void offline(String deviceId, String channelId);
|
||||||
|
|
||||||
|
@Update(value = {"UPDATE device_channel SET status=0 WHERE deviceId=#{deviceId}"})
|
||||||
|
void offlineByDeviceId(String deviceId);
|
||||||
|
|
||||||
@Update(value = {"UPDATE device_channel SET status=1 WHERE deviceId=#{deviceId} AND channelId=#{channelId}"})
|
@Update(value = {"UPDATE device_channel SET status=1 WHERE deviceId=#{deviceId} AND channelId=#{channelId}"})
|
||||||
void online(String deviceId, String channelId);
|
void online(String deviceId, String channelId);
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ public interface PlatformCatalogMapper {
|
|||||||
@Select("SELECT pc.* FROM platform_catalog pc WHERE pc.id = #{id}")
|
@Select("SELECT pc.* FROM platform_catalog pc WHERE pc.id = #{id}")
|
||||||
PlatformCatalog selectParentCatalog(String id);
|
PlatformCatalog selectParentCatalog(String id);
|
||||||
|
|
||||||
@Select("SELECT pc.id as channelId, pc.name, pc.civilCode, pc.businessGroupId,'0' as parental, pc.parentId " +
|
@Select("SELECT pc.id as channelId, pc.name, pc.civilCode, pc.businessGroupId,'1' as parental, pc.parentId " +
|
||||||
" FROM platform_catalog pc WHERE pc.platformId=#{platformId}")
|
" FROM platform_catalog pc WHERE pc.platformId=#{platformId}")
|
||||||
List<DeviceChannel> queryCatalogInPlatform(String platformId);
|
List<DeviceChannel> queryCatalogInPlatform(String platformId);
|
||||||
}
|
}
|
||||||
|
@ -15,9 +15,10 @@ import java.util.List;
|
|||||||
public interface StreamPushMapper {
|
public interface StreamPushMapper {
|
||||||
|
|
||||||
@Insert("INSERT INTO stream_push (app, stream, totalReaderCount, originType, originTypeStr, " +
|
@Insert("INSERT INTO stream_push (app, stream, totalReaderCount, originType, originTypeStr, " +
|
||||||
"pushTime, aliveSecond, mediaServerId, serverId, updateTime, createTime, pushIng) VALUES" +
|
"pushTime, aliveSecond, mediaServerId, serverId, updateTime, createTime, pushIng, self) VALUES" +
|
||||||
"('${app}', '${stream}', '${totalReaderCount}', '${originType}', '${originTypeStr}', " +
|
"('${app}', '${stream}', '${totalReaderCount}', '${originType}', '${originTypeStr}', " +
|
||||||
"'${pushTime}', '${aliveSecond}', '${mediaServerId}' , '${serverId}' , '${updateTime}' , '${createTime}', ${pushIng} )")
|
"'${pushTime}', '${aliveSecond}', '${mediaServerId}' , '${serverId}' , '${updateTime}' , '${createTime}', " +
|
||||||
|
"${pushIng}, ${self} )")
|
||||||
int add(StreamPushItem streamPushItem);
|
int add(StreamPushItem streamPushItem);
|
||||||
|
|
||||||
|
|
||||||
@ -31,6 +32,7 @@ public interface StreamPushMapper {
|
|||||||
"<if test=\"pushTime != null\">, pushTime='${pushTime}'</if>" +
|
"<if test=\"pushTime != null\">, pushTime='${pushTime}'</if>" +
|
||||||
"<if test=\"aliveSecond != null\">, aliveSecond='${aliveSecond}'</if>" +
|
"<if test=\"aliveSecond != null\">, aliveSecond='${aliveSecond}'</if>" +
|
||||||
"<if test=\"pushIng != null\">, pushIng=${pushIng}</if>" +
|
"<if test=\"pushIng != null\">, pushIng=${pushIng}</if>" +
|
||||||
|
"<if test=\"self != null\">, self=${self}</if>" +
|
||||||
"WHERE app=#{app} AND stream=#{stream}"+
|
"WHERE app=#{app} AND stream=#{stream}"+
|
||||||
" </script>"})
|
" </script>"})
|
||||||
int update(StreamPushItem streamPushItem);
|
int update(StreamPushItem streamPushItem);
|
||||||
@ -119,7 +121,7 @@ public interface StreamPushMapper {
|
|||||||
@Update("UPDATE stream_push " +
|
@Update("UPDATE stream_push " +
|
||||||
"SET pushIng=${pushIng} " +
|
"SET pushIng=${pushIng} " +
|
||||||
"WHERE app=#{app} AND stream=#{stream}")
|
"WHERE app=#{app} AND stream=#{stream}")
|
||||||
int updatePushStatus(String app, String stream, boolean status);
|
int updatePushStatus(String app, String stream, boolean pushIng);
|
||||||
|
|
||||||
@Update("UPDATE stream_push " +
|
@Update("UPDATE stream_push " +
|
||||||
"SET status=#{status} " +
|
"SET status=#{status} " +
|
||||||
|
@ -479,7 +479,7 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
|||||||
@Override
|
@Override
|
||||||
public void sendStreamChangeMsg(String type, JSONObject jsonObject) {
|
public void sendStreamChangeMsg(String type, JSONObject jsonObject) {
|
||||||
String key = VideoManagerConstants.WVP_MSG_STREAM_CHANGE_PREFIX + type;
|
String key = VideoManagerConstants.WVP_MSG_STREAM_CHANGE_PREFIX + type;
|
||||||
logger.debug("[redis 流变化事件] {}: {}", key, jsonObject.toString());
|
logger.info("[redis 流变化事件] {}: {}", key, jsonObject.toString());
|
||||||
redis.convertAndSend(key, jsonObject);
|
redis.convertAndSend(key, jsonObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -688,21 +688,21 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
|||||||
@Override
|
@Override
|
||||||
public void sendMobilePositionMsg(JSONObject jsonObject) {
|
public void sendMobilePositionMsg(JSONObject jsonObject) {
|
||||||
String key = VideoManagerConstants.VM_MSG_SUBSCRIBE_MOBILE_POSITION;
|
String key = VideoManagerConstants.VM_MSG_SUBSCRIBE_MOBILE_POSITION;
|
||||||
logger.info("[redis 移动位置订阅通知] {}: {}", key, jsonObject.toString());
|
logger.info("[redis发送通知]移动位置 {}: {}", key, jsonObject.toString());
|
||||||
redis.convertAndSend(key, jsonObject);
|
redis.convertAndSend(key, jsonObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendStreamPushRequestedMsg(MessageForPushChannel msg) {
|
public void sendStreamPushRequestedMsg(MessageForPushChannel msg) {
|
||||||
String key = VideoManagerConstants.VM_MSG_STREAM_PUSH_REQUESTED;
|
String key = VideoManagerConstants.VM_MSG_STREAM_PUSH_REQUESTED;
|
||||||
logger.info("[redis 推流被请求通知] {}: {}/{}", key, msg.getApp(), msg.getStream());
|
logger.info("[redis发送通知]推流被请求 {}: {}/{}", key, msg.getApp(), msg.getStream());
|
||||||
redis.convertAndSend(key, (JSONObject)JSON.toJSON(msg));
|
redis.convertAndSend(key, (JSONObject)JSON.toJSON(msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void sendAlarmMsg(AlarmChannelMessage msg) {
|
public void sendAlarmMsg(AlarmChannelMessage msg) {
|
||||||
String key = VideoManagerConstants.VM_MSG_SUBSCRIBE_ALARM;
|
String key = VideoManagerConstants.VM_MSG_SUBSCRIBE_ALARM;
|
||||||
logger.info("[redis 报警通知] {}: {}", key, JSON.toJSON(msg));
|
logger.info("[redis发送通知] 报警{}: {}", key, JSON.toJSON(msg));
|
||||||
redis.convertAndSend(key, (JSONObject)JSON.toJSON(msg));
|
redis.convertAndSend(key, (JSONObject)JSON.toJSON(msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -715,7 +715,7 @@ public class RedisCatchStorageImpl implements IRedisCatchStorage {
|
|||||||
@Override
|
@Override
|
||||||
public void sendStreamPushRequestedMsgForStatus() {
|
public void sendStreamPushRequestedMsgForStatus() {
|
||||||
String key = VideoManagerConstants.VM_MSG_GET_ALL_ONLINE_REQUESTED;
|
String key = VideoManagerConstants.VM_MSG_GET_ALL_ONLINE_REQUESTED;
|
||||||
logger.info("[redis 通知]获取所有推流设备的状态");
|
logger.info("[redis通知]获取所有推流设备的状态");
|
||||||
JSONObject jsonObject = new JSONObject();
|
JSONObject jsonObject = new JSONObject();
|
||||||
jsonObject.put(key, key);
|
jsonObject.put(key, key);
|
||||||
redis.convertAndSend(key, jsonObject);
|
redis.convertAndSend(key, jsonObject);
|
||||||
|
@ -635,47 +635,11 @@ public class VideoManagerStorageImpl implements IVideoManagerStorage {
|
|||||||
return streamProxyMapper.selectOne(app, stream);
|
return streamProxyMapper.selectOne(app, stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void updateMediaList(List<StreamPushItem> streamPushItems) {
|
|
||||||
if (streamPushItems == null || streamPushItems.size() == 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
logger.info("updateMediaList: " + streamPushItems.size());
|
|
||||||
streamPushMapper.addAll(streamPushItems);
|
|
||||||
// TODO 待优化
|
|
||||||
for (int i = 0; i < streamPushItems.size(); i++) {
|
|
||||||
int onlineResult = mediaOnline(streamPushItems.get(i).getApp(), streamPushItems.get(i).getStream());
|
|
||||||
if (onlineResult > 0) {
|
|
||||||
// 发送上线通知
|
|
||||||
eventPublisher.catalogEventPublishForStream(null, streamPushItems.get(i), CatalogEvent.ON);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void updateMedia(StreamPushItem streamPushItem) {
|
|
||||||
streamPushMapper.del(streamPushItem.getApp(), streamPushItem.getStream());
|
|
||||||
streamPushMapper.add(streamPushItem);
|
|
||||||
mediaOffline(streamPushItem.getApp(), streamPushItem.getStream());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int removeMedia(String app, String stream) {
|
public int removeMedia(String app, String stream) {
|
||||||
return streamPushMapper.del(app, stream);
|
return streamPushMapper.del(app, stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public StreamPushItem getMedia(String app, String stream) {
|
|
||||||
return streamPushMapper.selectOne(app, stream);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void clearMediaList() {
|
|
||||||
streamPushMapper.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int mediaOffline(String app, String stream) {
|
public int mediaOffline(String app, String stream) {
|
||||||
GbStream gbStream = gbStreamMapper.selectOne(app, stream);
|
GbStream gbStream = gbStreamMapper.selectOne(app, stream);
|
||||||
@ -683,7 +647,7 @@ public class VideoManagerStorageImpl implements IVideoManagerStorage {
|
|||||||
if ("proxy".equals(gbStream.getStreamType())) {
|
if ("proxy".equals(gbStream.getStreamType())) {
|
||||||
result = streamProxyMapper.updateStatus(app, stream, false);
|
result = streamProxyMapper.updateStatus(app, stream, false);
|
||||||
}else {
|
}else {
|
||||||
result = streamPushMapper.updateStatus(app, stream, false);
|
result = streamPushMapper.updatePushStatus(app, stream, false);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -695,7 +659,7 @@ public class VideoManagerStorageImpl implements IVideoManagerStorage {
|
|||||||
if ("proxy".equals(gbStream.getStreamType())) {
|
if ("proxy".equals(gbStream.getStreamType())) {
|
||||||
result = streamProxyMapper.updateStatus(app, stream, true);
|
result = streamProxyMapper.updateStatus(app, stream, true);
|
||||||
}else {
|
}else {
|
||||||
result = streamPushMapper.updateStatus(app, stream, true);
|
result = streamPushMapper.updatePushStatus(app, stream, true);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -741,6 +705,7 @@ public class VideoManagerStorageImpl implements IVideoManagerStorage {
|
|||||||
if (platformCatalog.getPlatformId().equals(platformCatalog.getParentId())) {
|
if (platformCatalog.getPlatformId().equals(platformCatalog.getParentId())) {
|
||||||
// 第一层节点
|
// 第一层节点
|
||||||
platformCatalog.setBusinessGroupId(platformCatalog.getId());
|
platformCatalog.setBusinessGroupId(platformCatalog.getId());
|
||||||
|
platformCatalog.setParentId(platform.getDeviceGBId());
|
||||||
}else {
|
}else {
|
||||||
// 获取顶层的
|
// 获取顶层的
|
||||||
PlatformCatalog topCatalog = getTopCatalog(platformCatalog.getParentId(), platformCatalog.getPlatformId());
|
PlatformCatalog topCatalog = getTopCatalog(platformCatalog.getParentId(), platformCatalog.getPlatformId());
|
||||||
@ -749,6 +714,10 @@ public class VideoManagerStorageImpl implements IVideoManagerStorage {
|
|||||||
}
|
}
|
||||||
if (platform.getTreeType().equals(TreeType.CIVIL_CODE)) {
|
if (platform.getTreeType().equals(TreeType.CIVIL_CODE)) {
|
||||||
platformCatalog.setCivilCode(platformCatalog.getId());
|
platformCatalog.setCivilCode(platformCatalog.getId());
|
||||||
|
if (platformCatalog.getPlatformId().equals(platformCatalog.getParentId())) {
|
||||||
|
// 第一层节点
|
||||||
|
platformCatalog.setParentId(platform.getDeviceGBId());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int result = catalogMapper.add(platformCatalog);
|
int result = catalogMapper.add(platformCatalog);
|
||||||
|
@ -12,6 +12,7 @@ public class WVPResult<T> {
|
|||||||
this.data = data;
|
this.data = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private int code;
|
private int code;
|
||||||
private String msg;
|
private String msg;
|
||||||
private T data;
|
private T data;
|
||||||
|
@ -8,6 +8,7 @@ import com.genersoft.iot.vmp.conf.UserSetting;
|
|||||||
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.PlatformCatalog;
|
import com.genersoft.iot.vmp.gb28181.bean.PlatformCatalog;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.SubscribeHolder;
|
import com.genersoft.iot.vmp.gb28181.bean.SubscribeHolder;
|
||||||
|
import com.genersoft.iot.vmp.gb28181.bean.TreeType;
|
||||||
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommanderForPlatform;
|
import com.genersoft.iot.vmp.gb28181.transmit.cmd.ISIPCommanderForPlatform;
|
||||||
import com.genersoft.iot.vmp.service.IPlatformChannelService;
|
import com.genersoft.iot.vmp.service.IPlatformChannelService;
|
||||||
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
|
||||||
@ -463,13 +464,20 @@ public class PlatformController {
|
|||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug("查询目录,platformId: {}, parentId: {}", platformId, parentId);
|
logger.debug("查询目录,platformId: {}, parentId: {}", platformId, parentId);
|
||||||
}
|
}
|
||||||
|
ParentPlatform platform = storager.queryParentPlatByServerGBId(platformId);
|
||||||
|
if (platform == null) {
|
||||||
|
return new ResponseEntity<>(new WVPResult<>(400, "平台未找到", null), HttpStatus.OK);
|
||||||
|
}
|
||||||
|
if (platformId.equals(parentId)) {
|
||||||
|
parentId = platform.getDeviceGBId();
|
||||||
|
}
|
||||||
List<PlatformCatalog> platformCatalogList = storager.getChildrenCatalogByPlatform(platformId, parentId);
|
List<PlatformCatalog> platformCatalogList = storager.getChildrenCatalogByPlatform(platformId, parentId);
|
||||||
// 查询下属的国标通道
|
// if (platform.getTreeType().equals(TreeType.BUSINESS_GROUP)) {
|
||||||
// List<PlatformCatalog> catalogsForChannel = storager.queryChannelInParentPlatformAndCatalog(platformId, parentId);
|
// platformCatalogList = storager.getChildrenCatalogByPlatform(platformId, parentId);
|
||||||
// 查询下属的直播流通道
|
// }else {
|
||||||
// List<PlatformCatalog> catalogsForStream = storager.queryStreamInParentPlatformAndCatalog(platformId, parentId);
|
//
|
||||||
// platformCatalogList.addAll(catalogsForChannel);
|
// }
|
||||||
// platformCatalogList.addAll(catalogsForStream);
|
|
||||||
WVPResult<List<PlatformCatalog>> result = new WVPResult<>();
|
WVPResult<List<PlatformCatalog>> result = new WVPResult<>();
|
||||||
result.setCode(0);
|
result.setCode(0);
|
||||||
result.setMsg("success");
|
result.setMsg("success");
|
||||||
|
@ -8,6 +8,8 @@ import com.genersoft.iot.vmp.conf.DynamicTask;
|
|||||||
import com.genersoft.iot.vmp.conf.SipConfig;
|
import com.genersoft.iot.vmp.conf.SipConfig;
|
||||||
import com.genersoft.iot.vmp.conf.UserSetting;
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.conf.VersionInfo;
|
import com.genersoft.iot.vmp.conf.VersionInfo;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
|
||||||
|
import com.genersoft.iot.vmp.media.zlm.dto.IHookSubscribe;
|
||||||
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
import com.genersoft.iot.vmp.media.zlm.dto.MediaServerItem;
|
||||||
import com.genersoft.iot.vmp.service.IMediaServerService;
|
import com.genersoft.iot.vmp.service.IMediaServerService;
|
||||||
import com.genersoft.iot.vmp.utils.SpringBeanFactory;
|
import com.genersoft.iot.vmp.utils.SpringBeanFactory;
|
||||||
@ -38,7 +40,7 @@ import java.util.Set;
|
|||||||
public class ServerController {
|
public class ServerController {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private ConfigurableApplicationContext context;
|
private ZLMHttpHookSubscribe zlmHttpHookSubscribe;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IMediaServerService mediaServerService;
|
private IMediaServerService mediaServerService;
|
||||||
@ -254,6 +256,18 @@ public class ServerController {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation("获取当前所有hook")
|
||||||
|
@GetMapping(value = "/hooks")
|
||||||
|
@ResponseBody
|
||||||
|
public WVPResult<List<IHookSubscribe>> getHooks(){
|
||||||
|
WVPResult<List<IHookSubscribe>> result = new WVPResult<>();
|
||||||
|
result.setCode(0);
|
||||||
|
result.setMsg("success");
|
||||||
|
List<IHookSubscribe> all = zlmHttpHookSubscribe.getAll();
|
||||||
|
result.setData(all);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
// @ApiOperation("当前进行中的动态任务")
|
// @ApiOperation("当前进行中的动态任务")
|
||||||
// @GetMapping(value = "/dynamicTask")
|
// @GetMapping(value = "/dynamicTask")
|
||||||
// @ResponseBody
|
// @ResponseBody
|
||||||
|
@ -4,6 +4,7 @@ import com.alibaba.excel.EasyExcel;
|
|||||||
import com.alibaba.excel.ExcelReader;
|
import com.alibaba.excel.ExcelReader;
|
||||||
import com.alibaba.excel.read.metadata.ReadSheet;
|
import com.alibaba.excel.read.metadata.ReadSheet;
|
||||||
import com.genersoft.iot.vmp.common.StreamInfo;
|
import com.genersoft.iot.vmp.common.StreamInfo;
|
||||||
|
import com.genersoft.iot.vmp.conf.UserSetting;
|
||||||
import com.genersoft.iot.vmp.conf.security.SecurityUtils;
|
import com.genersoft.iot.vmp.conf.security.SecurityUtils;
|
||||||
import com.genersoft.iot.vmp.conf.security.dto.LoginUser;
|
import com.genersoft.iot.vmp.conf.security.dto.LoginUser;
|
||||||
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
import com.genersoft.iot.vmp.gb28181.bean.GbStream;
|
||||||
@ -63,6 +64,9 @@ public class StreamPushController {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private IMediaService mediaService;
|
private IMediaService mediaService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private UserSetting userSetting;
|
||||||
|
|
||||||
@ApiOperation("推流列表查询")
|
@ApiOperation("推流列表查询")
|
||||||
@ApiImplicitParams({
|
@ApiImplicitParams({
|
||||||
@ApiImplicitParam(name="page", value = "当前页", required = true, dataTypeClass = Integer.class),
|
@ApiImplicitParam(name="page", value = "当前页", required = true, dataTypeClass = Integer.class),
|
||||||
@ -260,29 +264,63 @@ public class StreamPushController {
|
|||||||
})
|
})
|
||||||
@GetMapping(value = "/getPlayUrl")
|
@GetMapping(value = "/getPlayUrl")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public WVPResult<StreamInfo> getPlayUrl(HttpServletRequest request, @RequestParam String app,
|
public WVPResult<StreamInfo> getPlayUrl(@RequestParam String app,@RequestParam String stream,
|
||||||
@RequestParam String stream,
|
@RequestParam(required = false) String mediaServerId){
|
||||||
@RequestParam(required = false) String mediaServerId){
|
|
||||||
boolean authority = false;
|
boolean authority = false;
|
||||||
// 是否登陆用户, 登陆用户返回完整信息
|
// 是否登陆用户, 登陆用户返回完整信息
|
||||||
LoginUser userInfo = SecurityUtils.getUserInfo();
|
LoginUser userInfo = SecurityUtils.getUserInfo();
|
||||||
if (userInfo!= null) {
|
if (userInfo!= null) {
|
||||||
authority = true;
|
authority = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
StreamInfo streamInfo = mediaService.getStreamInfoByAppAndStreamWithCheck(app, stream, mediaServerId, authority);
|
|
||||||
|
|
||||||
WVPResult<StreamInfo> result = new WVPResult<>();
|
WVPResult<StreamInfo> result = new WVPResult<>();
|
||||||
|
StreamPushItem push = streamPushService.getPush(app, stream);
|
||||||
|
if (push != null && !push.isSelf()) {
|
||||||
|
result.setCode(-1);
|
||||||
|
result.setMsg("来自其他平台的推流信息");
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
StreamInfo streamInfo = mediaService.getStreamInfoByAppAndStreamWithCheck(app, stream, mediaServerId, authority);
|
||||||
if (streamInfo != null){
|
if (streamInfo != null){
|
||||||
result.setCode(0);
|
result.setCode(0);
|
||||||
result.setMsg("scccess");
|
result.setMsg("success");
|
||||||
result.setData(streamInfo);
|
result.setData(streamInfo);
|
||||||
}else {
|
}else {
|
||||||
result.setCode(-1);
|
result.setCode(-1);
|
||||||
result.setMsg("fail");
|
result.setMsg("获取播放地址失败");
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取推流播放地址
|
||||||
|
* @param stream 推流信息
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@ApiOperation("获取推流播放地址")
|
||||||
|
@ApiImplicitParams({
|
||||||
|
@ApiImplicitParam(name = "stream", value = "推流信息", dataTypeClass = StreamPushItem.class),
|
||||||
|
})
|
||||||
|
@PostMapping(value = "/add")
|
||||||
|
@ResponseBody
|
||||||
|
public WVPResult<StreamInfo> add(@RequestBody StreamPushItem stream){
|
||||||
|
if (StringUtils.isEmpty(stream.getGbId())) {
|
||||||
|
|
||||||
|
return new WVPResult<>(400, "国标ID不可为空", null);
|
||||||
|
}
|
||||||
|
if (StringUtils.isEmpty(stream.getApp()) && StringUtils.isEmpty(stream.getStream())) {
|
||||||
|
return new WVPResult<>(400, "app或stream不可为空", null);
|
||||||
|
}
|
||||||
|
stream.setStatus(false);
|
||||||
|
stream.setPushIng(false);
|
||||||
|
stream.setAliveSecond(0L);
|
||||||
|
stream.setTotalReaderCount("0");
|
||||||
|
boolean result = streamPushService.add(stream);
|
||||||
|
|
||||||
|
if (result) {
|
||||||
|
return new WVPResult<>(0, "success", null);
|
||||||
|
}else {
|
||||||
|
return new WVPResult<>(-1, "fail", null);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,8 @@
|
|||||||
<el-button icon="el-icon-delete" size="mini" style="margin-right: 1rem;"
|
<el-button icon="el-icon-delete" size="mini" style="margin-right: 1rem;"
|
||||||
:disabled="multipleSelection.length === 0" type="danger" @click="batchDel">批量移除
|
:disabled="multipleSelection.length === 0" type="danger" @click="batchDel">批量移除
|
||||||
</el-button>
|
</el-button>
|
||||||
|
<el-button icon="el-icon-plus" size="mini" style="margin-right: 1rem;" type="primary" @click="addStream">添加通道
|
||||||
|
</el-button>
|
||||||
<el-button icon="el-icon-refresh-right" circle size="mini" @click="refresh()"></el-button>
|
<el-button icon="el-icon-refresh-right" circle size="mini" @click="refresh()"></el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -67,14 +69,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="本平台推流" min-width="100">
|
<el-table-column label="本平台推流" min-width="100">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{scope.row.pushIng && !!!scope.row.serverId ? '是' : '否' }}
|
{{scope.row.pushIng && !!scope.row.self ? '是' : '否' }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column label="操作" min-width="360" fixed="right">
|
<el-table-column label="操作" min-width="360" fixed="right">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button size="medium" icon="el-icon-video-play"
|
<el-button size="medium" icon="el-icon-video-play"
|
||||||
v-if="(scope.row.status == false && scope.row.gbId == null) || scope.row.status"
|
v-if="scope.row.pushIng === true"
|
||||||
@click="playPush(scope.row)" type="text">播放
|
@click="playPush(scope.row)" type="text">播放
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-divider direction="vertical"></el-divider>
|
<el-divider direction="vertical"></el-divider>
|
||||||
@ -108,7 +110,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import streamProxyEdit from './dialog/StreamProxyEdit.vue'
|
import streamProxyEdit from './dialog/StreamProxyEdit.vue'
|
||||||
import devicePlayer from './dialog/devicePlayer.vue'
|
import devicePlayer from './dialog/devicePlayer.vue'
|
||||||
import addStreamTOGB from './dialog/addStreamTOGB.vue'
|
import addStreamTOGB from './dialog/pushStreamEdit.vue'
|
||||||
import uiHeader from '../layout/UiHeader.vue'
|
import uiHeader from '../layout/UiHeader.vue'
|
||||||
import importChannel from './dialog/importChannel.vue'
|
import importChannel from './dialog/importChannel.vue'
|
||||||
import MediaServer from './service/MediaServer'
|
import MediaServer from './service/MediaServer'
|
||||||
@ -200,10 +202,15 @@ export default {
|
|||||||
}
|
}
|
||||||
}).then(function (res) {
|
}).then(function (res) {
|
||||||
that.getListLoading = false;
|
that.getListLoading = false;
|
||||||
that.$refs.devicePlayer.openDialog("streamPlay", null, null, {
|
if (res.data.code === 0 ) {
|
||||||
streamInfo: res.data.data,
|
that.$refs.devicePlayer.openDialog("streamPlay", null, null, {
|
||||||
hasAudio: true
|
streamInfo: res.data.data,
|
||||||
});
|
hasAudio: true
|
||||||
|
});
|
||||||
|
}else {
|
||||||
|
that.$message.error(res.data.msg);
|
||||||
|
}
|
||||||
|
|
||||||
}).catch(function (error) {
|
}).catch(function (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
that.getListLoading = false;
|
that.getListLoading = false;
|
||||||
@ -252,6 +259,9 @@ export default {
|
|||||||
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
addStream: function (){
|
||||||
|
this.$refs.addStreamTOGB.openDialog(null, this.initData);
|
||||||
|
},
|
||||||
batchDel: function () {
|
batchDel: function () {
|
||||||
this.$confirm(`确定删除选中的${this.multipleSelection.length}个通道?`, '提示', {
|
this.$confirm(`确定删除选中的${this.multipleSelection.length}个通道?`, '提示', {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
|
@ -124,7 +124,6 @@
|
|||||||
import devicePlayer from './dialog/devicePlayer.vue'
|
import devicePlayer from './dialog/devicePlayer.vue'
|
||||||
import uiHeader from '../layout/UiHeader.vue'
|
import uiHeader from '../layout/UiHeader.vue'
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import DviceService from "./service/DeviceService";
|
|
||||||
import DeviceService from "./service/DeviceService";
|
import DeviceService from "./service/DeviceService";
|
||||||
import DeviceTree from "./common/DeviceTree";
|
import DeviceTree from "./common/DeviceTree";
|
||||||
|
|
||||||
@ -318,7 +317,7 @@ export default {
|
|||||||
changeSubchannel(itemData) {
|
changeSubchannel(itemData) {
|
||||||
this.beforeUrl = this.$router.currentRoute.path;
|
this.beforeUrl = this.$router.currentRoute.path;
|
||||||
|
|
||||||
var url = `/${this.$router.currentRoute.name}/${this.$router.currentRoute.params.deviceId}/${itemData.channelId}/${this.$router.currentRoute.params.count}/1`
|
var url = `/${this.$router.currentRoute.name}/${this.$router.currentRoute.params.deviceId}/${itemData.channelId}`
|
||||||
this.$router.push(url).then(() => {
|
this.$router.push(url).then(() => {
|
||||||
this.searchSrt = "";
|
this.searchSrt = "";
|
||||||
this.channelType = "";
|
this.channelType = "";
|
||||||
|
@ -63,34 +63,39 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (res.data.data != null) {
|
if (res.data.data != null) {
|
||||||
if (res.data.data.total == 0) {
|
if (res.data.syncIng) {
|
||||||
if (res.data.data.errorMsg !== null ){
|
if (res.data.data.total == 0) {
|
||||||
this.msg = res.data.data.errorMsg;
|
|
||||||
this.syncStatus = "exception"
|
|
||||||
}else {
|
|
||||||
this.msg = `等待同步中`;
|
|
||||||
this.timmer = setTimeout(this.getProgress, 300)
|
|
||||||
}
|
|
||||||
}else {
|
|
||||||
if (res.data.data.total == res.data.data.current) {
|
|
||||||
this.syncStatus = "success"
|
|
||||||
this.percentage = 100;
|
|
||||||
this.msg = '同步成功';
|
|
||||||
}else {
|
|
||||||
if (res.data.data.errorMsg !== null ){
|
if (res.data.data.errorMsg !== null ){
|
||||||
this.msg = res.data.data.errorMsg;
|
this.msg = res.data.data.errorMsg;
|
||||||
this.syncStatus = "exception"
|
this.syncStatus = "exception"
|
||||||
}else {
|
}else {
|
||||||
this.total = res.data.data.total;
|
this.msg = `等待同步中`;
|
||||||
this.current = res.data.data.current;
|
|
||||||
this.percentage = Math.floor(Number(res.data.data.current)/Number(res.data.data.total)* 10000)/100;
|
|
||||||
this.msg = `同步中...[${res.data.data.current}/${res.data.data.total}]`;
|
|
||||||
this.timmer = setTimeout(this.getProgress, 300)
|
this.timmer = setTimeout(this.getProgress, 300)
|
||||||
}
|
}
|
||||||
|
}else {
|
||||||
|
if (res.data.data.total == res.data.data.current) {
|
||||||
|
this.syncStatus = "success"
|
||||||
|
this.percentage = 100;
|
||||||
|
this.msg = '同步成功';
|
||||||
|
}else {
|
||||||
|
if (res.data.data.errorMsg !== null ){
|
||||||
|
this.msg = res.data.data.errorMsg;
|
||||||
|
this.syncStatus = "exception"
|
||||||
|
}else {
|
||||||
|
this.total = res.data.data.total;
|
||||||
|
this.current = res.data.data.current;
|
||||||
|
this.percentage = Math.floor(Number(res.data.data.current)/Number(res.data.data.total)* 10000)/100;
|
||||||
|
this.msg = `同步中...[${res.data.data.current}/${res.data.data.total}]`;
|
||||||
|
this.timmer = setTimeout(this.getProgress, 300)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}else {
|
||||||
|
this.syncStatus = "success"
|
||||||
|
this.percentage = 100;
|
||||||
|
this.msg = '同步成功';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}else {
|
}else {
|
||||||
if (this.syncFlag) {
|
if (this.syncFlag) {
|
||||||
this.syncStatus = "success"
|
this.syncStatus = "success"
|
||||||
|
@ -70,12 +70,11 @@ export default {
|
|||||||
console.log(catalogType)
|
console.log(catalogType)
|
||||||
// 216 为虚拟组织 215 为业务分组;目录第一级必须为业务分组, 业务分组下为虚拟组织,虚拟组织下可以有其他虚拟组织
|
// 216 为虚拟组织 215 为业务分组;目录第一级必须为业务分组, 业务分组下为虚拟组织,虚拟组织下可以有其他虚拟组织
|
||||||
if (this.level === 1 && catalogType !== "215") {
|
if (this.level === 1 && catalogType !== "215") {
|
||||||
return callback(new Error('业务分组模式下第一层目录的编号10到13位必须为215'));
|
return callback(new Error('业务分组模式下第一层目录的编号11到13位必须为215'));
|
||||||
}
|
}
|
||||||
if (this.level > 1 && catalogType !== "216") {
|
if (this.level > 1 && catalogType !== "216") {
|
||||||
return callback(new Error('业务分组模式下第一层以下目录的编号10到13位必须为216'));
|
return callback(new Error('业务分组模式下第一层以下目录的编号11到13位必须为216'));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
callback();
|
callback();
|
||||||
}
|
}
|
||||||
@ -94,7 +93,7 @@ export default {
|
|||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
name: [{ required: true, message: "请输入名称", trigger: "blur" }],
|
name: [{ required: true, message: "请输入名称", trigger: "blur" }],
|
||||||
id: [{ trigger: "blur",validator: checkId }]
|
id: [{ required: true, trigger: "blur",validator: checkId }]
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -15,10 +15,10 @@
|
|||||||
<el-input v-model="proxyParam.name" clearable></el-input>
|
<el-input v-model="proxyParam.name" clearable></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="流应用名" prop="app">
|
<el-form-item label="流应用名" prop="app">
|
||||||
<el-input v-model="proxyParam.app" clearable :disabled="true"></el-input>
|
<el-input v-model="proxyParam.app" clearable :disabled="edit"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="流ID" prop="stream">
|
<el-form-item label="流ID" prop="stream">
|
||||||
<el-input v-model="proxyParam.stream" clearable :disabled="true"></el-input>
|
<el-input v-model="proxyParam.stream" clearable :disabled="edit"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="国标编码" prop="gbId">
|
<el-form-item label="国标编码" prop="gbId">
|
||||||
<el-input v-model="proxyParam.gbId" placeholder="设置国标编码可推送到国标" clearable></el-input>
|
<el-input v-model="proxyParam.gbId" placeholder="设置国标编码可推送到国标" clearable></el-input>
|
||||||
@ -28,7 +28,6 @@
|
|||||||
<el-button type="primary" @click="onSubmit">保存</el-button>
|
<el-button type="primary" @click="onSubmit">保存</el-button>
|
||||||
<el-button @click="close">取消</el-button>
|
<el-button @click="close">取消</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
@ -38,7 +37,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "streamProxyEdit",
|
name: "pushStreamEdit",
|
||||||
props: {},
|
props: {},
|
||||||
computed: {},
|
computed: {},
|
||||||
created() {},
|
created() {},
|
||||||
@ -63,13 +62,13 @@ export default {
|
|||||||
listChangeCallback: null,
|
listChangeCallback: null,
|
||||||
showDialog: false,
|
showDialog: false,
|
||||||
isLoging: false,
|
isLoging: false,
|
||||||
|
edit: false,
|
||||||
proxyParam: {
|
proxyParam: {
|
||||||
name: null,
|
name: null,
|
||||||
app: null,
|
app: null,
|
||||||
stream: null,
|
stream: null,
|
||||||
gbId: null,
|
gbId: null,
|
||||||
},
|
},
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
name: [{ required: true, message: "请输入名称", trigger: "blur" }],
|
name: [{ required: true, message: "请输入名称", trigger: "blur" }],
|
||||||
app: [{ required: true, message: "请输入应用名", trigger: "blur" }],
|
app: [{ required: true, message: "请输入应用名", trigger: "blur" }],
|
||||||
@ -84,30 +83,53 @@ export default {
|
|||||||
this.listChangeCallback = callback;
|
this.listChangeCallback = callback;
|
||||||
if (proxyParam != null) {
|
if (proxyParam != null) {
|
||||||
this.proxyParam = proxyParam;
|
this.proxyParam = proxyParam;
|
||||||
}
|
this.edit = true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onSubmit: function () {
|
onSubmit: function () {
|
||||||
console.log("onSubmit");
|
console.log("onSubmit");
|
||||||
var that = this;
|
if (this.edit) {
|
||||||
that.$axios({
|
this.$axios({
|
||||||
method:"post",
|
method:"post",
|
||||||
url:`/api/push/save_to_gb`,
|
url:`/api/push/save_to_gb`,
|
||||||
data: that.proxyParam
|
data: this.proxyParam
|
||||||
}).then(function (res) {
|
}).then( (res) => {
|
||||||
if (res.data == "success") {
|
if (res.data == "success") {
|
||||||
that.$message({
|
this.$message({
|
||||||
showClose: true,
|
showClose: true,
|
||||||
message: "保存成功",
|
message: "保存成功",
|
||||||
type: "success",
|
type: "success",
|
||||||
});
|
});
|
||||||
that.showDialog = false;
|
this.showDialog = false;
|
||||||
if (that.listChangeCallback != null) {
|
if (this.listChangeCallback != null) {
|
||||||
that.listChangeCallback();
|
this.listChangeCallback();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).catch(function (error) {
|
}).catch((error)=> {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
});
|
});
|
||||||
|
}else {
|
||||||
|
this.$axios({
|
||||||
|
method:"post",
|
||||||
|
url:`/api/push/add`,
|
||||||
|
data: this.proxyParam
|
||||||
|
}).then( (res) => {
|
||||||
|
if (res.data.code === 0) {
|
||||||
|
this.$message({
|
||||||
|
showClose: true,
|
||||||
|
message: "保存成功",
|
||||||
|
type: "success",
|
||||||
|
});
|
||||||
|
this.showDialog = false;
|
||||||
|
if (this.listChangeCallback != null) {
|
||||||
|
this.listChangeCallback();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).catch((error)=> {
|
||||||
|
console.log(error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
close: function () {
|
close: function () {
|
||||||
console.log("关闭加入GB");
|
console.log("关闭加入GB");
|
||||||
@ -131,6 +153,9 @@ export default {
|
|||||||
if (this.platform.enable && this.platform.expires == "0") {
|
if (this.platform.enable && this.platform.expires == "0") {
|
||||||
this.platform.expires = "300";
|
this.platform.expires = "300";
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
handleNodeClick: function (node){
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user