mgmtSdb.h 1.9 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 26
  SDB_KEYTYPE_STRING, 
  SDB_KEYTYPE_AUTO, 
  SDB_KEYTYPE_MAX
S
slguan 已提交
27
} ESdbKeyType;
S
slguan 已提交
28

S
slguan 已提交
29 30 31 32
typedef enum {
  SDB_OPER_GLOBAL,
  SDB_OPER_LOCAL,
  SDB_OPER_DISK
S
slguan 已提交
33
} ESdbOperType;
S
slguan 已提交
34

S
slguan 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
enum _sdbaction {
  SDB_TYPE_INSERT,
  SDB_TYPE_DELETE,
  SDB_TYPE_UPDATE,
} ESdbForwardType;

typedef struct {
  char   *tableName;
  int32_t hashSessions;
  int32_t maxRowSize;
  ESdbKeyType keyType;
  int32_t (*insertFp)(void *pObj);
  int32_t (*deleteFp)(void *pObj);
  int32_t (*updateFp)(void *pObj);
  int32_t (*encodeFp)(void *pObj, void *pData, int32_t maxRowSize);
  void *  (*decodeFp)(void *pData);  
  int32_t (*destroyFp)(void *pObj);
} SSdbTableDesc;
S
slguan 已提交
53

S
slguan 已提交
54
void *sdbOpenTable(SSdbTableDesc *desc);
S
slguan 已提交
55 56
void sdbCloseTable(void *handle);

S
slguan 已提交
57 58 59 60
int32_t sdbInsertRow(void *handle, void *row, ESdbOperType oper);
int32_t sdbDeleteRow(void *handle, void *key, ESdbOperType oper);
int32_t sdbUpdateRow(void *handle, void *row, int32_t rowSize, ESdbOperType oper);

S
slguan 已提交
61 62 63 64
void *sdbGetRow(void *handle, void *key);
void *sdbFetchRow(void *handle, void *pNode, void **ppRow);
int64_t sdbGetId(void *handle);
int64_t sdbGetNumOfRows(void *handle);
S
slguan 已提交
65
uint64_t sdbGetVersion();
S
slguan 已提交
66 67 68

#ifdef __cplusplus
}
H
hzcheng 已提交
69
#endif
S
slguan 已提交
70 71

#endif