tsdbDef.h 1.7 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 18
#ifndef _TD_TSDB_DEF_H_
#define _TD_TSDB_DEF_H_

S
Shengliang Guan 已提交
19
#include "tmallocator.h"
H
more  
Hongze Cheng 已提交
20
#include "meta.h"
H
Hongze Cheng 已提交
21
#include "tcompression.h"
H
Hongze Cheng 已提交
22
#include "tglobal.h"
H
Hongze Cheng 已提交
23
#include "thash.h"
H
Hongze Cheng 已提交
24 25
#include "tlist.h"
#include "tmsg.h"
H
Hongze Cheng 已提交
26
#include "tskiplist.h"
H
Hongze Cheng 已提交
27
#include "ttime.h"
H
refact  
Hongze Cheng 已提交
28

H
refact  
Hongze Cheng 已提交
29
#include "tsdb.h"
H
Hongze Cheng 已提交
30
#include "tsdbCommit.h"
H
Hongze Cheng 已提交
31
#include "tsdbFS.h"
H
Hongze Cheng 已提交
32
#include "tsdbFile.h"
H
Hongze Cheng 已提交
33
#include "tsdbLog.h"
H
refact  
Hongze Cheng 已提交
34
#include "tsdbMemTable.h"
H
Hongze Cheng 已提交
35
#include "tsdbMemory.h"
H
refact  
Hongze Cheng 已提交
36
#include "tsdbOptions.h"
H
Hongze Cheng 已提交
37
#include "tsdbReadImpl.h"
H
refact  
Hongze Cheng 已提交
38 39 40 41 42

#ifdef __cplusplus
extern "C" {
#endif

H
refact  
Hongze Cheng 已提交
43
struct STsdb {
H
Hongze Cheng 已提交
44
  int32_t               vgId;
H
refact  
Hongze Cheng 已提交
45
  char *                path;
H
Hongze Cheng 已提交
46
  STsdbCfg              config;
H
Hongze Cheng 已提交
47 48
  STsdbMemTable *       mem;
  STsdbMemTable *       imem;
H
Hongze Cheng 已提交
49
  SRtn                  rtn;
H
refact  
Hongze Cheng 已提交
50
  SMemAllocatorFactory *pmaf;
H
more  
Hongze Cheng 已提交
51
  STsdbFS *             fs;
H
more  
Hongze Cheng 已提交
52
  SMeta *               pMeta;
S
Shengliang Guan 已提交
53
  STfs *                pTfs;
H
refact  
Hongze Cheng 已提交
54 55
};

H
more  
Hongze Cheng 已提交
56
#define REPO_ID(r) ((r)->vgId)
H
Hongze Cheng 已提交
57
#define REPO_CFG(r) (&(r)->config)
H
more  
Hongze Cheng 已提交
58
#define REPO_FS(r) (r)->fs
H
Hongze Cheng 已提交
59

H
Hongze Cheng 已提交
60 61 62 63
static FORCE_INLINE STSchema *tsdbGetTableSchemaImpl(STable *pTable, bool lock, bool copy, int32_t version) {
  return pTable->pSchema;
}

H
refact  
Hongze Cheng 已提交
64 65 66 67
#ifdef __cplusplus
}
#endif

H
refact  
Hongze Cheng 已提交
68
#endif /*_TD_TSDB_DEF_H_*/