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
a3089f9a
Commit
a3089f9a
authored
Jun 08, 2020
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善进程管理
parent
d0fc37db
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
27 行增加
和
38 行删除
+27
-38
server/Process.cpp
+26
-38
server/Process.h
+1
-0
没有找到文件。
server/Process.cpp
查看文件 @
a3089f9a
...
...
@@ -61,11 +61,11 @@ void Process::run(const string &cmd, const string &log_file_tmp) {
LPTSTR
lpDir
=
const_cast
<
char
*>
(
cmd
.
data
());
if
(
CreateProcess
(
NULL
,
lpDir
,
NULL
,
NULL
,
TRUE
,
0
,
NULL
,
NULL
,
&
si
,
&
pi
)){
//下面两行关闭句柄,解除本进程和新进程的关系,不然有可能 不小心调用TerminateProcess函数关掉子进程
CloseHandle
(
pi
.
hProcess
);
CloseHandle
(
pi
.
hThread
);
_pid
=
pi
.
dwProcessId
;
_handle
=
pi
.
hProcess
;
fprintf
(
fp
,
"
\r\n\r\n
#### pid=%d,cmd=%s #####
\r\n\r\n
"
,
_pid
,
cmd
.
data
());
InfoL
<<
"start child proces "
<<
_pid
;
InfoL
<<
"start child proces "
<<
_pid
<<
", log file:"
<<
log_file
;
}
else
{
WarnL
<<
"start child proces fail: "
<<
get_uv_errmsg
();
}
...
...
@@ -125,6 +125,8 @@ void Process::run(const string &cmd, const string &log_file_tmp) {
// EOF: NULL
charpv_params
[
params
.
size
()]
=
NULL
;
InfoL
<<
"start child proces "
<<
_pid
<<
", log file:"
<<
log_file
;
// TODO: execv or execvp
auto
ret
=
execv
(
params
[
0
].
c_str
(),
charpv_params
);
if
(
ret
<
0
)
{
...
...
@@ -132,7 +134,6 @@ void Process::run(const string &cmd, const string &log_file_tmp) {
}
exit
(
ret
);
}
InfoL
<<
"start child proces "
<<
_pid
;
#endif // _WIN32
}
...
...
@@ -143,37 +144,28 @@ void Process::run(const string &cmd, const string &log_file_tmp) {
* @param block 是否阻塞等待
* @return 进程是否还在运行
*/
static
bool
s_wait
(
pid_t
pid
,
int
*
exit_code_ptr
,
bool
block
)
{
static
bool
s_wait
(
pid_t
pid
,
void
*
handle
,
int
*
exit_code_ptr
,
bool
block
)
{
if
(
pid
<=
0
)
{
return
false
;
}
#ifdef _WIN32
HANDLE
hProcess
=
NULL
;
hProcess
=
OpenProcess
(
PROCESS_ALL_ACCESS
,
FALSE
,
pid
);
//打开目标进程
if
(
!
hProcess
)
{
//子进程不在线
return
false
;
}
DWORD
code
=
0
;
if
(
block
)
{
//一直等待
code
=
WaitForSingleObject
(
h
Process
,
INFINITE
);
code
=
WaitForSingleObject
(
h
andle
,
INFINITE
);
}
else
{
code
=
WaitForSingleObject
(
h
Process
,
0
);
code
=
WaitForSingleObject
(
h
andle
,
0
);
}
if
(
code
==
WAIT_FAILED
||
code
==
WAIT_OBJECT_0
){
//子进程已经退出了,获取子进程退出代码
DWORD
exitCode
=
0
;
if
(
exit_code_ptr
&&
GetExitCodeProcess
(
h
Process
,
&
exitCode
)){
if
(
exit_code_ptr
&&
GetExitCodeProcess
(
h
andle
,
&
exitCode
)){
*
exit_code_ptr
=
exitCode
;
}
CloseHandle
(
hProcess
);
return
false
;
}
CloseHandle
(
hProcess
);
if
(
code
==
WAIT_TIMEOUT
){
//子进程还在线
return
true
;
...
...
@@ -232,30 +224,20 @@ bool signalCtrl(DWORD dwProcessId, DWORD dwCtrlEvent){
}
#endif // _WIN32
static
void
s_kill
(
pid_t
pid
,
int
max_delay
,
bool
force
)
{
static
void
s_kill
(
pid_t
pid
,
void
*
handle
,
int
max_delay
,
bool
force
)
{
if
(
pid
<=
0
)
{
//pid无效
return
;
}
#ifdef _WIN32
HANDLE
hProcess
=
NULL
;
hProcess
=
OpenProcess
(
PROCESS_TERMINATE
,
FALSE
,
pid
);
//打开目标进程
if
(
!
hProcess
)
{
//子进程可能已经推出了
return
;
}
//windows下目前没有比较好的手段往子进程发送SIGTERM或信号
//所以杀死子进程的方式全部强制为立即关闭
force
=
true
;
if
(
force
){
//强制关闭
DWORD
ret
=
TerminateProcess
(
hProcess
,
0
);
//结束目标进程
CloseHandle
(
hProcess
);
if
(
ret
==
0
)
{
WarnL
<<
"TerminateProcess "
<<
pid
<<
" failed:"
<<
get_uv_errmsg
();
}
//强制关闭子进程
TerminateProcess
(
handle
,
0
);
}
else
{
//非强制关闭,发
生
Ctr+C信号
//非强制关闭,发
送
Ctr+C信号
signalCtrl
(
pid
,
CTRL_C_EVENT
);
}
#else
...
...
@@ -266,32 +248,38 @@ static void s_kill(pid_t pid,int max_delay,bool force){
}
#endif // _WIN32
if
(
force
)
{
if
(
force
)
{
//发送SIGKILL信号后,阻塞等待退出
s_wait
(
pid
,
NULL
,
true
);
s_wait
(
pid
,
handle
,
nullptr
,
true
);
DebugL
<<
"force kill "
<<
pid
<<
" success!"
;
return
;
}
//发送SIGTERM信号后,2秒后检查子进程是否已经退出
WorkThreadPool
::
Instance
().
getPoller
()
->
doDelayTask
(
max_delay
,
[
pid
]()
{
if
(
!
s_wait
(
pid
,
nullptr
,
false
))
{
WorkThreadPool
::
Instance
().
getPoller
()
->
doDelayTask
(
max_delay
,
[
pid
,
handle
]()
{
if
(
!
s_wait
(
pid
,
handle
,
nullptr
,
false
))
{
//进程已经退出了
return
0
;
}
//进程还在运行
WarnL
<<
"process still working,force kill it:"
<<
pid
;
s_kill
(
pid
,
0
,
true
);
s_kill
(
pid
,
handle
,
0
,
true
);
return
0
;
});
}
void
Process
::
kill
(
int
max_delay
,
bool
force
)
{
void
Process
::
kill
(
int
max_delay
,
bool
force
)
{
if
(
_pid
<=
0
)
{
return
;
}
s_kill
(
_pid
,
max_delay
,
force
);
s_kill
(
_pid
,
_handle
,
max_delay
,
force
);
_pid
=
-
1
;
#ifdef _WIN32
if
(
_handle
){
CloseHandle
(
_handle
);
_handle
=
nullptr
;
}
#endif
}
Process
::~
Process
()
{
...
...
@@ -301,7 +289,7 @@ Process::~Process() {
Process
::
Process
()
{}
bool
Process
::
wait
(
bool
block
)
{
return
s_wait
(
_pid
,
&
_exit_code
,
block
);
return
s_wait
(
_pid
,
_handle
,
&
_exit_code
,
block
);
}
int
Process
::
exit_code
()
{
...
...
server/Process.h
查看文件 @
a3089f9a
...
...
@@ -31,6 +31,7 @@ public:
int
exit_code
();
private
:
pid_t
_pid
=
-
1
;
void
*
_handle
=
nullptr
;
int
_exit_code
=
0
;
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论