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
f9f487bf
Commit
f9f487bf
authored
May 20, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除过多的线程切换
parent
7539042d
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
72 行增加
和
100 行删除
+72
-100
server/WebApi.cpp
+42
-46
server/WebHook.cpp
+30
-54
没有找到文件。
server/WebApi.cpp
查看文件 @
f9f487bf
...
...
@@ -128,53 +128,49 @@ static inline void addHttpListener(){
}
//该api已被消费
consumed
=
true
;
AsyncHttpApi
api
=
it
->
second
;
//异步执行该api,防止阻塞NoticeCenter
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
api
,
parser
,
invoker
]()
{
//执行API
Json
::
Value
val
;
val
[
"code"
]
=
API
::
Success
;
HttpSession
::
KeyValue
&
headerIn
=
parser
.
getValues
();
HttpSession
::
KeyValue
headerOut
;
auto
allArgs
=
getAllArgs
(
parser
);
headerOut
[
"Content-Type"
]
=
"application/json; charset=utf-8"
;
if
(
api_debug
){
auto
newInvoker
=
[
invoker
,
parser
,
allArgs
](
const
string
&
codeOut
,
const
HttpSession
::
KeyValue
&
headerOut
,
const
string
&
contentOut
){
stringstream
ss
;
for
(
auto
&
pr
:
allArgs
){
ss
<<
pr
.
first
<<
" : "
<<
pr
.
second
<<
"
\r\n
"
;
}
DebugL
<<
"
\r\n
# request:
\r\n
"
<<
parser
.
Method
()
<<
" "
<<
parser
.
FullUrl
()
<<
"
\r\n
"
<<
"# content:
\r\n
"
<<
parser
.
Content
()
<<
"
\r\n
"
<<
"# args:
\r\n
"
<<
ss
.
str
()
<<
"# response:
\r\n
"
<<
contentOut
<<
"
\r\n
"
;
invoker
(
codeOut
,
headerOut
,
contentOut
);
};
((
HttpSession
::
HttpResponseInvoker
&
)
invoker
)
=
newInvoker
;
}
//执行API
Json
::
Value
val
;
val
[
"code"
]
=
API
::
Success
;
HttpSession
::
KeyValue
headerOut
;
auto
allArgs
=
getAllArgs
(
parser
);
HttpSession
::
KeyValue
&
headerIn
=
parser
.
getValues
();
headerOut
[
"Content-Type"
]
=
"application/json; charset=utf-8"
;
if
(
api_debug
){
auto
newInvoker
=
[
invoker
,
parser
,
allArgs
](
const
string
&
codeOut
,
const
HttpSession
::
KeyValue
&
headerOut
,
const
string
&
contentOut
){
stringstream
ss
;
for
(
auto
&
pr
:
allArgs
){
ss
<<
pr
.
first
<<
" : "
<<
pr
.
second
<<
"
\r\n
"
;
}
DebugL
<<
"
\r\n
# request:
\r\n
"
<<
parser
.
Method
()
<<
" "
<<
parser
.
FullUrl
()
<<
"
\r\n
"
<<
"# content:
\r\n
"
<<
parser
.
Content
()
<<
"
\r\n
"
<<
"# args:
\r\n
"
<<
ss
.
str
()
<<
"# response:
\r\n
"
<<
contentOut
<<
"
\r\n
"
;
invoker
(
codeOut
,
headerOut
,
contentOut
);
};
((
HttpSession
::
HttpResponseInvoker
&
)
invoker
)
=
newInvoker
;
}
try
{
api
(
headerIn
,
headerOut
,
allArgs
,
val
,
invoker
);
}
catch
(
ApiRetException
&
ex
){
val
[
"code"
]
=
ex
.
code
();
val
[
"msg"
]
=
ex
.
what
();
invoker
(
"200 OK"
,
headerOut
,
val
.
toStyledString
());
}
catch
(
SqlException
&
ex
){
val
[
"code"
]
=
API
::
SqlFailed
;
val
[
"msg"
]
=
StrPrinter
<<
"操作数据库失败:"
<<
ex
.
what
()
<<
":"
<<
ex
.
getSql
();
WarnL
<<
ex
.
what
()
<<
":"
<<
ex
.
getSql
();
invoker
(
"200 OK"
,
headerOut
,
val
.
toStyledString
());
}
catch
(
std
::
exception
&
ex
)
{
val
[
"code"
]
=
API
::
OtherFailed
;
val
[
"msg"
]
=
ex
.
what
();
invoker
(
"200 OK"
,
headerOut
,
val
.
toStyledString
());
}
});
try
{
it
->
second
(
headerIn
,
headerOut
,
allArgs
,
val
,
invoker
);
}
catch
(
ApiRetException
&
ex
){
val
[
"code"
]
=
ex
.
code
();
val
[
"msg"
]
=
ex
.
what
();
invoker
(
"200 OK"
,
headerOut
,
val
.
toStyledString
());
}
catch
(
SqlException
&
ex
){
val
[
"code"
]
=
API
::
SqlFailed
;
val
[
"msg"
]
=
StrPrinter
<<
"操作数据库失败:"
<<
ex
.
what
()
<<
":"
<<
ex
.
getSql
();
WarnL
<<
ex
.
what
()
<<
":"
<<
ex
.
getSql
();
invoker
(
"200 OK"
,
headerOut
,
val
.
toStyledString
());
}
catch
(
std
::
exception
&
ex
)
{
val
[
"code"
]
=
API
::
OtherFailed
;
val
[
"msg"
]
=
ex
.
what
();
invoker
(
"200 OK"
,
headerOut
,
val
.
toStyledString
());
}
});
}
...
...
server/WebHook.cpp
查看文件 @
f9f487bf
...
...
@@ -168,11 +168,9 @@ void installWebHook(){
body
[
"ip"
]
=
sender
.
get_peer_ip
();
body
[
"port"
]
=
sender
.
get_peer_port
();
body
[
"id"
]
=
sender
.
getIdentifier
();
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
,
invoker
](){
//执行hook
do_http_hook
(
hook_publish
,
body
,[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
invoker
(
err
);
});
//执行hook
do_http_hook
(
hook_publish
,
body
,[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
invoker
(
err
);
});
});
...
...
@@ -185,12 +183,9 @@ void installWebHook(){
body
[
"ip"
]
=
sender
.
get_peer_ip
();
body
[
"port"
]
=
sender
.
get_peer_port
();
body
[
"id"
]
=
sender
.
getIdentifier
();
//异步执行该hook api,防止阻塞NoticeCenter
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
,
invoker
](){
//执行hook
do_http_hook
(
hook_play
,
body
,[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
invoker
(
err
);
});
//执行hook
do_http_hook
(
hook_play
,
body
,[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
invoker
(
err
);
});
});
...
...
@@ -204,12 +199,8 @@ void installWebHook(){
body
[
"id"
]
=
sender
.
getIdentifier
();
body
[
"totalBytes"
]
=
(
Json
::
UInt64
)
totalBytes
;
body
[
"duration"
]
=
(
Json
::
UInt64
)
totalDuration
;
//流量统计事件
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
,
totalBytes
](){
//执行hook
do_http_hook
(
hook_flowreport
,
body
,
nullptr
);
});
//执行hook
do_http_hook
(
hook_flowreport
,
body
,
nullptr
);
});
...
...
@@ -226,17 +217,14 @@ void installWebHook(){
body
[
"ip"
]
=
sender
.
get_peer_ip
();
body
[
"port"
]
=
sender
.
get_peer_port
();
body
[
"id"
]
=
sender
.
getIdentifier
();
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
,
invoker
](){
//执行hook
do_http_hook
(
hook_rtsp_realm
,
body
,
[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
if
(
!
err
.
empty
()){
//如果接口访问失败,那么该rtsp流认证失败
invoker
(
unAuthedRealm
);
return
;
}
invoker
(
obj
[
"realm"
].
asString
());
});
//执行hook
do_http_hook
(
hook_rtsp_realm
,
body
,
[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
if
(
!
err
.
empty
()){
//如果接口访问失败,那么该rtsp流认证失败
invoker
(
unAuthedRealm
);
return
;
}
invoker
(
obj
[
"realm"
].
asString
());
});
});
...
...
@@ -254,17 +242,14 @@ void installWebHook(){
body
[
"user_name"
]
=
user_name
;
body
[
"must_no_encrypt"
]
=
must_no_encrypt
;
body
[
"realm"
]
=
realm
;
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
,
invoker
](){
//执行hook
do_http_hook
(
hook_rtsp_auth
,
body
,
[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
if
(
!
err
.
empty
()){
//认证失败
invoker
(
false
,
makeRandStr
(
12
));
return
;
}
invoker
(
obj
[
"encrypted"
].
asBool
(),
obj
[
"passwd"
].
asString
());
});
//执行hook
do_http_hook
(
hook_rtsp_auth
,
body
,
[
invoker
](
const
Value
&
obj
,
const
string
&
err
){
if
(
!
err
.
empty
()){
//认证失败
invoker
(
false
,
makeRandStr
(
12
));
return
;
}
invoker
(
obj
[
"encrypted"
].
asBool
(),
obj
[
"passwd"
].
asString
());
});
});
...
...
@@ -280,11 +265,8 @@ void installWebHook(){
body
[
"vhost"
]
=
vhost
;
body
[
"app"
]
=
app
;
body
[
"stream"
]
=
stream
;
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
](){
//执行hook
do_http_hook
(
hook_stream_chaned
,
body
,
nullptr
);
});
//执行hook
do_http_hook
(
hook_stream_chaned
,
body
,
nullptr
);
});
//监听播放失败(未找到特定的流)事件
...
...
@@ -296,11 +278,8 @@ void installWebHook(){
body
[
"ip"
]
=
sender
.
get_peer_ip
();
body
[
"port"
]
=
sender
.
get_peer_port
();
body
[
"id"
]
=
sender
.
getIdentifier
();
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
](){
//执行hook
do_http_hook
(
hook_stream_not_found
,
body
,
nullptr
);
});
//执行hook
do_http_hook
(
hook_stream_not_found
,
body
,
nullptr
);
});
#ifdef ENABLE_MP4V2
...
...
@@ -320,11 +299,8 @@ void installWebHook(){
body
[
"app"
]
=
info
.
strAppName
;
body
[
"stream"
]
=
info
.
strStreamId
;
body
[
"vhost"
]
=
info
.
strVhost
;
EventPollerPool
::
Instance
().
getExecutor
()
->
async
([
body
](){
//执行hook
do_http_hook
(
hook_record_mp4
,
body
,
nullptr
);
});
//执行hook
do_http_hook
(
hook_record_mp4
,
body
,
nullptr
);
});
#endif //ENABLE_MP4V2
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论