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

dengyihao's avatar
dengyihao 已提交
19
#include "index.h"
dengyihao's avatar
dengyihao 已提交
20
#include "vnodeInt.h"
H
Hongze Cheng 已提交
21

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

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

H
Hongze Cheng 已提交
29 30
// metaDebug ==================
// clang-format off
S
Shengliang Guan 已提交
31 32 33 34 35 36
#define metaFatal(...) do { if (metaDebugFlag & DEBUG_FATAL) { taosPrintLog("MTA FATAL ", DEBUG_FATAL, 255, __VA_ARGS__); }}     while(0)
#define metaError(...) do { if (metaDebugFlag & DEBUG_ERROR) { taosPrintLog("MTA ERROR ", DEBUG_ERROR, 255, __VA_ARGS__); }}     while(0)
#define metaWarn(...)  do { if (metaDebugFlag & DEBUG_WARN)  { taosPrintLog("MTA WARN ", DEBUG_WARN, 255, __VA_ARGS__); }}       while(0)
#define metaInfo(...)  do { if (metaDebugFlag & DEBUG_INFO)  { taosPrintLog("MTA ", DEBUG_INFO, 255, __VA_ARGS__); }}            while(0)
#define metaDebug(...) do { if (metaDebugFlag & DEBUG_DEBUG) { taosPrintLog("MTA ", DEBUG_DEBUG, metaDebugFlag, __VA_ARGS__); }} while(0)
#define metaTrace(...) do { if (metaDebugFlag & DEBUG_TRACE) { taosPrintLog("MTA ", DEBUG_TRACE, metaDebugFlag, __VA_ARGS__); }} while(0)
H
Hongze Cheng 已提交
37 38
// 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
// metaQuery ==================
H
Hongze Cheng 已提交
49
int metaGetTableEntryByVersion(SMetaReader* pReader, int64_t version, tb_uid_t uid);
H
Hongze Cheng 已提交
50

H
Hongze Cheng 已提交
51 52 53 54 55 56
// 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 已提交
57
// metaCommit ==================
H
Hongze Cheng 已提交
58 59
static FORCE_INLINE tb_uid_t metaGenerateUid(SMeta* pMeta) { return tGenIdPI64(); }

H
Hongze Cheng 已提交
60 61 62
// metaTable ==================
int metaHandleEntry(SMeta* pMeta, const SMetaEntry* pME);

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

dengyihao's avatar
dengyihao 已提交
66 67 68 69 70 71 72 73 74
  char*   path;
  SVnode* pVnode;
  TDB*    pEnv;
  TXN     txn;
  TTB*    pTbDb;
  TTB*    pSkmDb;
  TTB*    pUidIdx;
  TTB*    pNameIdx;
  TTB*    pCtbIdx;
C
Cary Xu 已提交
75
  TTB*    pSuidIdx;
dengyihao's avatar
dengyihao 已提交
76
  // ivt idx and idx
dengyihao's avatar
dengyihao 已提交
77
  void* pTagIvtIdx;
dengyihao's avatar
dengyihao 已提交
78 79 80
  TTB*  pTagIdx;
  TTB*  pTtlIdx;

L
Liu Jicong 已提交
81 82 83 84
  TTB* pSmaIdx;

  TTB* pTaskIdx;

H
Hongze Cheng 已提交
85 86 87
  SMetaIdx* pIdx;
};

H
Hongze Cheng 已提交
88 89 90 91 92
typedef struct {
  int64_t  version;
  tb_uid_t uid;
} STbDbKey;

wafwerar's avatar
wafwerar 已提交
93 94
#pragma pack(push, 1)
typedef struct {
H
Hongze Cheng 已提交
95 96 97
  tb_uid_t uid;
  int32_t  sver;
} SSkmDbKey;
wafwerar's avatar
wafwerar 已提交
98
#pragma pack(pop)
H
Hongze Cheng 已提交
99 100 101 102 103 104

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

wafwerar's avatar
wafwerar 已提交
105 106
#pragma pack(push, 1)
typedef struct {
H
Hongze Cheng 已提交
107
  tb_uid_t suid;
H
Hongze Cheng 已提交
108 109 110 111
  int32_t  cid;
  uint8_t  isNull : 1;
  uint8_t  type : 7;
  uint8_t  data[];  // val + uid
H
Hongze Cheng 已提交
112
} STagIdxKey;
wafwerar's avatar
wafwerar 已提交
113
#pragma pack(pop)
H
Hongze Cheng 已提交
114 115 116 117 118 119

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

120 121 122 123 124
typedef struct {
  tb_uid_t uid;
  int64_t  smaUid;
} SSmaIdxKey;

dengyihao's avatar
dengyihao 已提交
125
// metaTable ==================
dengyihao's avatar
dengyihao 已提交
126
int metaCreateTagIdxKey(tb_uid_t suid, int32_t cid, const void* pTagData, int32_t nTagData, int8_t type, tb_uid_t uid,
dengyihao's avatar
dengyihao 已提交
127 128
                        STagIdxKey** ppTagIdxKey, int32_t* nTagIdxKey);

H
Hongze Cheng 已提交
129
#ifndef META_REFACT
H
refact  
Hongze Cheng 已提交
130 131 132
// SMetaDB
int  metaOpenDB(SMeta* pMeta);
void metaCloseDB(SMeta* pMeta);
133
int  metaSaveTableToDB(SMeta* pMeta, STbCfg* pTbCfg, STbDdlH* pHandle);
H
Hongze Cheng 已提交
134
int  metaRemoveTableFromDb(SMeta* pMeta, tb_uid_t uid);
H
Hongze Cheng 已提交
135
#endif
H
more  
Hongze Cheng 已提交
136 137 138 139 140

#ifdef __cplusplus
}
#endif

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