tfs.h 2.8 KB
Newer Older
H
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/>.
 */

S
Shengliang Guan 已提交
16 17
#ifndef _TD_TFS_H_
#define _TD_TFS_H_
H
Hongze Cheng 已提交
18 19 20 21 22 23 24 25

#include "tglobal.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
S
Shengliang Guan 已提交
26 27
  int32_t level;
  int32_t id;
H
Hongze Cheng 已提交
28 29 30 31 32 33 34 35 36 37 38
} SDiskID;

#define TFS_UNDECIDED_LEVEL -1
#define TFS_UNDECIDED_ID -1
#define TFS_PRIMARY_LEVEL 0
#define TFS_PRIMARY_ID 0
#define TFS_MIN_LEVEL 0
#define TFS_MAX_LEVEL (TSDB_MAX_TIERS - 1)

// FS APIs ====================================
typedef struct {
39
  int64_t total;
H
Hongze Cheng 已提交
40 41 42 43
  int64_t used;
  int64_t avail;
} SFSMeta;

S
Shengliang Guan 已提交
44 45
int32_t tfsInit(SDiskCfg *pDiskCfg, int32_t ndisk);
void    tfsCleanup();
46
void    tfsUpdateSize(SFSMeta *pFSMeta);
S
Shengliang Guan 已提交
47
void    tfsAllocDisk(int32_t expLevel, int32_t *level, int32_t *id);
H
Hongze Cheng 已提交
48 49

const char *TFS_PRIMARY_PATH();
S
Shengliang Guan 已提交
50
const char *TFS_DISK_PATH(int32_t level, int32_t id);
H
Hongze Cheng 已提交
51 52 53

// TFILE APIs ====================================
typedef struct {
S
Shengliang Guan 已提交
54 55 56 57
  int32_t level;
  int32_t id;
  char    rname[TSDB_FILENAME_LEN];  // REL name
  char    aname[TSDB_FILENAME_LEN];  // ABS name
H
Hongze Cheng 已提交
58 59 60 61 62 63 64 65 66 67
} TFILE;

#define TFILE_LEVEL(pf) ((pf)->level)
#define TFILE_ID(pf) ((pf)->id)
#define TFILE_NAME(pf) ((pf)->aname)
#define TFILE_REL_NAME(pf) ((pf)->rname)

#define tfsopen(pf, flags) open(TFILE_NAME(pf), flags)
#define tfsclose(fd) close(fd)
#define tfsremove(pf) remove(TFILE_NAME(pf))
H
fix  
Hongze Cheng 已提交
68
#define tfscopy(sf, df) taosCopyFile(TFILE_NAME(sf), TFILE_NAME(df))
H
Hongze Cheng 已提交
69 70
#define tfsrename(sf, df) taosRename(TFILE_NAME(sf), TFILE_NAME(df))

S
Shengliang Guan 已提交
71 72 73 74 75 76
void    tfsInitFile(TFILE *pf, int32_t level, int32_t id, const char *bname);
bool    tfsIsSameFile(const TFILE *pf1, const TFILE *pf2);
int32_t tfsEncodeFile(void **buf, TFILE *pf);
void   *tfsDecodeFile(void *buf, TFILE *pf);
void    tfsbasename(const TFILE *pf, char *dest);
void    tfsdirname(const TFILE *pf, char *dest);
H
Hongze Cheng 已提交
77 78

// DIR APIs ====================================
S
Shengliang Guan 已提交
79 80 81 82 83
int32_t tfsMkdirAt(const char *rname, int32_t level, int32_t id);
int32_t tfsMkdirRecurAt(const char *rname, int32_t level, int32_t id);
int32_t tfsMkdir(const char *rname);
int32_t tfsRmdir(const char *rname);
int32_t tfsRename(char *orname, char *nrname);
H
Hongze Cheng 已提交
84 85 86

typedef struct TDIR TDIR;

S
Shengliang Guan 已提交
87
TDIR        *tfsOpendir(const char *rname);
H
Hongze Cheng 已提交
88 89 90 91 92 93 94
const TFILE *tfsReaddir(TDIR *tdir);
void         tfsClosedir(TDIR *tdir);

#ifdef __cplusplus
}
#endif

S
Shengliang Guan 已提交
95
#endif /*_TD_TFS_H_*/