Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
5a0cafa4
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
5a0cafa4
编写于
1月 08, 2020
作者:
L
lihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[#1096 TBASE-1389]
上级
19608988
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
60 addition
and
0 deletion
+60
-0
src/client/src/tscSystem.c
src/client/src/tscSystem.c
+2
-0
src/inc/ttime.h
src/inc/ttime.h
+1
-0
src/util/src/ttime.c
src/util/src/ttime.c
+57
-0
未找到文件。
src/client/src/tscSystem.c
浏览文件 @
5a0cafa4
...
...
@@ -48,6 +48,7 @@ static pthread_once_t tscinit = PTHREAD_ONCE_INIT;
extern
int
tsTscEnableRecordSql
;
extern
int
tsNumOfLogLines
;
void
taosInitNote
(
int
numOfNoteLines
,
int
maxNotes
,
char
*
lable
);
void
deltaToUtcInitOnce
();
void
tscCheckDiskUsage
(
void
*
para
,
void
*
unused
)
{
taosGetDisk
();
...
...
@@ -60,6 +61,7 @@ void taos_init_imp() {
SRpcInit
rpcInit
;
srand
(
taosGetTimestampSec
());
deltaToUtcInitOnce
();
if
(
tscEmbedded
==
0
)
{
/*
...
...
src/inc/ttime.h
浏览文件 @
5a0cafa4
...
...
@@ -42,6 +42,7 @@ int64_t taosGetTimestamp(int32_t precision);
int32_t
getTimestampInUsFromStr
(
char
*
token
,
int32_t
tokenlen
,
int64_t
*
ts
);
int32_t
taosParseTime
(
char
*
timestr
,
int64_t
*
time
,
int32_t
len
,
int32_t
timePrec
);
void
deltaToUtcInitOnce
();
#ifdef __cplusplus
}
...
...
src/util/src/ttime.c
浏览文件 @
5a0cafa4
...
...
@@ -24,6 +24,61 @@
#include "ttime.h"
#include "tutil.h"
// ==== mktime() kernel code =================//
static
int64_t
m_deltaUtc
=
0
;
void
deltaToUtcInitOnce
()
{
struct
tm
tm
=
{
0
};
(
void
)
strptime
(
"1970-01-01 00:00:00"
,
(
const
char
*
)(
"%Y-%m-%d %H:%M:%S"
),
&
tm
);
m_deltaUtc
=
(
int64_t
)
mktime
(
&
tm
);
//printf("====delta:%lld\n\n", seconds);
return
;
}
int64_t
user_mktime
(
struct
tm
*
tm
)
{
#define TAOS_MINUTE 60
#define TAOS_HOUR (60*TAOS_MINUTE)
#define TAOS_DAY (24*TAOS_HOUR)
#define TAOS_YEAR (365*TAOS_DAY)
static
int
month
[
12
]
=
{
0
,
TAOS_DAY
*
(
31
),
TAOS_DAY
*
(
31
+
29
),
TAOS_DAY
*
(
31
+
29
+
31
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
+
31
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
+
31
+
30
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
+
31
+
30
+
31
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
+
31
+
30
+
31
+
31
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
+
31
+
30
+
31
+
31
+
30
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
+
31
+
30
+
31
+
31
+
30
+
31
),
TAOS_DAY
*
(
31
+
29
+
31
+
30
+
31
+
30
+
31
+
31
+
30
+
31
+
30
)
};
int64_t
res
;
int
year
;
year
=
tm
->
tm_year
-
70
;
res
=
TAOS_YEAR
*
year
+
TAOS_DAY
*
((
year
+
1
)
/
4
);
res
+=
month
[
tm
->
tm_mon
];
if
(
tm
->
tm_mon
>
1
&&
((
year
+
2
)
%
4
))
{
res
-=
TAOS_DAY
;
}
res
+=
TAOS_DAY
*
(
tm
->
tm_mday
-
1
);
res
+=
TAOS_HOUR
*
tm
->
tm_hour
;
res
+=
TAOS_MINUTE
*
tm
->
tm_min
;
res
+=
tm
->
tm_sec
;
return
res
+
m_deltaUtc
;
}
static
int64_t
parseFraction
(
char
*
str
,
char
**
end
,
int32_t
timePrec
);
static
int32_t
parseTimeWithTz
(
char
*
timestr
,
int64_t
*
time
,
int32_t
timePrec
);
static
int32_t
parseLocaltime
(
char
*
timestr
,
int64_t
*
time
,
int32_t
timePrec
);
...
...
@@ -238,6 +293,8 @@ int32_t parseLocaltime(char* timestr, int64_t* time, int32_t timePrec) {
/* mktime will be affected by TZ, set by using taos_options */
int64_t
seconds
=
mktime
(
&
tm
);
//int64_t seconds = (int64_t)user_mktime(&tm);
int64_t
fraction
=
0
;
if
(
*
str
==
'.'
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录