vnodeQuery.c 7.1 KB
Newer Older
D
dapan1121 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

#include "vnodeQuery.h"
H
refact  
Hongze Cheng 已提交
17
#include "vnd.h"
D
dapan1121 已提交
18

H
Haojun Liao 已提交
19
static int32_t vnodeGetTableList(SVnode *pVnode, SRpcMsg *pMsg);
H
more  
Hongze Cheng 已提交
20
static int     vnodeGetTableMeta(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
H
Haojun Liao 已提交
21

S
Shengliang Guan 已提交
22 23 24 25
int vnodeQueryOpen(SVnode *pVnode) {
  return qWorkerInit(NODE_TYPE_VNODE, pVnode->vgId, NULL, (void **)&pVnode->pQuery, pVnode,
                     (putReqToQueryQFp)vnodePutReqToVQueryQ);
}
D
dapan1121 已提交
26 27

int vnodeProcessQueryReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
D
dapan1121 已提交
28 29 30 31 32 33
  vTrace("query message is processing");

  switch (pMsg->msgType) {
    case TDMT_VND_QUERY:
      return qWorkerProcessQueryMsg(pVnode->pTsdb, pVnode->pQuery, pMsg);
    case TDMT_VND_QUERY_CONTINUE:
34
      return qWorkerProcessCQueryMsg(pVnode->pTsdb, pVnode->pQuery, pMsg);
D
dapan1121 已提交
35 36 37 38
    default:
      vError("unknown msg type:%d in query queue", pMsg->msgType);
      return TSDB_CODE_VND_APP_ERROR;
  }
D
dapan1121 已提交
39 40 41
}

int vnodeProcessFetchReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
S
Shengliang Guan 已提交
42
  vTrace("fetch message is processed");
D
dapan1121 已提交
43 44 45 46 47 48 49 50 51 52 53
  switch (pMsg->msgType) {
    case TDMT_VND_FETCH:
      return qWorkerProcessFetchMsg(pVnode, pVnode->pQuery, pMsg);
    case TDMT_VND_RES_READY:
      return qWorkerProcessReadyMsg(pVnode, pVnode->pQuery, pMsg);
    case TDMT_VND_TASKS_STATUS:
      return qWorkerProcessStatusMsg(pVnode, pVnode->pQuery, pMsg);
    case TDMT_VND_CANCEL_TASK:
      return qWorkerProcessCancelMsg(pVnode, pVnode->pQuery, pMsg);
    case TDMT_VND_DROP_TASK:
      return qWorkerProcessDropMsg(pVnode, pVnode->pQuery, pMsg);
H
Haojun Liao 已提交
54 55 56
    case TDMT_VND_SHOW_TABLES:
      return qWorkerProcessShowMsg(pVnode, pVnode->pQuery, pMsg);
    case TDMT_VND_SHOW_TABLES_FETCH:
H
Haojun Liao 已提交
57
      return vnodeGetTableList(pVnode, pMsg);
H
more  
Hongze Cheng 已提交
58
      //      return qWorkerProcessShowFetchMsg(pVnode->pMeta, pVnode->pQuery, pMsg);
D
dapan1121 已提交
59 60
    case TDMT_VND_TABLE_META:
      return vnodeGetTableMeta(pVnode, pMsg, pRsp);
L
Liu Jicong 已提交
61
    case TDMT_VND_CONSUME:
L
Liu Jicong 已提交
62
      return tqProcessConsumeReq(pVnode->pTq, pMsg, pRsp);
D
dapan1121 已提交
63 64 65 66
    default:
      vError("unknown msg type:%d in fetch queue", pMsg->msgType);
      return TSDB_CODE_VND_APP_ERROR;
  }
D
dapan1121 已提交
67 68
}

