Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
129770d5
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看板
未验证
提交
129770d5
编写于
12月 20, 2022
作者:
wmmhello
提交者:
GitHub
12月 20, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #19031 from taosdata/refact/submit_req_marks
fix:error in windows
上级
8fdaa5be
2615130a
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
12 addition
and
9 deletion
+12
-9
source/client/inc/clientSml.h
source/client/inc/clientSml.h
+6
-0
source/client/src/clientSml.c
source/client/src/clientSml.c
+2
-2
source/client/src/clientSmlJson.c
source/client/src/clientSmlJson.c
+3
-3
source/client/test/smlTest.cpp
source/client/test/smlTest.cpp
+1
-4
未找到文件。
source/client/inc/clientSml.h
浏览文件 @
129770d5
...
...
@@ -204,6 +204,12 @@ extern int64_t smlFactorS[3];
typedef
int32_t
(
*
_equal_fn_sml
)(
const
void
*
,
const
void
*
);
SSmlHandle
*
smlBuildSmlInfo
(
TAOS
*
taos
);
void
smlDestroyInfo
(
SSmlHandle
*
info
);
void
smlJsonParseObjFirst
(
char
**
start
,
SSmlLineInfo
*
element
,
int8_t
*
offset
);
void
smlJsonParseObj
(
char
**
start
,
SSmlLineInfo
*
element
,
int8_t
*
offset
);
SArray
*
smlJsonParseTags
(
char
*
start
,
char
*
end
);
bool
smlParseNumberOld
(
SSmlKv
*
kvVal
,
SSmlMsgBuf
*
msg
);
void
*
nodeListGet
(
NodeList
*
list
,
const
void
*
key
,
int32_t
len
,
_equal_fn_sml
fn
);
int
nodeListSet
(
NodeList
**
list
,
const
void
*
key
,
int32_t
len
,
void
*
value
,
_equal_fn_sml
fn
);
int
nodeListSize
(
NodeList
*
list
);
...
...
source/client/src/clientSml.c
浏览文件 @
129770d5
...
...
@@ -1021,7 +1021,7 @@ static void smlDestroyTableInfo(SSmlTableInfo *tag) {
taosMemoryFree
(
tag
);
}
static
void
smlDestroyInfo
(
SSmlHandle
*
info
)
{
void
smlDestroyInfo
(
SSmlHandle
*
info
)
{
if
(
!
info
)
return
;
qDestroyQuery
(
info
->
pQuery
);
...
...
@@ -1063,7 +1063,7 @@ static void smlDestroyInfo(SSmlHandle *info) {
taosMemoryFreeClear
(
info
);
}
static
SSmlHandle
*
smlBuildSmlInfo
(
TAOS
*
taos
)
{
SSmlHandle
*
smlBuildSmlInfo
(
TAOS
*
taos
)
{
int32_t
code
=
TSDB_CODE_SUCCESS
;
SSmlHandle
*
info
=
(
SSmlHandle
*
)
taosMemoryCalloc
(
1
,
sizeof
(
SSmlHandle
));
if
(
NULL
==
info
)
{
...
...
source/client/src/clientSmlJson.c
浏览文件 @
129770d5
...
...
@@ -27,7 +27,7 @@ while(*(start)){\
(start)++;\
}
static
SArray
*
smlJsonParseTags
(
char
*
start
,
char
*
end
){
SArray
*
smlJsonParseTags
(
char
*
start
,
char
*
end
){
SArray
*
tags
=
taosArrayInit
(
4
,
sizeof
(
SSmlKv
));
while
(
start
<
end
){
SSmlKv
kv
=
{
0
};
...
...
@@ -233,7 +233,7 @@ static char* smlJsonGetObj(char *payload){
return
NULL
;
}
static
inline
void
smlJsonParseObjFirst
(
char
**
start
,
SSmlLineInfo
*
element
,
int8_t
*
offset
){
void
smlJsonParseObjFirst
(
char
**
start
,
SSmlLineInfo
*
element
,
int8_t
*
offset
){
int
index
=
0
;
while
(
*
(
*
start
)){
if
((
*
start
)[
0
]
!=
'"'
){
...
...
@@ -335,7 +335,7 @@ static inline void smlJsonParseObjFirst(char **start, SSmlLineInfo *element, int
}
}
static
inline
void
smlJsonParseObj
(
char
**
start
,
SSmlLineInfo
*
element
,
int8_t
*
offset
){
void
smlJsonParseObj
(
char
**
start
,
SSmlLineInfo
*
element
,
int8_t
*
offset
){
int
index
=
0
;
while
(
*
(
*
start
)){
if
((
*
start
)[
0
]
!=
'"'
){
...
...
source/client/test/smlTest.cpp
浏览文件 @
129770d5
...
...
@@ -25,10 +25,7 @@
#pragma GCC diagnostic ignored "-Wunused-variable"
#pragma GCC diagnostic ignored "-Wsign-compare"
#include "../src/clientSmlLine.c"
#include "../src/clientSmlJson.c"
#include "../src/clientSmlTelnet.c"
#include "../src/clientSml.c"
#include "../inc/clientSml.h"
#include "taos.h"
int
main
(
int
argc
,
char
**
argv
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录