tfs.c 13.5 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
#define _DEFAULT_SOURCE
#include "tfsInt.h"
H
Hongze Cheng 已提交
18

S
Shengliang Guan 已提交
19 20 21 22 23 24 25 26 27 28
static int32_t   tfsMount(STfs *pTfs, SDiskCfg *pCfg);
static int32_t   tfsCheck(STfs *pTfs);
static int32_t   tfsCheckAndFormatCfg(STfs *pTfs, SDiskCfg *pCfg);
static int32_t   tfsFormatDir(char *idir, char *odir);
static STfsDisk *tfsGetDiskByName(STfs *pTfs, const char *dir);
static int32_t   tfsOpendirImpl(STfs *pTfs, STfsDir *pDir);
static STfsDisk *tfsNextDisk(STfs *pTfs, SDiskIter *pIter);

STfs *tfsOpen(SDiskCfg *pCfg, int32_t ndisk) {
  if (ndisk < 0 || ndisk > TFS_MAX_DISKS) {
29
    terrno = TSDB_CODE_INVALID_PARA;
S
Shengliang Guan 已提交
30
    return NULL;
31
  }
H
Hongze Cheng 已提交
32

S
Shengliang Guan 已提交
33 34 35 36 37
  STfs *pTfs = calloc(1, sizeof(STfs));
  if (pTfs == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }
H
Hongze Cheng 已提交
38

S
Shengliang Guan 已提交
39 40 41 42 43
  if (pthread_spin_init(&pTfs->lock, 0) != 0) {
    terrno = TAOS_SYSTEM_ERROR(errno);
    tfsClose(pTfs);
    return NULL;
  }
H
Hongze Cheng 已提交
44

S
Shengliang Guan 已提交
45 46 47 48 49
  for (int32_t level = 0; level < TFS_MAX_TIERS; level++) {
    STfsTier *pTier = &pTfs->tiers[level];
    if (tfsInitTier(pTier, level) < 0) {
      tfsClose(pTfs);
      return NULL;
H
Hongze Cheng 已提交
50
    }
H
Hongze Cheng 已提交
51 52
  }

S
Shengliang Guan 已提交
53 54
  pTfs->hash = taosHashInit(TFS_MAX_DISKS * 2, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), false, HASH_NO_LOCK);
  if (pTfs->hash == NULL) {
S
Shengliang Guan 已提交
55
    terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
56 57
    tfsClose(pTfs);
    return NULL;
H
Hongze Cheng 已提交
58 59
  }

S
Shengliang Guan 已提交
60
  for (int32_t idisk = 0; idisk < ndisk; idisk++) {
S
Shengliang Guan 已提交
61 62 63
    if (tfsMount(pTfs, &pCfg[idisk]) < 0) {
      tfsClose(pTfs);
      return NULL;
H
Hongze Cheng 已提交
64 65 66
    }
  }

S
Shengliang Guan 已提交
67 68 69
  if (tfsCheck(pTfs) < 0) {
    tfsClose(pTfs);
    return NULL;
H
Hongze Cheng 已提交
70 71
  }

S
Shengliang Guan 已提交
72 73 74
  tfsUpdateSize(pTfs);
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    tfsPosNextId(&pTfs->tiers[level]);
H
Hongze Cheng 已提交
75
  }
H
Hongze Cheng 已提交
76

S
Shengliang Guan 已提交
77
  return pTfs;
H
Hongze Cheng 已提交
78 79
}

S
Shengliang Guan 已提交
80 81
void tfsClose(STfs *pTfs) {
  if (pTfs == NULL) return;
H
Hongze Cheng 已提交
82

S
Shengliang Guan 已提交
83 84
  for (int32_t level = 0; level < TFS_MAX_LEVEL; level++) {
    tfsDestroyTier(&pTfs->tiers[level]);
H
Hongze Cheng 已提交
85
  }
S
Shengliang Guan 已提交
86 87 88 89

  taosHashCleanup(pTfs->hash);
  pthread_spin_destroy(&pTfs->lock);
  free(pTfs);
H
Hongze Cheng 已提交
90 91
}

