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
e951efc6
Commit
e951efc6
authored
Dec 29, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化hls直播性能
parent
c3302eec
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
7 行增加
和
6 行删除
+7
-6
src/Http/HttpFileManager.cpp
+7
-6
没有找到文件。
src/Http/HttpFileManager.cpp
查看文件 @
e951efc6
...
...
@@ -354,7 +354,8 @@ static string pathCat(const string &a, const string &b){
*/
static
void
accessFile
(
TcpSession
&
sender
,
const
Parser
&
parser
,
const
MediaInfo
&
mediaInfo
,
const
string
&
strFile
,
const
HttpFileManager
::
invoker
&
cb
)
{
bool
is_hls
=
end_of
(
strFile
,
kHlsSuffix
);
if
(
!
is_hls
&&
!
File
::
is_file
(
strFile
.
data
()))
{
bool
file_exist
=
File
::
is_file
(
strFile
.
data
());
if
(
!
is_hls
&&
!
file_exist
)
{
//文件不存在且不是hls,那么直接返回404
sendNotFound
(
cb
);
return
;
...
...
@@ -368,7 +369,7 @@ static void accessFile(TcpSession &sender, const Parser &parser, const MediaInfo
weak_ptr
<
TcpSession
>
weakSession
=
sender
.
shared_from_this
();
//判断是否有权限访问该文件
canAccessPath
(
sender
,
parser
,
mediaInfo
,
false
,
[
cb
,
strFile
,
parser
,
is_hls
,
mediaInfo
,
weakSession
](
const
string
&
errMsg
,
const
HttpServerCookie
::
Ptr
&
cookie
)
{
canAccessPath
(
sender
,
parser
,
mediaInfo
,
false
,
[
cb
,
strFile
,
parser
,
is_hls
,
mediaInfo
,
weakSession
,
file_exist
](
const
string
&
errMsg
,
const
HttpServerCookie
::
Ptr
&
cookie
)
{
if
(
!
errMsg
.
empty
())
{
//文件鉴权失败
StrCaseMap
headerOut
;
...
...
@@ -397,11 +398,11 @@ static void accessFile(TcpSession &sender, const Parser &parser, const MediaInfo
invoker
.
responseFile
(
parser
.
getValues
(),
httpHeader
,
strFile
);
};
if
(
!
is_hls
)
{
//不是hls
,直接回复
if
(
file_exist
||
!
is_hls
)
{
//不是hls
或者文件存在,直接回复文件或404
response_file
(
cookie
,
cb
,
strFile
,
parser
);
}
else
{
//
文件不存在,那么说明是hls
,我们等待其生成并延后回复
}
else
{
//
hls文件不存在
,我们等待其生成并延后回复
auto
strongSession
=
weakSession
.
lock
();
if
(
!
strongSession
){
//http客户端已经断开,不需要回复
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论