meta.h 3.9 KB
Newer Older
H
more  
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
Hongze Cheng 已提交
16 17
#ifndef _TD_VNODE_META_H_
#define _TD_VNODE_META_H_
H
more  
Hongze Cheng 已提交
18

H
Hongze Cheng 已提交
19 20
#include "vnodeInt.h"

H
more  
Hongze Cheng 已提交
21 22 23 24
#ifdef __cplusplus
extern "C" {
#endif

H
Hongze Cheng 已提交
25 26 27
typedef struct SMetaIdx    SMetaIdx;
typedef struct SMetaDB     SMetaDB;
typedef struct SMSmaCursor SMSmaCursor;
H
refact  
Hongze Cheng 已提交
28

H
Hongze Cheng 已提交
29 30 31 32 33 34 35 36 37 38
// metaDebug ==================
// clang-format off
#define metaFatal(...) do { if (metaDebugFlag & DEBUG_FATAL) { taosPrintLog("META FATAL ", DEBUG_FATAL, 255, __VA_ARGS__); }}     while(0)
#define metaError(...) do { if (metaDebugFlag & DEBUG_ERROR) { taosPrintLog("META ERROR ", DEBUG_ERROR, 255, __VA_ARGS__); }}     while(0)
#define metaWarn(...)  do { if (metaDebugFlag & DEBUG_WARN)  { taosPrintLog("META WARN ", DEBUG_WARN, 255, __VA_ARGS__); }}       while(0)
#define metaInfo(...)  do { if (metaDebugFlag & DEBUG_INFO)  { taosPrintLog("META ", DEBUG_INFO, 255, __VA_ARGS__); }}            while(0)
#define metaDebug(...) do { if (metaDebugFlag & DEBUG_DEBUG) { taosPrintLog("META ", DEBUG_DEBUG, metaDebugFlag, __VA_ARGS__); }} while(0)
#define metaTrace(...) do { if (metaDebugFlag & DEBUG_TRACE) { taosPrintLog("META ", DEBUG_TRACE, metaDebugFlag, __VA_ARGS__); }} while(0)
// clang-format on

H
Hongze Cheng 已提交
39
// metaOpen ==================
H
Hongze Cheng 已提交
40 41 42
int32_t metaRLock(SMeta* pMeta);
int32_t metaWLock(SMeta* pMeta);
int32_t metaULock(SMeta* pMeta);
H
Hongze Cheng 已提交
43

H
Hongze Cheng 已提交
44
// metaEntry ==================
H
Hongze Cheng 已提交
45 46
int metaEncodeEntry(SEncoder* pCoder, const SMetaEntry* pME);
int metaDecodeEntry(SDecoder* pCoder, SMetaEntry* pME);
H
Hongze Cheng 已提交
47

H
Hongze Cheng 已提交
48 49 50
// metaTable ==================

// metaQuery ==================
H
Hongze Cheng 已提交
51
int metaGetTableEntryByVersion(SMetaReader* pReader, int64_t version, tb_uid_t uid);
H
Hongze Cheng 已提交
52

H
Hongze Cheng 已提交
53 54 55 56 57 58
// metaIdx ==================
int  metaOpenIdx(SMeta* pMeta);
void metaCloseIdx(SMeta* pMeta);
int  metaSaveTableToIdx(SMeta* pMeta, const STbCfg* pTbOptions);
int  metaRemoveTableFromIdx(SMeta* pMeta, tb_uid_t uid);

H
Hongze Cheng 已提交
59
// metaCommit ==================
H
Hongze Cheng 已提交
60 61
static FORCE_INLINE tb_uid_t metaGenerateUid(SMeta* pMeta) { return tGenIdPI64(); }

H
Hongze Cheng 已提交
62
struct SMeta {
H
Hongze Cheng 已提交
63 64
  TdThreadRwlock lock;

H
Hongze Cheng 已提交
65 66 67
  char*     path;
  SVnode*   pVnode;
  TENV*     pEnv;
H
Hongze Cheng 已提交
68
  TXN       txn;
H
Hongze Cheng 已提交
69 70
  TDB*      pTbDb;
  TDB*      pSkmDb;
H
Hongze Cheng 已提交
71
  TDB*      pUidIdx;
H
Hongze Cheng 已提交
72 73 74 75
  TDB*      pNameIdx;
  TDB*      pCtbIdx;
  TDB*      pTagIdx;
  TDB*      pTtlIdx;
C
Cary Xu 已提交
76
  TDB*      pSmaIdx;
H
Hongze Cheng 已提交
77 78 79
  SMetaIdx* pIdx;
};

H
Hongze Cheng 已提交
80 81 82 83 84
typedef struct {
  int64_t  version;
  tb_uid_t uid;
} STbDbKey;

wafwerar's avatar
wafwerar 已提交
85 86
#pragma pack(push, 1)
typedef struct {
H
Hongze Cheng 已提交
87 88 89
  tb_uid_t uid;
  int32_t  sver;
} SSkmDbKey;
wafwerar's avatar
wafwerar 已提交
90
#pragma pack(pop)
H
Hongze Cheng 已提交
91 92 93 94 95 96

typedef struct {
  tb_uid_t suid;
  tb_uid_t uid;
} SCtbIdxKey;

wafwerar's avatar
wafwerar 已提交
97 98
#pragma pack(push, 1)
typedef struct {
H
Hongze Cheng 已提交
99
  tb_uid_t suid;
H
Hongze Cheng 已提交
100 101 102 103
  int32_t  cid;
  uint8_t  isNull : 1;
  uint8_t  type : 7;
  uint8_t  data[];  // val + uid
H
Hongze Cheng 已提交
104
} STagIdxKey;
wafwerar's avatar
wafwerar 已提交
105
#pragma pack(pop)
H
Hongze Cheng 已提交
106 107 108 109 110 111

typedef struct {
  int64_t  dtime;
  tb_uid_t uid;
} STtlIdxKey;

112 113 114 115 116
typedef struct {
  tb_uid_t uid;
  int64_t  smaUid;
} SSmaIdxKey;

H
Hongze Cheng 已提交
117
#if 1
H
Hongze Cheng 已提交
118

H
Hongze Cheng 已提交
119 120 121
SMSmaCursor* metaOpenSmaCursor(SMeta* pMeta, tb_uid_t uid);
void         metaCloseSmaCursor(SMSmaCursor* pSmaCur);
int64_t      metaSmaCursorNext(SMSmaCursor* pSmaCur);
H
Hongze Cheng 已提交
122

H
Hongze Cheng 已提交
123
#ifndef META_REFACT
H
refact  
Hongze Cheng 已提交
124 125 126
// SMetaDB
int  metaOpenDB(SMeta* pMeta);
void metaCloseDB(SMeta* pMeta);
127
int  metaSaveTableToDB(SMeta* pMeta, STbCfg* pTbCfg, STbDdlH* pHandle);
L
Liu Jicong 已提交
128 129 130
int metaRemoveTableFromDb(SMeta* pMeta, tb_uid_t uid);
int metaSaveSmaToDB(SMeta* pMeta, STSma* pTbCfg);
int metaRemoveSmaFromDb(SMeta* pMeta, int64_t indexUid);
H
Hongze Cheng 已提交
131
#endif
H
refact  
Hongze Cheng 已提交
132

H
Hongze Cheng 已提交
133
#endif
H
more  
Hongze Cheng 已提交
134 135 136 137 138

#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
139
#endif /*_TD_VNODE_META_H_*/