Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
f52038db
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看板
提交
f52038db
编写于
7月 10, 2022
作者:
dengyihao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add test case
上级
578343be
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
97 addition
and
30 deletion
+97
-30
source/libs/index/inc/indexFstSparse.h
source/libs/index/inc/indexFstSparse.h
+7
-6
source/libs/index/src/indexFstDfa.c
source/libs/index/src/indexFstDfa.c
+10
-5
source/libs/index/src/indexFstSparse.c
source/libs/index/src/indexFstSparse.c
+33
-11
source/libs/index/test/fstUtilUT.cc
source/libs/index/test/fstUtilUT.cc
+47
-8
未找到文件。
source/libs/index/inc/indexFstSparse.h
浏览文件 @
f52038db
...
...
@@ -23,17 +23,18 @@ extern "C" {
#endif
typedef
struct
FstSparseSet
{
uint32_t
*
dense
;
uint32_t
*
sparse
;
int32_t
size
;
int32_t
*
dense
;
int32_t
*
sparse
;
int32_t
size
;
int32_t
cap
;
}
FstSparseSet
;
FstSparseSet
*
sparSetCreate
(
int32_t
sz
);
void
sparSetDestroy
(
FstSparseSet
*
s
);
uint32_t
sparSetLen
(
FstSparseSet
*
ss
);
uint32_t
sparSetAdd
(
FstSparseSet
*
ss
,
uint32_t
ip
);
uint32_t
sparSetGet
(
FstSparseSet
*
ss
,
uint32_t
i
);
bool
sparSetContains
(
FstSparseSet
*
ss
,
u
int32_t
ip
);
bool
sparSetAdd
(
FstSparseSet
*
ss
,
int32_t
ip
,
int32_t
*
val
);
bool
sparSetGet
(
FstSparseSet
*
ss
,
int32_t
i
,
int32_t
*
val
);
bool
sparSetContains
(
FstSparseSet
*
ss
,
int32_t
ip
);
void
sparSetClear
(
FstSparseSet
*
ss
);
#ifdef __cplusplus
...
...
source/libs/index/src/indexFstDfa.c
浏览文件 @
f52038db
...
...
@@ -105,8 +105,9 @@ bool dfaBuilderRunState(FstDfaBuilder *builder, FstSparseSet *cur, FstSparseSet
sparSetClear
(
cur
);
DfaState
*
t
=
taosArrayGet
(
builder
->
dfa
->
states
,
state
);
for
(
int
i
=
0
;
i
<
taosArrayGetSize
(
t
->
insts
);
i
++
)
{
uint32_t
ip
=
*
(
int32_t
*
)
taosArrayGet
(
t
->
insts
,
i
);
sparSetAdd
(
cur
,
ip
);
int32_t
ip
=
*
(
int32_t
*
)
taosArrayGet
(
t
->
insts
,
i
);
bool
succ
=
sparSetAdd
(
cur
,
ip
,
NULL
);
assert
(
succ
==
true
);
}
dfaRun
(
builder
->
dfa
,
cur
,
next
,
byte
);
...
...
@@ -126,7 +127,9 @@ bool dfaBuilderCachedState(FstDfaBuilder *builder, FstSparseSet *set, uint32_t *
bool
isMatch
=
false
;
for
(
int
i
=
0
;
i
<
sparSetLen
(
set
);
i
++
)
{
uint32_t
ip
=
sparSetGet
(
set
,
i
);
int32_t
ip
;
if
(
false
==
sparSetGet
(
set
,
i
,
&
ip
))
continue
;
Inst
*
inst
=
taosArrayGet
(
builder
->
dfa
->
insts
,
ip
);
if
(
inst
->
ty
==
JUMP
||
inst
->
ty
==
SPLIT
)
{
...
...
@@ -186,7 +189,8 @@ void dfaAdd(FstDfa *dfa, FstSparseSet *set, uint32_t ip) {
if
(
sparSetContains
(
set
,
ip
))
{
return
;
}
sparSetAdd
(
set
,
ip
);
bool
succ
=
sparSetAdd
(
set
,
ip
,
NULL
);
assert
(
succ
==
true
);
Inst
*
inst
=
taosArrayGet
(
dfa
->
insts
,
ip
);
if
(
inst
->
ty
==
MATCH
||
inst
->
ty
==
RANGE
)
{
// do nothing
...
...
@@ -203,7 +207,8 @@ bool dfaRun(FstDfa *dfa, FstSparseSet *from, FstSparseSet *to, uint8_t byte) {
bool
isMatch
=
false
;
sparSetClear
(
to
);
for
(
int
i
=
0
;
i
<
sparSetLen
(
from
);
i
++
)
{
uint32_t
ip
=
sparSetGet
(
from
,
i
);
int32_t
ip
;
if
(
false
==
sparSetGet
(
from
,
i
,
&
ip
))
continue
;
Inst
*
inst
=
taosArrayGet
(
dfa
->
insts
,
ip
);
if
(
inst
->
ty
==
JUMP
||
inst
->
ty
==
SPLIT
)
{
...
...
source/libs/index/src/indexFstSparse.c
浏览文件 @
f52038db
...
...
@@ -21,8 +21,12 @@ FstSparseSet *sparSetCreate(int32_t sz) {
return
NULL
;
}
ss
->
dense
=
(
uint32_t
*
)
taosMemoryCalloc
(
sz
,
sizeof
(
uint32_t
));
ss
->
sparse
=
(
uint32_t
*
)
taosMemoryCalloc
(
sz
,
sizeof
(
uint32_t
));
ss
->
dense
=
(
int32_t
*
)
taosMemoryMalloc
(
sz
*
sizeof
(
int32_t
));
memset
(
ss
->
dense
,
-
1
,
sz
*
sizeof
(
int32_t
));
ss
->
sparse
=
(
int32_t
*
)
taosMemoryMalloc
(
sz
*
sizeof
(
int32_t
));
memset
(
ss
->
sparse
,
-
1
,
sz
*
sizeof
(
int32_t
));
ss
->
cap
=
sz
;
ss
->
size
=
0
;
return
ss
;
}
...
...
@@ -38,23 +42,39 @@ uint32_t sparSetLen(FstSparseSet *ss) {
// Get occupied size
return
ss
==
NULL
?
0
:
ss
->
size
;
}
uint32_t
sparSetAdd
(
FstSparseSet
*
ss
,
uint32_t
ip
)
{
bool
sparSetAdd
(
FstSparseSet
*
ss
,
int32_t
ip
,
int32_t
*
idx
)
{
if
(
ss
==
NULL
)
{
return
0
;
return
false
;
}
if
(
ip
>=
ss
->
cap
)
{
return
false
;
}
uint32_t
i
=
ss
->
size
;
ss
->
dense
[
i
]
=
ip
;
ss
->
sparse
[
ip
]
=
i
;
ss
->
size
+=
1
;
return
i
;
if
(
idx
!=
NULL
)
*
idx
=
i
;
return
true
;
}
uint32_t
sparSetGet
(
FstSparseSet
*
ss
,
uint32_t
i
)
{
// check later
return
ss
->
dense
[
i
];
bool
sparSetGet
(
FstSparseSet
*
ss
,
int32_t
idx
,
int32_t
*
ip
)
{
if
(
idx
>=
ss
->
cap
||
idx
>=
ss
->
size
)
{
return
false
;
}
int32_t
val
=
ss
->
dense
[
idx
];
if
(
ip
!=
NULL
)
{
*
ip
=
val
;
}
return
val
==
-
1
?
false
:
true
;
}
bool
sparSetContains
(
FstSparseSet
*
ss
,
uint32_t
ip
)
{
uint32_t
i
=
ss
->
sparse
[
ip
];
if
(
i
<
ss
->
size
&&
ss
->
dense
[
i
]
==
ip
)
{
bool
sparSetContains
(
FstSparseSet
*
ss
,
int32_t
ip
)
{
if
(
ip
>=
ss
->
cap
)
{
return
false
;
}
int32_t
i
=
ss
->
sparse
[
ip
];
if
(
i
<
ss
->
cap
&&
i
<
ss
->
size
&&
ss
->
dense
[
i
]
==
ip
)
{
return
true
;
}
else
{
return
false
;
...
...
@@ -64,5 +84,7 @@ void sparSetClear(FstSparseSet *ss) {
if
(
ss
==
NULL
)
{
return
;
}
memset
(
ss
->
dense
,
-
1
,
ss
->
cap
*
sizeof
(
int32_t
));
memset
(
ss
->
sparse
,
-
1
,
ss
->
cap
*
sizeof
(
int32_t
));
ss
->
size
=
0
;
}
source/libs/index/test/fstUtilUT.cc
浏览文件 @
f52038db
...
...
@@ -51,10 +51,18 @@ class FstSparseSetEnv : public ::testing::Test {
};
// test FstDfaBuilder
TEST_F
(
FstUtilEnv
,
test1
)
{}
TEST_F
(
FstUtilEnv
,
test2
)
{}
TEST_F
(
FstUtilEnv
,
test3
)
{}
TEST_F
(
FstUtilEnv
,
test4
)
{}
TEST_F
(
FstUtilEnv
,
test1
)
{
// test
}
TEST_F
(
FstUtilEnv
,
test2
)
{
// test
}
TEST_F
(
FstUtilEnv
,
test3
)
{
// test
}
TEST_F
(
FstUtilEnv
,
test4
)
{
// test
}
// test FstRegex
...
...
@@ -64,7 +72,38 @@ TEST_F(FstRegexEnv, test3) {}
TEST_F
(
FstRegexEnv
,
test4
)
{}
// test FstSparseSet
TEST_F
(
FstSparseSetEnv
,
test1
)
{}
TEST_F
(
FstSparseSetEnv
,
test2
)
{}
TEST_F
(
FstSparseSetEnv
,
test3
)
{}
TEST_F
(
FstSparseSetEnv
,
test4
)
{}
TEST_F
(
FstSparseSetEnv
,
test1
)
{
for
(
int8_t
i
=
0
;
i
<
20
;
i
++
)
{
int32_t
val
=
-
1
;
bool
succ
=
sparSetAdd
(
set
,
'a'
+
i
,
&
val
);
}
EXPECT_EQ
(
sparSetLen
(
set
),
20
);
for
(
int8_t
i
=
0
;
i
<
20
;
i
++
)
{
int
val
=
-
1
;
bool
find
=
sparSetGet
(
set
,
i
,
&
val
);
EXPECT_EQ
(
find
,
true
);
EXPECT_EQ
(
val
,
i
+
'a'
);
}
for
(
int8_t
i
=
'a'
;
i
<
'a'
+
20
;
i
++
)
{
EXPECT_EQ
(
sparSetContains
(
set
,
i
),
true
);
}
for
(
int8_t
i
=
'A'
;
i
<
20
;
i
++
)
{
EXPECT_EQ
(
sparSetContains
(
set
,
'A'
),
false
);
}
for
(
int
i
=
512
;
i
<
1000
;
i
++
)
{
EXPECT_EQ
(
sparSetAdd
(
set
,
i
,
NULL
),
false
);
EXPECT_EQ
(
sparSetGet
(
set
,
i
,
NULL
),
false
);
EXPECT_EQ
(
sparSetContains
(
set
,
i
),
false
);
}
sparSetClear
(
set
);
for
(
int
i
=
'a'
;
i
<
'a'
+
20
;
i
++
)
{
EXPECT_EQ
(
sparSetGet
(
set
,
i
,
NULL
),
false
);
}
for
(
int
i
=
1000
;
i
<
2000
;
i
++
)
{
EXPECT_EQ
(
sparSetGet
(
set
,
i
,
NULL
),
false
);
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录