Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
a0d46fe9
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22017
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看板
提交
a0d46fe9
编写于
12月 30, 2022
作者:
wmmhello
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:json parse error
上级
326ff76f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
2 deletion
+19
-2
source/client/inc/clientSml.h
source/client/inc/clientSml.h
+2
-1
source/client/src/clientSmlJson.c
source/client/src/clientSmlJson.c
+17
-1
未找到文件。
source/client/inc/clientSml.h
浏览文件 @
a0d46fe9
...
...
@@ -69,6 +69,7 @@ extern "C" {
#define VALUE "_value"
#define VALUE_LEN 6
#define OTD_JSON_FIELDS_NUM 4
#define MAX_RETRY_TIMES 5
typedef
TSDB_SML_PROTOCOL_TYPE
SMLProtocolType
;
...
...
@@ -178,7 +179,7 @@ typedef struct {
SSmlMsgBuf
msgBuf
;
cJSON
*
root
;
// for parse json
int8_t
offset
[
4
];
int8_t
offset
[
OTD_JSON_FIELDS_NUM
];
SSmlLineInfo
*
lines
;
// element is SSmlLineInfo
//
...
...
source/client/src/clientSmlJson.c
浏览文件 @
a0d46fe9
...
...
@@ -20,7 +20,6 @@
#include "clientSml.h"
#define OTD_JSON_SUB_FIELDS_NUM 2
#define OTD_JSON_FIELDS_NUM 4
#define JUMP_JSON_SPACE(start) \
while(*(start)){\
...
...
@@ -249,6 +248,11 @@ int smlJsonParseObjFirst(char **start, SSmlLineInfo *element, int8_t *offset){
continue
;
}
if
(
unlikely
(
index
>=
OTD_JSON_FIELDS_NUM
))
{
uError
(
"index >= %d, %s"
,
OTD_JSON_FIELDS_NUM
,
*
start
)
break
;
}
char
*
sTmp
=
*
start
;
if
((
*
start
)[
1
]
==
'm'
&&
(
*
start
)[
2
]
==
'e'
&&
(
*
start
)[
3
]
==
't'
&&
(
*
start
)[
4
]
==
'r'
&&
(
*
start
)[
5
]
==
'i'
&&
(
*
start
)[
6
]
==
'c'
&&
(
*
start
)[
7
]
==
'"'
){
...
...
@@ -353,6 +357,11 @@ int smlJsonParseObj(char **start, SSmlLineInfo *element, int8_t *offset){
continue
;
}
if
(
unlikely
(
index
>=
OTD_JSON_FIELDS_NUM
))
{
uError
(
"index >= %d, %s"
,
OTD_JSON_FIELDS_NUM
,
*
start
)
break
;
}
if
((
*
start
)[
1
]
==
'm'
){
(
*
start
)
+=
offset
[
index
++
];
element
->
measure
=
*
start
;
...
...
@@ -980,6 +989,13 @@ static int32_t smlParseJSONStringExt(SSmlHandle *info, cJSON *root, SSmlLineInfo
cJSON
*
valueJson
=
NULL
;
cJSON
*
tagsJson
=
NULL
;
int32_t
size
=
cJSON_GetArraySize
(
root
);
// outmost json fields has to be exactly 4
if
(
size
!=
OTD_JSON_FIELDS_NUM
)
{
uError
(
"OTD:0x%"
PRIx64
" Invalid number of JSON fields in data point %d"
,
info
->
id
,
size
);
return
TSDB_CODE_TSC_INVALID_JSON
;
}
cJSON
**
marks
[
OTD_JSON_FIELDS_NUM
]
=
{
&
metricJson
,
&
tsJson
,
&
valueJson
,
&
tagsJson
};
ret
=
smlGetJsonElements
(
root
,
marks
);
if
(
unlikely
(
ret
!=
TSDB_CODE_SUCCESS
))
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录