meta.h 2.6 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/>.
 */

H
refact  
Hongze Cheng 已提交
16 17
#ifndef _TD_META_H_
#define _TD_META_H_
H
refact  
Hongze Cheng 已提交
18

S
Shengliang Guan 已提交
19
#include "tmallocator.h"
H
more  
Hongze Cheng 已提交
20
#include "tmsg.h"
H
more  
Hongze Cheng 已提交
21
#include "trow.h"
H
more  
Hongze Cheng 已提交
22

H
refact  
Hongze Cheng 已提交
23 24 25 26
#ifdef __cplusplus
extern "C" {
#endif

L
fix  
Liu Jicong 已提交
27 28
#define META_SUPER_TABLE  TD_SUPER_TABLE
#define META_CHILD_TABLE  TD_CHILD_TABLE
H
Hongze Cheng 已提交
29 30
#define META_NORMAL_TABLE TD_NORMAL_TABLE

H
more  
Hongze Cheng 已提交
31
// Types exported
H
refact  
Hongze Cheng 已提交
32 33 34 35 36 37 38
typedef struct SMeta SMeta;

typedef struct SMetaCfg {
  /// LRU cache size
  uint64_t lruSize;
} SMetaCfg;

H
more  
Hongze Cheng 已提交
39 40
typedef struct SMTbCursor  SMTbCursor;
typedef struct SMCtbCursor SMCtbCursor;
C
Cary Xu 已提交
41
typedef struct SMSmaCursor SMSmaCursor;
H
more  
Hongze Cheng 已提交
42

H
more  
Hongze Cheng 已提交
43
typedef SVCreateTbReq STbCfg;
C
Cary Xu 已提交
44
typedef STSma         SSmaCfg;
H
more  
Hongze Cheng 已提交
45 46

// SMeta operations
H
more  
Hongze Cheng 已提交
47
SMeta *metaOpen(const char *path, const SMetaCfg *pMetaCfg, SMemAllocatorFactory *pMAF);
H
more  
Hongze Cheng 已提交
48
void   metaClose(SMeta *pMeta);
H
more  
Hongze Cheng 已提交
49
void   metaRemove(const char *path);
H
more  
Hongze Cheng 已提交
50
int    metaCreateTable(SMeta *pMeta, STbCfg *pTbCfg);
H
more  
Hongze Cheng 已提交
51
int    metaDropTable(SMeta *pMeta, tb_uid_t uid);
H
more  
Hongze Cheng 已提交
52
int    metaCommit(SMeta *pMeta);
H
more  
Hongze Cheng 已提交
53

H
more  
Hongze Cheng 已提交
54
// For Query
C
Cary Xu 已提交
55 56
STbCfg *        metaGetTbInfoByUid(SMeta *pMeta, tb_uid_t uid);
STbCfg *        metaGetTbInfoByName(SMeta *pMeta, char *tbname, tb_uid_t *uid);
H
Hongze Cheng 已提交
57
SSchemaWrapper *metaGetTableSchema(SMeta *pMeta, tb_uid_t uid, int32_t sver, bool isinline);
C
Cary Xu 已提交
58 59
STSchema *      metaGetTbTSchema(SMeta *pMeta, tb_uid_t uid, int32_t sver);
SSmaCfg *       metaGetSmaInfoByName(SMeta *pMeta, const char *indexName);
C
Cary Xu 已提交
60
STSmaWrapper *  metaGetSmaInfoByUid(SMeta *pMeta, tb_uid_t uid);
H
more  
Hongze Cheng 已提交
61

H
more  
Hongze Cheng 已提交
62 63
SMTbCursor *metaOpenTbCursor(SMeta *pMeta);
void        metaCloseTbCursor(SMTbCursor *pTbCur);
C
Cary Xu 已提交
64
char *      metaTbCursorNext(SMTbCursor *pTbCur);
H
more  
Hongze Cheng 已提交
65

H
more  
Hongze Cheng 已提交
66 67
SMCtbCursor *metaOpenCtbCursor(SMeta *pMeta, tb_uid_t uid);
void         metaCloseCtbCurosr(SMCtbCursor *pCtbCur);
68
tb_uid_t     metaCtbCursorNext(SMCtbCursor *pCtbCur);
H
more  
Hongze Cheng 已提交
69

C
Cary Xu 已提交
70 71 72 73
SMSmaCursor *metaOpenSmaCursor(SMeta *pMeta, tb_uid_t uid);
void         metaCloseSmaCurosr(SMSmaCursor *pSmaCur);
const char * metaSmaCursorNext(SMSmaCursor *pSmaCur);

H
more  
Hongze Cheng 已提交
74
// Options
H
more  
Hongze Cheng 已提交
75 76
void metaOptionsInit(SMetaCfg *pMetaCfg);
void metaOptionsClear(SMetaCfg *pMetaCfg);
H
refact  
Hongze Cheng 已提交
77

H
refact  
Hongze Cheng 已提交
78 79 80 81
#ifdef __cplusplus
}
#endif

D
dapan1121 已提交
82
#endif /*_TD_META_H_*/