tsdbFS.c 38.3 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
TD-1207  
Shengliang Guan 已提交
16
#include <regex.h>
H
Hongze Cheng 已提交
17 18
#include "os.h"
#include "tsdbDef.h"
H
Hongze Cheng 已提交
19

H
Hongze Cheng 已提交
20 21
typedef enum { TSDB_TXN_TEMP_FILE = 0, TSDB_TXN_CURR_FILE } TSDB_TXN_FILE_T;
static const char *tsdbTxnFname[] = {"current.t", "current"};
H
Hongze Cheng 已提交
22
#define TSDB_MAX_FSETS(keep, days) ((keep) / (days) + 3)
H
Hongze Cheng 已提交
23

H
Hongze Cheng 已提交
24 25
static int  tsdbComparFidFSet(const void *arg1, const void *arg2);
static void tsdbResetFSStatus(SFSStatus *pStatus);
S
Shengliang Guan 已提交
26
static int  tsdbSaveFSStatus(STfs *pTfs, SFSStatus *pStatus, int vid);
H
Hongze Cheng 已提交
27
static void tsdbApplyFSTxnOnDisk(SFSStatus *pFrom, SFSStatus *pTo);
S
Shengliang Guan 已提交
28
static void tsdbGetTxnFname(STfs *pTfs, int repoid, TSDB_TXN_FILE_T ftype, char fname[]);
H
Hongze Cheng 已提交
29 30 31 32
static int  tsdbOpenFSFromCurrent(STsdb *pRepo);
static int  tsdbScanAndTryFixFS(STsdb *pRepo);
static int  tsdbScanRootDir(STsdb *pRepo);
static int  tsdbScanDataDir(STsdb *pRepo);
S
Shengliang Guan 已提交
33
static bool tsdbIsTFileInFS(STsdbFS *pfs, const STfsFile *pf);
H
Hongze Cheng 已提交
34
static int  tsdbRestoreCurrent(STsdb *pRepo);
H
Hongze Cheng 已提交
35
static int  tsdbComparTFILE(const void *arg1, const void *arg2);
H
Hongze Cheng 已提交
36
static void tsdbScanAndTryFixDFilesHeader(STsdb *pRepo, int32_t *nExpired);
H
Hongze Cheng 已提交
37 38 39 40 41 42 43 44 45 46
// static int  tsdbProcessExpiredFS(STsdb *pRepo);
// static int  tsdbCreateMeta(STsdb *pRepo);

static void tsdbGetRootDir(int repoid, char dirName[]) {
  snprintf(dirName, TSDB_FILENAME_LEN, "vnode/vnode%d/tsdb", repoid);
}

static void tsdbGetDataDir(int repoid, char dirName[]) {
  snprintf(dirName, TSDB_FILENAME_LEN, "vnode/vnode%d/tsdb/data", repoid);
}
H
Hongze Cheng 已提交
47

48
// For backward compatibility
H
Hongze Cheng 已提交
49 50 51 52 53 54 55 56 57 58
// ================== CURRENT file header info
static int tsdbEncodeFSHeader(void **buf, SFSHeader *pHeader) {
  int tlen = 0;

  tlen += taosEncodeFixedU32(buf, pHeader->version);
  tlen += taosEncodeFixedU32(buf, pHeader->len);

  return tlen;
}

H
Hongze Cheng 已提交
59
static void *tsdbDecodeFSHeader(void *buf, SFSHeader *pHeader) {
H
Hongze Cheng 已提交
60 61
  buf = taosDecodeFixedU32(buf, &(pHeader->version));
  buf = taosDecodeFixedU32(buf, &(pHeader->len));
H
Hongze Cheng 已提交
62 63 64 65 66 67 68 69

  return buf;
}

// ================== STsdbFSMeta
static int tsdbEncodeFSMeta(void **buf, STsdbFSMeta *pMeta) {
  int tlen = 0;

H
Hongze Cheng 已提交
70
  tlen += taosEncodeFixedU32(buf, pMeta->version);
H
Hongze Cheng 已提交
71 72 73 74 75 76
  tlen += taosEncodeFixedI64(buf, pMeta->totalPoints);
  tlen += taosEncodeFixedI64(buf, pMeta->totalStorage);

  return tlen;
}

H
Hongze Cheng 已提交
77
static void *tsdbDecodeFSMeta(void *buf, STsdbFSMeta *pMeta) {
H
Hongze Cheng 已提交
78
  buf = taosDecodeFixedU32(buf, &(pMeta->version));
H
Hongze Cheng 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
  buf = taosDecodeFixedI64(buf, &(pMeta->totalPoints));
  buf = taosDecodeFixedI64(buf, &(pMeta->totalStorage));

  return buf;
}

// ================== SFSStatus
static int tsdbEncodeDFileSetArray(void **buf, SArray *pArray) {
  int      tlen = 0;
  uint64_t nset = taosArrayGetSize(pArray);

  tlen += taosEncodeFixedU64(buf, nset);
  for (size_t i = 0; i < nset; i++) {
    SDFileSet *pSet = taosArrayGet(pArray, i);

    tlen += tsdbEncodeDFileSet(buf, pSet);
  }

  return tlen;
}

S
Shengliang Guan 已提交
100
static void *tsdbDecodeDFileSetArray(STsdb*pRepo, void *buf, SArray *pArray) {
H
Hongze Cheng 已提交
101 102 103 104 105 106 107
  uint64_t  nset;
  SDFileSet dset;

  taosArrayClear(pArray);

  buf = taosDecodeFixedU64(buf, &nset);
  for (size_t i = 0; i < nset; i++) {
S
Shengliang Guan 已提交
108
    buf = tsdbDecodeDFileSet(pRepo, buf, &dset);
H
Hongze Cheng 已提交
109 110 111 112 113 114
    taosArrayPush(pArray, (void *)(&dset));
  }
  return buf;
}

static int tsdbEncodeFSStatus(void **buf, SFSStatus *pStatus) {
H
Hongze Cheng 已提交
115
  // ASSERT(pStatus->pmf);
H
Hongze Cheng 已提交
116

H
Hongze Cheng 已提交
117 118
  int tlen = 0;

H
Hongze Cheng 已提交
119
  // tlen += tsdbEncodeSMFile(buf, pStatus->pmf);
H
Hongze Cheng 已提交
120 121 122 123 124
  tlen += tsdbEncodeDFileSetArray(buf, pStatus->df);

  return tlen;
}

S
Shengliang Guan 已提交
125
static void *tsdbDecodeFSStatus(STsdb*pRepo, void *buf, SFSStatus *pStatus) {
H
Hongze Cheng 已提交
126 127
  tsdbResetFSStatus(pStatus);

H
Hongze Cheng 已提交
128
  // pStatus->pmf = &(pStatus->mf);
H
Hongze Cheng 已提交
129

H
Hongze Cheng 已提交
130
  // buf = tsdbDecodeSMFile(buf, pStatus->pmf);
S
Shengliang Guan 已提交
131
  buf = tsdbDecodeDFileSetArray(pRepo, buf, pStatus->df);
H
Hongze Cheng 已提交
132 133 134 135 136 137 138 139 140 141 142

  return buf;
}

static SFSStatus *tsdbNewFSStatus(int maxFSet) {
  SFSStatus *pStatus = (SFSStatus *)calloc(1, sizeof(*pStatus));
  if (pStatus == NULL) {
    terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
    return NULL;
  }

H
Hongze Cheng 已提交
143
  // TSDB_FILE_SET_CLOSED(&(pStatus->mf));
H
Hongze Cheng 已提交
144

H
Hongze Cheng 已提交
145
  pStatus->df = taosArrayInit(maxFSet, sizeof(SDFileSet));
H
Hongze Cheng 已提交
146
  if (pStatus->df == NULL) {
H
Hongze Cheng 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
    terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
    free(pStatus);
    return NULL;
  }

  return pStatus;
}

static SFSStatus *tsdbFreeFSStatus(SFSStatus *pStatus) {
  if (pStatus) {
    pStatus->df = taosArrayDestroy(pStatus->df);
    free(pStatus);
  }

  return NULL;
}

static void tsdbResetFSStatus(SFSStatus *pStatus) {
  if (pStatus == NULL) {
    return;
  }

H
Hongze Cheng 已提交
169
  // TSDB_FILE_SET_CLOSED(&(pStatus->mf));
H
Hongze Cheng 已提交
170

H
Hongze Cheng 已提交
171
  // pStatus->pmf = NULL;
H
Hongze Cheng 已提交
172 173 174
  taosArrayClear(pStatus->df);
}

