Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
43e6d441
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
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看板
提交
43e6d441
编写于
12月 18, 2022
作者:
A
Alex Duan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(shell): fixed not last word matched
上级
f9b08e5c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
22 deletion
+27
-22
tools/shell/src/shellAuto.c
tools/shell/src/shellAuto.c
+27
-22
未找到文件。
tools/shell/src/shellAuto.c
浏览文件 @
43e6d441
...
...
@@ -969,38 +969,43 @@ bool matchVarWord(SWord* word1, SWord* word2) {
// ------------------- match words --------------------------
//
// compare command cmd
1 come from shellCommands , cmd2
come from user input
int32_t
compareCommand
(
SWords
*
cmd
1
,
SWords
*
cmd2
)
{
SWord
*
word
1
=
cmd1
->
head
;
SWord
*
word
2
=
cmd2
->
head
;
// compare command cmd
Pattern come from shellCommands , cmdInput
come from user input
int32_t
compareCommand
(
SWords
*
cmd
Pattern
,
SWords
*
cmdInput
)
{
SWord
*
word
Pattern
=
cmdPattern
->
head
;
SWord
*
word
Input
=
cmdInput
->
head
;
if
(
word
1
==
NULL
||
word2
==
NULL
)
{
if
(
word
Pattern
==
NULL
||
wordInput
==
NULL
)
{
return
-
1
;
}
for
(
int32_t
i
=
0
;
i
<
cmd
1
->
count
;
i
++
)
{
if
(
word
1
->
type
==
WT_TEXT
)
{
for
(
int32_t
i
=
0
;
i
<
cmd
Pattern
->
count
;
i
++
)
{
if
(
word
Pattern
->
type
==
WT_TEXT
)
{
// WT_TEXT match
if
(
word
1
->
len
==
word2
->
len
)
{
if
(
strncasecmp
(
word
1
->
word
,
word2
->
word
,
word1
->
len
)
!=
0
)
return
-
1
;
}
else
if
(
word
1
->
len
<
word2
->
len
)
{
if
(
word
Pattern
->
len
==
wordInput
->
len
)
{
if
(
strncasecmp
(
word
Pattern
->
word
,
wordInput
->
word
,
wordPattern
->
len
)
!=
0
)
return
-
1
;
}
else
if
(
word
Pattern
->
len
<
wordInput
->
len
)
{
return
-
1
;
}
else
{
// word1->len > word2->len
if
(
strncasecmp
(
word1
->
word
,
word2
->
word
,
word2
->
len
)
==
0
)
{
cmd1
->
matchIndex
=
i
;
cmd1
->
matchLen
=
word2
->
len
;
return
i
;
// wordPattern->len > wordInput->len
if
(
strncasecmp
(
wordPattern
->
word
,
wordInput
->
word
,
wordInput
->
len
)
==
0
)
{
if
(
i
+
1
==
cmdInput
->
count
)
{
// last word return match
cmdPattern
->
matchIndex
=
i
;
cmdPattern
->
matchLen
=
wordInput
->
len
;
return
i
;
}
else
{
return
-
1
;
}
}
else
{
return
-
1
;
}
}
}
else
{
// WT_VAR auto match any one word
if
(
word
2
->
next
==
NULL
)
{
// input words last one
if
(
matchVarWord
(
word
1
,
word2
))
{
cmd
1
->
matchIndex
=
i
;
cmd
1
->
matchLen
=
word2
->
len
;
if
(
word
Input
->
next
==
NULL
)
{
// input words last one
if
(
matchVarWord
(
word
Pattern
,
wordInput
))
{
cmd
Pattern
->
matchIndex
=
i
;
cmd
Pattern
->
matchLen
=
wordInput
->
len
;
varMode
=
true
;
return
i
;
}
...
...
@@ -1009,9 +1014,9 @@ int32_t compareCommand(SWords* cmd1, SWords* cmd2) {
}
// move next
word
1
=
word1
->
next
;
word
2
=
word2
->
next
;
if
(
word
1
==
NULL
||
word2
==
NULL
)
{
word
Pattern
=
wordPattern
->
next
;
word
Input
=
wordInput
->
next
;
if
(
word
Pattern
==
NULL
||
wordInput
==
NULL
)
{
return
-
1
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录