tsdbDef.h 2.1 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"
30
#include "tsdbDBDef.h"
H
Hongze Cheng 已提交
31
#include "tsdbCommit.h"
H
Hongze Cheng 已提交
32
#include "tsdbFS.h"
H
Hongze Cheng 已提交
33
#include "tsdbFile.h"
H
Hongze Cheng 已提交
34
#include "tsdbLog.h"
H
refact  
Hongze Cheng 已提交
35
#include "tsdbMemTable.h"
H
Hongze Cheng 已提交
36
#include "tsdbMemory.h"
H
refact  
Hongze Cheng 已提交
37
#include "tsdbOptions.h"
H
Hongze Cheng 已提交
38
#include "tsdbReadImpl.h"
C
Cary Xu 已提交
39
#include "tsdbSma.h"
H
refact  
Hongze Cheng 已提交
40

41

H
refact  
Hongze Cheng 已提交
42 43 44 45
#ifdef __cplusplus
extern "C" {
#endif

H
refact  
Hongze Cheng 已提交
46
struct STsdb {
H
Hongze Cheng 已提交
47
  int32_t               vgId;
C
Cary Xu 已提交
48 49
  bool                  repoLocked;
  pthread_mutex_t       mutex;
H
refact  
Hongze Cheng 已提交
50
  char *                path;
H
Hongze Cheng 已提交
51
  STsdbCfg              config;
H
Hongze Cheng 已提交
52 53
  STsdbMemTable *       mem;
  STsdbMemTable *       imem;
H
Hongze Cheng 已提交
54
  SRtn                  rtn;
H
refact  
Hongze Cheng 已提交
55
  SMemAllocatorFactory *pmaf;
H
more  
Hongze Cheng 已提交
56
  STsdbFS *             fs;
H
more  
Hongze Cheng 已提交
57
  SMeta *               pMeta;
S
Shengliang Guan 已提交
58
  STfs *                pTfs;
C
Cary Xu 已提交
59 60
  SSmaEnv *             pTSmaEnv;
  SSmaEnv *             pRSmaEnv;
H
refact  
Hongze Cheng 已提交
61 62
};

C
Cary Xu 已提交
63 64 65 66 67
#define REPO_ID(r)         ((r)->vgId)
#define REPO_CFG(r)        (&(r)->config)
#define REPO_FS(r)         (r)->fs
#define IS_REPO_LOCKED(r)  (r)->repoLocked
#define REPO_SMA_ENV(r, t) ((TSDB_SMA_TYPE_ROLLUP == (t)) ? (r)->pRSmaEnv : (r)->pTSmaEnv)
C
Cary Xu 已提交
68 69 70

int tsdbLockRepo(STsdb *pTsdb);
int tsdbUnlockRepo(STsdb *pTsdb);
H
Hongze Cheng 已提交
71

H
Hongze Cheng 已提交
72 73 74 75
static FORCE_INLINE STSchema *tsdbGetTableSchemaImpl(STable *pTable, bool lock, bool copy, int32_t version) {
  return pTable->pSchema;
}

H
refact  
Hongze Cheng 已提交
76 77 78 79
#ifdef __cplusplus
}
#endif

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