S
Shengliang Guan 已提交
92
void tfsUpdateSize(STfs *pTfs) {
93
  SDiskSize size = {0};
H
Hongze Cheng 已提交
94

S
Shengliang Guan 已提交
95 96
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = &pTfs->tiers[level];
97
    tfsUpdateTierSize(pTier);
S
Shengliang Guan 已提交
98 99 100
    size.total += pTier->size.total;
    size.avail += pTier->size.avail;
    size.used += pTier->size.used;
H
Hongze Cheng 已提交
101 102
  }

S
Shengliang Guan 已提交
103 104 105
  tfsLock(pTfs);
  pTfs->size = size;
  tfsUnLock(pTfs);
H
Hongze Cheng 已提交
106 107
}

S
Shengliang Guan 已提交
108 109 110 111
SDiskSize tfsGetSize(STfs *pTfs) {
  tfsLock(pTfs);
  SDiskSize size = pTfs->size;
  tfsUnLock(pTfs);
H
Hongze Cheng 已提交
112

S
Shengliang Guan 已提交
113 114 115 116 117 118
  return size;
}

int32_t tfsAllocDisk(STfs *pTfs, int32_t expLevel, SDiskID *pDiskId) {
  pDiskId->level = expLevel;
  pDiskId->id = -1;
H
Hongze Cheng 已提交
119

S
Shengliang Guan 已提交
120 121
  if (pDiskId->level >= pTfs->nlevel) {
    pDiskId->level--;
H
Hongze Cheng 已提交
122 123
  }

S
Shengliang Guan 已提交
124 125 126 127
  while (pDiskId->level >= 0) {
    pDiskId->id = tfsAllocDiskOnTier(&pTfs->tiers[pDiskId->level]);
    if (pDiskId->id < 0) {
      pDiskId->level--;
H
Hongze Cheng 已提交
128 129 130
      continue;
    }

S
Shengliang Guan 已提交
131
    return 0;
H
Hongze Cheng 已提交
132 133
  }

S
Shengliang Guan 已提交
134 135
  terrno = TSDB_CODE_FS_NO_VALID_DISK;
  return -1;
H
Hongze Cheng 已提交
136 137
}

S
Shengliang Guan 已提交
138
const char *tfsGetPrimaryPath(STfs *pTfs) { return TFS_PRIMARY_DISK(pTfs)->path; }
H
Hongze Cheng 已提交
139

S
Shengliang Guan 已提交
140
const char *tfsGetDiskPath(STfs *pTfs, SDiskID diskId) { return TFS_DISK_AT(pTfs, diskId)->path; }
H
Hongze Cheng 已提交
141

S
Shengliang Guan 已提交
142 143
void tfsInitFile(STfs *pTfs, STfsFile *pFile, SDiskID diskId, const char *rname) {
  STfsDisk *pDisk = TFS_DISK_AT(pTfs, diskId);
H
Hongze Cheng 已提交
144

S
Shengliang Guan 已提交
145 146
  pFile->did = diskId;
  tstrncpy(pFile->rname, rname, TSDB_FILENAME_LEN);
S
TD-1207  
Shengliang Guan 已提交
147 148

  char tmpName[TMPNAME_LEN] = {0};
S
Shengliang Guan 已提交
149 150 151
  snprintf(tmpName, TMPNAME_LEN, "%s%s%s", DISK_DIR(pDisk), TD_DIRSEP, rname);
  tstrncpy(pFile->aname, tmpName, TSDB_FILENAME_LEN);
  pFile->pTfs = pTfs;
H
Hongze Cheng 已提交
152 153
}

S
Shengliang Guan 已提交
154 155 156 157 158 159
bool tfsIsSameFile(const STfsFile *pFile1, const STfsFile *pFile2) {
  ASSERT(pFile1 != NULL || pFile2 != NULL);
  if (pFile1 == NULL || pFile2 == NULL || pFile1->pTfs != pFile2->pTfs) return false;
  if (pFile1->did.level != pFile2->did.level) return false;
  if (pFile1->did.id != pFile2->did.id) return false;
  if (strncmp(pFile1->rname, pFile2->rname, TSDB_FILENAME_LEN) != 0) return false;
H
Hongze Cheng 已提交
160 161 162
  return true;
}

