tsdbDef.h 1.5 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_

H
refact  
Hongze Cheng 已提交
19
#include "mallocator.h"
H
Hongze Cheng 已提交
20
#include "tcompression.h"
H
Hongze Cheng 已提交
21
#include "tglobal.h"
H
Hongze Cheng 已提交
22
#include "thash.h"
H
Hongze Cheng 已提交
23 24
#include "tlist.h"
#include "tmsg.h"
H
Hongze Cheng 已提交
25
#include "tskiplist.h"
H
Hongze Cheng 已提交
26
#include "ttime.h"
H
refact  
Hongze Cheng 已提交
27

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

#ifdef __cplusplus
extern "C" {
#endif

H
refact  
Hongze Cheng 已提交
42
struct STsdb {
H
Hongze Cheng 已提交
43
  int32_t               vgId;
H
refact  
Hongze Cheng 已提交
44
  char *                path;
H
Hongze Cheng 已提交
45
  STsdbCfg              config;
H
Hongze Cheng 已提交
46 47
  STsdbMemTable *       mem;
  STsdbMemTable *       imem;
H
Hongze Cheng 已提交
48
  SRtn                  rtn;
H
refact  
Hongze Cheng 已提交
49
  SMemAllocatorFactory *pmaf;
H
Hongze Cheng 已提交
50
  STsdbFS               fs;
H
refact  
Hongze Cheng 已提交
51 52
};

H
Hongze Cheng 已提交
53 54
#define REPO_ID(r) 0
#define REPO_CFG(r) (&(r)->config)
H
Hongze Cheng 已提交
55
#define REPO_FS(r) (&(r)->fs)
H
Hongze Cheng 已提交
56

H
refact  
Hongze Cheng 已提交
57 58 59 60
#ifdef __cplusplus
}
#endif

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