tsdbFS.c 13.6 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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
Hongze Cheng 已提交
14 15
 */

H
Hongze Cheng 已提交
16 17
#include "dev.h"

H
Hongze Cheng 已提交
18
static int32_t create_file_system(STsdb *pTsdb, struct STFileSystem **ppFS) {
H
Hongze Cheng 已提交
19 20 21 22 23 24 25 26
  if ((ppFS[0] = taosMemoryCalloc(1, sizeof(*ppFS[0]))) == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  if ((ppFS[0]->aFileSet = taosArrayInit(16, sizeof(struct SFileSet))) == NULL) {
    taosMemoryFree(ppFS[0]);
    return TSDB_CODE_OUT_OF_MEMORY;
  }
H
Hongze Cheng 已提交
27

H
Hongze Cheng 已提交
28
  ppFS[0]->pTsdb = pTsdb;
H
Hongze Cheng 已提交
29
  tsem_init(&ppFS[0]->canEdit, 0, 1);
H
Hongze Cheng 已提交
30

H
Hongze Cheng 已提交
31 32 33 34 35
  return 0;
}

static int32_t destroy_file_system(struct STFileSystem **ppFS) {
  if (ppFS[0]) {
H
Hongze Cheng 已提交
36
    taosArrayDestroy(ppFS[0]->aFileSet);
H
Hongze Cheng 已提交
37
    tsem_destroy(&ppFS[0]->canEdit);
H
Hongze Cheng 已提交
38 39 40 41 42 43
    taosMemoryFree(ppFS[0]);
    ppFS[0] = NULL;
  }
  return 0;
}

H
Hongze Cheng 已提交
44
static int32_t get_current_json(STsdb *pTsdb, char fname[]) {
H
Hongze Cheng 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
  if (pTsdb->pVnode->pTfs) {
    snprintf(fname,                                   //
             TSDB_FILENAME_LEN,                       //
             "%s%s%s%s%s",                            //
             tfsGetPrimaryPath(pTsdb->pVnode->pTfs),  //
             TD_DIRSEP,                               //
             pTsdb->path,                             //
             TD_DIRSEP,                               //
             "current.json");
  } else {
    snprintf(fname,              //
             TSDB_FILENAME_LEN,  //
             "%s%s%s",           //
             pTsdb->path,        //
             TD_DIRSEP,          //
             "current.json");
  }
H
Hongze Cheng 已提交
62
  return 0;
H
Hongze Cheng 已提交
63 64
}

H
Hongze Cheng 已提交
65
static int32_t get_current_temp(STsdb *pTsdb, char fname[], tsdb_fs_edit_t etype) {
H
Hongze Cheng 已提交
66 67
  switch (etype) {
    case TSDB_FS_EDIT_COMMIT:
H
Hongze Cheng 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
      if (pTsdb->pVnode->pTfs) {
        snprintf(fname,                                   //
                 TSDB_FILENAME_LEN,                       //
                 "%s%s%s%s%s",                            //
                 tfsGetPrimaryPath(pTsdb->pVnode->pTfs),  //
                 TD_DIRSEP,                               //
                 pTsdb->path,                             //
                 TD_DIRSEP,                               //
                 "current.json.commit");
      } else {
        snprintf(fname,              //
                 TSDB_FILENAME_LEN,  //
                 "%s%s%s",           //
                 pTsdb->path,        //
                 TD_DIRSEP,          //
                 "current.json.commit");
      }
H
Hongze Cheng 已提交
85 86
      break;
    default:
H
Hongze Cheng 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
      if (pTsdb->pVnode->pTfs) {
        snprintf(fname,                                   //
                 TSDB_FILENAME_LEN,                       //
                 "%s%s%s%s%s",                            //
                 tfsGetPrimaryPath(pTsdb->pVnode->pTfs),  //
                 TD_DIRSEP,                               //
                 pTsdb->path,                             //
                 TD_DIRSEP,                               //
                 "current.json.t");
      } else {
        snprintf(fname,              //
                 TSDB_FILENAME_LEN,  //
                 "%s%s%s",           //
                 pTsdb->path,        //
                 TD_DIRSEP,          //
                 "current.json.t");
      }
H
Hongze Cheng 已提交
104 105 106 107 108 109
      break;
  }

  return 0;
}

H
Hongze Cheng 已提交
110 111 112 113 114 115 116 117 118 119
static int32_t fs_to_json_str(struct STFileSystem *pFS, char **ppData) {
  int32_t code = 0;
  int32_t lino;

  cJSON *pJson = cJSON_CreateObject();
  if (pJson == NULL) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  /* format version */
H
Hongze Cheng 已提交
120 121 122
  TSDB_CHECK_NULL(                        //
      cJSON_AddNumberToObject(pJson,      //
                              "version",  //
H
Hongze Cheng 已提交
123 124 125 126 127 128 129
                              1 /* TODO */),
      code,   //
      lino,   //
      _exit,  //
      TSDB_CODE_OUT_OF_MEMORY);

  /* next edit id */
H
Hongze Cheng 已提交
130 131 132
  TSDB_CHECK_NULL(                        //
      cJSON_AddNumberToObject(pJson,      //
                              "edit id",  //
H
Hongze Cheng 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
                              pFS->nextEditId),
      code,   //
      lino,   //
      _exit,  //
      TSDB_CODE_OUT_OF_MEMORY);

  /* file sets */
  cJSON *aFileSetJson;
  TSDB_CHECK_NULL(                                                //
      aFileSetJson = cJSON_AddArrayToObject(pJson, "file sets"),  //
      code,                                                       //
      lino,                                                       //
      _exit,                                                      //
      TSDB_CODE_OUT_OF_MEMORY);

  for (int32_t i = 0; i < taosArrayGetSize(pFS->aFileSet); i++) {
    struct SFileSet *pFileSet = taosArrayGet(pFS->aFileSet, i);

    code = tsdbFileSetToJson(aFileSetJson, pFileSet);
    TSDB_CHECK_CODE(code, lino, _exit);
  }

  ppData[0] = cJSON_Print(pJson);
  if (ppData[0] == NULL) {
    code = TSDB_CODE_OUT_OF_MEMORY;
    TSDB_CHECK_CODE(code, lino, _exit);
  }

_exit:
  cJSON_Delete(pJson);
  if (code) {
    tsdbError("vgId:%d %s failed at line %d since %s",  //
              TD_VID(pFS->pTsdb->pVnode),               //
              __func__,                                 //
              lino,                                     //
              tstrerror(code));
  }
  return code;
}

static int32_t fs_from_json_str(const char *pData, struct STFileSystem *pFS) {
  int32_t code = 0;
  int32_t lino;

H
Hongze Cheng 已提交
177
  ASSERTS(0, "TODO: Not implemented yet");
H
Hongze Cheng 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231

_exit:
  return code;
}

static int32_t save_fs_to_file(struct STFileSystem *pFS, const char *fname) {
  int32_t code = 0;
  int32_t lino;
  char   *pData = NULL;

  // to json string
  code = fs_to_json_str(pFS, &pData);
  TSDB_CHECK_CODE(code, lino, _exit);

  TdFilePtr fd = taosOpenFile(fname,                //
                              TD_FILE_WRITE         //
                                  | TD_FILE_CREATE  //
                                  | TD_FILE_TRUNC);
  if (fd == NULL) {
    code = TAOS_SYSTEM_ERROR(code);
    TSDB_CHECK_CODE(code, lino, _exit);
  }

  int64_t n = taosWriteFile(fd, pData, strlen(pData) + 1);
  if (n < 0) {
    code = TAOS_SYSTEM_ERROR(code);
    taosCloseFile(&fd);
    TSDB_CHECK_CODE(code, lino, _exit);
  }

  if (taosFsyncFile(fd) < 0) {
    code = TAOS_SYSTEM_ERROR(code);
    taosCloseFile(&fd);
    TSDB_CHECK_CODE(code, lino, _exit);
  }

  taosCloseFile(&fd);

_exit:
  if (code) {
    tsdbError("vgId:%d %s failed at line %d since %s",  //
              TD_VID(pFS->pTsdb->pVnode),               //
              __func__,                                 //
              lino,                                     //
              tstrerror(code));
  } else {
    tsdbDebug("vgId:%d %s success",        //
              TD_VID(pFS->pTsdb->pVnode),  //
              __func__);
  }
  if (pData) {
    taosMemoryFree(pData);
  }
  return code;
H
Hongze Cheng 已提交
232 233 234 235 236 237 238
}

static int32_t load_fs_from_file(const char *fname, struct STFileSystem *pFS) {
  ASSERTS(0, "TODO: Not implemented yet");
  return 0;
}

H
Hongze Cheng 已提交
239
static int32_t commit_edit(struct STFileSystem *pFS, tsdb_fs_edit_t etype) {
H
Hongze Cheng 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
  int32_t code;
  char    ofname[TSDB_FILENAME_LEN];
  char    nfname[TSDB_FILENAME_LEN];

  get_current_json(pFS->pTsdb, nfname);
  get_current_temp(pFS->pTsdb, ofname, etype);

  code = taosRenameFile(ofname, nfname);
  if (code) {
    code = TAOS_SYSTEM_ERROR(code);
    return code;
  }

  ASSERTS(0, "TODO: Do changes to pFS");

H
Hongze Cheng 已提交
255 256 257
  return 0;
}

H
Hongze Cheng 已提交
258
static int32_t abort_edit(struct STFileSystem *pFS, tsdb_fs_edit_t etype) {
H
Hongze Cheng 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
  int32_t code;
  char    fname[TSDB_FILENAME_LEN];

  get_current_temp(pFS->pTsdb, fname, etype);

  code = taosRemoveFile(fname);
  if (code) code = TAOS_SYSTEM_ERROR(code);

  return code;
}

static int32_t scan_file_system(struct STFileSystem *pFS) {
  // ASSERTS(0, "TODO: Not implemented yet");
  return 0;
}

static int32_t scan_and_schedule_merge(struct STFileSystem *pFS) {
  // ASSERTS(0, "TODO: Not implemented yet");
H
Hongze Cheng 已提交
277 278 279
  return 0;
}

H
Hongze Cheng 已提交
280
static int32_t open_file_system(struct STFileSystem *pFS, int8_t rollback) {
H
Hongze Cheng 已提交
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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
  int32_t code = 0;
  int32_t lino;
  STsdb  *pTsdb = pFS->pTsdb;

  if (0) {
    ASSERTS(0, "Not implemented yet");
  } else {
    char current_json[TSDB_FILENAME_LEN];
    char current_json_commit[TSDB_FILENAME_LEN];
    char current_json_t[TSDB_FILENAME_LEN];

    get_current_json(pTsdb, current_json);
    get_current_temp(pTsdb, current_json_commit, TSDB_FS_EDIT_COMMIT);
    get_current_temp(pTsdb, current_json_t, TSDB_FS_EDIT_MERGE);

    if (taosCheckExistFile(current_json)) {  // current.json exists
      code = load_fs_from_file(current_json, pFS);
      TSDB_CHECK_CODE(code, lino, _exit);

      // check current.json.commit existence
      if (taosCheckExistFile(current_json_commit)) {
        if (rollback) {
          code = commit_edit(pFS, TSDB_FS_EDIT_COMMIT);
          TSDB_CHECK_CODE(code, lino, _exit);
        } else {
          code = abort_edit(pFS, TSDB_FS_EDIT_COMMIT);
          TSDB_CHECK_CODE(code, lino, _exit);
        }
      }

      // check current.json.t existence
      if (taosCheckExistFile(current_json_t)) {
        code = abort_edit(pFS, TSDB_FS_EDIT_MERGE);
        TSDB_CHECK_CODE(code, lino, _exit);
      }
    } else {
      code = save_fs_to_file(pFS, current_json);
      TSDB_CHECK_CODE(code, lino, _exit);
    }
  }

H
Hongze Cheng 已提交
322 323 324 325 326 327
  code = scan_file_system(pFS);
  TSDB_CHECK_CODE(code, lino, _exit);

  code = scan_and_schedule_merge(pFS);
  TSDB_CHECK_CODE(code, lino, _exit);

H
Hongze Cheng 已提交
328 329 330 331 332 333 334 335 336 337 338 339
_exit:
  if (code) {
    tsdbError("vgId:%d %s failed at line %d since %s",  //
              TD_VID(pTsdb->pVnode),                    //
              __func__,                                 //
              lino,                                     //
              tstrerror(code));
  } else {
    tsdbInfo("vgId:%d %s success",   //
             TD_VID(pTsdb->pVnode),  //
             __func__);
  }
H
Hongze Cheng 已提交
340 341 342 343
  return 0;
}

static int32_t close_file_system(struct STFileSystem *pFS) {
H
Hongze Cheng 已提交
344
  ASSERTS(0, "TODO: Not implemented yet");
H
Hongze Cheng 已提交
345 346
  return 0;
}
H
Hongze Cheng 已提交
347

H
Hongze Cheng 已提交
348
static int32_t read_fs_from_file(struct STFileSystem *pFS, const char *fname) {
H
Hongze Cheng 已提交
349
  ASSERTS(0, "TODO: Not implemented yet");
H
Hongze Cheng 已提交
350 351 352
  return 0;
}

H
Hongze Cheng 已提交
353
static int32_t edit_fs(struct STFileSystem *pFS, const SArray *aFileOp) {
H
Hongze Cheng 已提交
354
  ASSERTS(0, "TODO: Not implemented yet");
H
Hongze Cheng 已提交
355 356 357 358 359 360 361 362 363 364 365 366

  for (int32_t iop = 0; iop < taosArrayGetSize(aFileOp); iop++) {
    struct SFileOp *pOp = taosArrayGet(aFileOp, iop);
    // if (pOp->op == TSDB_FS_OP_ADD) {
    //   ASSERTS(0, "TODO: Not implemented yet");
    // } else if (pOp->op == TSDB_FS_OP_DEL) {
    //   ASSERTS(0, "TODO: Not implemented yet");
    // } else {
    //   ASSERTS(0, "TODO: Not implemented yet");
    // }
  }

H
Hongze Cheng 已提交
367 368 369
  return 0;
}

H
Hongze Cheng 已提交
370
int32_t tsdbOpenFileSystem(STsdb *pTsdb, struct STFileSystem **ppFS, int8_t rollback) {
H
Hongze Cheng 已提交
371 372 373 374 375 376
  int32_t code;
  int32_t lino;

  code = create_file_system(pTsdb, ppFS);
  TSDB_CHECK_CODE(code, lino, _exit);

H
Hongze Cheng 已提交
377
  code = open_file_system(ppFS[0], rollback);
H
Hongze Cheng 已提交
378 379 380 381
  if (code) {
    destroy_file_system(ppFS);
    TSDB_CHECK_CODE(code, lino, _exit);
  }
H
Hongze Cheng 已提交
382 383 384

_exit:
  if (code) {
H
Hongze Cheng 已提交
385 386 387 388 389
    tsdbError("vgId:%d %s failed at line %d since %s",  //
              TD_VID(pTsdb->pVnode),                    //
              __func__,                                 //
              lino,                                     //
              tstrerror(code));
H
Hongze Cheng 已提交
390
  } else {
H
Hongze Cheng 已提交
391 392 393
    tsdbInfo("vgId:%d %s success",   //
             TD_VID(pTsdb->pVnode),  //
             __func__);
H
Hongze Cheng 已提交
394 395 396 397 398 399 400 401 402 403
  }
  return 0;
}

int32_t tsdbCloseFileSystem(struct STFileSystem **ppFS) {
  if (ppFS[0] == NULL) return 0;
  close_file_system(ppFS[0]);
  destroy_file_system(ppFS);
  return 0;
}
H
Hongze Cheng 已提交
404

H
Hongze Cheng 已提交
405
int32_t tsdbFileSystemEditBegin(struct STFileSystem *pFS, const SArray *aFileOp, tsdb_fs_edit_t etype) {
H
Hongze Cheng 已提交
406
  int32_t code = 0;
H
Hongze Cheng 已提交
407
  int32_t lino;
H
Hongze Cheng 已提交
408 409
  char    fname[TSDB_FILENAME_LEN];

H
Hongze Cheng 已提交
410
  get_current_temp(pFS->pTsdb, fname, etype);
H
Hongze Cheng 已提交
411

H
Hongze Cheng 已提交
412
  tsem_wait(&pFS->canEdit);
H
Hongze Cheng 已提交
413

H
Hongze Cheng 已提交
414 415 416 417 418 419 420 421 422
  TSDB_CHECK_CODE(                   //
      code = edit_fs(pFS, aFileOp),  //
      lino,                          //
      _exit);

  TSDB_CHECK_CODE(                         //
      code = save_fs_to_file(pFS, fname),  //
      lino,                                //
      _exit);
H
Hongze Cheng 已提交
423 424 425 426 427 428 429 430

_exit:
  if (code) {
    tsdbError("vgId:%d %s failed at line %d since %s",  //
              TD_VID(pFS->pTsdb->pVnode),               //
              __func__,                                 //
              lino,                                     //
              tstrerror(code));
H
Hongze Cheng 已提交
431 432 433 434 435
  } else {
    tsdbInfo("vgId:%d %s done, etype:%d",  //
             TD_VID(pFS->pTsdb->pVnode),   //
             __func__,                     //
             etype);
H
Hongze Cheng 已提交
436 437 438 439
  }
  return code;
}

H
Hongze Cheng 已提交
440
int32_t tsdbFileSystemEditCommit(struct STFileSystem *pFS, tsdb_fs_edit_t etype) {
H
Hongze Cheng 已提交
441
  int32_t code = commit_edit(pFS, etype);
H
Hongze Cheng 已提交
442
  tsem_post(&pFS->canEdit);
H
Hongze Cheng 已提交
443
  if (code) {
H
Hongze Cheng 已提交
444 445 446
    tsdbError("vgId:%d %s failed since %s",  //
              TD_VID(pFS->pTsdb->pVnode),    //
              __func__,                      //
H
Hongze Cheng 已提交
447
              tstrerror(code));
H
Hongze Cheng 已提交
448 449 450 451 452
  } else {
    tsdbInfo("vgId:%d %s done, etype:%d",  //
             TD_VID(pFS->pTsdb->pVnode),   //
             __func__,                     //
             etype);
H
Hongze Cheng 已提交
453 454 455 456
  }
  return code;
}

H
Hongze Cheng 已提交
457
int32_t tsdbFileSystemEditAbort(struct STFileSystem *pFS, tsdb_fs_edit_t etype) {
H
Hongze Cheng 已提交
458
  int32_t code = abort_edit(pFS, etype);
H
Hongze Cheng 已提交
459
  if (code) {
H
Hongze Cheng 已提交
460 461 462 463 464
    tsdbError("vgId:%d %s failed since %s, etype:%d",  //
              TD_VID(pFS->pTsdb->pVnode),              //
              __func__,                                //
              tstrerror(code),                         //
              etype);
H
Hongze Cheng 已提交
465
  } else {
H
Hongze Cheng 已提交
466
  }
H
Hongze Cheng 已提交
467
  tsem_post(&pFS->canEdit);
H
Hongze Cheng 已提交
468 469
  return code;
}