S
Shengliang Guan 已提交
163
int32_t tfsEncodeFile(void **buf, STfsFile *pFile) {
S
Shengliang Guan 已提交
164
  int32_t tlen = 0;
H
Hongze Cheng 已提交
165

S
Shengliang Guan 已提交
166 167 168
  tlen += taosEncodeVariantI32(buf, pFile->did.level);
  tlen += taosEncodeVariantI32(buf, pFile->did.id);
  tlen += taosEncodeString(buf, pFile->rname);
H
Hongze Cheng 已提交
169 170 171 172

  return tlen;
}

S
Shengliang Guan 已提交
173 174 175
void *tfsDecodeFile(STfs *pTfs, void *buf, STfsFile *pFile) {
  SDiskID diskId = {0};
  char   *rname = NULL;
H
Hongze Cheng 已提交
176

S
Shengliang Guan 已提交
177 178
  buf = taosDecodeVariantI32(buf, &diskId.level);
  buf = taosDecodeVariantI32(buf, &diskId.id);
H
Hongze Cheng 已提交
179 180
  buf = taosDecodeString(buf, &rname);

S
Shengliang Guan 已提交
181
  tfsInitFile(pTfs, pFile, diskId, rname);
H
Hongze Cheng 已提交
182 183 184 185 186

  tfree(rname);
  return buf;
}

S
Shengliang Guan 已提交
187
void tfsBasename(const STfsFile *pFile, char *dest) {
H
Hongze Cheng 已提交
188 189
  char tname[TSDB_FILENAME_LEN] = "\0";

S
Shengliang Guan 已提交
190
  tstrncpy(tname, pFile->aname, TSDB_FILENAME_LEN);
191
  tstrncpy(dest, basename(tname), TSDB_FILENAME_LEN);
H
Hongze Cheng 已提交
192 193
}

S
Shengliang Guan 已提交
194
void tfsDirname(const STfsFile *pFile, char *dest) {
H
Hongze Cheng 已提交
195 196
  char tname[TSDB_FILENAME_LEN] = "\0";

S
Shengliang Guan 已提交
197
  tstrncpy(tname, pFile->aname, TSDB_FILENAME_LEN);
198
  tstrncpy(dest, dirname(tname), TSDB_FILENAME_LEN);
H
Hongze Cheng 已提交
199 200
}

S
Shengliang Guan 已提交
201 202 203
int32_t tfsMkdirAt(STfs *pTfs, const char *rname, SDiskID diskId) {
  STfsDisk *pDisk = TFS_DISK_AT(pTfs, diskId);
  char      aname[TMPNAME_LEN];
H
Hongze Cheng 已提交
204

S
Shengliang Guan 已提交
205
  snprintf(aname, TMPNAME_LEN, "%s%s%s", pDisk->path, TD_DIRSEP, rname);
206
  if (taosMkDir(aname) != 0) {
H
Hongze Cheng 已提交
207 208 209 210 211 212 213
    terrno = TAOS_SYSTEM_ERROR(errno);
    return -1;
  }

  return 0;
}

