mndTopic.h 1.4 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * 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/>.
 */

L
Liu Jicong 已提交
16 17
#ifndef _TD_MND_TOPIC_H_
#define _TD_MND_TOPIC_H_
L
Liu Jicong 已提交
18 19 20 21 22 23 24 25 26 27

#include "mndInt.h"

#ifdef __cplusplus
extern "C" {
#endif

int32_t mndInitTopic(SMnode *pMnode);
void    mndCleanupTopic(SMnode *pMnode);

L
Liu Jicong 已提交
28 29 30 31 32
SMqTopicObj *mndAcquireTopic(SMnode *pMnode, char *topicName);
void         mndReleaseTopic(SMnode *pMnode, SMqTopicObj *pTopic);

SSdbRaw *mndTopicActionEncode(SMqTopicObj *pTopic);
SSdbRow *mndTopicActionDecode(SSdbRaw *pRaw);
L
Liu Jicong 已提交
33

L
Liu Jicong 已提交
34
int32_t mndDropTopicByDB(SMnode *pMnode, STrans *pTrans, SDbObj *pDb);
35
int32_t mndCheckTopicExist(SMnode *pMnode, SDbObj *pDb);
L
Liu Jicong 已提交
36

L
Liu Jicong 已提交
37 38
const char *mndTopicGetShowName(const char topic[TSDB_TOPIC_FNAME_LEN]);

39
int32_t mndSetTopicCommitLogs(SMnode *pMnode, STrans *pTrans, SMqTopicObj *pTopic);
L
Liu Jicong 已提交
40

L
Liu Jicong 已提交
41 42 43 44
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
45
#endif /*_TD_MND_TOPIC_H_*/