mgmtSdb.h 2.3 KB
Newer Older
H
hzcheng 已提交
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/>.
 */

S
slguan 已提交
16 17 18 19 20 21
#ifndef TDENGINE_MNODE_SDB_H
#define TDENGINE_MNODE_SDB_H

#ifdef __cplusplus
extern "C" {
#endif
H
hzcheng 已提交
22

S
slguan 已提交
23
typedef enum {
S
slguan 已提交
24 25
  SDB_TABLE_DNODE   = 0,
  SDB_TABLE_MNODE   = 1,
S
slguan 已提交
26 27 28 29 30 31 32 33 34
  SDB_TABLE_ACCOUNT = 2,
  SDB_TABLE_USER    = 3,
  SDB_TABLE_DB      = 4,
  SDB_TABLE_VGROUP  = 5,
  SDB_TABLE_STABLE  = 6,
  SDB_TABLE_CTABLE  = 7,
  SDB_TABLE_MAX     = 8
} ESdbTable;

S
slguan 已提交
35
typedef enum {
S
slguan 已提交
36
  SDB_KEY_STRING, 
S
slguan 已提交
37
  SDB_KEY_INT,
S
slguan 已提交
38
  SDB_KEY_AUTO
S
slguan 已提交
39
} ESdbKey;
S
slguan 已提交
40

S
slguan 已提交
41
typedef enum {
S
slguan 已提交
42 43
  SDB_OPER_GLOBAL,
  SDB_OPER_LOCAL
S
slguan 已提交
44
} ESdbOper;
S
slguan 已提交
45

S
slguan 已提交
46
typedef struct {
S
slguan 已提交
47 48 49 50 51 52
  ESdbOper type;
  void *   table;
  void *   pObj;
  int32_t  rowSize;
  void *   rowData;
} SSdbOper;
S
slguan 已提交
53 54 55 56 57

typedef struct {
  char   *tableName;
  int32_t hashSessions;
  int32_t maxRowSize;
S
slguan 已提交
58
  int32_t refCountPos;
S
slguan 已提交
59 60 61 62 63 64 65 66
  ESdbTable tableId;
  ESdbKey   keyType;
  int32_t (*insertFp)(SSdbOper *pOper);
  int32_t (*deleteFp)(SSdbOper *pOper);
  int32_t (*updateFp)(SSdbOper *pOper);
  int32_t (*encodeFp)(SSdbOper *pOper);
  int32_t (*decodeFp)(SSdbOper *pDesc);  
  int32_t (*destroyFp)(SSdbOper *pDesc);
S
slguan 已提交
67
  int32_t (*restoredFp)();
S
slguan 已提交
68
} SSdbTableDesc;
S
slguan 已提交
69

S
slguan 已提交
70 71
int32_t sdbInit();
void    sdbCleanUp();
S
slguan 已提交
72 73
void *  sdbOpenTable(SSdbTableDesc *desc);
void    sdbCloseTable(void *handle);
S
slguan 已提交
74 75
bool    sdbIsMaster();
void    sdbUpdateMnodeRoles();
S
slguan 已提交
76

S
slguan 已提交
77 78 79
int32_t sdbInsertRow(SSdbOper *pOper);
int32_t sdbDeleteRow(SSdbOper *pOper);
int32_t sdbUpdateRow(SSdbOper *pOper);
S
slguan 已提交
80

S
slguan 已提交
81 82
void    *sdbGetRow(void *handle, void *key);
void    *sdbFetchRow(void *handle, void *pNode, void **ppRow);
S
slguan 已提交
83 84
void     sdbIncRef(void *thandle, void *pRow);
void     sdbDecRef(void *thandle, void *pRow);
S
slguan 已提交
85
int64_t  sdbGetNumOfRows(void *handle);
S
slguan 已提交
86
int32_t  sdbGetId(void *handle);
S
slguan 已提交
87
uint64_t sdbGetVersion();
S
slguan 已提交
88 89 90

#ifdef __cplusplus
}
H
hzcheng 已提交
91
#endif
S
slguan 已提交
92 93

#endif