S
Shengliang Guan 已提交
214 215
int32_t tfsMkdirRecurAt(STfs *pTfs, const char *rname, SDiskID diskId) {
  if (tfsMkdirAt(pTfs, rname, diskId) < 0) {
H
Hongze Cheng 已提交
216 217 218 219
    if (errno == ENOENT) {
      // Try to create upper
      char *s = strdup(rname);

J
Jun Li 已提交
220 221 222 223
      // Make a copy of dirname(s) because the implementation of 'dirname' differs on different platforms.
      // Some platform may modify the contents of the string passed into dirname(). Others may return a pointer to
      // internal static storage space that will be overwritten by next call. For case like that, we should not use
      // the pointer directly in this recursion.
H
Hongze Cheng 已提交
224 225
      // See
      // https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/dirname.3.html
J
Jun Li 已提交
226 227
      char *dir = strdup(dirname(s));

S
Shengliang Guan 已提交
228
      if (tfsMkdirRecurAt(pTfs, dir, diskId) < 0) {
J
Jun Li 已提交
229 230
        free(s);
        free(dir);
H
Hongze Cheng 已提交
231 232
        return -1;
      }
J
Jun Li 已提交
233 234
      free(s);
      free(dir);
H
Hongze Cheng 已提交
235

S
Shengliang Guan 已提交
236
      if (tfsMkdirAt(pTfs, rname, diskId) < 0) {
H
Hongze Cheng 已提交
237 238 239 240 241 242 243 244 245 246
        return -1;
      }
    } else {
      return -1;
    }
  }

  return 0;
}

S
Shengliang Guan 已提交
247 248 249 250 251 252
int32_t tfsMkdir(STfs *pTfs, const char *rname) {
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = TFS_TIER_AT(pTfs, level);
    for (int32_t id = 0; id < pTier->ndisk; id++) {
      SDiskID did = {.id = id, .level = level};
      if (tfsMkdirAt(pTfs, rname, did) < 0) {
H
Hongze Cheng 已提交
253 254 255 256 257 258 259 260
        return -1;
      }
    }
  }

  return 0;
}

S
Shengliang Guan 已提交
261
int32_t tfsRmdir(STfs *pTfs, const char *rname) {
S
TD-1207  
Shengliang Guan 已提交
262
  char aname[TMPNAME_LEN] = "\0";
H
Hongze Cheng 已提交
263

S
Shengliang Guan 已提交
264 265 266 267 268
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = TFS_TIER_AT(pTfs, level);
    for (int32_t id = 0; id < pTier->ndisk; id++) {
      STfsDisk *pDisk = pTier->disks[id];
      snprintf(aname, TMPNAME_LEN, "%s%s%s", pDisk->path, TD_DIRSEP, rname);
H
Hongze Cheng 已提交
269
      taosRemoveDir(aname);
H
Hongze Cheng 已提交
270 271 272 273 274 275
    }
  }

  return 0;
}

S
Shengliang Guan 已提交
276
int32_t tfsRename(STfs *pTfs, char *orname, char *nrname) {
S
TD-1207  
Shengliang Guan 已提交
277 278
  char oaname[TMPNAME_LEN] = "\0";
  char naname[TMPNAME_LEN] = "\0";
H
Hongze Cheng 已提交
279

S
Shengliang Guan 已提交
280 281 282 283 284 285 286 287 288
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    STfsTier *pTier = TFS_TIER_AT(pTfs, level);
    for (int32_t id = 0; id < pTier->ndisk; id++) {
      STfsDisk *pDisk = pTier->disks[id];
      snprintf(oaname, TMPNAME_LEN, "%s%s%s", DISK_DIR(pDisk), TD_DIRSEP, orname);
      snprintf(naname, TMPNAME_LEN, "%s%s%s", DISK_DIR(pDisk), TD_DIRSEP, nrname);
      if (taosRenameFile(oaname, naname) != 0) {
        return -1;
      }
H
Hongze Cheng 已提交
289 290 291 292 293
    }
  }

  return 0;
}
S
Shengliang Guan 已提交
294 295 296 297

STfsDir *tfsOpendir(STfs *pTfs, const char *rname) {
  STfsDir *pDir = calloc(1, sizeof(STfsDir));
  if (pDir == NULL) {
298
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
299 300 301
    return NULL;
  }

S
Shengliang Guan 已提交
302 303 304 305
  SDiskID diskId = {.id = 0, .level = 0};
  pDir->iter->pDisk = TFS_DISK_AT(pTfs, diskId);
  pDir->pTfs = pTfs;
  tstrncpy(pDir->dirname, rname, TSDB_FILENAME_LEN);
H
Hongze Cheng 已提交
306

S
Shengliang Guan 已提交
307 308
  if (tfsOpendirImpl(pTfs, pDir) < 0) {
    free(pDir);
H
Hongze Cheng 已提交
309 310 311
    return NULL;
  }

S
Shengliang Guan 已提交
312
  return pDir;
H
Hongze Cheng 已提交
313 314
}

