mgmtSdb.h 2.0 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_KEY_TYPE_STRING, 
  SDB_KEY_TYPE_AUTO
S
slguan 已提交
26
} ESdbKeyType;
S
slguan 已提交
27

S
slguan 已提交
28
typedef enum {
S
slguan 已提交
29 30
  SDB_OPER_TYPE_GLOBAL,
  SDB_OPER_TYPE_LOCAL
S
slguan 已提交
31
} ESdbOperType;
S
slguan 已提交
32

S
slguan 已提交
33 34
typedef struct {
  ESdbOperType type;
S
slguan 已提交
35 36 37
  void *  table;
  void *  pObj;
  int64_t version;
S
slguan 已提交
38 39 40 41
  int32_t maxRowSize;
  int32_t rowSize;
  void *  rowData;
} SSdbOperDesc;
S
slguan 已提交
42 43 44 45 46

typedef struct {
  char   *tableName;
  int32_t hashSessions;
  int32_t maxRowSize;
S
slguan 已提交
47
  int32_t refCountPos;
S
slguan 已提交
48
  ESdbKeyType keyType;
S
slguan 已提交
49 50 51 52 53 54
  int32_t (*insertFp)(SSdbOperDesc *pOper);
  int32_t (*deleteFp)(SSdbOperDesc *pOper);
  int32_t (*updateFp)(SSdbOperDesc *pOper);
  int32_t (*encodeFp)(SSdbOperDesc *pOper);
  int32_t (*decodeFp)(SSdbOperDesc *pDesc);  
  int32_t (*destroyFp)(SSdbOperDesc *pDesc);
S
slguan 已提交
55
} SSdbTableDesc;
S
slguan 已提交
56

S
slguan 已提交
57 58
void *  sdbOpenTable(SSdbTableDesc *desc);
void    sdbCloseTable(void *handle);
S
slguan 已提交
59

S
slguan 已提交
60 61 62
int32_t sdbInsertRow(SSdbOperDesc *pOper);
int32_t sdbDeleteRow(SSdbOperDesc *pOper);
int32_t sdbUpdateRow(SSdbOperDesc *pOper);
S
slguan 已提交
63

S
slguan 已提交
64 65
void    *sdbGetRow(void *handle, void *key);
void    *sdbFetchRow(void *handle, void *pNode, void **ppRow);
S
slguan 已提交
66 67
void     sdbIncRef(void *thandle, void *pRow);
void     sdbDecRef(void *thandle, void *pRow);
S
slguan 已提交
68
int64_t  sdbGetNumOfRows(void *handle);
S
[TD-61]  
slguan 已提交
69
int64_t  sdbGetId(void *handle);
S
slguan 已提交
70
uint64_t sdbGetVersion();
S
slguan 已提交
71 72 73

#ifdef __cplusplus
}
H
hzcheng 已提交
74
#endif
S
slguan 已提交
75 76

#endif