H
Hongze Cheng 已提交
175 176
// static void tsdbSetStatusMFile(SFSStatus *pStatus, const SMFile *pMFile) {
//   ASSERT(pStatus->pmf == NULL);
H
Hongze Cheng 已提交
177

H
Hongze Cheng 已提交
178 179 180
//   pStatus->pmf = &(pStatus->mf);
//   tsdbInitMFileEx(pStatus->pmf, (SMFile *)pMFile);
// }
H
Hongze Cheng 已提交
181 182

static int tsdbAddDFileSetToStatus(SFSStatus *pStatus, const SDFileSet *pSet) {
H
Hongze Cheng 已提交
183
  if (taosArrayPush(pStatus->df, (void *)pSet) == NULL) {
H
Hongze Cheng 已提交
184 185 186 187
    terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
    return -1;
  }

H
refact  
Hongze Cheng 已提交
188 189
  TSDB_FSET_SET_CLOSED(((SDFileSet *)taosArrayGetLast(pStatus->df)));

H
Hongze Cheng 已提交
190 191 192
  return 0;
}

H
Hongze Cheng 已提交
193
// ================== STsdbFS
H
more  
Hongze Cheng 已提交
194
STsdbFS *tsdbNewFS(const STsdbCfg *pCfg) {
H
Hongze Cheng 已提交
195 196
  int      keep = pCfg->keep;
  int      days = pCfg->daysPerFile;
H
Hongze Cheng 已提交
197 198 199 200 201
  int      maxFSet = TSDB_MAX_FSETS(keep, days);
  STsdbFS *pfs;

  pfs = (STsdbFS *)calloc(1, sizeof(*pfs));
  if (pfs == NULL) {
H
Hongze Cheng 已提交
202 203 204 205
    terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
    return NULL;
  }

H
Hongze Cheng 已提交
206
  int code = pthread_rwlock_init(&(pfs->lock), NULL);
H
Hongze Cheng 已提交
207 208
  if (code) {
    terrno = TAOS_SYSTEM_ERROR(code);
H
Hongze Cheng 已提交
209
    free(pfs);
H
Hongze Cheng 已提交
210 211 212
    return NULL;
  }

H
Hongze Cheng 已提交
213 214 215
  pfs->cstatus = tsdbNewFSStatus(maxFSet);
  if (pfs->cstatus == NULL) {
    tsdbFreeFS(pfs);
H
Hongze Cheng 已提交
216 217 218
    return NULL;
  }

H
Hongze Cheng 已提交
219 220
  pfs->metaCache = taosHashInit(4096, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), true, HASH_NO_LOCK);
  if (pfs->metaCache == NULL) {
H
Hongze Cheng 已提交
221
    terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
222
    tsdbFreeFS(pfs);
H
Hongze Cheng 已提交
223 224 225
    return NULL;
  }

226
  pfs->intxn = false;
227
  pfs->metaCacheComp = NULL;
228

H
Hongze Cheng 已提交
229 230 231
  pfs->nstatus = tsdbNewFSStatus(maxFSet);
  if (pfs->nstatus == NULL) {
    tsdbFreeFS(pfs);
H
Hongze Cheng 已提交
232 233 234
    return NULL;
  }

H
Hongze Cheng 已提交
235
  return pfs;
H
Hongze Cheng 已提交
236 237
}

H
Hongze Cheng 已提交
238 239 240 241 242 243 244
void *tsdbFreeFS(STsdbFS *pfs) {
  if (pfs) {
    pfs->nstatus = tsdbFreeFSStatus(pfs->nstatus);
    taosHashCleanup(pfs->metaCache);
    pfs->metaCache = NULL;
    pfs->cstatus = tsdbFreeFSStatus(pfs->cstatus);
    pthread_rwlock_destroy(&(pfs->lock));
H
Hongze Cheng 已提交
245
    free(pfs);
H
Hongze Cheng 已提交
246
  }
H
Hongze Cheng 已提交
247

H
Hongze Cheng 已提交
248 249 250
  return NULL;
}

H
Hongze Cheng 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
// static int tsdbProcessExpiredFS(STsdb *pRepo) {
//   tsdbStartFSTxn(pRepo, 0, 0);
//   // if (tsdbCreateMeta(pRepo) < 0) {
//   //   tsdbError("vgId:%d failed to create meta since %s", REPO_ID(pRepo), tstrerror(terrno));
//   //   return -1;
//   // }

//   if (tsdbApplyRtn(pRepo) < 0) {
//     tsdbEndFSTxnWithError(REPO_FS(pRepo));
//     tsdbError("vgId:%d failed to apply rtn since %s", REPO_ID(pRepo), tstrerror(terrno));
//     return -1;
//   }
//   if (tsdbEndFSTxn(pRepo) < 0) {
//     tsdbError("vgId:%d failed to end fs txn since %s", REPO_ID(pRepo), tstrerror(terrno));
//     return -1;
//   }
//   return 0;
// }

// static int tsdbCreateMeta(STsdb *pRepo) {
//   STsdbFS *pfs = REPO_FS(pRepo);
//   SMFile * pOMFile = pfs->cstatus->pmf;
//   SMFile   mf;
//   SDiskID  did;

//   if (pOMFile != NULL) {
//     // keep the old meta file
//     tsdbUpdateMFile(pfs, pOMFile);
//     return 0;
//   }

//   // Create a new meta file
//   did.level = TFS_PRIMARY_LEVEL;
//   did.id = TFS_PRIMARY_ID;
//   tsdbInitMFile(&mf, did, REPO_ID(pRepo), FS_TXN_VERSION(REPO_FS(pRepo)));

//   if (tsdbCreateMFile(&mf, true) < 0) {
//     tsdbError("vgId:%d failed to create META file since %s", REPO_ID(pRepo), tstrerror(terrno));
//     return -1;
//   }

//   tsdbInfo("vgId:%d meta file %s is created", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(&mf));

//   if (tsdbUpdateMFileHeader(&mf) < 0) {
//     tsdbError("vgId:%d failed to update META file header since %s, revert it", REPO_ID(pRepo), tstrerror(terrno));
//     tsdbApplyMFileChange(&mf, pOMFile);
//     return -1;
//   }

//   TSDB_FILE_FSYNC(&mf);
//   tsdbCloseMFile(&mf);
//   tsdbUpdateMFile(pfs, &mf);

//   return 0;
// }
306

H
Hongze Cheng 已提交
307
int tsdbOpenFS(STsdb *pRepo) {
H
refact  
Hongze Cheng 已提交
308 309
  STsdbFS *pfs = REPO_FS(pRepo);
  char     current[TSDB_FILENAME_LEN] = "\0";
310
  int      nExpired = 0;
H
Hongze Cheng 已提交
311 312 313

  ASSERT(pfs != NULL);

S
Shengliang Guan 已提交
314
  tsdbGetTxnFname(pRepo->pTfs, REPO_ID(pRepo), TSDB_TXN_CURR_FILE, current);
H
Hongze Cheng 已提交
315

316
  tsdbGetRtnSnap(pRepo, &pRepo->rtn);
H
Hongze Cheng 已提交
317 318 319 320 321
  if (access(current, F_OK) == 0) {
    if (tsdbOpenFSFromCurrent(pRepo) < 0) {
      tsdbError("vgId:%d failed to open FS since %s", REPO_ID(pRepo), tstrerror(terrno));
      return -1;
    }
H
Hongze Cheng 已提交
322

323
    tsdbScanAndTryFixDFilesHeader(pRepo, &nExpired);
H
Hongze Cheng 已提交
324 325 326
    // if (nExpired > 0) {
    //   tsdbProcessExpiredFS(pRepo);
    // }
H
refact  
Hongze Cheng 已提交
327
  } else {
328
    // should skip expired fileset inside of the function
H
refact  
Hongze Cheng 已提交
329 330 331 332 333 334 335 336 337
    if (tsdbRestoreCurrent(pRepo) < 0) {
      tsdbError("vgId:%d failed to restore current file since %s", REPO_ID(pRepo), tstrerror(terrno));
      return -1;
    }
  }

  if (tsdbScanAndTryFixFS(pRepo) < 0) {
    tsdbError("vgId:%d failed to scan and fix FS since %s", REPO_ID(pRepo), tstrerror(terrno));
    return -1;
H
Hongze Cheng 已提交
338
  }
H
Hongze Cheng 已提交
339

H
Hongze Cheng 已提交
340 341 342 343 344
  // // Load meta cache if has meta file
  // if ((!(pRepo->state & TSDB_STATE_BAD_META)) && tsdbLoadMetaCache(pRepo, true) < 0) {
  //   tsdbError("vgId:%d failed to open FS while loading meta cache since %s", REPO_ID(pRepo), tstrerror(terrno));
  //   return -1;
  // }
H
Hongze Cheng 已提交
345

H
Hongze Cheng 已提交
346 347 348
  return 0;
}

