Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
f384f5e0
Commit
f384f5e0
authored
Mar 04, 2020
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决死锁问题
parent
6cc56a75
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
44 行增加
和
37 行删除
+44
-37
src/Common/MediaSource.cpp
+44
-36
src/Common/MediaSource.h
+0
-1
没有找到文件。
src/Common/MediaSource.cpp
查看文件 @
f384f5e0
...
...
@@ -253,22 +253,25 @@ MediaSource::Ptr MediaSource::find(const string &schema, const string &vhost_tmp
vhost
=
DEFAULT_VHOST
;
}
lock_guard
<
recursive_mutex
>
lock
(
g_mtxMediaSrc
);
MediaSource
::
Ptr
ret
;
//查找某一媒体源,找到后返回
searchMedia
(
g_mapMediaSrc
,
schema
,
vhost
,
app
,
id
,
[
&
](
SchemaVhostAppStreamMap
::
iterator
&
it0
,
VhostAppStreamMap
::
iterator
&
it1
,
AppStreamMap
::
iterator
&
it2
,
StreamMap
::
iterator
&
it3
)
{
ret
=
it3
->
second
.
lock
();
if
(
!
ret
)
{
//该对象已经销毁
it2
->
second
.
erase
(
it3
);
eraseIfEmpty
(
g_mapMediaSrc
,
it0
,
it1
,
it2
);
return
false
;
}
return
true
;
});
{
lock_guard
<
recursive_mutex
>
lock
(
g_mtxMediaSrc
);
//查找某一媒体源,找到后返回
searchMedia
(
g_mapMediaSrc
,
schema
,
vhost
,
app
,
id
,
[
&
](
SchemaVhostAppStreamMap
::
iterator
&
it0
,
VhostAppStreamMap
::
iterator
&
it1
,
AppStreamMap
::
iterator
&
it2
,
StreamMap
::
iterator
&
it3
)
{
ret
=
it3
->
second
.
lock
();
if
(
!
ret
)
{
//该对象已经销毁
it2
->
second
.
erase
(
it3
);
eraseIfEmpty
(
g_mapMediaSrc
,
it0
,
it1
,
it2
);
return
false
;
}
return
true
;
});
}
if
(
!
ret
&&
bMake
){
//未查找媒体源,则创建一个
ret
=
MP4Reader
::
onMakeMediaSource
(
schema
,
vhost
,
app
,
id
);
...
...
@@ -288,29 +291,34 @@ void MediaSource::regist() {
InfoL
<<
_strSchema
<<
" "
<<
_strVhost
<<
" "
<<
_strApp
<<
" "
<<
_strId
;
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastMediaChanged
,
true
,
*
this
);
}
//反注册该源
bool
MediaSource
::
unregist
()
{
//反注册该源
lock_guard
<
recursive_mutex
>
lock
(
g_mtxMediaSrc
);
return
searchMedia
(
g_mapMediaSrc
,
_strSchema
,
_strVhost
,
_strApp
,
_strId
,[
&
](
SchemaVhostAppStreamMap
::
iterator
&
it0
,
VhostAppStreamMap
::
iterator
&
it1
,
AppStreamMap
::
iterator
&
it2
,
StreamMap
::
iterator
&
it3
)
{
auto
strongMedia
=
it3
->
second
.
lock
();
if
(
strongMedia
&&
this
!=
strongMedia
.
get
())
{
//不是自己,不允许反注册
return
false
;
}
it2
->
second
.
erase
(
it3
);
eraseIfEmpty
(
g_mapMediaSrc
,
it0
,
it1
,
it2
);
unregisted
();
return
true
;
});
}
void
MediaSource
::
unregisted
(){
InfoL
<<
""
<<
_strSchema
<<
" "
<<
_strVhost
<<
" "
<<
_strApp
<<
" "
<<
_strId
;
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastMediaChanged
,
false
,
*
this
);
}
bool
ret
;
{
lock_guard
<
recursive_mutex
>
lock
(
g_mtxMediaSrc
);
ret
=
searchMedia
(
g_mapMediaSrc
,
_strSchema
,
_strVhost
,
_strApp
,
_strId
,
[
&
](
SchemaVhostAppStreamMap
::
iterator
&
it0
,
VhostAppStreamMap
::
iterator
&
it1
,
AppStreamMap
::
iterator
&
it2
,
StreamMap
::
iterator
&
it3
)
{
auto
strongMedia
=
it3
->
second
.
lock
();
if
(
strongMedia
&&
this
!=
strongMedia
.
get
())
{
//不是自己,不允许反注册
return
false
;
}
it2
->
second
.
erase
(
it3
);
eraseIfEmpty
(
g_mapMediaSrc
,
it0
,
it1
,
it2
);
return
true
;
});
}
if
(
ret
){
InfoL
<<
""
<<
_strSchema
<<
" "
<<
_strVhost
<<
" "
<<
_strApp
<<
" "
<<
_strId
;
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastMediaChanged
,
false
,
*
this
);
}
return
ret
;
}
/////////////////////////////////////MediaInfo//////////////////////////////////////
...
...
src/Common/MediaSource.h
查看文件 @
f384f5e0
...
...
@@ -151,7 +151,6 @@ public:
protected
:
void
regist
()
;
bool
unregist
()
;
void
unregisted
();
private
:
string
_strSchema
;
string
_strVhost
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论