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
9c45fca7
Unverified
Commit
9c45fca7
authored
Feb 17, 2022
by
xiongguangjie
Committed by
GitHub
Feb 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
根据配置禁用mmap缓存 (#1429)
parent
af08b58d
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
22 行增加
和
3 行删除
+22
-3
conf/config.ini
+4
-0
src/Common/config.cpp
+3
-0
src/Common/config.h
+2
-0
src/Http/HttpFileManager.cpp
+13
-3
没有找到文件。
conf/config.ini
查看文件 @
9c45fca7
...
...
@@ -193,6 +193,10 @@ dirMenu=1
#访问 http://127.0.0.1/app_b/file_b 对应的文件路径为 /path/to/b/file_b
#访问其他http路径,对应的文件路径还是在rootPath内
virtualPath
=
#禁止后缀的文件缓存,使用“,”隔开
#例如赋值为 .mp4,.flv
#那么访问后缀为.mp4与.flv 的文件不缓存
forbidCacheSuffix
=
[multicast]
#rtp组播截止组播ip地址
...
...
src/Common/config.cpp
查看文件 @
9c45fca7
...
...
@@ -127,6 +127,8 @@ const string kNotFound = HTTP_FIELD"notFound";
//是否显示文件夹菜单
const
string
kDirMenu
=
HTTP_FIELD
"dirMenu"
;
const
string
kForbidCacheSuffix
=
HTTP_FIELD
"forbidCacheSuffix"
;
onceToken
token
([](){
mINI
::
Instance
()[
kSendBufSize
]
=
64
*
1024
;
mINI
::
Instance
()[
kMaxReqSize
]
=
4
*
10240
;
...
...
@@ -151,6 +153,7 @@ onceToken token([](){
"</body>"
"</html>"
<<
endl
;
mINI
::
Instance
()[
kForbidCacheSuffix
]
=
""
;
},
nullptr
);
}
//namespace Http
...
...
src/Common/config.h
查看文件 @
9c45fca7
...
...
@@ -214,6 +214,8 @@ extern const std::string kVirtualPath;
extern
const
std
::
string
kNotFound
;
//是否显示文件夹菜单
extern
const
std
::
string
kDirMenu
;
//禁止缓存文件的后缀
extern
const
std
::
string
kForbidCacheSuffix
;
}
//namespace Http
////////////SHELL配置///////////
...
...
src/Http/HttpFileManager.cpp
查看文件 @
9c45fca7
...
...
@@ -357,6 +357,7 @@ static string pathCat(const string &a, const string &b){
static
void
accessFile
(
TcpSession
&
sender
,
const
Parser
&
parser
,
const
MediaInfo
&
media_info
,
const
string
&
file_path
,
const
HttpFileManager
::
invoker
&
cb
)
{
bool
is_hls
=
end_with
(
file_path
,
kHlsSuffix
);
bool
file_exist
=
File
::
is_file
(
file_path
.
data
());
bool
is_forbid_cache
=
false
;
if
(
!
is_hls
&&
!
file_exist
)
{
//文件不存在且不是hls,那么直接返回404
sendNotFound
(
cb
);
...
...
@@ -369,9 +370,18 @@ static void accessFile(TcpSession &sender, const Parser &parser, const MediaInfo
replace
(
const_cast
<
string
&>
(
media_info
.
_streamid
),
kHlsSuffix
,
""
);
}
GET_CONFIG_FUNC
(
vector
<
string
>
,
forbidCacheSuffix
,
Http
::
kForbidCacheSuffix
,
[](
const
string
&
str
)
{
return
split
(
str
,
","
);
});
for
(
auto
&
suffix
:
forbidCacheSuffix
)
{
if
(
suffix
!=
""
&&
end_with
(
file_path
,
suffix
)){
is_forbid_cache
=
true
;
break
;
}
}
weak_ptr
<
TcpSession
>
weakSession
=
sender
.
shared_from_this
();
//判断是否有权限访问该文件
canAccessPath
(
sender
,
parser
,
media_info
,
false
,
[
cb
,
file_path
,
parser
,
is_hls
,
media_info
,
weakSession
,
file_exist
](
const
string
&
err_msg
,
const
HttpServerCookie
::
Ptr
&
cookie
)
{
canAccessPath
(
sender
,
parser
,
media_info
,
false
,
[
cb
,
file_path
,
parser
,
is_hls
,
is_forbid_cache
,
media_info
,
weakSession
,
file_exist
](
const
string
&
err_msg
,
const
HttpServerCookie
::
Ptr
&
cookie
)
{
auto
strongSession
=
weakSession
.
lock
();
if
(
!
strongSession
)
{
//http客户端已经断开,不需要回复
...
...
@@ -387,7 +397,7 @@ static void accessFile(TcpSession &sender, const Parser &parser, const MediaInfo
return
;
}
auto
response_file
=
[
file_exist
,
is_hls
](
const
HttpServerCookie
::
Ptr
&
cookie
,
const
HttpFileManager
::
invoker
&
cb
,
auto
response_file
=
[
file_exist
,
is_hls
,
is_forbid_cache
](
const
HttpServerCookie
::
Ptr
&
cookie
,
const
HttpFileManager
::
invoker
&
cb
,
const
string
&
file_path
,
const
Parser
&
parser
,
const
string
&
file_content
=
""
)
{
StrCaseMap
httpHeader
;
if
(
cookie
)
{
...
...
@@ -402,7 +412,7 @@ static void accessFile(TcpSession &sender, const Parser &parser, const MediaInfo
}
cb
(
code
,
HttpFileManager
::
getContentType
(
file_path
.
data
()),
headerOut
,
body
);
};
invoker
.
responseFile
(
parser
.
getHeader
(),
httpHeader
,
file_content
.
empty
()
?
file_path
:
file_content
,
!
is_hls
,
file_content
.
empty
());
invoker
.
responseFile
(
parser
.
getHeader
(),
httpHeader
,
file_content
.
empty
()
?
file_path
:
file_content
,
!
is_hls
&&
!
is_forbid_cache
,
file_content
.
empty
());
};
if
(
!
is_hls
||
!
cookie
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论