H
Hongze Cheng 已提交
349
void tsdbCloseFS(STsdb *pRepo) {
H
refact  
Hongze Cheng 已提交
350
  // Do nothing
H
Hongze Cheng 已提交
351 352
}

H
Hongze Cheng 已提交
353
// Start a new transaction to modify the file system
H
Hongze Cheng 已提交
354
void tsdbStartFSTxn(STsdb *pRepo, int64_t pointsAdd, int64_t storageAdd) {
H
Hongze Cheng 已提交
355
  STsdbFS *pfs = REPO_FS(pRepo);
H
Hongze Cheng 已提交
356
  ASSERT(pfs->intxn == false);
H
Hongze Cheng 已提交
357

H
Hongze Cheng 已提交
358 359
  pfs->intxn = true;
  tsdbResetFSStatus(pfs->nstatus);
H
Hongze Cheng 已提交
360
  pfs->nstatus->meta = pfs->cstatus->meta;
H
Hongze Cheng 已提交
361 362 363 364 365
  // if (pfs->cstatus->pmf == NULL) {
  pfs->nstatus->meta.version = 0;
  // } else {
  //   pfs->nstatus->meta.version = pfs->cstatus->meta.version + 1;
  // }
H
Hongze Cheng 已提交
366
  pfs->nstatus->meta.totalPoints = pfs->cstatus->meta.totalPoints + pointsAdd;
H
Hongze Cheng 已提交
367
  pfs->nstatus->meta.totalStorage = pfs->cstatus->meta.totalStorage += storageAdd;
H
Hongze Cheng 已提交
368
}
H
Hongze Cheng 已提交
369

H
Hongze Cheng 已提交
370 371
void tsdbUpdateFSTxnMeta(STsdbFS *pfs, STsdbFSMeta *pMeta) { pfs->nstatus->meta = *pMeta; }

H
Hongze Cheng 已提交
372
int tsdbEndFSTxn(STsdb *pRepo) {
H
Hongze Cheng 已提交
373
  STsdbFS *pfs = REPO_FS(pRepo);
H
Hongze Cheng 已提交
374 375
  ASSERT(FS_IN_TXN(pfs));
  SFSStatus *pStatus;
H
Hongze Cheng 已提交
376

H
Hongze Cheng 已提交
377
  // Write current file system snapshot
S
Shengliang Guan 已提交
378
  if (tsdbSaveFSStatus(pRepo->pTfs, pfs->nstatus, REPO_ID(pRepo)) < 0) {
H
Hongze Cheng 已提交
379
    tsdbEndFSTxnWithError(pfs);
H
Hongze Cheng 已提交
380 381
    return -1;
  }
H
Hongze Cheng 已提交
382

H
Hongze Cheng 已提交
383
  // Make new
H
Hongze Cheng 已提交
384 385 386 387 388
  tsdbWLockFS(pfs);
  pStatus = pfs->cstatus;
  pfs->cstatus = pfs->nstatus;
  pfs->nstatus = pStatus;
  tsdbUnLockFS(pfs);
H
Hongze Cheng 已提交
389

H
Hongze Cheng 已提交
390
  // Apply actual change to each file and SDFileSet
H
Hongze Cheng 已提交
391
  tsdbApplyFSTxnOnDisk(pfs->nstatus, pfs->cstatus);
H
Hongze Cheng 已提交
392

H
Hongze Cheng 已提交
393
  pfs->intxn = false;
H
Hongze Cheng 已提交
394 395 396
  return 0;
}

H
Hongze Cheng 已提交
397
int tsdbEndFSTxnWithError(STsdbFS *pfs) {
H
Hongze Cheng 已提交
398 399
  tsdbApplyFSTxnOnDisk(pfs->nstatus, pfs->cstatus);
  // TODO: if mf change, reload pfs->metaCache
H
Hongze Cheng 已提交
400 401
  pfs->intxn = false;
  return 0;
H
Hongze Cheng 已提交
402 403
}

H
Hongze Cheng 已提交
404
// void tsdbUpdateMFile(STsdbFS *pfs, const SMFile *pMFile) { tsdbSetStatusMFile(pfs->nstatus, pMFile); }
H
Hongze Cheng 已提交
405

H
Hongze Cheng 已提交
406
int tsdbUpdateDFileSet(STsdbFS *pfs, const SDFileSet *pSet) { return tsdbAddDFileSetToStatus(pfs->nstatus, pSet); }
H
Hongze Cheng 已提交
407

S
Shengliang Guan 已提交
408
static int tsdbSaveFSStatus(STfs *pTfs, SFSStatus *pStatus, int vid) {
H
Hongze Cheng 已提交
409 410 411 412
  SFSHeader fsheader;
  void *    pBuf = NULL;
  void *    ptr;
  char      hbuf[TSDB_FILE_HEAD_SIZE] = "\0";
H
Hongze Cheng 已提交
413 414
  char      tfname[TSDB_FILENAME_LEN] = "\0";
  char      cfname[TSDB_FILENAME_LEN] = "\0";
H
Hongze Cheng 已提交
415

S
Shengliang Guan 已提交
416 417
  tsdbGetTxnFname(pTfs, vid, TSDB_TXN_TEMP_FILE, tfname);
  tsdbGetTxnFname(pTfs, vid, TSDB_TXN_CURR_FILE, cfname);
H
Hongze Cheng 已提交
418

S
Shengliang Guan 已提交
419
  int fd = open(tfname, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0755);
H
Hongze Cheng 已提交
420 421
  if (fd < 0) {
    terrno = TAOS_SYSTEM_ERROR(errno);
H
Hongze Cheng 已提交
422 423 424
    return -1;
  }

H
Hongze Cheng 已提交
425
  fsheader.version = TSDB_FS_VERSION;
H
Hongze Cheng 已提交
426
  if (taosArrayGetSize(pStatus->df) == 0) {
H
Hongze Cheng 已提交
427 428
    fsheader.len = 0;
  } else {
H
Hongze Cheng 已提交
429
    fsheader.len = tsdbEncodeFSStatus(NULL, pStatus) + sizeof(TSCKSUM);
H
Hongze Cheng 已提交
430 431
  }

H
Hongze Cheng 已提交
432 433 434
  // Encode header part and write
  ptr = hbuf;
  tsdbEncodeFSHeader(&ptr, &fsheader);
H
Hongze Cheng 已提交
435
  tsdbEncodeFSMeta(&ptr, &(pStatus->meta));
H
Hongze Cheng 已提交
436

H
Hongze Cheng 已提交
437
  taosCalcChecksumAppend(0, (uint8_t *)hbuf, TSDB_FILE_HEAD_SIZE);
H
Hongze Cheng 已提交
438

H
Hongze Cheng 已提交
439
  if (taosWriteFile(fd, hbuf, TSDB_FILE_HEAD_SIZE) < TSDB_FILE_HEAD_SIZE) {
H
Hongze Cheng 已提交
440 441
    terrno = TAOS_SYSTEM_ERROR(errno);
    close(fd);
H
Hongze Cheng 已提交
442
    remove(tfname);
H
Hongze Cheng 已提交
443 444 445
    return -1;
  }

H
Hongze Cheng 已提交
446 447 448 449
  // Encode file status and write to file
  if (fsheader.len > 0) {
    if (tsdbMakeRoom(&(pBuf), fsheader.len) < 0) {
      close(fd);
H
Hongze Cheng 已提交
450
      remove(tfname);
H
Hongze Cheng 已提交
451
      return -1;
H
Hongze Cheng 已提交
452 453
    }

H
Hongze Cheng 已提交
454
    ptr = pBuf;
H
Hongze Cheng 已提交
455
    tsdbEncodeFSStatus(&ptr, pStatus);
H
Hongze Cheng 已提交
456
    taosCalcChecksumAppend(0, (uint8_t *)pBuf, fsheader.len);
H
Hongze Cheng 已提交
457

H
Hongze Cheng 已提交
458
    if (taosWriteFile(fd, pBuf, fsheader.len) < fsheader.len) {
H
Hongze Cheng 已提交
459 460
      terrno = TAOS_SYSTEM_ERROR(errno);
      close(fd);
461
      (void)remove(tfname);
H
Hongze Cheng 已提交
462
      taosTZfree(pBuf);
H
Hongze Cheng 已提交
463 464 465 466
      return -1;
    }
  }

H
Hongze Cheng 已提交
467
  // fsync, close and rename
H
Hongze Cheng 已提交
468
  if (taosFsyncFile(fd) < 0) {
H
Hongze Cheng 已提交
469 470
    terrno = TAOS_SYSTEM_ERROR(errno);
    close(fd);
H
Hongze Cheng 已提交
471
    remove(tfname);
H
Hongze Cheng 已提交
472 473
    taosTZfree(pBuf);
    return -1;
H
Hongze Cheng 已提交
474
  }
H
Hongze Cheng 已提交
475

H
Hongze Cheng 已提交
476
  (void)close(fd);
H
Hongze Cheng 已提交
477
  (void)taosRenameFile(tfname, cfname);
H
Hongze Cheng 已提交
478
  taosTZfree(pBuf);
H
Hongze Cheng 已提交
479

H
Hongze Cheng 已提交
480 481
  return 0;
}
H
Hongze Cheng 已提交
482

