mgmtProfile.h 2.1 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
#ifndef TDENGINE_MGMT_PROFILE_H
#define TDENGINE_MGMT_PROFILE_H
H
hzcheng 已提交
18 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

S
slguan 已提交
23
#include "mnode.h"
H
hzcheng 已提交
24

S
slguan 已提交
25 26 27
bool mgmtCheckQhandle(uint64_t qhandle);
void mgmtSaveQhandle(void *qhandle);
void mgmtFreeQhandle(void *qhandle);
H
hzcheng 已提交
28

S
slguan 已提交
29 30
int32_t mgmtSaveQueryStreamList(SHeartBeatMsg *pHBMsg);
int32_t mgmtGetQueryMeta(STableMeta *pMeta, SShowObj *pShow, void *pConn);
S
slguan 已提交
31
int32_t mgmtRetrieveQueries(SShowObj *pShow, char *data, int32_t rows, void *pConn);
H
hzcheng 已提交
32

S
slguan 已提交
33
int32_t mgmtGetStreamMeta(STableMeta *pMeta, SShowObj *pShow, void *pConn);
S
slguan 已提交
34
int32_t mgmtRetrieveStreams(SShowObj *pShow, char *data, int32_t rows, void *pConn);
H
hzcheng 已提交
35

S
slguan 已提交
36 37
int32_t mgmtGetConnsMeta(STableMeta *pMeta, SShowObj *pShow, void *pConn);
int32_t mgmtRetrieveConns(SShowObj *pShow, char *data, int32_t rows, void *pConn);
H
hzcheng 已提交
38

S
slguan 已提交
39 40 41
int32_t mgmtKillQuery(char *qidstr, void *pConn);
int32_t mgmtKillStream(char *qidstr, void *pConn);
int32_t mgmtKillConnection(char *qidstr, void *pConn);
H
hzcheng 已提交
42

S
slguan 已提交
43 44
enum {
  TSDB_PROCESS_CREATE_VGROUP,
S
slguan 已提交
45 46 47
  TSDB_PROCESS_CREATE_VGROUP_GET_META,
  TSDB_PROCESS_CREATE_TABLE,
  TSDB_PROCESS_CREATE_TABLE_GET_META,
S
slguan 已提交
48 49 50 51 52 53 54 55 56 57 58
};

typedef struct {
  void    *thandle;  // come from uplayer
  void    *ahandle;  // object to process
  void    *cont;     // additional information of object to process
  int32_t type;      // the type of sync process
  int32_t received;  // num of received, such as numOfVnodes
  int32_t contLen;   // the length of additional information
} SProcessInfo;

H
hzcheng 已提交
59 60 61 62
#ifdef __cplusplus
}
#endif

S
slguan 已提交
63
#endif