H
more  
Hongze Cheng 已提交
69
static int vnodeGetTableMeta(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
S
Shengliang Guan 已提交
70
  STableInfoReq * pReq = (STableInfoReq *)(pMsg->pCont);
H
Hongze Cheng 已提交
71 72 73 74 75 76
  STbCfg *        pTbCfg = NULL;
  STbCfg *        pStbCfg = NULL;
  tb_uid_t        uid;
  int32_t         nCols;
  int32_t         nTagCols;
  SSchemaWrapper *pSW;
S
Shengliang Guan 已提交
77
  STableMetaRsp * pTbMetaMsg = NULL;
H
Hongze Cheng 已提交
78
  SSchema *       pTagSchema;
H
more  
Hongze Cheng 已提交
79
  SRpcMsg         rpcMsg;
D
dapan1121 已提交
80 81
  int             msgLen = 0;
  int32_t         code = TSDB_CODE_VND_APP_ERROR;
H
more  
Hongze Cheng 已提交
82

H
Hongze Cheng 已提交
83 84
  pTbCfg = metaGetTbInfoByName(pVnode->pMeta, pReq->tableFname, &uid);
  if (pTbCfg == NULL) {
H
Haojun Liao 已提交
85
    code = TSDB_CODE_VND_TB_NOT_EXIST;
H
more  
Hongze Cheng 已提交
86
    goto _exit;
H
Hongze Cheng 已提交
87 88 89 90 91
  }

  if (pTbCfg->type == META_CHILD_TABLE) {
    pStbCfg = metaGetTbInfoByUid(pVnode->pMeta, pTbCfg->ctbCfg.suid);
    if (pStbCfg == NULL) {
H
more  
Hongze Cheng 已提交
92
      goto _exit;
H
Hongze Cheng 已提交
93 94 95 96 97 98 99 100 101 102 103
    }

    pSW = metaGetTableSchema(pVnode->pMeta, pTbCfg->ctbCfg.suid, 0, true);
  } else {
    pSW = metaGetTableSchema(pVnode->pMeta, uid, 0, true);
  }

  nCols = pSW->nCols;
  if (pTbCfg->type == META_SUPER_TABLE) {
    nTagCols = pTbCfg->stbCfg.nTagCols;
    pTagSchema = pTbCfg->stbCfg.pTagSchema;
H
Hongze Cheng 已提交
104
  } else if (pTbCfg->type == META_CHILD_TABLE) {
H
Hongze Cheng 已提交
105 106 107 108 109
    nTagCols = pStbCfg->stbCfg.nTagCols;
    pTagSchema = pStbCfg->stbCfg.pTagSchema;
  } else {
    nTagCols = 0;
    pTagSchema = NULL;
H
more  
Hongze Cheng 已提交
110 111
  }

S
Shengliang Guan 已提交
112 113
  msgLen = sizeof(STableMetaRsp) + sizeof(SSchema) * (nCols + nTagCols);
  pTbMetaMsg = (STableMetaRsp *)rpcMallocCont(msgLen);
H
Hongze Cheng 已提交
114
  if (pTbMetaMsg == NULL) {
H
more  
Hongze Cheng 已提交
115
    goto _exit;
H
more  
Hongze Cheng 已提交
116 117
  }

D
dapan1121 已提交
118
  memcpy(pTbMetaMsg->dbFname, pReq->dbFname, sizeof(pTbMetaMsg->dbFname));
H
Hongze Cheng 已提交
119 120 121 122
  strcpy(pTbMetaMsg->tbFname, pTbCfg->name);
  if (pTbCfg->type == META_CHILD_TABLE) {
    strcpy(pTbMetaMsg->stbFname, pStbCfg->name);
    pTbMetaMsg->suid = htobe64(pTbCfg->ctbCfg.suid);
D
dapan1121 已提交
123 124 125
  } else if (pTbCfg->type == META_SUPER_TABLE) {
    strcpy(pTbMetaMsg->stbFname, pTbCfg->name);
    pTbMetaMsg->suid = htobe64(uid);
H
Hongze Cheng 已提交
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
  }
  pTbMetaMsg->numOfTags = htonl(nTagCols);
  pTbMetaMsg->numOfColumns = htonl(nCols);
  pTbMetaMsg->tableType = pTbCfg->type;
  pTbMetaMsg->tuid = htobe64(uid);
  pTbMetaMsg->vgId = htonl(pVnode->vgId);

  memcpy(pTbMetaMsg->pSchema, pSW->pSchema, sizeof(SSchema) * pSW->nCols);
  if (nTagCols) {
    memcpy(POINTER_SHIFT(pTbMetaMsg->pSchema, sizeof(SSchema) * pSW->nCols), pTagSchema, sizeof(SSchema) * nTagCols);
  }

  for (int i = 0; i < nCols + nTagCols; i++) {
    SSchema *pSch = pTbMetaMsg->pSchema + i;
    pSch->colId = htonl(pSch->colId);
    pSch->bytes = htonl(pSch->bytes);
  }
H
more  
Hongze Cheng 已提交
143

D
dapan1121 已提交
144 145
  code = 0;

H
more  
Hongze Cheng 已提交
146 147
_exit:

D
dapan1121 已提交
148 149 150 151 152
  rpcMsg.handle = pMsg->handle;
  rpcMsg.ahandle = pMsg->ahandle;
  rpcMsg.pCont = pTbMetaMsg;
  rpcMsg.contLen = msgLen;
  rpcMsg.code = code;
D
dapan1121 已提交
153 154 155

  rpcSendResponse(&rpcMsg);

H
Haojun Liao 已提交
156 157 158
  return 0;
}