H
Hongze Cheng 已提交
483
static void tsdbApplyFSTxnOnDisk(SFSStatus *pFrom, SFSStatus *pTo) {
H
Hongze Cheng 已提交
484 485 486 487 488
  int        ifrom = 0;
  int        ito = 0;
  size_t     sizeFrom, sizeTo;
  SDFileSet *pSetFrom;
  SDFileSet *pSetTo;
H
Hongze Cheng 已提交
489

H
Hongze Cheng 已提交
490 491
  sizeFrom = taosArrayGetSize(pFrom->df);
  sizeTo = taosArrayGetSize(pTo->df);
H
Hongze Cheng 已提交
492

H
Hongze Cheng 已提交
493
  // Apply meta file change
H
Hongze Cheng 已提交
494
  // (void)tsdbApplyMFileChange(pFrom->pmf, pTo->pmf);
H
Hongze Cheng 已提交
495

H
Hongze Cheng 已提交
496 497 498
  // Apply SDFileSet change
  if (ifrom >= sizeFrom) {
    pSetFrom = NULL;
H
Hongze Cheng 已提交
499
  } else {
H
Hongze Cheng 已提交
500
    pSetFrom = taosArrayGet(pFrom->df, ifrom);
H
Hongze Cheng 已提交
501 502
  }

H
Hongze Cheng 已提交
503 504 505 506 507
  if (ito >= sizeTo) {
    pSetTo = NULL;
  } else {
    pSetTo = taosArrayGet(pTo->df, ito);
  }
H
Hongze Cheng 已提交
508

H
Hongze Cheng 已提交
509 510
  while (true) {
    if ((pSetTo == NULL) && (pSetFrom == NULL)) break;
H
Hongze Cheng 已提交
511

H
Hongze Cheng 已提交
512 513
    if (pSetTo == NULL || (pSetFrom && pSetFrom->fid < pSetTo->fid)) {
      tsdbApplyDFileSetChange(pSetFrom, NULL);
H
Hongze Cheng 已提交
514

H
Hongze Cheng 已提交
515 516 517 518 519 520 521 522
      ifrom++;
      if (ifrom >= sizeFrom) {
        pSetFrom = NULL;
      } else {
        pSetFrom = taosArrayGet(pFrom->df, ifrom);
      }
    } else if (pSetFrom == NULL || pSetFrom->fid > pSetTo->fid) {
      // Do nothing
H
Hongze Cheng 已提交
523 524 525 526 527
      ito++;
      if (ito >= sizeTo) {
        pSetTo = NULL;
      } else {
        pSetTo = taosArrayGet(pTo->df, ito);
H
Hongze Cheng 已提交
528 529 530
      }
    } else {
      tsdbApplyDFileSetChange(pSetFrom, pSetTo);
H
Hongze Cheng 已提交
531

H
Hongze Cheng 已提交
532 533 534 535 536 537
      ifrom++;
      if (ifrom >= sizeFrom) {
        pSetFrom = NULL;
      } else {
        pSetFrom = taosArrayGet(pFrom->df, ifrom);
      }
H
Hongze Cheng 已提交
538

H
Hongze Cheng 已提交
539 540 541 542 543 544 545 546
      ito++;
      if (ito >= sizeTo) {
        pSetTo = NULL;
      } else {
        pSetTo = taosArrayGet(pTo->df, ito);
      }
    }
  }
H
Hongze Cheng 已提交
547 548
}

H
Hongze Cheng 已提交
549 550 551 552 553
// ================== SFSIter
// ASSUMPTIONS: the FS Should be read locked when calling these functions
void tsdbFSIterInit(SFSIter *pIter, STsdbFS *pfs, int direction) {
  pIter->pfs = pfs;
  pIter->direction = direction;
H
Hongze Cheng 已提交
554

H
Hongze Cheng 已提交
555
  size_t size = taosArrayGetSize(pfs->cstatus->df);
H
Hongze Cheng 已提交
556

H
Hongze Cheng 已提交
557
  pIter->version = pfs->cstatus->meta.version;
H
Hongze Cheng 已提交
558

H
Hongze Cheng 已提交
559 560 561 562 563 564 565
  if (size == 0) {
    pIter->index = -1;
    pIter->fid = TSDB_IVLD_FID;
  } else {
    if (direction == TSDB_FS_ITER_FORWARD) {
      pIter->index = 0;
    } else {
S
TD-1207  
Shengliang Guan 已提交
566
      pIter->index = (int)(size - 1);
H
Hongze Cheng 已提交
567
    }
H
Hongze Cheng 已提交
568

H
Hongze Cheng 已提交
569
    pIter->fid = ((SDFileSet *)taosArrayGet(pfs->cstatus->df, pIter->index))->fid;
H
Hongze Cheng 已提交
570 571 572
  }
}

H
Hongze Cheng 已提交
573 574 575
void tsdbFSIterSeek(SFSIter *pIter, int fid) {
  STsdbFS *pfs = pIter->pfs;
  size_t   size = taosArrayGetSize(pfs->cstatus->df);
H
Hongze Cheng 已提交
576

H
Hongze Cheng 已提交
577 578 579 580 581
  int flags;
  if (pIter->direction == TSDB_FS_ITER_FORWARD) {
    flags = TD_GE;
  } else {
    flags = TD_LE;
H
Hongze Cheng 已提交
582 583
  }

H
Hongze Cheng 已提交
584
  void *ptr = taosbsearch(&fid, pfs->cstatus->df->pData, size, sizeof(SDFileSet), tsdbComparFidFSet, flags);
H
Hongze Cheng 已提交
585 586 587 588
  if (ptr == NULL) {
    pIter->index = -1;
    pIter->fid = TSDB_IVLD_FID;
  } else {
S
TD-1207  
Shengliang Guan 已提交
589
    pIter->index = (int)(TARRAY_ELEM_IDX(pfs->cstatus->df, ptr));
H
Hongze Cheng 已提交
590
    pIter->fid = ((SDFileSet *)ptr)->fid;
H
Hongze Cheng 已提交
591 592 593
  }
}

H
Hongze Cheng 已提交
594 595 596
SDFileSet *tsdbFSIterNext(SFSIter *pIter) {
  STsdbFS *  pfs = pIter->pfs;
  SDFileSet *pSet;
H
Hongze Cheng 已提交
597

H
Hongze Cheng 已提交
598 599
  if (pIter->index < 0) {
    ASSERT(pIter->fid == TSDB_IVLD_FID);
H
Hongze Cheng 已提交
600 601 602
    return NULL;
  }

H
Hongze Cheng 已提交
603
  ASSERT(pIter->fid != TSDB_IVLD_FID);
H
Hongze Cheng 已提交
604

H
Hongze Cheng 已提交
605
  if (pIter->version != pfs->cstatus->meta.version) {
606
    pIter->version = pfs->cstatus->meta.version;
H
Hongze Cheng 已提交
607
    tsdbFSIterSeek(pIter, pIter->fid);
H
Hongze Cheng 已提交
608 609
  }

H
Hongze Cheng 已提交
610 611
  if (pIter->index < 0) {
    return NULL;
H
Hongze Cheng 已提交
612 613
  }

H
Hongze Cheng 已提交
614 615
  pSet = (SDFileSet *)taosArrayGet(pfs->cstatus->df, pIter->index);
  ASSERT(pSet->fid == pIter->fid);
H
Hongze Cheng 已提交
616

H
Hongze Cheng 已提交
617 618 619 620
  if (pIter->direction == TSDB_FS_ITER_FORWARD) {
    pIter->index++;
    if (pIter->index >= taosArrayGetSize(pfs->cstatus->df)) {
      pIter->index = -1;
H
Hongze Cheng 已提交
621 622
    }
  } else {
H
Hongze Cheng 已提交
623
    pIter->index--;
H
Hongze Cheng 已提交
624 625
  }

H
Hongze Cheng 已提交
626
  if (pIter->index >= 0) {
H
Hongze Cheng 已提交
627
    pIter->fid = ((SDFileSet *)taosArrayGet(pfs->cstatus->df, pIter->index))->fid;
H
Hongze Cheng 已提交
628
  } else {
H
Hongze Cheng 已提交
629
    pIter->fid = TSDB_IVLD_FID;
H
Hongze Cheng 已提交
630 631
  }

H
Hongze Cheng 已提交
632
  return pSet;
H
Hongze Cheng 已提交
633 634 635 636 637 638 639 640 641 642 643 644 645
}

