Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
71469389
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看板
未验证
提交
71469389
编写于
2月 23, 2022
作者:
S
Shengliang Guan
提交者:
GitHub
2月 23, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #10370 from taosdata/feature/revertIndexImpl
add more UT
上级
3662e6b0
22938fcc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
22 addition
and
16 deletion
+22
-16
source/libs/index/src/index_fst.c
source/libs/index/src/index_fst.c
+2
-0
source/libs/index/src/index_fst_automation.c
source/libs/index/src/index_fst_automation.c
+9
-12
source/libs/index/test/fstUT.cc
source/libs/index/test/fstUT.cc
+11
-4
未找到文件。
source/libs/index/src/index_fst.c
浏览文件 @
71469389
...
...
@@ -235,6 +235,7 @@ void fstStateCompileForOneTrans(FstCountingWriter* w, CompiledAddr addr, FstTran
FstState
st
=
fstStateCreate
(
OneTrans
);
fstStateSetCommInput
(
&
st
,
trn
->
inp
);
bool
null
=
false
;
uint8_t
inp
=
fstStateCommInput
(
&
st
,
&
null
);
if
(
null
==
true
)
{
...
...
@@ -936,6 +937,7 @@ FstLastTransition* fstLastTransitionCreate(uint8_t inp, Output out) {
}
void
fstLastTransitionDestroy
(
FstLastTransition
*
trn
)
{
free
(
trn
);
}
void
fstBuilderNodeUnfinishedLastCompiled
(
FstBuilderNodeUnfinished
*
unNode
,
CompiledAddr
addr
)
{
FstLastTransition
*
trn
=
unNode
->
last
;
if
(
trn
==
NULL
)
{
...
...
source/libs/index/src/index_fst_automation.c
浏览文件 @
71469389
...
...
@@ -16,24 +16,24 @@
#include "index_fst_automation.h"
StartWithStateValue
*
startWithStateValueCreate
(
StartWithStateKind
kind
,
ValueType
ty
,
void
*
val
)
{
StartWithStateValue
*
n
sv
=
calloc
(
1
,
sizeof
(
StartWithStateValue
));
if
(
n
sv
==
NULL
)
{
StartWithStateValue
*
sv
=
calloc
(
1
,
sizeof
(
StartWithStateValue
));
if
(
sv
==
NULL
)
{
return
NULL
;
}
n
sv
->
kind
=
kind
;
n
sv
->
type
=
ty
;
sv
->
kind
=
kind
;
sv
->
type
=
ty
;
if
(
ty
==
FST_INT
)
{
n
sv
->
val
=
*
(
int
*
)
val
;
sv
->
val
=
*
(
int
*
)
val
;
}
else
if
(
ty
==
FST_CHAR
)
{
size_t
len
=
strlen
((
char
*
)
val
);
n
sv
->
ptr
=
(
char
*
)
calloc
(
1
,
len
+
1
);
memcpy
(
n
sv
->
ptr
,
val
,
len
);
sv
->
ptr
=
(
char
*
)
calloc
(
1
,
len
+
1
);
memcpy
(
sv
->
ptr
,
val
,
len
);
}
else
if
(
ty
==
FST_ARRAY
)
{
// TODO,
// nsv->arr = taosArrayFromList()
}
return
n
sv
;
return
sv
;
}
void
startWithStateValueDestroy
(
void
*
val
)
{
StartWithStateValue
*
sv
=
(
StartWithStateValue
*
)
val
;
...
...
@@ -146,11 +146,9 @@ AutomationCtx* automCtxCreate(void* data, AutomationType atype) {
if
(
atype
==
AUTOMATION_ALWAYS
)
{
int
val
=
0
;
sv
=
startWithStateValueCreate
(
Running
,
FST_INT
,
&
val
);
ctx
->
stdata
=
(
void
*
)
sv
;
}
else
if
(
atype
==
AUTOMATION_PREFIX
)
{
int
val
=
0
;
sv
=
startWithStateValueCreate
(
Running
,
FST_INT
,
&
val
);
ctx
->
stdata
=
(
void
*
)
sv
;
}
else
if
(
atype
==
AUTMMATION_MATCH
)
{
}
else
{
// add more search type
...
...
@@ -160,9 +158,8 @@ AutomationCtx* automCtxCreate(void* data, AutomationType atype) {
if
(
data
!=
NULL
)
{
char
*
src
=
(
char
*
)
data
;
size_t
len
=
strlen
(
src
);
dst
=
(
char
*
)
malloc
(
len
*
sizeof
(
char
)
+
1
);
dst
=
(
char
*
)
calloc
(
1
,
len
*
sizeof
(
char
)
+
1
);
memcpy
(
dst
,
src
,
len
);
dst
[
len
]
=
0
;
}
ctx
->
data
=
dst
;
...
...
source/libs/index/test/fstUT.cc
浏览文件 @
71469389
...
...
@@ -99,6 +99,7 @@ class FstReadMemory {
fstSliceDestroy
(
&
skey
);
return
ok
;
}
bool
GetWithTimeCostUs
(
const
std
::
string
&
key
,
uint64_t
*
val
,
uint64_t
*
elapse
)
{
int64_t
s
=
taosGetTimestampUs
();
bool
ok
=
this
->
Get
(
key
,
val
);
...
...
@@ -120,8 +121,6 @@ class FstReadMemory {
printf
(
"key: %s, val: %"
PRIu64
"
\n
"
,
key
.
c_str
(),
(
uint64_t
)(
rt
->
out
.
out
));
swsResultDestroy
(
rt
);
}
for
(
size_t
i
=
0
;
i
<
result
.
size
();
i
++
)
{
}
std
::
cout
<<
std
::
endl
;
return
true
;
}
...
...
@@ -137,7 +136,7 @@ class FstReadMemory {
fstDestroy
(
_fst
);
fstSliceDestroy
(
&
_s
);
writerCtxDestroy
(
_wc
,
false
);
tfCleanup
();
//
tfCleanup();
}
private:
...
...
@@ -196,6 +195,10 @@ class TFst {
}
return
fr
->
Get
(
k
,
v
);
}
bool
Search
(
AutomationCtx
*
ctx
,
std
::
vector
<
uint64_t
>&
result
)
{
// add more
return
fr
->
Search
(
ctx
,
result
);
}
private:
FstWriter
*
fw
;
...
...
@@ -229,5 +232,9 @@ TEST_F(FstEnv, writeNormal) {
assert
(
fst
->
Get
(
"a"
,
&
val
)
==
false
);
assert
(
fst
->
Get
(
"aa"
,
&
val
)
==
true
);
assert
(
val
==
0
);
std
::
vector
<
uint64_t
>
rlt
;
AutomationCtx
*
ctx
=
automCtxCreate
((
void
*
)
"ab"
,
AUTOMATION_ALWAYS
);
assert
(
fst
->
Search
(
ctx
,
rlt
)
==
true
);
}
TEST_F
(
FstEnv
,
writeExcpet
)
{}
TEST_F
(
FstEnv
,
WriteMillonrRecord
)
{}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录