Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
cf33a822
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
cf33a822
编写于
4月 12, 2022
作者:
L
Liu Jicong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix type convert
上级
285dc217
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
22 addition
and
14 deletion
+22
-14
example/src/tmq.c
example/src/tmq.c
+3
-2
source/client/inc/clientInt.h
source/client/inc/clientInt.h
+10
-11
source/client/src/clientMain.c
source/client/src/clientMain.c
+1
-1
source/client/src/tmq.c
source/client/src/tmq.c
+8
-0
未找到文件。
example/src/tmq.c
浏览文件 @
cf33a822
...
@@ -163,12 +163,13 @@ void basic_consume_loop(tmq_t* tmq, tmq_list_t* topics) {
...
@@ -163,12 +163,13 @@ void basic_consume_loop(tmq_t* tmq, tmq_list_t* topics) {
printf
(
"subscribe err
\n
"
);
printf
(
"subscribe err
\n
"
);
return
;
return
;
}
}
/*int32_t cnt = 0;*/
int32_t
cnt
=
0
;
/*clock_t startTime = clock();*/
/*clock_t startTime = clock();*/
while
(
running
)
{
while
(
running
)
{
tmq_message_t
*
tmqmessage
=
tmq_consumer_poll
(
tmq
,
500
);
tmq_message_t
*
tmqmessage
=
tmq_consumer_poll
(
tmq
,
500
);
if
(
tmqmessage
)
{
if
(
tmqmessage
)
{
/*cnt++;*/
cnt
++
;
printf
(
"get data
\n
"
);
msg_process
(
tmqmessage
);
msg_process
(
tmqmessage
);
tmq_message_destroy
(
tmqmessage
);
tmq_message_destroy
(
tmqmessage
);
/*} else {*/
/*} else {*/
...
...
source/client/inc/clientInt.h
浏览文件 @
cf33a822
...
@@ -194,14 +194,13 @@ enum {
...
@@ -194,14 +194,13 @@ enum {
#define TD_RES_QUERY(res) (*(int8_t*)res == RES_TYPE__QUERY)
#define TD_RES_QUERY(res) (*(int8_t*)res == RES_TYPE__QUERY)
#define TD_RES_TMQ(res) (*(int8_t*)res == RES_TYPE__TMQ)
#define TD_RES_TMQ(res) (*(int8_t*)res == RES_TYPE__TMQ)
struct
tmq_message_t
{
typedef
struct
SMqRspObj
{
int8_t
resType
;
int8_t
resType
;
SMqPollRsp
msg
;
char
*
topic
;
char
*
topic
;
void
*
vg
;
void
*
vg
;
SArray
*
res
;
// SArray<SReqResultInfo>
SArray
*
res
;
// SArray<SReqResultInfo>
int32_t
resIter
;
int32_t
resIter
;
};
}
SMqRspObj
;
typedef
struct
SRequestObj
{
typedef
struct
SRequestObj
{
int8_t
resType
;
// query or tmq
int8_t
resType
;
// query or tmq
...
@@ -222,13 +221,13 @@ typedef struct SRequestObj {
...
@@ -222,13 +221,13 @@ typedef struct SRequestObj {
}
SRequestObj
;
}
SRequestObj
;
static
FORCE_INLINE
SReqResultInfo
*
tmqGetCurResInfo
(
TAOS_RES
*
res
)
{
static
FORCE_INLINE
SReqResultInfo
*
tmqGetCurResInfo
(
TAOS_RES
*
res
)
{
tmq_message_t
*
msg
=
(
tmq_message_t
*
)
res
;
SMqRspObj
*
msg
=
(
SMqRspObj
*
)
res
;
int32_t
resIter
=
msg
->
resIter
==
-
1
?
0
:
msg
->
resIter
;
int32_t
resIter
=
msg
->
resIter
==
-
1
?
0
:
msg
->
resIter
;
return
(
SReqResultInfo
*
)
taosArrayGet
(
msg
->
res
,
resIter
);
return
(
SReqResultInfo
*
)
taosArrayGet
(
msg
->
res
,
resIter
);
}
}
static
FORCE_INLINE
SReqResultInfo
*
tmqGetNextResInfo
(
TAOS_RES
*
res
)
{
static
FORCE_INLINE
SReqResultInfo
*
tmqGetNextResInfo
(
TAOS_RES
*
res
)
{
tmq_message_t
*
msg
=
(
tmq_message_t
*
)
res
;
SMqRspObj
*
msg
=
(
SMqRspObj
*
)
res
;
if
(
++
msg
->
resIter
<
taosArrayGetSize
(
msg
->
res
))
{
if
(
++
msg
->
resIter
<
taosArrayGetSize
(
msg
->
res
))
{
return
(
SReqResultInfo
*
)
taosArrayGet
(
msg
->
res
,
msg
->
resIter
);
return
(
SReqResultInfo
*
)
taosArrayGet
(
msg
->
res
,
msg
->
resIter
);
}
}
...
...
source/client/src/clientMain.c
浏览文件 @
cf33a822
...
@@ -171,7 +171,7 @@ TAOS_ROW taos_fetch_row(TAOS_RES *res) {
...
@@ -171,7 +171,7 @@ TAOS_ROW taos_fetch_row(TAOS_RES *res) {
return
doFetchRow
(
pRequest
,
true
,
true
);
return
doFetchRow
(
pRequest
,
true
,
true
);
}
else
if
(
TD_RES_TMQ
(
res
))
{
}
else
if
(
TD_RES_TMQ
(
res
))
{
tmq_message_t
*
msg
=
((
tmq_message_t
*
)
res
);
SMqRspObj
*
msg
=
((
SMqRspObj
*
)
res
);
SReqResultInfo
*
pResultInfo
=
taosArrayGet
(
msg
->
res
,
msg
->
resIter
);
SReqResultInfo
*
pResultInfo
=
taosArrayGet
(
msg
->
res
,
msg
->
resIter
);
doSetOneRowPtr
(
pResultInfo
);
doSetOneRowPtr
(
pResultInfo
);
...
...
source/client/src/tmq.c
浏览文件 @
cf33a822
...
@@ -24,6 +24,14 @@
...
@@ -24,6 +24,14 @@
#include "tqueue.h"
#include "tqueue.h"
#include "tref.h"
#include "tref.h"
struct
tmq_message_t
{
SMqPollRsp
msg
;
char
*
topic
;
void
*
vg
;
SArray
*
res
;
// SArray<SReqResultInfo>
int32_t
resIter
;
};
struct
tmq_list_t
{
struct
tmq_list_t
{
SArray
container
;
SArray
container
;
};
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录