H
Haojun Liao 已提交
159 160 161 162 163
static void freeItemHelper(void* pItem) {
  char* p = *(char**)pItem;
  free(p);
}

H
Haojun Liao 已提交
164 165 166 167 168 169
/**
 * @param pVnode
 * @param pMsg
 * @param pRsp
 */
static int32_t vnodeGetTableList(SVnode *pVnode, SRpcMsg *pMsg) {
H
more  
Hongze Cheng 已提交
170 171
  SMTbCursor *pCur = metaOpenTbCursor(pVnode->pMeta);
  SArray *    pArray = taosArrayInit(10, POINTER_BYTES);
H
Haojun Liao 已提交
172

H
more  
Hongze Cheng 已提交
173
  char *  name = NULL;
H
Haojun Liao 已提交
174
  int32_t totalLen = 0;
175
  int32_t numOfTables = 0;
H
Haojun Liao 已提交
176
  while ((name = metaTbCursorNext(pCur)) != NULL) {
H
Haojun Liao 已提交
177
    if (numOfTables < 10000) {  // TODO: temp get tables of vnode, and should del when show tables commad ok.
178 179
      taosArrayPush(pArray, &name);
      totalLen += strlen(name);
H
Haojun Liao 已提交
180 181
    } else {
      tfree(name);
182
    }
H
Haojun Liao 已提交
183

184 185 186 187
    numOfTables++;
  }

  // TODO: temp debug, and should del when show tables command ok
H
Haojun Liao 已提交
188 189 190
  vInfo("====vgId:%d, numOfTables: %d", pVnode->vgId, numOfTables);
  if (numOfTables > 10000) {
     numOfTables = 10000;
H
Haojun Liao 已提交
191 192 193 194
  }

  metaCloseTbCursor(pCur);

H
more  
Hongze Cheng 已提交
195 196
  int32_t rowLen =
      (TSDB_TABLE_NAME_LEN + VARSTR_HEADER_SIZE) + 8 + 2 + (TSDB_TABLE_NAME_LEN + VARSTR_HEADER_SIZE) + 8 + 4;
197
  //int32_t numOfTables = (int32_t)taosArrayGetSize(pArray);
H
Haojun Liao 已提交
198 199

  int32_t payloadLen = rowLen * numOfTables;
H
more  
Hongze Cheng 已提交
200
  //  SVShowTablesFetchReq *pFetchReq = pMsg->pCont;
H
Haojun Liao 已提交
201 202

  SVShowTablesFetchRsp *pFetchRsp = (SVShowTablesFetchRsp *)rpcMallocCont(sizeof(SVShowTablesFetchRsp) + payloadLen);
S
Shengliang Guan 已提交
203
  memset(pFetchRsp, 0, sizeof(SVShowTablesFetchRsp) + payloadLen);
H
Haojun Liao 已提交
204

H
more  
Hongze Cheng 已提交
205 206 207
  char *p = pFetchRsp->data;
  for (int32_t i = 0; i < numOfTables; ++i) {
    char *n = taosArrayGetP(pArray, i);
H
Haojun Liao 已提交
208 209
    STR_TO_VARSTR(p, n);

H
Haojun Liao 已提交
210
    p += (TSDB_TABLE_NAME_LEN + VARSTR_HEADER_SIZE);
H
Haojun Liao 已提交
211 212 213 214 215 216
  }

  pFetchRsp->numOfRows = htonl(numOfTables);
  pFetchRsp->precision = 0;

  SRpcMsg rpcMsg = {
H
more  
Hongze Cheng 已提交
217
      .handle = pMsg->handle,
H
Haojun Liao 已提交
218
      .ahandle = pMsg->ahandle,
H
more  
Hongze Cheng 已提交
219
      .pCont = pFetchRsp,
H
Haojun Liao 已提交
220
      .contLen = sizeof(SVShowTablesFetchRsp) + payloadLen,
H
more  
Hongze Cheng 已提交
221
      .code = 0,
H
Haojun Liao 已提交
222 223 224
  };

  rpcSendResponse(&rpcMsg);
H
Haojun Liao 已提交
225
  taosArrayDestroyEx(pArray, freeItemHelper);
H
more  
Hongze Cheng 已提交
226
  return 0;
D
dapan1121 已提交
227
}