S
Shengliang Guan 已提交
315 316
const STfsFile *tfsReaddir(STfsDir *pDir) {
  if (pDir == NULL || pDir->dir == NULL) return NULL;
S
TD-1207  
Shengliang Guan 已提交
317
  char bname[TMPNAME_LEN * 2] = "\0";
H
Hongze Cheng 已提交
318 319 320

  while (true) {
    struct dirent *dp = NULL;
S
Shengliang Guan 已提交
321
    dp = readdir(pDir->dir);
H
Hongze Cheng 已提交
322
    if (dp != NULL) {
323 324 325
      // Skip . and ..
      if (strcmp(dp->d_name, ".") == 0 || strcmp(dp->d_name, "..") == 0) continue;

S
Shengliang Guan 已提交
326 327 328
      snprintf(bname, TMPNAME_LEN * 2, "%s/%s", pDir->dirname, dp->d_name);
      tfsInitFile(pDir->pTfs, &pDir->tfile, pDir->did, bname);
      return &pDir->tfile;
H
Hongze Cheng 已提交
329 330
    }

S
Shengliang Guan 已提交
331
    if (tfsOpendirImpl(pDir->pTfs, pDir) < 0) {
H
Hongze Cheng 已提交
332 333 334
      return NULL;
    }

S
Shengliang Guan 已提交
335
    if (pDir->dir == NULL) {
H
Hongze Cheng 已提交
336 337 338 339 340 341
      terrno = TSDB_CODE_SUCCESS;
      return NULL;
    }
  }
}

S
Shengliang Guan 已提交
342 343 344 345 346
void tfsClosedir(STfsDir *pDir) {
  if (pDir) {
    if (pDir->dir != NULL) {
      closedir(pDir->dir);
      pDir->dir = NULL;
H
Hongze Cheng 已提交
347
    }
S
Shengliang Guan 已提交
348
    free(pDir);
H
Hongze Cheng 已提交
349 350 351
  }
}

S
Shengliang Guan 已提交
352 353 354 355
static int32_t tfsMount(STfs *pTfs, SDiskCfg *pCfg) {
  if (tfsCheckAndFormatCfg(pTfs, pCfg) < 0) {
    return -1;
  }
H
Hongze Cheng 已提交
356

S
Shengliang Guan 已提交
357 358
  SDiskID   did = {.level = pCfg->level};
  STfsDisk *pDisk = tfsMountDiskToTier(TFS_TIER_AT(pTfs, did.level), pCfg);
H
Hongze Cheng 已提交
359
  if (pDisk == NULL) {
S
Shengliang Guan 已提交
360
    fError("failed to mount disk %s to level %d since %s", pCfg->dir, pCfg->level, terrstr());
H
refact  
Hongze Cheng 已提交
361
    return -1;
H
Hongze Cheng 已提交
362
  }
363
  did.id = pDisk->id;
H
Hongze Cheng 已提交
364

S
Shengliang Guan 已提交
365 366 367 368
  taosHashPut(pTfs->hash, (void *)(pCfg->dir), strnlen(pCfg->dir, TSDB_FILENAME_LEN), (void *)(&did), sizeof(did));
  if (pTfs->nlevel < pCfg->level + 1) {
    pTfs->nlevel = pCfg->level + 1;
  }
H
Hongze Cheng 已提交
369 370 371 372

  return 0;
}

