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
aa0ae0c8
Commit
aa0ae0c8
authored
Jan 31, 2018
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化http服务器性能
parent
49375fd9
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
18 行增加
和
14 行删除
+18
-14
src/Http/HttpSession.cpp
+18
-14
没有找到文件。
src/Http/HttpSession.cpp
查看文件 @
aa0ae0c8
...
@@ -343,40 +343,44 @@ inline HttpSession::HttpCode HttpSession::Handle_Req_GET() {
...
@@ -343,40 +343,44 @@ inline HttpSession::HttpCode HttpSession::Handle_Req_GET() {
fclose
(
pFp
);
fclose
(
pFp
);
});
});
static
uint32_t
sendBufSize
=
mINI
::
Instance
()[
Config
::
Http
::
kSendBufSize
].
as
<
uint32_t
>
();
static
uint32_t
sendBufSize
=
mINI
::
Instance
()[
Config
::
Http
::
kSendBufSize
].
as
<
uint32_t
>
();
std
::
shared_ptr
<
char
>
pacSendBuf
(
new
char
[
sendBufSize
],[](
char
*
ptr
){
delete
[]
ptr
;
});
weak_ptr
<
HttpSession
>
weakSelf
=
dynamic_pointer_cast
<
HttpSession
>
(
shared_from_this
());
weak_ptr
<
HttpSession
>
weakSelf
=
dynamic_pointer_cast
<
HttpSession
>
(
shared_from_this
());
auto
onFlush
=
[
pFilePtr
,
bClose
,
weakSelf
,
piLeft
,
pacSendBuf
]()
{
auto
onFlush
=
[
pFilePtr
,
bClose
,
weakSelf
,
piLeft
]()
{
TimeTicker
();
TimeTicker
();
auto
strongSelf
=
weakSelf
.
lock
();
auto
strongSelf
=
weakSelf
.
lock
();
while
(
*
piLeft
&&
strongSelf
){
while
(
*
piLeft
&&
strongSelf
){
strongSelf
->
m_ticker
.
resetTime
();
//更新超时定时器
strongSelf
->
m_ticker
.
resetTime
();
//从循环池获取一个内存片
auto
sendBuf
=
strongSelf
->
sock
->
obtainBuffer
();
sendBuf
->
setCapacity
(
sendBufSize
);
//本次需要读取文件字节数
int64_t
iReq
=
MIN
(
sendBufSize
,
*
piLeft
);
int64_t
iReq
=
MIN
(
sendBufSize
,
*
piLeft
);
int64_t
iRead
=
fread
(
pacSendBuf
.
get
(),
1
,
iReq
,
pFilePtr
.
get
());
//读文件
int64_t
iRead
=
fread
(
sendBuf
->
data
(),
1
,
iReq
,
pFilePtr
.
get
());
//文件剩余字节数
*
piLeft
-=
iRead
;
*
piLeft
-=
iRead
;
//InfoL << "Send file :" << iReq << " " << *piLeft;
if
(
iRead
<
iReq
||
!*
piLeft
)
{
if
(
iRead
<
iReq
||
!*
piLeft
)
{
//send completed!
//文件读完
//FatalL << "send completed!";
if
(
iRead
>
0
)
{
if
(
iRead
>
0
)
{
strongSelf
->
sock
->
send
(
pacSendBuf
.
get
(),
iRead
,
SOCKET_DEFAULE_FLAGS
|
FLAG_MORE
);
sendBuf
->
setSize
(
iRead
);
strongSelf
->
sock
->
send
(
sendBuf
,
SOCKET_DEFAULE_FLAGS
|
FLAG_MORE
);
}
}
if
(
bClose
)
{
if
(
bClose
)
{
strongSelf
->
shutdown
();
strongSelf
->
shutdown
();
}
}
return
false
;
return
false
;
}
}
//文件还未读完
int
iSent
=
strongSelf
->
sock
->
send
(
pacSendBuf
.
get
(),
iRead
,
SOCKET_DEFAULE_FLAGS
|
FLAG_MORE
);
sendBuf
->
setSize
(
iRead
);
int
iSent
=
strongSelf
->
sock
->
send
(
sendBuf
,
SOCKET_DEFAULE_FLAGS
|
FLAG_MORE
);
if
(
iSent
==
-
1
)
{
if
(
iSent
==
-
1
)
{
//send error
//send error
//FatalL << "send error";
return
false
;
return
false
;
}
}
if
(
iSent
<
iRead
)
{
if
(
iSent
<
iRead
)
{
//send wait
//send wait
//FatalL << "send wait";
return
true
;
return
true
;
}
}
//send success
//send success
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论