static int tsdbComparFidFSet(const void *arg1, const void *arg2) {
  int        fid = *(int *)arg1;
  SDFileSet *pSet = (SDFileSet *)arg2;

  if (fid < pSet->fid) {
    return -1;
  } else if (fid == pSet->fid) {
    return 0;
  } else {
    return 1;
  }
H
Hongze Cheng 已提交
646 647
}

S
Shengliang Guan 已提交
648 649
static void tsdbGetTxnFname(STfs *pTfs, int repoid, TSDB_TXN_FILE_T ftype, char fname[]) {
  snprintf(fname, TSDB_FILENAME_LEN, "%s/vnode/vnode%d/tsdb/%s", tfsGetPrimaryPath(pTfs), repoid, tsdbTxnFname[ftype]);
H
Hongze Cheng 已提交
650 651
}

H
Hongze Cheng 已提交
652
static int tsdbOpenFSFromCurrent(STsdb *pRepo) {
H
Hongze Cheng 已提交
653 654 655 656 657 658 659
  STsdbFS * pfs = REPO_FS(pRepo);
  int       fd = -1;
  void *    buffer = NULL;
  SFSHeader fsheader;
  char      current[TSDB_FILENAME_LEN] = "\0";
  void *    ptr;

S
Shengliang Guan 已提交
660
  tsdbGetTxnFname(pRepo->pTfs, REPO_ID(pRepo), TSDB_TXN_CURR_FILE, current);
H
Hongze Cheng 已提交
661 662

  // current file exists, try to recover
S
Shengliang Guan 已提交
663
  fd = open(current, O_RDONLY | O_BINARY);
H
Hongze Cheng 已提交
664 665 666 667 668 669 670 671 672 673
  if (fd < 0) {
    tsdbError("vgId:%d failed to open file %s since %s", REPO_ID(pRepo), current, strerror(errno));
    terrno = TAOS_SYSTEM_ERROR(errno);
    goto _err;
  }

  if (tsdbMakeRoom(&buffer, TSDB_FILE_HEAD_SIZE) < 0) {
    goto _err;
  }

H
Hongze Cheng 已提交
674
  int nread = (int)taosReadFile(fd, buffer, TSDB_FILE_HEAD_SIZE);
H
Hongze Cheng 已提交
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
  if (nread < 0) {
    tsdbError("vgId:%d failed to read %d bytes from file %s since %s", REPO_ID(pRepo), TSDB_FILENAME_LEN, current,
              strerror(errno));
    terrno = TAOS_SYSTEM_ERROR(errno);
    goto _err;
  }

  if (nread < TSDB_FILE_HEAD_SIZE) {
    tsdbError("vgId:%d failed to read header of file %s, read bytes:%d", REPO_ID(pRepo), current, nread);
    terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
    goto _err;
  }

  if (!taosCheckChecksumWhole((uint8_t *)buffer, TSDB_FILE_HEAD_SIZE)) {
    tsdbError("vgId:%d header of file %s failed checksum check", REPO_ID(pRepo), current);
    terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
    goto _err;
  }

H
Hongze Cheng 已提交
694
  SFSStatus *pStatus = pfs->cstatus;
H
Hongze Cheng 已提交
695 696
  ptr = buffer;
  ptr = tsdbDecodeFSHeader(ptr, &fsheader);
H
Hongze Cheng 已提交
697
  ptr = tsdbDecodeFSMeta(ptr, &(pStatus->meta));
H
Hongze Cheng 已提交
698 699 700 701 702 703 704 705 706 707

  if (fsheader.version != TSDB_FS_VERSION) {
    // TODO: handle file version change
  }

  if (fsheader.len > 0) {
    if (tsdbMakeRoom(&buffer, fsheader.len) < 0) {
      goto _err;
    }

H
Hongze Cheng 已提交
708
    nread = (int)taosReadFile(fd, buffer, fsheader.len);
H
Hongze Cheng 已提交
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
    if (nread < 0) {
      tsdbError("vgId:%d failed to read file %s since %s", REPO_ID(pRepo), current, strerror(errno));
      terrno = TAOS_SYSTEM_ERROR(errno);
      goto _err;
    }

    if (nread < fsheader.len) {
      tsdbError("vgId:%d failed to read %d bytes from file %s", REPO_ID(pRepo), fsheader.len, current);
      terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
      goto _err;
    }

    if (!taosCheckChecksumWhole((uint8_t *)buffer, fsheader.len)) {
      tsdbError("vgId:%d file %s is corrupted since wrong checksum", REPO_ID(pRepo), current);
      terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
      goto _err;
    }

    ptr = buffer;
S
Shengliang Guan 已提交
728
    ptr = tsdbDecodeFSStatus(pRepo, ptr, pStatus);
H
Hongze Cheng 已提交
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
  } else {
    tsdbResetFSStatus(pStatus);
  }

  taosTZfree(buffer);
  close(fd);

  return 0;

_err:
  if (fd >= 0) {
    close(fd);
  }
  taosTZfree(buffer);
  return -1;
}

// Scan and try to fix incorrect files
H
Hongze Cheng 已提交
747
static int tsdbScanAndTryFixFS(STsdb *pRepo) {
H
Hongze Cheng 已提交
748 749 750
  STsdbFS *  pfs = REPO_FS(pRepo);
  SFSStatus *pStatus = pfs->cstatus;

H
Hongze Cheng 已提交
751 752 753 754
  // if (tsdbScanAndTryFixMFile(pRepo) < 0) {
  //   tsdbError("vgId:%d failed to fix MFile since %s", REPO_ID(pRepo), tstrerror(terrno));
  //   return -1;
  // }
H
Hongze Cheng 已提交
755 756 757 758 759 760

  size_t size = taosArrayGetSize(pStatus->df);

  for (size_t i = 0; i < size; i++) {
    SDFileSet *pSet = (SDFileSet *)taosArrayGet(pStatus->df, i);

H
Hongze Cheng 已提交
761
    if (tsdbScanAndTryFixDFileSet(pRepo, pSet) < 0) {
H
Hongze Cheng 已提交
762 763 764 765 766
      tsdbError("vgId:%d failed to fix MFile since %s", REPO_ID(pRepo), tstrerror(terrno));
      return -1;
    }
  }

H
Hongze Cheng 已提交
767
  // remove those unused files
768 769
  tsdbScanRootDir(pRepo);
  tsdbScanDataDir(pRepo);
H
Hongze Cheng 已提交
770 771 772
  return 0;
}

H
Hongze Cheng 已提交
773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
// int tsdbLoadMetaCache(STsdb *pRepo, bool recoverMeta) {
//   char      tbuf[128];
//   STsdbFS * pfs = REPO_FS(pRepo);
//   SMFile    mf;
//   SMFile *  pMFile = &mf;
//   void *    pBuf = NULL;
//   SKVRecord rInfo;
//   int64_t   maxBufSize = 0;
//   SMFInfo   minfo;

//   taosHashClear(pfs->metaCache);

//   // No meta file, just return
//   if (pfs->cstatus->pmf == NULL) return 0;

//   mf = pfs->cstatus->mf;
//   // Load cache first
//   if (tsdbOpenMFile(pMFile, O_RDONLY) < 0) {
//     return -1;
//   }

//   if (tsdbLoadMFileHeader(pMFile, &minfo) < 0) {
//     tsdbCloseMFile(pMFile);
//     return -1;
//   }

//   while (true) {
//     int64_t tsize = tsdbReadMFile(pMFile, tbuf, sizeof(SKVRecord));
//     if (tsize == 0) break;

//     if (tsize < 0) {
//       tsdbError("vgId:%d failed to read META file since %s", REPO_ID(pRepo), tstrerror(terrno));
//       return -1;
//     }

//     if (tsize < sizeof(SKVRecord)) {
//       tsdbError("vgId:%d failed to read %" PRIzu " bytes from file %s", REPO_ID(pRepo), sizeof(SKVRecord),
//                 TSDB_FILE_FULL_NAME(pMFile));
//       terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
//       tsdbCloseMFile(pMFile);
//       return -1;
//     }

