Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
0f3db7d7
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,发现更多精彩内容 >>
提交
0f3db7d7
编写于
10月 08, 2021
作者:
L
Liu Jicong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add tq header
上级
e8e4af01
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
55 addition
and
18 deletion
+55
-18
CMakeLists.txt
CMakeLists.txt
+1
-1
include/client/consumer/consumer.h
include/client/consumer/consumer.h
+14
-10
include/server/vnode/tq/tq.h
include/server/vnode/tq/tq.h
+18
-2
source/client/consumer/consumer.c
source/client/consumer/consumer.c
+3
-1
source/server/vnode/tq/CMakeLists.txt
source/server/vnode/tq/CMakeLists.txt
+6
-1
source/server/vnode/tq/inc/tqInt.h
source/server/vnode/tq/inc/tqInt.h
+4
-1
source/server/vnode/tq/src/tq.c
source/server/vnode/tq/src/tq.c
+9
-2
未找到文件。
CMakeLists.txt
浏览文件 @
0f3db7d7
include/client/consumer/consumer.h
浏览文件 @
0f3db7d7
...
@@ -16,6 +16,10 @@
...
@@ -16,6 +16,10 @@
#ifndef _TD_CONSUMER_H_
#ifndef _TD_CONSUMER_H_
#define _TD_CONSUMER_H_
#define _TD_CONSUMER_H_
#include "tlist.h"
#include "tarray.h"
#include "hash.h"
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
#endif
#endif
...
@@ -32,16 +36,15 @@ extern "C" {
...
@@ -32,16 +36,15 @@ extern "C" {
struct
tmq_resp_err_t
;
struct
tmq_resp_err_t
;
typedef
struct
tmq_resp_err_t
tmq_resp_err_t
;
typedef
struct
tmq_resp_err_t
tmq_resp_err_t
;
//topic list
struct
tmq_message_t
;
//resouces are supposed to be free by users by calling tmq_list_destroy
typedef
struct
tmq_message_t
tmq_message_t
;
struct
tmq_topic_list_t
;
typedef
struct
tmq_topic_list_t
tmq_topic_list_t
;
struct
tmq_col_batch_t
;
int32_t
tmq_topic_list_add
(
tmq_topic_list_t
*
,
const
char
*
);
typedef
struct
tmq_col_batch_t
tmq_col_batch_t
;
void
tmq_topic_list_destroy
(
tmq_topic_list_t
*
);
//get content of message
//get content of message
tmq_col_batch_t
*
tmq_get_msg_col_by_idx
(
tmq_message_t
*
,
int32_t
);
tmq_col_batch_t
*
tmq_get_msg_col_by_idx
(
tmq_message_t
*
,
int32_t
col_id
);
tmq_col_batch_t
*
tmq_get_msg_col_by_name
(
tmq_message_t
*
,
const
char
*
);
tmq_col_batch_t
*
tmq_get_msg_col_by_name
(
tmq_message_t
*
,
const
char
*
);
//consumer config
//consumer config
int32_t
tmq_conf_set
(
tmq_consumer_config_t
*
,
const
char
*
config_key
,
const
char
*
config_value
,
char
*
errstr
,
int32_t
errstr_cap
);
int32_t
tmq_conf_set
(
tmq_consumer_config_t
*
,
const
char
*
config_key
,
const
char
*
config_value
,
char
*
errstr
,
int32_t
errstr_cap
);
...
@@ -51,11 +54,12 @@ extern "C" {
...
@@ -51,11 +54,12 @@ extern "C" {
tmq_consumer_t
*
tmq_consumer_new
(
tmq_consumer_config_t
*
,
char
*
errstr
,
int32_t
errstr_cap
);
tmq_consumer_t
*
tmq_consumer_new
(
tmq_consumer_config_t
*
,
char
*
errstr
,
int32_t
errstr_cap
);
//subscribe
//subscribe
tmq_resp_err_t
tmq_subscribe
(
tmq_consumer_t
*
,
const
tmq_topic_list_t
*
);
tmq_resp_err_t
tmq_subscribe
(
tmq_consumer_t
*
,
const
SList
*
);
tmq_resp_err_t
tmq_unsubscribe
(
tmq_consumer_t
*
);
//consume
//consume
//resouces are supposed to be free by users by calling tmq_message_destroy
//resouces are supposed to be free by users by calling tmq_message_destroy
tmq_message_t
tmq_consume_poll
(
tmq_consumer_t
*
,
int64_t
blocking_time
);
tmq_message_t
*
tmq_consume_poll
(
tmq_consumer_t
*
,
int64_t
blocking_time
);
//destroy message and free memory
//destroy message and free memory
void
tmq_message_destroy
(
tmq_message_t
*
);
void
tmq_message_destroy
(
tmq_message_t
*
);
...
...
include/server/vnode/tq/tq.h
浏览文件 @
0f3db7d7
...
@@ -16,13 +16,29 @@
...
@@ -16,13 +16,29 @@
#ifndef _TD_TQ_H_
#ifndef _TD_TQ_H_
#define _TD_TQ_H_
#define _TD_TQ_H_
#include "os.h"
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
#endif
#endif
typedef
struct
STQ
STQ
;
typedef
struct
STQ
STQ
;
int
tqPushMsg
(
void
*
);
STQ
*
tqInit
();
void
tqCleanUp
(
STQ
*
pTQ
);
//create persistent storage for meta info such as consuming offset
//return value > 0: cgId
//return value < 0: error code
int
tqCreateGroup
(
STQ
*
pTQ
);
//create ring buffer in memory and load consuming offset
int
tqOpenGroup
(
STQ
*
pTQ
,
int
cgId
);
//destroy ring buffer and persist consuming offset
int
tqCloseGroup
(
STQ
*
pTQ
,
int
cgId
);
//delete persistent storage for meta info
int
tqDropGroup
(
STQ
*
pTQ
);
int
tqPushMsg
(
STQ
*
pTQ
,
void
*
,
int64_t
version
);
int
tqCommit
(
STQ
*
pTQ
);
int
tqCommit
(
STQ
*
pTQ
);
#ifdef __cplusplus
#ifdef __cplusplus
...
...
source/client/consumer/consumer.c
浏览文件 @
0f3db7d7
...
@@ -12,3 +12,5 @@
...
@@ -12,3 +12,5 @@
* You should have received a copy of the GNU Affero General Public License
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/
#include "consumer.h"
source/server/vnode/tq/CMakeLists.txt
浏览文件 @
0f3db7d7
...
@@ -3,5 +3,10 @@ add_library(tq ${TQ_SRC})
...
@@ -3,5 +3,10 @@ add_library(tq ${TQ_SRC})
target_include_directories
(
target_include_directories
(
tq
tq
PUBLIC
"
${
CMAKE_SOURCE_DIR
}
/include/server/vnode/tq"
PUBLIC
"
${
CMAKE_SOURCE_DIR
}
/include/server/vnode/tq"
PRIVATE
"
${
CMAKE_SOURCE_DIR
}
/include/os"
PRIVATE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/inc"
PRIVATE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/inc"
)
)
target_link_libraries
(
os
)
source/server/vnode/tq/inc/tqInt.h
浏览文件 @
0f3db7d7
...
@@ -20,6 +20,9 @@
...
@@ -20,6 +20,9 @@
extern
"C"
{
extern
"C"
{
#endif
#endif
//implement the array index
//implement the ring buffer
#ifdef __cplusplus
#ifdef __cplusplus
}
}
#endif
#endif
...
...
source/server/vnode/tq/src/tq.c
浏览文件 @
0f3db7d7
...
@@ -15,5 +15,12 @@
...
@@ -15,5 +15,12 @@
#include "tq.h"
#include "tq.h"
int
tqPushMsg
(
void
*
p
)
{
return
0
;}
int
tqPushMsg
(
STQ
*
pTQ
,
void
*
p
,
int64_t
version
)
{
int
tqCommit
(
STQ
*
pTQ
)
{
return
0
;}
//add reference
//
return
0
;
}
int
tqCommit
(
STQ
*
pTQ
)
{
return
0
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录