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
fe095a41
Commit
fe095a41
authored
Jun 01, 2020
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化日志重定向代码
parent
97426015
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
13 行增加
和
18 行删除
+13
-18
server/Process.cpp
+13
-18
没有找到文件。
server/Process.cpp
查看文件 @
fe095a41
...
...
@@ -10,7 +10,6 @@
#include <limits.h>
#include <sys/stat.h>
#ifndef _WIN32
#include <sys/resource.h>
#include <unistd.h>
...
...
@@ -56,30 +55,27 @@ void Process::run(const string &cmd, const string &log_file_tmp) {
}
if
(
_pid
==
0
)
{
//子进程关闭core文件生成
struct
rlimit
rlim
=
{
0
,
0
};
struct
rlimit
rlim
=
{
0
,
0
};
setrlimit
(
RLIMIT_CORE
,
&
rlim
);
//在启动子进程时,暂时禁用SIGINT、SIGTERM信号
// ignore the SIGINT and SIGTERM
signal
(
SIGINT
,
SIG_IGN
);
signal
(
SIGTERM
,
SIG_IGN
);
string
log_file
;
if
(
log_file_tmp
.
empty
())
{
//未指定子进程日志文件时,重定向至/dev/null
log_file
=
"/dev/null"
;
}
else
{
}
else
{
log_file
=
StrPrinter
<<
log_file_tmp
<<
"."
<<
getpid
();
}
int
log_fd
=
-
1
;
int
flags
=
O_CREAT
|
O_WRONLY
|
O_APPEND
;
mode_t
mode
=
S_IRWXO
|
S_IRWXG
|
S_IRWXU
;
// S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH;
File
::
create_path
(
log_file
.
data
(),
mode
);
if
((
log_fd
=
::
open
(
log_file
.
c_str
(),
flags
,
mode
))
<
0
)
{
//重定向shell日志至文件
auto
fp
=
File
::
create_file
(
log_file
.
data
(),
"ab"
);
if
(
!
fp
)
{
fprintf
(
stderr
,
"open log file %s failed:%d(%s)
\r\n
"
,
log_file
.
data
(),
errno
,
strerror
(
errno
));
}
else
{
}
else
{
auto
log_fd
=
fileno
(
fp
);
// dup to stdout and stderr.
if
(
dup2
(
log_fd
,
STDOUT_FILENO
)
<
0
)
{
fprintf
(
stderr
,
"dup2 stdout file %s failed:%d(%s)
\r\n
"
,
log_file
.
data
(),
errno
,
strerror
(
errno
));
...
...
@@ -87,13 +83,12 @@ void Process::run(const string &cmd, const string &log_file_tmp) {
if
(
dup2
(
log_fd
,
STDERR_FILENO
)
<
0
)
{
fprintf
(
stderr
,
"dup2 stderr file %s failed:%d(%s)
\r\n
"
,
log_file
.
data
(),
errno
,
strerror
(
errno
));
}
//
close log fd
::
close
(
log_fd
);
//
关闭日志文件
::
fclose
(
fp
);
}
fprintf
(
stderr
,
"
\r\n\r\n
#### pid=%d,cmd=%s #####
\r\n\r\n
"
,
getpid
(),
cmd
.
data
());
// close other fds
// TODO: do in right way.
//关闭父进程继承的fd
for
(
int
i
=
3
;
i
<
1024
;
i
++
)
{
::
close
(
i
);
}
...
...
@@ -101,9 +96,9 @@ void Process::run(const string &cmd, const string &log_file_tmp) {
auto
params
=
split
(
cmd
,
" "
);
// memory leak in child process, it's ok.
char
**
charpv_params
=
new
char
*
[
params
.
size
()
+
1
];
for
(
int
i
=
0
;
i
<
(
int
)
params
.
size
();
i
++
)
{
for
(
int
i
=
0
;
i
<
(
int
)
params
.
size
();
i
++
)
{
std
::
string
&
p
=
params
[
i
];
charpv_params
[
i
]
=
(
char
*
)
p
.
data
();
charpv_params
[
i
]
=
(
char
*
)
p
.
data
();
}
// EOF: NULL
charpv_params
[
params
.
size
()]
=
NULL
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论