S
Shengliang Guan 已提交
373
static int32_t tfsCheckAndFormatCfg(STfs *pTfs, SDiskCfg *pCfg) {
H
Hongze Cheng 已提交
374 375 376
  char        dirName[TSDB_FILENAME_LEN] = "\0";
  struct stat pstat;

S
Shengliang Guan 已提交
377
  if (pCfg->level < 0 || pCfg->level >= TFS_MAX_TIERS) {
H
Hongze Cheng 已提交
378
    fError("failed to mount %s to FS since invalid level %d", pCfg->dir, pCfg->level);
H
Hongze Cheng 已提交
379 380 381 382
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

H
refact  
Hongze Cheng 已提交
383 384
  if (pCfg->primary) {
    if (pCfg->level != 0) {
H
Hongze Cheng 已提交
385
      fError("failed to mount %s to FS since disk is primary but level %d not 0", pCfg->dir, pCfg->level);
H
refact  
Hongze Cheng 已提交
386 387 388
      terrno = TSDB_CODE_FS_INVLD_CFG;
      return -1;
    }
H
Hongze Cheng 已提交
389

S
Shengliang Guan 已提交
390
    if (TFS_PRIMARY_DISK(pTfs) != NULL) {
H
Hongze Cheng 已提交
391
      fError("failed to mount %s to FS since duplicate primary mount", pCfg->dir);
H
refact  
Hongze Cheng 已提交
392 393 394 395
      terrno = TSDB_CODE_FS_DUP_PRIMARY;
      return -1;
    }
  }
H
Hongze Cheng 已提交
396

H
Hongze Cheng 已提交
397
  if (tfsFormatDir(pCfg->dir, dirName) < 0) {
H
Hongze Cheng 已提交
398
    fError("failed to mount %s to FS since invalid dir format", pCfg->dir);
H
Hongze Cheng 已提交
399 400 401 402
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

S
Shengliang Guan 已提交
403
  if (tfsGetDiskByName(pTfs, dirName) != NULL) {
H
Hongze Cheng 已提交
404
    fError("failed to mount %s to FS since duplicate mount", pCfg->dir);
H
Hongze Cheng 已提交
405 406 407 408 409
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

  if (access(dirName, W_OK | R_OK | F_OK) != 0) {
H
Hongze Cheng 已提交
410
    fError("failed to mount %s to FS since no R/W access rights", pCfg->dir);
H
Hongze Cheng 已提交
411 412 413 414 415
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

  if (stat(dirName, &pstat) < 0) {
H
Hongze Cheng 已提交
416
    fError("failed to mount %s to FS since %s", pCfg->dir, strerror(errno));
H
Hongze Cheng 已提交
417 418 419 420 421
    terrno = TAOS_SYSTEM_ERROR(errno);
    return -1;
  }

  if (!S_ISDIR(pstat.st_mode)) {
H
Hongze Cheng 已提交
422
    fError("failed to mount %s to FS since not a directory", pCfg->dir);
H
Hongze Cheng 已提交
423 424 425 426 427 428 429 430 431
    terrno = TSDB_CODE_FS_INVLD_CFG;
    return -1;
  }

  strncpy(pCfg->dir, dirName, TSDB_FILENAME_LEN);

  return 0;
}

S
Shengliang Guan 已提交
432
static int32_t tfsFormatDir(char *idir, char *odir) {
H
Hongze Cheng 已提交
433 434
  wordexp_t wep = {0};

S
Shengliang Guan 已提交
435
  int32_t code = wordexp(idir, &wep, 0);
H
Hongze Cheng 已提交
436 437 438 439 440
  if (code != 0) {
    terrno = TAOS_SYSTEM_ERROR(code);
    return -1;
  }

441 442
  char tmp[PATH_MAX] = {0};
  if (realpath(wep.we_wordv[0], tmp) == NULL) {
H
Hongze Cheng 已提交
443 444 445 446
    terrno = TAOS_SYSTEM_ERROR(errno);
    wordfree(&wep);
    return -1;
  }
447
  strcpy(odir, tmp);
H
Hongze Cheng 已提交
448 449 450 451 452

  wordfree(&wep);
  return 0;
}

S
Shengliang Guan 已提交
453 454
static int32_t tfsCheck(STfs *pTfs) {
  if (TFS_PRIMARY_DISK(pTfs) == NULL) {
H
Hongze Cheng 已提交
455 456 457 458 459
    fError("no primary disk is set");
    terrno = TSDB_CODE_FS_NO_PRIMARY_DISK;
    return -1;
  }

S
Shengliang Guan 已提交
460 461
  for (int32_t level = 0; level < pTfs->nlevel; level++) {
    if (TFS_TIER_AT(pTfs, level)->ndisk == 0) {
H
Hongze Cheng 已提交
462
      fError("no disk at level %d", level);
H
refact  
Hongze Cheng 已提交
463
      terrno = TSDB_CODE_FS_NO_MOUNT_AT_TIER;
H
Hongze Cheng 已提交
464 465
      return -1;
    }
H
Hongze Cheng 已提交
466
  }
H
Hongze Cheng 已提交
467

H
Hongze Cheng 已提交
468 469 470
  return 0;
}

S
Shengliang Guan 已提交
471 472
static STfsDisk *tfsGetDiskByName(STfs *pTfs, const char *dir) {
  void *pr = taosHashGet(pTfs->hash, (void *)dir, strnlen(dir, TSDB_FILENAME_LEN));
H
Hongze Cheng 已提交
473 474
  if (pr == NULL) return NULL;

S
Shengliang Guan 已提交
475 476
  SDiskID   did = *(SDiskID *)pr;
  STfsDisk *pDisk = TFS_DISK_AT(pTfs, did);
H
refact  
Hongze Cheng 已提交
477

H
Hongze Cheng 已提交
478
  return pDisk;
H
Hongze Cheng 已提交
479 480
}

S
Shengliang Guan 已提交
481 482 483
static int32_t tfsOpendirImpl(STfs *pTfs, STfsDir *pDir) {
  STfsDisk *pDisk = NULL;
  char      adir[TMPNAME_LEN * 2] = "\0";
H
Hongze Cheng 已提交
484

S
Shengliang Guan 已提交
485 486 487
  if (pDir->dir != NULL) {
    closedir(pDir->dir);
    pDir->dir = NULL;
H
Hongze Cheng 已提交
488 489 490
  }

  while (true) {
S
Shengliang Guan 已提交
491
    pDisk = tfsNextDisk(pTfs, pDir->iter);
H
Hongze Cheng 已提交
492 493
    if (pDisk == NULL) return 0;

S
Shengliang Guan 已提交
494 495
    pDir->did.level = pDisk->level;
    pDir->did.id = pDisk->id;
H
Hongze Cheng 已提交
496

S
Shengliang Guan 已提交
497 498 499
    snprintf(adir, TMPNAME_LEN * 2, "%s%s%s", pDisk->path, TD_DIRSEP, pDir->dirname);
    pDir->dir = opendir(adir);
    if (pDir->dir != NULL) break;
H
Hongze Cheng 已提交
500 501 502 503 504
  }

  return 0;
}

S
Shengliang Guan 已提交
505 506
static STfsDisk *tfsNextDisk(STfs *pTfs, SDiskIter *pIter) {
  if (pIter == NULL) return NULL;
H
Hongze Cheng 已提交
507

S
Shengliang Guan 已提交
508 509
  STfsDisk *pDisk = pIter->pDisk;
  SDiskID   did = {.level = pDisk->level, .id = pDisk->id + 1};
H
Hongze Cheng 已提交
510

S
Shengliang Guan 已提交
511 512
  if (did.id < TFS_TIER_AT(pTfs, did.level)->ndisk) {
    pIter->pDisk = TFS_DISK_AT(pTfs, did);
H
Hongze Cheng 已提交
513
  } else {
S
Shengliang Guan 已提交
514 515 516 517
    did.level++;
    did.id = 0;
    if (did.level < pTfs->nlevel) {
      pIter->pDisk = TFS_DISK_AT(pTfs, did);
H
Hongze Cheng 已提交
518 519 520 521 522 523 524
    } else {
      pIter->pDisk = NULL;
    }
  }

  return pDisk;
}