mnodeSdb.h 2.7 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

23 24
struct SMnodeMsg;

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

S
slguan 已提交
38
typedef enum {
S
slguan 已提交
39
  SDB_KEY_STRING, 
S
slguan 已提交
40
  SDB_KEY_INT,
41 42
  SDB_KEY_AUTO,
  SDB_KEY_VAR_STRING,
S
slguan 已提交
43
} ESdbKey;
S
slguan 已提交
44

S
slguan 已提交
45
typedef enum {
S
slguan 已提交
46 47
  SDB_OPER_GLOBAL,
  SDB_OPER_LOCAL
S
slguan 已提交
48
} ESdbOper;
S
slguan 已提交
49

S
TD-2046  
Shengliang Guan 已提交
50
typedef struct SSWriteMsg {
S
slguan 已提交
51
  ESdbOper type;
52 53
  int32_t  rowSize;
  int32_t  retCode; // for callback in sdb queue
54
  int32_t  processedCount; // for sync fwd callback
S
Shengliang Guan 已提交
55 56 57 58 59
  int32_t  (*reqFp)(struct SMnodeMsg *pMsg);
  int32_t  (*writeCb)(struct SMnodeMsg *pMsg, int32_t code);
  void *   table;
  void *   pObj;
  void *   rowData;
60
  struct SMnodeMsg *pMsg;
S
TD-2046  
Shengliang Guan 已提交
61
} SSWriteMsg;
S
slguan 已提交
62 63 64 65 66

typedef struct {
  char   *tableName;
  int32_t hashSessions;
  int32_t maxRowSize;
S
slguan 已提交
67
  int32_t refCountPos;
S
slguan 已提交
68 69
  ESdbTable tableId;
  ESdbKey   keyType;
S
TD-2046  
Shengliang Guan 已提交
70 71 72 73 74 75 76
  int32_t (*fpInsert)(SSWriteMsg *pWrite);
  int32_t (*fpDelete)(SSWriteMsg *pWrite);
  int32_t (*fpUpdate)(SSWriteMsg *pWrite);
  int32_t (*fpEncode)(SSWriteMsg *pWrite);
  int32_t (*fpDecode)(SSWriteMsg *pWrite);  
  int32_t (*fpDestroy)(SSWriteMsg *pWrite);
  int32_t (*fpDestored)();
S
slguan 已提交
77
} SSdbTableDesc;
S
slguan 已提交
78

S
slguan 已提交
79 80
int32_t sdbInit();
void    sdbCleanUp();
S
slguan 已提交
81 82
void *  sdbOpenTable(SSdbTableDesc *desc);
void    sdbCloseTable(void *handle);
S
slguan 已提交
83
bool    sdbIsMaster();
S
slguan 已提交
84
bool    sdbIsServing();
S
slguan 已提交
85
void    sdbUpdateMnodeRoles();
S
slguan 已提交
86

S
TD-2046  
Shengliang Guan 已提交
87 88 89 90
int32_t sdbInsertRow(SSWriteMsg *pWrite);
int32_t sdbDeleteRow(SSWriteMsg *pWrite);
int32_t sdbUpdateRow(SSWriteMsg *pWrite);
int32_t sdbInsertRowImp(SSWriteMsg *pWrite);
S
slguan 已提交
91

S
slguan 已提交
92
void    *sdbGetRow(void *handle, void *key);
S
Shengliang Guan 已提交
93 94
void    *sdbFetchRow(void *handle, void *pIter, void **ppRow);
void     sdbFreeIter(void *pIter);
S
slguan 已提交
95 96
void     sdbIncRef(void *thandle, void *pRow);
void     sdbDecRef(void *thandle, void *pRow);
S
slguan 已提交
97
int64_t  sdbGetNumOfRows(void *handle);
S
slguan 已提交
98
int32_t  sdbGetId(void *handle);
S
slguan 已提交
99
uint64_t sdbGetVersion();
100
bool     sdbCheckRowDeleted(void *thandle, void *pRow);
S
slguan 已提交
101 102 103

#ifdef __cplusplus
}
H
hzcheng 已提交
104
#endif
S
slguan 已提交
105 106

#endif