//     void *ptr = tsdbDecodeKVRecord(tbuf, &rInfo);
//     ASSERT(POINTER_DISTANCE(ptr, tbuf) == sizeof(SKVRecord));
//     // ASSERT((rInfo.offset > 0) ? (pStore->info.size == rInfo.offset) : true);

//     if (rInfo.offset < 0) {
//       taosHashRemove(pfs->metaCache, (void *)(&rInfo.uid), sizeof(rInfo.uid));
// #if 0
//       pStore->info.size += sizeof(SKVRecord);
//       pStore->info.nRecords--;
//       pStore->info.nDels++;
//       pStore->info.tombSize += (rInfo.size + sizeof(SKVRecord) * 2);
// #endif
//     } else {
//       ASSERT(rInfo.offset > 0 && rInfo.size > 0);
//       if (taosHashPut(pfs->metaCache, (void *)(&rInfo.uid), sizeof(rInfo.uid), &rInfo, sizeof(rInfo)) < 0) {
//         tsdbError("vgId:%d failed to load meta cache from file %s since OOM", REPO_ID(pRepo),
//                   TSDB_FILE_FULL_NAME(pMFile));
//         terrno = TSDB_CODE_COM_OUT_OF_MEMORY;
//         tsdbCloseMFile(pMFile);
//         return -1;
//       }

//       maxBufSize = MAX(maxBufSize, rInfo.size);

//       if (tsdbSeekMFile(pMFile, rInfo.size, SEEK_CUR) < 0) {
//         tsdbError("vgId:%d failed to lseek file %s since %s", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pMFile),
//                   tstrerror(terrno));
//         tsdbCloseMFile(pMFile);
//         return -1;
//       }

// #if 0
//       pStore->info.size += (sizeof(SKVRecord) + rInfo.size);
//       pStore->info.nRecords++;
// #endif
//     }
//   }

//   if (recoverMeta) {
//     pBuf = malloc((size_t)maxBufSize);
//     if (pBuf == NULL) {
//       terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
//       tsdbCloseMFile(pMFile);
//       return -1;
//     }

//     SKVRecord *pRecord = taosHashIterate(pfs->metaCache, NULL);
//     while (pRecord) {
//       if (tsdbSeekMFile(pMFile, pRecord->offset + sizeof(SKVRecord), SEEK_SET) < 0) {
//         tsdbError("vgId:%d failed to seek file %s since %s", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pMFile),
//                   tstrerror(terrno));
//         tfree(pBuf);
//         tsdbCloseMFile(pMFile);
//         return -1;
//       }

//       int nread = (int)tsdbReadMFile(pMFile, pBuf, pRecord->size);
//       if (nread < 0) {
//         tsdbError("vgId:%d failed to read file %s since %s", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pMFile),
//                   tstrerror(terrno));
//         tfree(pBuf);
//         tsdbCloseMFile(pMFile);
//         return -1;
//       }

//       if (nread < pRecord->size) {
//         tsdbError("vgId:%d failed to read file %s since file corrupted, expected read:%" PRId64 " actual read:%d",
//                   REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pMFile), pRecord->size, nread);
//         terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
//         tfree(pBuf);
//         tsdbCloseMFile(pMFile);
//         return -1;
//       }

//       if (tsdbRestoreTable(pRepo, pBuf, (int)pRecord->size) < 0) {
//         tsdbError("vgId:%d failed to restore table, uid %" PRId64 ", since %s" PRIu64, REPO_ID(pRepo), pRecord->uid,
//                   tstrerror(terrno));
//         tfree(pBuf);
//         tsdbCloseMFile(pMFile);
//         return -1;
//       }

//       pRecord = taosHashIterate(pfs->metaCache, pRecord);
//     }

//     tsdbOrgMeta(pRepo);
//   }

//   tsdbCloseMFile(pMFile);
//   tfree(pBuf);
//   return 0;
// }
908

H
Hongze Cheng 已提交
909
static int tsdbScanRootDir(STsdb *pRepo) {
910 911 912
  char         rootDir[TSDB_FILENAME_LEN];
  char         bname[TSDB_FILENAME_LEN];
  STsdbFS *    pfs = REPO_FS(pRepo);
S
Shengliang Guan 已提交
913
  const STfsFile *pf;
914 915

  tsdbGetRootDir(REPO_ID(pRepo), rootDir);
S
Shengliang Guan 已提交
916
  STfsDir *tdir = tfsOpendir(pRepo->pTfs, rootDir);
917 918 919 920 921 922
  if (tdir == NULL) {
    tsdbError("vgId:%d failed to open directory %s since %s", REPO_ID(pRepo), rootDir, tstrerror(terrno));
    return -1;
  }

  while ((pf = tfsReaddir(tdir))) {
S
Shengliang Guan 已提交
923
    tfsBasename(pf, bname);
924 925 926 927 928 929

    if (strcmp(bname, tsdbTxnFname[TSDB_TXN_CURR_FILE]) == 0 || strcmp(bname, "data") == 0) {
      // Skip current file and data directory
      continue;
    }

H
Hongze Cheng 已提交
930 931 932
    // if (/*pfs->cstatus->pmf && */ tfsIsSameFile(pf, &(pfs->cstatus->pmf->f))) {
    //   continue;
    // }
933

S
Shengliang Guan 已提交
934 935
    (void)tfsRemoveFile(pf);
    tsdbDebug("vgId:%d invalid file %s is removed", REPO_ID(pRepo), pf->aname);
936 937 938 939 940 941 942
  }

  tfsClosedir(tdir);

  return 0;
}

H
Hongze Cheng 已提交
943
static int tsdbScanDataDir(STsdb *pRepo) {
944 945 946
  char         dataDir[TSDB_FILENAME_LEN];
  char         bname[TSDB_FILENAME_LEN];
  STsdbFS *    pfs = REPO_FS(pRepo);
S
Shengliang Guan 已提交
947
  const STfsFile *pf;
948 949

  tsdbGetDataDir(REPO_ID(pRepo), dataDir);
S
Shengliang Guan 已提交
950
  STfsDir *tdir = tfsOpendir(pRepo->pTfs, dataDir);
951 952 953 954 955 956
  if (tdir == NULL) {
    tsdbError("vgId:%d failed to open directory %s since %s", REPO_ID(pRepo), dataDir, tstrerror(terrno));
    return -1;
  }

  while ((pf = tfsReaddir(tdir))) {
S
Shengliang Guan 已提交
957
    tfsBasename(pf, bname);
958 959

    if (!tsdbIsTFileInFS(pfs, pf)) {
S
Shengliang Guan 已提交
960 961
      (void)tfsRemoveFile(pf);
      tsdbDebug("vgId:%d invalid file %s is removed", REPO_ID(pRepo), pf->aname);
962 963 964 965 966 967 968 969
    }
  }

  tfsClosedir(tdir);

  return 0;
}

S
Shengliang Guan 已提交
970
static bool tsdbIsTFileInFS(STsdbFS *pfs, const STfsFile *pf) {
971 972 973 974 975 976 977 978 979 980 981 982 983 984
  SFSIter fsiter;
  tsdbFSIterInit(&fsiter, pfs, TSDB_FS_ITER_FORWARD);
  SDFileSet *pSet;

  while ((pSet = tsdbFSIterNext(&fsiter))) {
    for (TSDB_FILE_T ftype = 0; ftype < TSDB_FILE_MAX; ftype++) {
      SDFile *pDFile = TSDB_DFILE_IN_SET(pSet, ftype);
      if (tfsIsSameFile(pf, TSDB_FILE_F(pDFile))) {
        return true;
      }
    }
  }

  return false;
H
Hongze Cheng 已提交
985 986
}

H
Hongze Cheng 已提交
987 988 989
// static int tsdbRestoreMeta(STsdb *pRepo) {
//   char         rootDir[TSDB_FILENAME_LEN];
//   char         bname[TSDB_FILENAME_LEN];
S
Shengliang Guan 已提交
990 991
//   STfsDir *       tdir = NULL;
//   const STfsFile *pf = NULL;
H
Hongze Cheng 已提交
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
//   const char * pattern = "^meta(-ver[0-9]+)?$";
//   regex_t      regex;
//   STsdbFS *    pfs = REPO_FS(pRepo);

//   regcomp(&regex, pattern, REG_EXTENDED);

//   tsdbInfo("vgId:%d try to restore meta", REPO_ID(pRepo));

//   tsdbGetRootDir(REPO_ID(pRepo), rootDir);

//   tdir = tfsOpendir(rootDir);
//   if (tdir == NULL) {
//     tsdbError("vgId:%d failed to open dir %s since %s", REPO_ID(pRepo), rootDir, tstrerror(terrno));
//     regfree(&regex);
//     return -1;
//   }

