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

H
Hongze Cheng 已提交
28
typedef enum {
H
Hongze Cheng 已提交
29 30
  TSDB_FS_EDIT_COMMIT = 1,  //
  TSDB_FS_EDIT_MERGE
H
Hongze Cheng 已提交
31
} tsdb_fs_edit_t;
H
Hongze Cheng 已提交
32

H
Hongze Cheng 已提交
33
/* Exposed APIs */
H
Hongze Cheng 已提交
34
// open/close
H
Hongze Cheng 已提交
35 36
int32_t tsdbOpenFileSystem(STsdb *pTsdb, STFileSystem **ppFS, int8_t rollback);
int32_t tsdbCloseFileSystem(STFileSystem **ppFS);
H
Hongze Cheng 已提交
37
// txn
H
Hongze Cheng 已提交
38 39 40
int32_t tsdbFileSystemEditBegin(STFileSystem *pFS, const SArray *aFileOp, tsdb_fs_edit_t etype);
int32_t tsdbFileSystemEditCommit(STFileSystem *pFS, tsdb_fs_edit_t etype);
int32_t tsdbFileSystemEditAbort(STFileSystem *pFS, tsdb_fs_edit_t etype);
H
Hongze Cheng 已提交
41 42

/* Exposed Structs */
H
Hongze Cheng 已提交
43 44 45 46 47
struct STFileSystem {
  STsdb  *pTsdb;
  int32_t state;
  tsem_t  canEdit;
  int64_t nextEditId;
H
Hongze Cheng 已提交
48 49
  SArray *cstate;  // current state, SArray<STFileSet>
  SArray *nstate;  // next state, SArray<STFileSet>
H
Hongze Cheng 已提交
50 51
};

H
Hongze Cheng 已提交
52 53 54 55 56
#ifdef __cplusplus
}
#endif

#endif /*_TSDB_FILE_SYSTEM_H*/