mndDb.h 1.4 KB
Newer Older
H
refact  
Hongze Cheng 已提交
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/>.
 */

S
Shengliang Guan 已提交
16 17
#ifndef _TD_MND_DATABASE_H_
#define _TD_MND_DATABASE_H_
S
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19
#include "mndInt.h"
S
Shengliang Guan 已提交
20

S
Shengliang Guan 已提交
21 22 23
#ifdef __cplusplus
extern "C" {
#endif
S
Shengliang Guan 已提交
24

S
Shengliang Guan 已提交
25 26
int32_t mndInitDb(SMnode *pMnode);
void    mndCleanupDb(SMnode *pMnode);
S
Shengliang Guan 已提交
27
SDbObj *mndAcquireDb(SMnode *pMnode, const char *db);
S
Shengliang Guan 已提交
28
void    mndReleaseDb(SMnode *pMnode, SDbObj *pDb);
S
Shengliang Guan 已提交
29
int32_t mndValidateDbInfo(SMnode *pMnode, SDbVgVersion *pDbs, int32_t numOfDbs, void **ppRsp, int32_t *pRspLen);
L
Liu Jicong 已提交
30
int32_t mndExtractDbInfo(SMnode *pMnode, SDbObj *pDb, SUseDbRsp *pRsp, const SUseDbReq *pReq);
31
bool    mndIsDbReady(SMnode *pMnode, SDbObj *pDb);
S
Shengliang Guan 已提交
32

33
SSdbRaw    *mndDbActionEncode(SDbObj *pDb);
S
Shengliang Guan 已提交
34
const char *mndGetDbStr(const char *src);
35
const char *mndGetStableStr(const char *src);
S
Shengliang Guan 已提交
36

X
Xiaoyu Wang 已提交
37 38
int32_t mndProcessCompactDbReq(SRpcMsg *pReq);

S
Shengliang Guan 已提交
39 40 41
#ifdef __cplusplus
}
#endif
S
Shengliang Guan 已提交
42

S
Shengliang Guan 已提交
43
#endif /*_TD_MND_DATABASE_H_*/