//   while ((pf = tfsReaddir(tdir))) {
S
Shengliang Guan 已提交
1010
//     tfsBasename(pf, bname);
H
Hongze Cheng 已提交
1011 1012 1013 1014 1015 1016 1017 1018

//     if (strcmp(bname, "data") == 0) {
//       // Skip the data/ directory
//       continue;
//     }

//     if (strcmp(bname, tsdbTxnFname[TSDB_TXN_TEMP_FILE]) == 0) {
//       // Skip current.t file
S
Shengliang Guan 已提交
1019
//       tsdbInfo("vgId:%d file %s exists, remove it", REPO_ID(pRepo), pf->aname);
H
Hongze Cheng 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028
//       (void)tfsremove(pf);
//       continue;
//     }

//     int code = regexec(&regex, bname, 0, NULL, 0);
//     if (code == 0) {
//       // Match
//       if (pfs->cstatus->pmf != NULL) {
//         tsdbError("vgId:%d failed to restore meta since two file exists, file1 %s and file2 %s", REPO_ID(pRepo),
S
Shengliang Guan 已提交
1029
//                   TSDB_FILE_FULL_NAME(pfs->cstatus->pmf), pf->aname);
H
Hongze Cheng 已提交
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
//         terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
//         tfsClosedir(tdir);
//         regfree(&regex);
//         return -1;
//       } else {
//         uint32_t _version = 0;
//         if (strcmp(bname, "meta") != 0) {
//           sscanf(bname, "meta-ver%" PRIu32, &_version);
//           pfs->cstatus->meta.version = _version;
//         }

//         pfs->cstatus->pmf = &(pfs->cstatus->mf);
//         pfs->cstatus->pmf->f = *pf;
//         TSDB_FILE_SET_CLOSED(pfs->cstatus->pmf);

//         if (tsdbOpenMFile(pfs->cstatus->pmf, O_RDONLY) < 0) {
//           tsdbError("vgId:%d failed to restore meta since %s", REPO_ID(pRepo), tstrerror(terrno));
//           tfsClosedir(tdir);
//           regfree(&regex);
//           return -1;
//         }

//         if (tsdbLoadMFileHeader(pfs->cstatus->pmf, &(pfs->cstatus->pmf->info)) < 0) {
//           tsdbError("vgId:%d failed to restore meta since %s", REPO_ID(pRepo), tstrerror(terrno));
//           tsdbCloseMFile(pfs->cstatus->pmf);
//           tfsClosedir(tdir);
//           regfree(&regex);
//           return -1;
//         }

//         if (tsdbForceKeepFile) {
//           struct stat tfstat;

//           // Get real file size
//           if (fstat(pfs->cstatus->pmf->fd, &tfstat) < 0) {
//             terrno = TAOS_SYSTEM_ERROR(errno);
//             tsdbCloseMFile(pfs->cstatus->pmf);
//             tfsClosedir(tdir);
//             regfree(&regex);
//             return -1;
//           }

//           if (pfs->cstatus->pmf->info.size != tfstat.st_size) {
//             int64_t tfsize = pfs->cstatus->pmf->info.size;
//             pfs->cstatus->pmf->info.size = tfstat.st_size;
//             tsdbInfo("vgId:%d file %s header size is changed from %" PRId64 " to %" PRId64, REPO_ID(pRepo),
//                      TSDB_FILE_FULL_NAME(pfs->cstatus->pmf), tfsize, pfs->cstatus->pmf->info.size);
//           }
//         }

//         tsdbCloseMFile(pfs->cstatus->pmf);
//       }
//     } else if (code == REG_NOMATCH) {
//       // Not match
S
Shengliang Guan 已提交
1084
//       tsdbInfo("vgId:%d invalid file %s exists, remove it", REPO_ID(pRepo), pf->aname);
H
Hongze Cheng 已提交
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
//       tfsremove(pf);
//       continue;
//     } else {
//       // Has other error
//       tsdbError("vgId:%d failed to restore meta file while run regexec since %s", REPO_ID(pRepo), strerror(code));
//       terrno = TAOS_SYSTEM_ERROR(code);
//       tfsClosedir(tdir);
//       regfree(&regex);
//       return -1;
//     }
//   }

//   if (pfs->cstatus->pmf) {
//     tsdbInfo("vgId:%d meta file %s is restored", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pfs->cstatus->pmf));
//   } else {
//     tsdbInfo("vgId:%d no meta file is restored", REPO_ID(pRepo));
//   }

//   tfsClosedir(tdir);
//   regfree(&regex);
//   return 0;
// }
H
Hongze Cheng 已提交
1107

H
Hongze Cheng 已提交
1108
static int tsdbRestoreDFileSet(STsdb *pRepo) {
H
Hongze Cheng 已提交
1109 1110
  char         dataDir[TSDB_FILENAME_LEN];
  char         bname[TSDB_FILENAME_LEN];
S
Shengliang Guan 已提交
1111 1112
  STfsDir *       tdir = NULL;
  const STfsFile *pf = NULL;
H
Hongze Cheng 已提交
1113 1114 1115 1116
  const char * pattern = "^v[0-9]+f[0-9]+\\.(head|data|last)(-ver[0-9]+)?$";
  SArray *     fArray = NULL;
  regex_t      regex;
  STsdbFS *    pfs = REPO_FS(pRepo);
H
Hongze Cheng 已提交
1117 1118

  tsdbGetDataDir(REPO_ID(pRepo), dataDir);
H
Hongze Cheng 已提交
1119 1120 1121 1122

  // Resource allocation and init
  regcomp(&regex, pattern, REG_EXTENDED);

S
Shengliang Guan 已提交
1123
  fArray = taosArrayInit(1024, sizeof(STfsFile));
H
Hongze Cheng 已提交
1124 1125 1126 1127 1128 1129 1130 1131
  if (fArray == NULL) {
    terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
    tsdbError("vgId:%d failed to restore DFileSet while open directory %s since %s", REPO_ID(pRepo), dataDir,
              tstrerror(terrno));
    regfree(&regex);
    return -1;
  }

S
Shengliang Guan 已提交
1132
  tdir = tfsOpendir(pRepo->pTfs, dataDir);
H
Hongze Cheng 已提交
1133
  if (tdir == NULL) {
H
Hongze Cheng 已提交
1134 1135 1136 1137
    tsdbError("vgId:%d failed to restore DFileSet while open directory %s since %s", REPO_ID(pRepo), dataDir,
              tstrerror(terrno));
    taosArrayDestroy(fArray);
    regfree(&regex);
H
Hongze Cheng 已提交
1138 1139 1140
    return -1;
  }

H
Hongze Cheng 已提交
1141
  while ((pf = tfsReaddir(tdir))) {
S
Shengliang Guan 已提交
1142
    tfsBasename(pf, bname);
H
Hongze Cheng 已提交
1143 1144 1145

    int code = regexec(&regex, bname, 0, NULL, 0);
    if (code == 0) {
1146
      if (taosArrayPush(fArray, (void *)pf) == NULL) {
H
Hongze Cheng 已提交
1147 1148 1149 1150 1151 1152 1153 1154
        terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
        tfsClosedir(tdir);
        taosArrayDestroy(fArray);
        regfree(&regex);
        return -1;
      }
    } else if (code == REG_NOMATCH) {
      // Not match
S
Shengliang Guan 已提交
1155 1156
      tsdbInfo("vgId:%d invalid file %s exists, remove it", REPO_ID(pRepo), pf->aname);
      (void)tfsRemoveFile(pf);
H
Hongze Cheng 已提交
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
      continue;
    } else {
      // Has other error
      tsdbError("vgId:%d failed to restore DFileSet Array while run regexec since %s", REPO_ID(pRepo), strerror(code));
      terrno = TAOS_SYSTEM_ERROR(code);
      tfsClosedir(tdir);
      taosArrayDestroy(fArray);
      regfree(&regex);
      return -1;
    }
  }
H
Hongze Cheng 已提交
1168 1169

  tfsClosedir(tdir);
H
Hongze Cheng 已提交
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
  regfree(&regex);

  // Sort the array according to file name
  taosArraySort(fArray, tsdbComparTFILE);

  size_t index = 0;
  // Loop to recover each file set
  for (;;) {
    if (index >= taosArrayGetSize(fArray)) {
      break;
    }

    SDFileSet fset = {0};

    TSDB_FSET_SET_CLOSED(&fset);

    // Loop to recover ONE fset
    for (TSDB_FILE_T ftype = 0; ftype < TSDB_FILE_MAX; ftype++) {
      SDFile *pDFile = TSDB_DFILE_IN_SET(&fset, ftype);

      if (index >= taosArrayGetSize(fArray)) {
        tsdbError("vgId:%d incomplete DFileSet, fid:%d", REPO_ID(pRepo), fset.fid);
        taosArrayDestroy(fArray);
        return -1;
      }

      pf = taosArrayGet(fArray, index);

      int         tvid, tfid;
      TSDB_FILE_T ttype;
      uint32_t    tversion;
1201
      char        _bname[TSDB_FILENAME_LEN];
H
Hongze Cheng 已提交
1202

S
Shengliang Guan 已提交
1203
      tfsBasename(pf, _bname);
1204
      tsdbParseDFilename(_bname, &tvid, &tfid, &ttype, &tversion);
H
Hongze Cheng 已提交
1205 1206 1207

      ASSERT(tvid == REPO_ID(pRepo));

1208 1209 1210 1211 1212
      if (tfid < pRepo->rtn.minFid) {  // skip file expired
        ++index;
        continue;
      }

H
Hongze Cheng 已提交
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
      if (ftype == 0) {
        fset.fid = tfid;
      } else {
        if (tfid != fset.fid) {
          tsdbError("vgId:%d incomplete dFileSet, fid:%d", REPO_ID(pRepo), fset.fid);
          taosArrayDestroy(fArray);
          return -1;
        }
      }

      if (ttype != ftype) {
        tsdbError("vgId:%d incomplete dFileSet, fid:%d", REPO_ID(pRepo), fset.fid);
        taosArrayDestroy(fArray);
        return -1;
      }

      pDFile->f = *pf;
H
Hongze Cheng 已提交
1230

H
Hongze Cheng 已提交
1231
      if (tsdbOpenDFile(pDFile, O_RDONLY) < 0) {
H
Hongze Cheng 已提交
1232 1233
        tsdbError("vgId:%d failed to open DFile %s since %s", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pDFile),
                  tstrerror(terrno));
H
Hongze Cheng 已提交
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
        taosArrayDestroy(fArray);
        return -1;
      }

      if (tsdbLoadDFileHeader(pDFile, &(pDFile->info)) < 0) {
        tsdbError("vgId:%d failed to load DFile %s header since %s", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pDFile),
                  tstrerror(terrno));
        taosArrayDestroy(fArray);
        return -1;
      }

1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
      if (tsdbForceKeepFile) {
        struct stat tfstat;

        // Get real file size
        if (fstat(pDFile->fd, &tfstat) < 0) {
          terrno = TAOS_SYSTEM_ERROR(errno);
          taosArrayDestroy(fArray);
          return -1;
        }

        if (pDFile->info.size != tfstat.st_size) {
          int64_t tfsize = pDFile->info.size;
          pDFile->info.size = tfstat.st_size;
          tsdbInfo("vgId:%d file %s header size is changed from %" PRId64 " to %" PRId64, REPO_ID(pRepo),
                   TSDB_FILE_FULL_NAME(pDFile), tfsize, pDFile->info.size);
        }
      }

H
Hongze Cheng 已提交
1263
      tsdbCloseDFile(pDFile);
H
Hongze Cheng 已提交
1264
      index++;
H
Hongze Cheng 已提交
1265 1266
    }

