Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
3ac1708a
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
3ac1708a
编写于
3月 31, 2022
作者:
wafwerar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-13756]<fix>: file close memory error.
上级
5d750f26
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
32 addition
and
39 deletion
+32
-39
source/util/src/tlog.c
source/util/src/tlog.c
+32
-39
未找到文件。
source/util/src/tlog.c
浏览文件 @
3ac1708a
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
#define LOG_BUF_MUTEX(x) ((x)->buffMutex)
#define LOG_BUF_MUTEX(x) ((x)->buffMutex)
typedef
struct
{
typedef
struct
{
char
*
buffer
;
char
buffer
[
LOG_DEFAULT_BUF_SIZE
]
;
int32_t
buffStart
;
int32_t
buffStart
;
int32_t
buffEnd
;
int32_t
buffEnd
;
int32_t
buffSize
;
int32_t
buffSize
;
...
@@ -58,7 +58,7 @@ typedef struct {
...
@@ -58,7 +58,7 @@ typedef struct {
int32_t
openInProgress
;
int32_t
openInProgress
;
pid_t
pid
;
pid_t
pid
;
char
logName
[
LOG_FILE_NAME_LEN
];
char
logName
[
LOG_FILE_NAME_LEN
];
SLogBuff
*
logHandle
;
SLogBuff
logHandle
;
TdThreadMutex
logMutex
;
TdThreadMutex
logMutex
;
}
SLogObj
;
}
SLogObj
;
...
@@ -101,15 +101,16 @@ int64_t dbgWSize = 0;
...
@@ -101,15 +101,16 @@ int64_t dbgWSize = 0;
static
void
*
taosAsyncOutputLog
(
void
*
param
);
static
void
*
taosAsyncOutputLog
(
void
*
param
);
static
int32_t
taosPushLogBuffer
(
SLogBuff
*
tLogBuff
,
const
char
*
msg
,
int32_t
msgLen
);
static
int32_t
taosPushLogBuffer
(
SLogBuff
*
tLogBuff
,
const
char
*
msg
,
int32_t
msgLen
);
static
SLogBuff
*
taosLogBuffNew
(
int32_t
bufSize
);
static
SLogBuff
*
taosLogBuffNew
(
SLogBuff
*
tLogBuff
);
static
void
taosCloseLogByFd
(
TdFilePtr
pFile
);
static
void
taosCloseLogByFd
(
TdFilePtr
pFile
);
static
int32_t
taosOpenLogFile
(
char
*
fn
,
int32_t
maxLines
,
int32_t
maxFileNum
);
static
int32_t
taosOpenLogFile
(
char
*
fn
,
int32_t
maxLines
,
int32_t
maxFileNum
);
static
void
taosCloseLogFile
(
void
);
static
int32_t
taosCompressFile
(
char
*
srcFileName
,
char
*
destFileName
);
static
int32_t
taosCompressFile
(
char
*
srcFileName
,
char
*
destFileName
);
static
int32_t
taosStartLog
()
{
static
int32_t
taosStartLog
()
{
TdThreadAttr
threadAttr
;
TdThreadAttr
threadAttr
;
taosThreadAttrInit
(
&
threadAttr
);
taosThreadAttrInit
(
&
threadAttr
);
if
(
taosThreadCreate
(
&
(
tsLogObj
.
logHandle
->
asyncThread
),
&
threadAttr
,
taosAsyncOutputLog
,
tsLogObj
.
logHandle
)
!=
0
)
{
if
(
taosThreadCreate
(
&
(
tsLogObj
.
logHandle
.
asyncThread
),
&
threadAttr
,
taosAsyncOutputLog
,
&
tsLogObj
.
logHandle
)
!=
0
)
{
return
-
1
;
return
-
1
;
}
}
taosThreadAttrDestroy
(
&
threadAttr
);
taosThreadAttrDestroy
(
&
threadAttr
);
...
@@ -123,23 +124,21 @@ int32_t taosInitLog(const char *logName, int32_t maxFiles) {
...
@@ -123,23 +124,21 @@ int32_t taosInitLog(const char *logName, int32_t maxFiles) {
char
fullName
[
PATH_MAX
]
=
{
0
};
char
fullName
[
PATH_MAX
]
=
{
0
};
snprintf
(
fullName
,
PATH_MAX
,
"%s"
TD_DIRSEP
"%s"
,
tsLogDir
,
logName
);
snprintf
(
fullName
,
PATH_MAX
,
"%s"
TD_DIRSEP
"%s"
,
tsLogDir
,
logName
);
tsLogObj
.
logHandle
=
taosLogBuffNew
(
LOG_DEFAULT_BUF_SIZE
);
taosLogBuffNew
(
&
tsLogObj
.
logHandle
);
if
(
tsLogObj
.
logHandle
==
NULL
)
return
-
1
;
if
(
taosOpenLogFile
(
fullName
,
tsNumOfLogLines
,
maxFiles
)
<
0
)
return
-
1
;
if
(
taosOpenLogFile
(
fullName
,
tsNumOfLogLines
,
maxFiles
)
<
0
)
return
-
1
;
atexit
(
taosCloseLogFile
);
if
(
taosStartLog
()
<
0
)
return
-
1
;
if
(
taosStartLog
()
<
0
)
return
-
1
;
return
0
;
return
0
;
}
}
static
void
taosStopLog
()
{
static
void
taosStopLog
()
{
if
(
tsLogObj
.
logHandle
)
{
tsLogObj
.
logHandle
.
stop
=
1
;
tsLogObj
.
logHandle
->
stop
=
1
;
}
}
}
void
taosCloseLog
()
{
void
taosCloseLog
()
{
taosStopLog
();
taosStopLog
();
if
(
taosCheckPthreadValid
(
tsLogObj
.
logHandle
->
asyncThread
))
{
if
(
taosCheckPthreadValid
(
tsLogObj
.
logHandle
.
asyncThread
))
{
taosThreadJoin
(
tsLogObj
.
logHandle
->
asyncThread
,
NULL
);
taosThreadJoin
(
tsLogObj
.
logHandle
.
asyncThread
,
NULL
);
}
}
tsLogInited
=
0
;
tsLogInited
=
0
;
// In case that other threads still use log resources causing invalid write in valgrind
// In case that other threads still use log resources causing invalid write in valgrind
...
@@ -210,8 +209,8 @@ static void *taosThreadToOpenNewFile(void *param) {
...
@@ -210,8 +209,8 @@ static void *taosThreadToOpenNewFile(void *param) {
taosLockLogFile
(
pFile
);
taosLockLogFile
(
pFile
);
(
void
)
taosLSeekFile
(
pFile
,
0
,
SEEK_SET
);
(
void
)
taosLSeekFile
(
pFile
,
0
,
SEEK_SET
);
TdFilePtr
pOldFile
=
tsLogObj
.
logHandle
->
pFile
;
TdFilePtr
pOldFile
=
tsLogObj
.
logHandle
.
pFile
;
tsLogObj
.
logHandle
->
pFile
=
pFile
;
tsLogObj
.
logHandle
.
pFile
=
pFile
;
tsLogObj
.
lines
=
0
;
tsLogObj
.
lines
=
0
;
tsLogObj
.
openInProgress
=
0
;
tsLogObj
.
openInProgress
=
0
;
taosCloseLogByFd
(
pOldFile
);
taosCloseLogByFd
(
pOldFile
);
...
@@ -347,35 +346,39 @@ static int32_t taosOpenLogFile(char *fn, int32_t maxLines, int32_t maxFileNum) {
...
@@ -347,35 +346,39 @@ static int32_t taosOpenLogFile(char *fn, int32_t maxLines, int32_t maxFileNum) {
taosThreadMutexInit
(
&
tsLogObj
.
logMutex
,
NULL
);
taosThreadMutexInit
(
&
tsLogObj
.
logMutex
,
NULL
);
taosUmaskFile
(
0
);
taosUmaskFile
(
0
);
tsLogObj
.
logHandle
->
pFile
=
taosOpenFile
(
fileName
,
TD_FILE_CTEATE
|
TD_FILE_WRITE
);
tsLogObj
.
logHandle
.
pFile
=
taosOpenFile
(
fileName
,
TD_FILE_CTEATE
|
TD_FILE_WRITE
);
if
(
tsLogObj
.
logHandle
->
pFile
==
NULL
)
{
if
(
tsLogObj
.
logHandle
.
pFile
==
NULL
)
{
printf
(
"
\n
failed to open log file:%s, reason:%s
\n
"
,
fileName
,
strerror
(
errno
));
printf
(
"
\n
failed to open log file:%s, reason:%s
\n
"
,
fileName
,
strerror
(
errno
));
return
-
1
;
return
-
1
;
}
}
taosLockLogFile
(
tsLogObj
.
logHandle
->
pFile
);
taosLockLogFile
(
tsLogObj
.
logHandle
.
pFile
);
// only an estimate for number of lines
// only an estimate for number of lines
int64_t
filesize
=
0
;
int64_t
filesize
=
0
;
if
(
taosFStatFile
(
tsLogObj
.
logHandle
->
pFile
,
&
filesize
,
NULL
)
<
0
)
{
if
(
taosFStatFile
(
tsLogObj
.
logHandle
.
pFile
,
&
filesize
,
NULL
)
<
0
)
{
printf
(
"
\n
failed to fstat log file:%s, reason:%s
\n
"
,
fileName
,
strerror
(
errno
));
printf
(
"
\n
failed to fstat log file:%s, reason:%s
\n
"
,
fileName
,
strerror
(
errno
));
return
-
1
;
return
-
1
;
}
}
size
=
(
int32_t
)
filesize
;
size
=
(
int32_t
)
filesize
;
tsLogObj
.
lines
=
size
/
60
;
tsLogObj
.
lines
=
size
/
60
;
taosLSeekFile
(
tsLogObj
.
logHandle
->
pFile
,
0
,
SEEK_END
);
taosLSeekFile
(
tsLogObj
.
logHandle
.
pFile
,
0
,
SEEK_END
);
sprintf
(
name
,
"==================================================
\n
"
);
sprintf
(
name
,
"==================================================
\n
"
);
taosWriteFile
(
tsLogObj
.
logHandle
->
pFile
,
name
,
(
uint32_t
)
strlen
(
name
));
taosWriteFile
(
tsLogObj
.
logHandle
.
pFile
,
name
,
(
uint32_t
)
strlen
(
name
));
sprintf
(
name
,
" new log file
\n
"
);
sprintf
(
name
,
" new log file
\n
"
);
taosWriteFile
(
tsLogObj
.
logHandle
->
pFile
,
name
,
(
uint32_t
)
strlen
(
name
));
taosWriteFile
(
tsLogObj
.
logHandle
.
pFile
,
name
,
(
uint32_t
)
strlen
(
name
));
sprintf
(
name
,
"==================================================
\n
"
);
sprintf
(
name
,
"==================================================
\n
"
);
taosWriteFile
(
tsLogObj
.
logHandle
->
pFile
,
name
,
(
uint32_t
)
strlen
(
name
));
taosWriteFile
(
tsLogObj
.
logHandle
.
pFile
,
name
,
(
uint32_t
)
strlen
(
name
));
return
0
;
return
0
;
}
}
static
void
taosCloseLogFile
(
void
)
{
taosCloseFile
(
&
tsLogObj
.
logHandle
.
pFile
);
}
static
void
taosUpdateLogNums
(
ELogLevel
level
)
{
static
void
taosUpdateLogNums
(
ELogLevel
level
)
{
switch
(
level
)
{
switch
(
level
)
{
case
DEBUG_ERROR
:
case
DEBUG_ERROR
:
...
@@ -409,12 +412,12 @@ static inline int32_t taosBuildLogHead(char *buffer, const char *flags) {
...
@@ -409,12 +412,12 @@ static inline int32_t taosBuildLogHead(char *buffer, const char *flags) {
}
}
static
inline
void
taosPrintLogImp
(
ELogLevel
level
,
int32_t
dflag
,
const
char
*
buffer
,
int32_t
len
)
{
static
inline
void
taosPrintLogImp
(
ELogLevel
level
,
int32_t
dflag
,
const
char
*
buffer
,
int32_t
len
)
{
if
((
dflag
&
DEBUG_FILE
)
&&
tsLogObj
.
logHandle
&&
tsLogObj
.
logHandle
->
pFile
!=
NULL
)
{
if
((
dflag
&
DEBUG_FILE
)
&&
tsLogObj
.
logHandle
.
pFile
!=
NULL
)
{
taosUpdateLogNums
(
level
);
taosUpdateLogNums
(
level
);
if
(
tsAsyncLog
)
{
if
(
tsAsyncLog
)
{
taosPushLogBuffer
(
tsLogObj
.
logHandle
,
buffer
,
len
);
taosPushLogBuffer
(
&
tsLogObj
.
logHandle
,
buffer
,
len
);
}
else
{
}
else
{
taosWriteFile
(
tsLogObj
.
logHandle
->
pFile
,
buffer
,
len
);
taosWriteFile
(
tsLogObj
.
logHandle
.
pFile
,
buffer
,
len
);
}
}
if
(
tsLogObj
.
maxLines
>
0
)
{
if
(
tsLogObj
.
maxLines
>
0
)
{
...
@@ -486,7 +489,7 @@ void taosDumpData(unsigned char *msg, int32_t len) {
...
@@ -486,7 +489,7 @@ void taosDumpData(unsigned char *msg, int32_t len) {
pos
+=
3
;
pos
+=
3
;
if
(
c
>=
16
)
{
if
(
c
>=
16
)
{
temp
[
pos
++
]
=
'\n'
;
temp
[
pos
++
]
=
'\n'
;
taosWriteFile
(
tsLogObj
.
logHandle
->
pFile
,
temp
,
(
uint32_t
)
pos
);
taosWriteFile
(
tsLogObj
.
logHandle
.
pFile
,
temp
,
(
uint32_t
)
pos
);
c
=
0
;
c
=
0
;
pos
=
0
;
pos
=
0
;
}
}
...
@@ -494,7 +497,7 @@ void taosDumpData(unsigned char *msg, int32_t len) {
...
@@ -494,7 +497,7 @@ void taosDumpData(unsigned char *msg, int32_t len) {
temp
[
pos
++
]
=
'\n'
;
temp
[
pos
++
]
=
'\n'
;
taosWriteFile
(
tsLogObj
.
logHandle
->
pFile
,
temp
,
(
uint32_t
)
pos
);
taosWriteFile
(
tsLogObj
.
logHandle
.
pFile
,
temp
,
(
uint32_t
)
pos
);
}
}
static
void
taosCloseLogByFd
(
TdFilePtr
pFile
)
{
static
void
taosCloseLogByFd
(
TdFilePtr
pFile
)
{
...
@@ -504,18 +507,10 @@ static void taosCloseLogByFd(TdFilePtr pFile) {
...
@@ -504,18 +507,10 @@ static void taosCloseLogByFd(TdFilePtr pFile) {
}
}
}
}
static
SLogBuff
*
taosLogBuffNew
(
int32_t
bufSize
)
{
static
SLogBuff
*
taosLogBuffNew
(
SLogBuff
*
tLogBuff
)
{
SLogBuff
*
tLogBuff
=
NULL
;
tLogBuff
=
taosMemoryCalloc
(
1
,
sizeof
(
SLogBuff
));
if
(
tLogBuff
==
NULL
)
return
NULL
;
LOG_BUF_BUFFER
(
tLogBuff
)
=
taosMemoryMalloc
(
bufSize
);
if
(
LOG_BUF_BUFFER
(
tLogBuff
)
==
NULL
)
goto
_err
;
LOG_BUF_START
(
tLogBuff
)
=
LOG_BUF_END
(
tLogBuff
)
=
0
;
LOG_BUF_START
(
tLogBuff
)
=
LOG_BUF_END
(
tLogBuff
)
=
0
;
LOG_BUF_SIZE
(
tLogBuff
)
=
bufSize
;
LOG_BUF_SIZE
(
tLogBuff
)
=
LOG_DEFAULT_BUF_SIZE
;
tLogBuff
->
minBuffSize
=
bufSize
/
10
;
tLogBuff
->
minBuffSize
=
LOG_DEFAULT_BUF_SIZE
/
10
;
tLogBuff
->
stop
=
0
;
tLogBuff
->
stop
=
0
;
if
(
taosThreadMutexInit
(
&
LOG_BUF_MUTEX
(
tLogBuff
),
NULL
)
<
0
)
goto
_err
;
if
(
taosThreadMutexInit
(
&
LOG_BUF_MUTEX
(
tLogBuff
),
NULL
)
<
0
)
goto
_err
;
...
@@ -524,8 +519,6 @@ static SLogBuff *taosLogBuffNew(int32_t bufSize) {
...
@@ -524,8 +519,6 @@ static SLogBuff *taosLogBuffNew(int32_t bufSize) {
return
tLogBuff
;
return
tLogBuff
;
_err:
_err:
taosMemoryFreeClear
(
LOG_BUF_BUFFER
(
tLogBuff
));
taosMemoryFreeClear
(
tLogBuff
);
return
NULL
;
return
NULL
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录