Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
2ad31334
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2ad31334
编写于
8月 22, 2020
作者:
H
Haojun Liao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[td-225] refactor shell code.
上级
3ff538c6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
11 deletion
+9
-11
src/kit/shell/src/shellEngine.c
src/kit/shell/src/shellEngine.c
+5
-6
src/kit/shell/src/shellMain.c
src/kit/shell/src/shellMain.c
+4
-5
未找到文件。
src/kit/shell/src/shellEngine.c
浏览文件 @
2ad31334
...
...
@@ -284,7 +284,7 @@ void shellRunCommandOnServer(TAOS *con, char command[]) {
st
=
taosGetTimestampUs
();
TAOS_RES
*
pSql
=
taos_query
(
con
,
command
);
result
=
pSql
;
// set it into the global variable
atomic_store_ptr
(
&
result
,
pSql
);
// set the global TAOS_RES pointer
if
(
taos_errno
(
pSql
))
{
taos_error
(
pSql
);
...
...
@@ -295,7 +295,7 @@ void shellRunCommandOnServer(TAOS *con, char command[]) {
fprintf
(
stdout
,
"Database changed.
\n\n
"
);
fflush
(
stdout
);
result
=
NULL
;
atomic_store_ptr
(
&
result
,
0
)
;
taos_free_result
(
pSql
);
return
;
}
...
...
@@ -304,7 +304,7 @@ void shellRunCommandOnServer(TAOS *con, char command[]) {
int
error_no
=
0
;
int
numOfRows
=
shellDumpResult
(
pSql
,
fname
,
&
error_no
,
printMode
);
if
(
numOfRows
<
0
)
{
result
=
NULL
;
atomic_store_ptr
(
&
result
,
0
)
;
taos_free_result
(
pSql
);
return
;
}
...
...
@@ -327,7 +327,7 @@ void shellRunCommandOnServer(TAOS *con, char command[]) {
wordfree
(
&
full_path
);
}
result
=
NULL
;
atomic_store_ptr
(
&
result
,
0
)
;
taos_free_result
(
pSql
);
}
...
...
@@ -493,7 +493,6 @@ static int dumpResultToFile(const char* fname, TAOS_RES* tres) {
}
while
(
row
!=
NULL
);
result
=
NULL
;
//taos_free_result(tres);
fclose
(
fp
);
return
numOfRows
;
...
...
@@ -798,8 +797,8 @@ void write_history() {
}
void
taos_error
(
TAOS_RES
*
tres
)
{
atomic_store_ptr
(
&
result
,
0
);
fprintf
(
stderr
,
"
\n
DB error: %s
\n
"
,
taos_errstr
(
tres
));
result
=
NULL
;
taos_free_result
(
tres
);
}
...
...
src/kit/shell/src/shellMain.c
浏览文件 @
2ad31334
...
...
@@ -18,11 +18,10 @@
pthread_t
pid
;
// TODO: IMPLEMENT INTERRUPT HANDLER.
void
interruptHandler
(
int
signum
)
{
void
shellQueryInterruptHandler
(
int
signum
)
{
#ifdef LINUX
taos_stop_query
(
result
);
result
=
NULL
;
void
*
pResHandle
=
atomic_val_compare_exchange_64
(
&
result
,
result
,
0
);
taos_stop_query
(
pResHandle
)
;
#else
printf
(
"
\n
Receive ctrl+c or other signal, quit shell.
\n
"
);
exit
(
0
);
...
...
@@ -86,7 +85,7 @@ int main(int argc, char* argv[]) {
struct
sigaction
act
;
memset
(
&
act
,
0
,
sizeof
(
struct
sigaction
));
act
.
sa_handler
=
i
nterruptHandler
;
act
.
sa_handler
=
shellQueryI
nterruptHandler
;
sigaction
(
SIGTERM
,
&
act
,
NULL
);
sigaction
(
SIGINT
,
&
act
,
NULL
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录