H
Hongze Cheng 已提交
1267
    tsdbInfo("vgId:%d FSET %d is restored", REPO_ID(pRepo), fset.fid);
H
Hongze Cheng 已提交
1268 1269 1270 1271 1272
    taosArrayPush(pfs->cstatus->df, &fset);
  }

  // Resource release
  taosArrayDestroy(fArray);
H
Hongze Cheng 已提交
1273 1274

  return 0;
H
Hongze Cheng 已提交
1275 1276
}

H
Hongze Cheng 已提交
1277
static int tsdbRestoreCurrent(STsdb *pRepo) {
H
Hongze Cheng 已提交
1278 1279 1280 1281 1282
  // // Loop to recover mfile
  // if (tsdbRestoreMeta(pRepo) < 0) {
  //   tsdbError("vgId:%d failed to restore current since %s", REPO_ID(pRepo), tstrerror(terrno));
  //   return -1;
  // }
H
Hongze Cheng 已提交
1283 1284 1285 1286 1287 1288 1289

  // Loop to recover dfile set
  if (tsdbRestoreDFileSet(pRepo) < 0) {
    tsdbError("vgId:%d failed to restore DFileSet since %s", REPO_ID(pRepo), tstrerror(terrno));
    return -1;
  }

S
Shengliang Guan 已提交
1290
  if (tsdbSaveFSStatus(pRepo->pTfs, pRepo->fs->cstatus, REPO_ID(pRepo)) < 0) {
H
Hongze Cheng 已提交
1291 1292 1293 1294 1295 1296 1297 1298
    tsdbError("vgId:%d failed to restore corrent since %s", REPO_ID(pRepo), tstrerror(terrno));
    return -1;
  }

  return 0;
}

static int tsdbComparTFILE(const void *arg1, const void *arg2) {
S
Shengliang Guan 已提交
1299 1300
  STfsFile *pf1 = (STfsFile *)arg1;
  STfsFile *pf2 = (STfsFile *)arg2;
H
Hongze Cheng 已提交
1301 1302 1303 1304

  int         vid1, fid1, vid2, fid2;
  TSDB_FILE_T ftype1, ftype2;
  uint32_t    version1, version2;
H
Hongze Cheng 已提交
1305 1306
  char        bname1[TSDB_FILENAME_LEN];
  char        bname2[TSDB_FILENAME_LEN];
H
Hongze Cheng 已提交
1307

S
Shengliang Guan 已提交
1308 1309
  tfsBasename(pf1, bname1);
  tfsBasename(pf2, bname2);
H
Hongze Cheng 已提交
1310 1311
  tsdbParseDFilename(bname1, &vid1, &fid1, &ftype1, &version1);
  tsdbParseDFilename(bname2, &vid2, &fid2, &ftype2, &version2);
H
Hongze Cheng 已提交
1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325

  if (fid1 < fid2) {
    return -1;
  } else if (fid1 > fid2) {
    return 1;
  } else {
    if (ftype1 < ftype2) {
      return -1;
    } else if (ftype1 > ftype2) {
      return 1;
    } else {
      return 0;
    }
  }
H
Hongze Cheng 已提交
1326 1327
}

H
Hongze Cheng 已提交
1328
static void tsdbScanAndTryFixDFilesHeader(STsdb *pRepo, int32_t *nExpired) {
H
Hongze Cheng 已提交
1329 1330 1331 1332 1333 1334 1335
  STsdbFS *  pfs = REPO_FS(pRepo);
  SFSStatus *pStatus = pfs->cstatus;
  SDFInfo    info;

  for (size_t i = 0; i < taosArrayGetSize(pStatus->df); i++) {
    SDFileSet fset;
    tsdbInitDFileSetEx(&fset, (SDFileSet *)taosArrayGet(pStatus->df, i));
1336 1337 1338
    if (fset.fid < pRepo->rtn.minFid) {
      ++*nExpired;
    }
H
Hongze Cheng 已提交
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
    tsdbDebug("vgId:%d scan DFileSet %d header", REPO_ID(pRepo), fset.fid);

    if (tsdbOpenDFileSet(&fset, O_RDWR) < 0) {
      tsdbError("vgId:%d failed to open DFileSet %d since %s, continue", REPO_ID(pRepo), fset.fid, tstrerror(terrno));
      continue;
    }

    for (TSDB_FILE_T ftype = 0; ftype < TSDB_FILE_MAX; ftype++) {
      SDFile *pDFile = TSDB_DFILE_IN_SET(&fset, ftype);

H
Hongze Cheng 已提交
1349 1350
      if ((tsdbLoadDFileHeader(pDFile, &info) < 0) || pDFile->info.size != info.size ||
          pDFile->info.magic != info.magic) {
H
Hongze Cheng 已提交
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
        if (tsdbUpdateDFileHeader(pDFile) < 0) {
          tsdbError("vgId:%d failed to update DFile header of %s since %s, continue", REPO_ID(pRepo),
                    TSDB_FILE_FULL_NAME(pDFile), tstrerror(terrno));
        } else {
          tsdbInfo("vgId:%d DFile header of %s is updated", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pDFile));
          TSDB_FILE_FSYNC(pDFile);
        }
      } else {
        tsdbDebug("vgId:%d DFile header of %s is correct", REPO_ID(pRepo), TSDB_FILE_FULL_NAME(pDFile));
      }
    }

    tsdbCloseDFileSet(&fset);
  }
L
Liu Jicong 已提交
1365
}