tsdbFS2.h 3.0 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/>.
 */

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

H
Hongze Cheng 已提交
18 19 20 21 22 23 24 25
#ifndef _TSDB_FILE_SYSTEM_H
#define _TSDB_FILE_SYSTEM_H

#ifdef __cplusplus
extern "C" {
#endif

/* Exposed Handle */
H
Hongze Cheng 已提交
26
typedef struct STFileSystem STFileSystem;
H
Hongze Cheng 已提交
27
typedef struct STFSBgTask   STFSBgTask;
M
Minglei Jin 已提交
28
// typedef TARRAY2(STFileSet *) TFileSetArray;
H
Hongze Cheng 已提交
29

H
Hongze Cheng 已提交
30
typedef enum {
H
Hongze Cheng 已提交
31 32 33
  TSDB_FEDIT_COMMIT = 1,  //
  TSDB_FEDIT_MERGE
} EFEditT;
H
Hongze Cheng 已提交
34

H
Hongze Cheng 已提交
35 36 37 38 39 40
typedef enum {
  TSDB_BG_TASK_MERGER = 1,
  TSDB_BG_TASK_RETENTION,
  TSDB_BG_TASK_COMPACT,
} EFSBgTaskT;

H
Hongze Cheng 已提交
41 42 43 44 45 46
typedef enum {
  TSDB_FCURRENT = 1,
  TSDB_FCURRENT_C,  // for commit
  TSDB_FCURRENT_M,  // for merge
} EFCurrentT;

H
Hongze Cheng 已提交
47
/* Exposed APIs */
H
Hongze Cheng 已提交
48
// open/close
H
Hongze Cheng 已提交
49 50
int32_t tsdbOpenFS(STsdb *pTsdb, STFileSystem **fs, int8_t rollback);
int32_t tsdbCloseFS(STFileSystem **fs);
H
Hongze Cheng 已提交
51
// snapshot
H
Hongze Cheng 已提交
52 53
int32_t tsdbFSCreateCopySnapshot(STFileSystem *fs, TFileSetArray **fsetArr);
int32_t tsdbFSDestroyCopySnapshot(TFileSetArray **fsetArr);
H
Hongze Cheng 已提交
54 55
int32_t tsdbFSCreateRefSnapshot(STFileSystem *fs, TFileSetArray **fsetArr);
int32_t tsdbFSDestroyRefSnapshot(TFileSetArray **fsetArr);
H
Hongze Cheng 已提交
56
// txn
H
Hongze Cheng 已提交
57
int64_t tsdbFSAllocEid(STFileSystem *fs);
H
Hongze Cheng 已提交
58
int32_t tsdbFSEditBegin(STFileSystem *fs, const TFileOpArray *opArray, EFEditT etype);
H
Hongze Cheng 已提交
59 60
int32_t tsdbFSEditCommit(STFileSystem *fs);
int32_t tsdbFSEditAbort(STFileSystem *fs);
H
Hongze Cheng 已提交
61
// background task
H
Hongze Cheng 已提交
62 63
int32_t tsdbFSScheduleBgTask(STFileSystem *fs, EFSBgTaskT type, int32_t (*run)(void *), void (*free)(void *), void *arg,
                             int64_t *taskid);
H
Hongze Cheng 已提交
64 65
int32_t tsdbFSWaitBgTask(STFileSystem *fs, int64_t taskid);
int32_t tsdbFSWaitAllBgTask(STFileSystem *fs);
H
Hongze Cheng 已提交
66 67
int32_t tsdbFSDisableBgTask(STFileSystem *fs);
int32_t tsdbFSEnableBgTask(STFileSystem *fs);
H
Hongze Cheng 已提交
68
// other
H
Hongze Cheng 已提交
69
int32_t tsdbFSGetFSet(STFileSystem *fs, int32_t fid, STFileSet **fset);
H
Hongze Cheng 已提交
70

H
Hongze Cheng 已提交
71 72 73
struct STFSBgTask {
  EFSBgTaskT type;
  int32_t (*run)(void *arg);
H
Hongze Cheng 已提交
74
  void (*free)(void *arg);
H
Hongze Cheng 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88
  void *arg;

  TdThreadCond done[1];
  int32_t      numWait;

  int64_t taskid;
  int64_t scheduleTime;
  int64_t launchTime;
  int64_t finishTime;

  struct STFSBgTask *prev;
  struct STFSBgTask *next;
};

H
Hongze Cheng 已提交
89
/* Exposed Structs */
H
Hongze Cheng 已提交
90
struct STFileSystem {
H
Hongze Cheng 已提交
91
  STsdb        *tsdb;
H
Hongze Cheng 已提交
92 93 94 95
  tsem_t        canEdit;
  int32_t       state;
  int64_t       neid;
  EFEditT       etype;
H
Hongze Cheng 已提交
96 97
  TFileSetArray fSetArr[1];
  TFileSetArray fSetArrTmp[1];
H
Hongze Cheng 已提交
98 99 100

  // background task queue
  TdThreadMutex mutex[1];
H
Hongze Cheng 已提交
101
  bool          stop;
H
Hongze Cheng 已提交
102 103 104 105
  int64_t       taskid;
  int32_t       bgTaskNum;
  STFSBgTask    bgTaskQueue[1];
  STFSBgTask   *bgTaskRunning;
H
Hongze Cheng 已提交
106 107
};

H
Hongze Cheng 已提交
108 109 110 111
#ifdef __cplusplus
}
#endif

M
Minglei Jin 已提交
112
#endif /*_TSDB_FILE_SYSTEM_H*/