tsdbFS.h 1.6 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 17
#include "tsdbFSet.h"

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
// txn
H
Hongze Cheng 已提交
39
int32_t tsdbFSAllocEid(STFileSystem *pFS, int64_t *eid);
H
Hongze Cheng 已提交
40
int32_t tsdbFSEditBegin(STFileSystem *fs, const TFileOpArray *opArray, EFEditT etype);
H
Hongze Cheng 已提交
41 42
int32_t tsdbFSEditCommit(STFileSystem *pFS);
int32_t tsdbFSEditAbort(STFileSystem *pFS);
H
Hongze Cheng 已提交
43 44
// other
int32_t tsdbFSGetFSet(STFileSystem *fs, int32_t fid, const STFileSet **ppFSet);
H
Hongze Cheng 已提交
45 46

/* Exposed Structs */
H
Hongze Cheng 已提交
47
struct STFileSystem {
H
Hongze Cheng 已提交
48 49 50 51 52 53 54
  STsdb        *pTsdb;
  tsem_t        canEdit;
  int32_t       state;
  int64_t       neid;
  EFEditT       etype;
  TFileSetArray cstate;
  TFileSetArray nstate;
H
Hongze Cheng 已提交
55 56
};

H
Hongze Cheng 已提交
57 58 59 60 61
#ifdef __cplusplus
}
#endif

#endif /*_TSDB_FILE_SYSTEM_H*/