tfsint.h 2.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
#ifndef TD_TFSINT_H
#define TD_TFSINT_H
H
refact  
Hongze Cheng 已提交
18

H
Hongze Cheng 已提交
19 20 21
#include "tlog.h"
#include "tglobal.h"

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

H
Hongze Cheng 已提交
26 27
extern int fsDebugFlag;

H
refact  
Hongze Cheng 已提交
28
// For debug purpose
H
Hongze Cheng 已提交
29 30 31 32 33 34
#define fFatal(...) { if (fsDebugFlag & DEBUG_FATAL) { taosPrintLog("TFS FATAL ", 255, __VA_ARGS__); }}
#define fError(...) { if (fsDebugFlag & DEBUG_ERROR) { taosPrintLog("TFS ERROR ", 255, __VA_ARGS__); }}
#define fWarn(...)  { if (fsDebugFlag & DEBUG_WARN)  { taosPrintLog("TFS WARN ", 255, __VA_ARGS__); }}
#define fInfo(...)  { if (fsDebugFlag & DEBUG_INFO)  { taosPrintLog("TFS ", 255, __VA_ARGS__); }}
#define fDebug(...) { if (fsDebugFlag & DEBUG_DEBUG) { taosPrintLog("TFS ", cqDebugFlag, __VA_ARGS__); }}
#define fTrace(...) { if (fsDebugFlag & DEBUG_TRACE) { taosPrintLog("TFS ", cqDebugFlag, __VA_ARGS__); }}
H
refact  
Hongze Cheng 已提交
35

H
Hongze Cheng 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
// tdisk.c ======================================================
typedef struct {
  int32_t nfiles;
  int64_t size;
  int64_t free;
} SDiskMeta;

typedef struct SDisk {
  int       level;
  int       id;
  char      dir[TSDB_FILENAME_LEN];
  SDiskMeta dmeta;
} SDisk;

#define DISK_LEVEL(pd) ((pd)->level)
#define DISK_ID(pd) ((pd)->id)
#define DISK_DIR(pd) ((pd)->dir)
#define DISK_META(pd) ((pd)->dmeta)
#define DISK_SIZE(pd) ((pd)->dmeta.size)
#define DISK_FREE_SIZE(pd) ((pd)->dmeta.free)
#define DISK_NFILES(pd) ((pd)->dmeta.nfiles)

SDisk *tfsNewDisk(int level, int id, const char *dir);
SDisk *tfsFreeDisk(SDisk *pDisk);
void   tfsUpdateDiskInfo(SDisk *pDisk);

// ttier.c ======================================================
H
Hongze Cheng 已提交
63 64
#define TSDB_MAX_DISK_PER_TIER 16

H
Hongze Cheng 已提交
65 66 67 68
typedef struct {
  int64_t size;
  int64_t free;
} STierMeta;
H
Hongze Cheng 已提交
69
typedef struct STier {
H
Hongze Cheng 已提交
70 71 72 73
  int       level;
  int32_t   ndisk;
  STierMeta tmeta;
  SDisk *   disks[TSDB_MAX_DISK_PER_TIER];
H
Hongze Cheng 已提交
74
} STier;
H
refact  
Hongze Cheng 已提交
75

H
Hongze Cheng 已提交
76 77 78 79 80
#define TIER_LEVEL(pt) ((pt)->level)
#define TIER_NDISKS(pt) ((pt)->ndisk)
#define TIER_SIZE(pt) ((pt)->tmeta.size)
#define TIER_FREE_SIZE(pt) ((pt)->tmeta.free)
#define DISK_AT_TIER(pt, id) ((pt)->disks[id])
H
refact  
Hongze Cheng 已提交
81 82 83 84

void   tfsInitTier(STier *pTier, int level);
void   tfsDestroyTier(STier *pTier);
SDisk *tfsMountDiskToTier(STier *pTier, SDiskCfg *pCfg);
H
Hongze Cheng 已提交
85
void   tfsUpdateTierInfo(STier *pTier);
H
refact  
Hongze Cheng 已提交
86

H
refact  
Hongze Cheng 已提交
87 88 89 90 91
#ifdef __cplusplus
}
#endif

#endif