tsdbFS2.h 1.8 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

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 TARRAY2(STFileSet *) TFileSetArray;
H
Hongze Cheng 已提交
28

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

H
Hongze Cheng 已提交
34
/* Exposed APIs */
H
Hongze Cheng 已提交
35
// open/close
H
Hongze Cheng 已提交
36 37
int32_t tsdbOpenFS(STsdb *pTsdb, STFileSystem **fs, int8_t rollback);
int32_t tsdbCloseFS(STFileSystem **fs);
H
Hongze Cheng 已提交
38
// snapshot
H
Hongze Cheng 已提交
39 40
int32_t tsdbFSCreateCopySnapshot(STFileSystem *fs, TFileSetArray **fsetArr);
int32_t tsdbFSDestroyCopySnapshot(TFileSetArray **fsetArr);
H
Hongze Cheng 已提交
41
// txn
H
Hongze Cheng 已提交
42
int64_t tsdbFSAllocEid(STFileSystem *fs);
H
Hongze Cheng 已提交
43
int32_t tsdbFSEditBegin(STFileSystem *fs, const TFileOpArray *opArray, EFEditT etype);
H
Hongze Cheng 已提交
44 45
int32_t tsdbFSEditCommit(STFileSystem *fs);
int32_t tsdbFSEditAbort(STFileSystem *fs);
H
Hongze Cheng 已提交
46
// other
H
Hongze Cheng 已提交
47
int32_t tsdbFSGetFSet(STFileSystem *fs, int32_t fid, STFileSet **fset);
H
Hongze Cheng 已提交
48 49

/* Exposed Structs */
H
Hongze Cheng 已提交
50
struct STFileSystem {
H
Hongze Cheng 已提交
51
  STsdb        *tsdb;
H
Hongze Cheng 已提交
52 53 54 55
  tsem_t        canEdit;
  int32_t       state;
  int64_t       neid;
  EFEditT       etype;
H
Hongze Cheng 已提交
56
  bool          mergeTaskOn;
H
Hongze Cheng 已提交
57 58
  TFileSetArray fSetArr[1];
  TFileSetArray fSetArrTmp[1];
H
Hongze Cheng 已提交
59 60
};

H
Hongze Cheng 已提交
61 62 63 64 65
#ifdef __cplusplus
}
#endif

#endif /*_TSDB_FILE_SYSTEM_H*/