Merge pull request #1453 from BradyXs/master

fix: 系统启动时,停止已启动国标推流抛出异常被系统捕获,启动服务失败。
pull/1455/head
648540858 2024-05-16 09:08:07 +08:00 committed by GitHub
commit b3eba418a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 89 additions and 50 deletions

View File

@ -104,7 +104,7 @@ public class SipRunner implements CommandLineRunner {
redisCatchStorage.deleteSendRTPServer(sendRtpItem.getPlatformId(),sendRtpItem.getChannelId(), sendRtpItem.getCallId(),sendRtpItem.getStream()); redisCatchStorage.deleteSendRTPServer(sendRtpItem.getPlatformId(),sendRtpItem.getChannelId(), sendRtpItem.getCallId(),sendRtpItem.getStream());
if (mediaServerItem != null) { if (mediaServerItem != null) {
ssrcFactory.releaseSsrc(sendRtpItem.getMediaServerId(), sendRtpItem.getSsrc()); ssrcFactory.releaseSsrc(sendRtpItem.getMediaServerId(), sendRtpItem.getSsrc());
boolean stopResult = mediaServerService.stopSendRtp(mediaServerItem, sendRtpItem.getApp(), sendRtpItem.getStream(), sendRtpItem.getSsrc()); boolean stopResult = mediaServerService.initStopSendRtp(mediaServerItem, sendRtpItem.getApp(), sendRtpItem.getStream(), sendRtpItem.getSsrc());
if (stopResult) { if (stopResult) {
ParentPlatform platform = platformService.queryPlatformByServerGBId(sendRtpItem.getPlatformId()); ParentPlatform platform = platformService.queryPlatformByServerGBId(sendRtpItem.getPlatformId());
if (platform != null) { if (platform != null) {

View File

@ -29,6 +29,8 @@ public interface IMediaNodeServerService {
boolean stopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc); boolean stopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc);
boolean initStopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc);
boolean deleteRecordDirectory(MediaServer mediaServer, String app, String stream, String date, String fileName); boolean deleteRecordDirectory(MediaServer mediaServer, String app, String stream, String date, String fileName);
List<StreamInfo> getMediaList(MediaServer mediaServer, String app, String stream, String callId); List<StreamInfo> getMediaList(MediaServer mediaServer, String app, String stream, String callId);

View File

@ -76,6 +76,8 @@ public interface IMediaServerService {
boolean stopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc); boolean stopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc);
boolean initStopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc);
boolean deleteRecordDirectory(MediaServer mediaServerItem, String app, String stream, String date, String fileName); boolean deleteRecordDirectory(MediaServer mediaServerItem, String app, String stream, String date, String fileName);
List<StreamInfo> getMediaList(MediaServer mediaInfo, String app, String stream, String callId); List<StreamInfo> getMediaList(MediaServer mediaInfo, String app, String stream, String callId);

View File

@ -595,6 +595,16 @@ public class MediaServerServiceImpl implements IMediaServerService {
return mediaNodeServerService.stopSendRtp(mediaInfo, app, stream, ssrc); return mediaNodeServerService.stopSendRtp(mediaInfo, app, stream, ssrc);
} }
@Override
public boolean initStopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc) {
IMediaNodeServerService mediaNodeServerService = nodeServerServiceMap.get(mediaInfo.getType());
if (mediaNodeServerService == null) {
logger.info("[stopSendRtp] 失败, mediaServer的类型 {},未找到对应的实现类", mediaInfo.getType());
return false;
}
return mediaNodeServerService.initStopSendRtp(mediaInfo, app, stream, ssrc);
}
@Override @Override
public boolean deleteRecordDirectory(MediaServer mediaServer, String app, String stream, String date, String fileName) { public boolean deleteRecordDirectory(MediaServer mediaServer, String app, String stream, String date, String fileName) {
IMediaNodeServerService mediaNodeServerService = nodeServerServiceMap.get(mediaServer.getType()); IMediaNodeServerService mediaNodeServerService = nodeServerServiceMap.get(mediaServer.getType());

View File

@ -144,6 +144,23 @@ public class ZLMMediaNodeServerService implements IMediaNodeServerService {
} }
@Override
public boolean initStopSendRtp(MediaServer mediaInfo, String app, String stream, String ssrc) {
Map<String, Object> param = new HashMap<>();
param.put("vhost", "__defaultVhost__");
param.put("app", app);
param.put("stream", stream);
if (!ObjectUtils.isEmpty(ssrc)) {
param.put("ssrc", ssrc);
}
JSONObject jsonObject = zlmresTfulUtils.stopSendRtp(mediaInfo, param);
if (jsonObject == null || jsonObject.getInteger("code") != 0 ) {
logger.error("停止发流失败: {}, 参数:{}", jsonObject.getString("msg"), JSON.toJSONString(param));
return false;
}
return true;
}
@Override @Override
public boolean deleteRecordDirectory(MediaServer mediaServer, String app, String stream, String date, String fileName) { public boolean deleteRecordDirectory(MediaServer mediaServer, String app, String stream, String date, String fileName) {
logger.info("[zlm-deleteRecordDirectory] 删除磁盘文件, server: {} {}:{}->{}/{}", mediaServer.getId(), app, stream, date, fileName); logger.info("[zlm-deleteRecordDirectory] 删除磁盘文件, server: {} {}:{}->{}/{}", mediaServer.getId(), app, stream, date, fileName);

View File

@ -34,7 +34,7 @@
<el-form-item label="本地IP" prop="deviceIp"> <el-form-item label="本地IP" prop="deviceIp">
<el-select v-model="platform.deviceIp" placeholder="请选择与上级相通的网卡" style="width: 100%"> <el-select v-model="platform.deviceIp" placeholder="请选择与上级相通的网卡" style="width: 100%">
<el-option <el-option
v-for="ip in deviceIp" v-for="ip in deviceIps"
:key="ip" :key="ip"
:label="ip" :label="ip"
:value="ip"> :value="ip">
@ -58,7 +58,7 @@
<el-input v-model="platform.username"></el-input> <el-input v-model="platform.username"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="SIP认证密码" prop="password"> <el-form-item label="SIP认证密码" prop="password">
<el-input v-model="platform.password" ></el-input> <el-input v-model="platform.password"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="注册周期(秒)" prop="expires"> <el-form-item label="注册周期(秒)" prop="expires">
<el-input v-model="platform.expires"></el-input> <el-input v-model="platform.expires"></el-input>
@ -100,16 +100,17 @@
</el-form-item> </el-form-item>
<el-form-item label="其他选项"> <el-form-item label="其他选项">
<el-checkbox label="启用" v-model="platform.enable" @change="checkExpires"></el-checkbox> <el-checkbox label="启用" v-model="platform.enable" @change="checkExpires"></el-checkbox>
<!-- <el-checkbox label="云台控制" v-model="platform.ptz"></el-checkbox>--> <!-- <el-checkbox label="云台控制" v-model="platform.ptz"></el-checkbox>-->
<el-checkbox label="拉起推流" v-model="platform.startOfflinePush"></el-checkbox> <el-checkbox label="拉起推流" v-model="platform.startOfflinePush"></el-checkbox>
<el-checkbox label="RTCP保活" v-model="platform.rtcp" @change="rtcpCheckBoxChange"></el-checkbox> <el-checkbox label="RTCP保活" v-model="platform.rtcp" @change="rtcpCheckBoxChange"></el-checkbox>
<el-checkbox label="消息通道" v-model="platform.asMessageChannel" ></el-checkbox> <el-checkbox label="消息通道" v-model="platform.asMessageChannel"></el-checkbox>
<el-checkbox label="推送通道" v-model="platform.autoPushChannel" ></el-checkbox> <el-checkbox label="推送通道" v-model="platform.autoPushChannel"></el-checkbox>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" @click="onSubmit">{{ <el-button type="primary" @click="onSubmit">{{
onSubmit_text onSubmit_text
}}</el-button> }}
</el-button>
<el-button @click="close"></el-button> <el-button @click="close"></el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -172,52 +173,56 @@ export default {
administrativeDivision: "", administrativeDivision: "",
sendStreamIp: null, sendStreamIp: null,
}, },
deviceIp: [], // IP deviceIps: [], // IP
rules: { rules: {
name: [{ required: true, message: "请输入平台名称", trigger: "blur" }], name: [{required: true, message: "请输入平台名称", trigger: "blur"}],
serverGBId: [ serverGBId: [
{ required: true, message: "请输入SIP服务国标编码", trigger: "blur" }, {required: true, message: "请输入SIP服务国标编码", trigger: "blur"},
], ],
serverGBDomain: [ serverGBDomain: [
{ required: true, message: "请输入SIP服务国标域", trigger: "blur" }, {required: true, message: "请输入SIP服务国标域", trigger: "blur"},
], ],
serverIP: [{ required: true, message: "请输入SIP服务IP", trigger: "blur" }], serverIP: [{required: true, message: "请输入SIP服务IP", trigger: "blur"}],
serverPort: [{ required: true, message: "请输入SIP服务端口", trigger: "blur" }], serverPort: [{required: true, message: "请输入SIP服务端口", trigger: "blur"}],
deviceGBId: [{ validator: deviceGBIdRules, trigger: "blur" }], deviceGBId: [{validator: deviceGBIdRules, trigger: "blur"}],
username: [{ required: false, message: "请输入SIP认证用户名", trigger: "blur" }], username: [{required: false, message: "请输入SIP认证用户名", trigger: "blur"}],
password: [{ required: false, message: "请输入SIP认证密码", trigger: "blur" }], password: [{required: false, message: "请输入SIP认证密码", trigger: "blur"}],
expires: [{ required: true, message: "请输入注册周期", trigger: "blur" }], expires: [{required: true, message: "请输入注册周期", trigger: "blur"}],
keepTimeout: [{ required: true, message: "请输入心跳周期", trigger: "blur" }], keepTimeout: [{required: true, message: "请输入心跳周期", trigger: "blur"}],
transport: [{ required: true, message: "请选择信令传输", trigger: "blur" }], transport: [{required: true, message: "请选择信令传输", trigger: "blur"}],
characterSet: [{ required: true, message: "请选择编码字符集", trigger: "blur" }], characterSet: [{required: true, message: "请选择编码字符集", trigger: "blur"}],
deviceIp: [{required: true, message: "请选择本地IP", trigger: "blur"}],
}, },
}; };
}, },
methods: { methods: {
openDialog: function (platform, callback) { openDialog: function (platform, callback) {
var that = this; var that = this;
if (platform == null) { this.$axios({
this.onSubmit_text = "立即创建"; method: 'get',
this.saveUrl = "/api/platform/add"; url: `/api/platform/server_config`
this.$axios({ }).then(function (res) {
method: 'get', if (platform == null) {
url:`/api/platform/server_config`
}).then(function (res) {
console.log(res);
if (res.data.code === 0) { if (res.data.code === 0) {
that.platform.deviceGBId = res.data.data.username; that.platform.deviceGBId = res.data.data.username;
that.deviceIp = res.data.data.deviceIp.split(','); that.deviceIps = res.data.data.deviceIp.split(',');
that.platform.deviceIp = that.deviceIps[0];
that.platform.devicePort = res.data.data.devicePort; that.platform.devicePort = res.data.data.devicePort;
that.platform.username = res.data.data.username; that.platform.username = res.data.data.username;
that.platform.password = res.data.data.password; that.platform.password = res.data.data.password;
that.platform.sendStreamIp = res.data.data.sendStreamIp; that.platform.sendStreamIp = res.data.data.sendStreamIp;
that.platform.administrativeDivision = res.data.data.username.substr(0, 6); that.platform.administrativeDivision = res.data.data.username.substr(0, 6);
} }
} else {
}).catch(function (error) { that.deviceIps = res.data.data.deviceIp.split(',');
console.log(error); }
}); }).catch(function (error) {
}else { console.log(error);
});
if (platform == null) {
this.onSubmit_text = "立即创建";
this.saveUrl = "/api/platform/add";
} else {
this.platform.id = platform.id; this.platform.id = platform.id;
this.platform.enable = platform.enable; this.platform.enable = platform.enable;
this.platform.ptz = platform.ptz; this.platform.ptz = platform.ptz;
@ -230,7 +235,7 @@ export default {
this.platform.serverIP = platform.serverIP; this.platform.serverIP = platform.serverIP;
this.platform.serverPort = platform.serverPort; this.platform.serverPort = platform.serverPort;
this.platform.deviceGBId = platform.deviceGBId; this.platform.deviceGBId = platform.deviceGBId;
this.deviceIp = platform.deviceIp.split(','); this.platform.deviceIp = platform.deviceIp;
this.platform.devicePort = platform.devicePort; this.platform.devicePort = platform.devicePort;
this.platform.username = platform.username; this.platform.username = platform.username;
this.platform.password = platform.password; this.platform.password = platform.password;
@ -256,7 +261,7 @@ export default {
}, },
deviceGBIdChange: function () { deviceGBIdChange: function () {
this.platform.username = this.platform.deviceGBId ; this.platform.username = this.platform.deviceGBId;
if (this.platform.administrativeDivision == null) { if (this.platform.administrativeDivision == null) {
this.platform.administrativeDivision = this.platform.deviceGBId.substr(0, 6); this.platform.administrativeDivision = this.platform.deviceGBId.substr(0, 6);
} }
@ -264,12 +269,12 @@ export default {
onSubmit: function () { onSubmit: function () {
this.saveForm() this.saveForm()
}, },
saveForm: function (){ saveForm: function () {
this.$axios({ this.$axios({
method: 'post', method: 'post',
url: this.saveUrl, url: this.saveUrl,
data: this.platform data: this.platform
}).then((res) =>{ }).then((res) => {
if (res.data.code === 0) { if (res.data.code === 0) {
this.$message({ this.$message({
showClose: true, showClose: true,
@ -280,14 +285,14 @@ export default {
if (this.listChangeCallback != null) { if (this.listChangeCallback != null) {
this.listChangeCallback(); this.listChangeCallback();
} }
}else { } else {
this.$message({ this.$message({
showClose: true, showClose: true,
message: res.data.msg, message: res.data.msg,
type: "error", type: "error",
}); });
} }
}).catch((error)=> { }).catch((error) => {
console.log(error); console.log(error);
}); });
}, },
@ -325,24 +330,25 @@ export default {
var result = false; var result = false;
var that = this; var that = this;
await that.$axios({ await that.$axios({
method: 'get', method: 'get',
url:`/api/platform/exit/${deviceGbId}`}) url: `/api/platform/exit/${deviceGbId}`
})
.then(function (res) { .then(function (res) {
if (res.data.code === 0) { if (res.data.code === 0) {
result = res.data.data; result = res.data.data;
} }
}) })
.catch(function (error) { .catch(function (error) {
console.log(error); console.log(error);
}); });
return result; return result;
}, },
checkExpires: function() { checkExpires: function () {
if (this.platform.enable && this.platform.expires === "0") { if (this.platform.enable && this.platform.expires === "0") {
this.platform.expires = "3600"; this.platform.expires = "3600";
} }
}, },
rtcpCheckBoxChange: function (result){ rtcpCheckBoxChange: function (result) {
if (result) { if (result) {
this.$message({ this.$message({
showClose: true, showClose: true,
@ -363,10 +369,12 @@ input::-webkit-inner-spin-button {
appearance: none; appearance: none;
margin: 0; margin: 0;
} }
/* 火狐 */ /* 火狐 */
input{ input {
-moz-appearance:textfield; -moz-appearance: textfield;
} }
.control-wrapper-not-used { .control-wrapper-not-used {
position: relative; position: relative;
width: 6.25rem; width: 6.25rem;