smHandle.c 3.8 KB
Newer Older
S
shm  
Shengliang Guan 已提交
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/>.
 */

#define _DEFAULT_SOURCE
S
shm  
Shengliang Guan 已提交
17
#include "smInt.h"
S
shm  
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19
void smGetMonitorInfo(SSnodeMgmt *pMgmt, SMonSmInfo *smInfo) {}
20

S
Shengliang Guan 已提交
21
int32_t smProcessGetMonitorInfoReq(SSnodeMgmt *pMgmt, SRpcMsg *pMsg) {
22
  SMonSmInfo smInfo = {0};
S
Shengliang 已提交
23
  smGetMonitorInfo(pMgmt, &smInfo);
S
Shengliang Guan 已提交
24
  dmGetMonitorSystemInfo(&smInfo.sys);
25 26
  monGetLogs(&smInfo.log);

27 28 29 30 31 32 33 34 35 36 37 38 39
  int32_t rspLen = tSerializeSMonSmInfo(NULL, 0, &smInfo);
  if (rspLen < 0) {
    terrno = TSDB_CODE_INVALID_MSG;
    return -1;
  }

  void *pRsp = rpcMallocCont(rspLen);
  if (pRsp == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

  tSerializeSMonSmInfo(pRsp, rspLen, &smInfo);
S
Shengliang Guan 已提交
40 41
  pMsg->info.rsp = pRsp;
  pMsg->info.rspLen = rspLen;
42 43 44 45
  tFreeSMonSmInfo(&smInfo);
  return 0;
}

S
Shengliang Guan 已提交
46
int32_t smProcessCreateReq(const SMgmtInputOpt *pInput, SRpcMsg *pMsg) {
S
shm  
Shengliang Guan 已提交
47
  SDCreateSnodeReq createReq = {0};
S
Shengliang Guan 已提交
48
  if (tDeserializeSCreateDropMQSBNodeReq(pMsg->pCont, pMsg->contLen, &createReq) != 0) {
S
shm  
Shengliang Guan 已提交
49 50 51 52
    terrno = TSDB_CODE_INVALID_MSG;
    return -1;
  }

S
Shengliang Guan 已提交
53
  if (pInput->pData->dnodeId != 0 && createReq.dnodeId != pInput->pData->dnodeId) {
54
    terrno = TSDB_CODE_INVALID_OPTION;
55
    dError("failed to create snode since %s", terrstr());
S
shm  
Shengliang Guan 已提交
56 57
    return -1;
  }
S
Shengliang Guan 已提交
58 59

  bool deployed = true;
S
Shengliang Guan 已提交
60
  if (dmWriteFile(pInput->path, pInput->name, deployed) != 0) {
S
Shengliang Guan 已提交
61 62 63 64 65
    dError("failed to write snode file since %s", terrstr());
    return -1;
  }

  return 0;
S
shm  
Shengliang Guan 已提交
66 67
}

68
int32_t smProcessDropReq(const SMgmtInputOpt *pInput, SRpcMsg *pMsg) {
S
shm  
Shengliang Guan 已提交
69
  SDDropSnodeReq dropReq = {0};
S
Shengliang Guan 已提交
70
  if (tDeserializeSCreateDropMQSBNodeReq(pMsg->pCont, pMsg->contLen, &dropReq) != 0) {
S
shm  
Shengliang Guan 已提交
71 72 73 74
    terrno = TSDB_CODE_INVALID_MSG;
    return -1;
  }

75
  if (pInput->pData->dnodeId != 0 && dropReq.dnodeId != pInput->pData->dnodeId) {
76
    terrno = TSDB_CODE_INVALID_OPTION;
S
shm  
Shengliang Guan 已提交
77 78 79
    dError("failed to drop snode since %s", terrstr());
    return -1;
  }
S
Shengliang Guan 已提交
80 81

  bool deployed = false;
82
  if (dmWriteFile(pInput->path, pInput->name, deployed) != 0) {
S
Shengliang Guan 已提交
83 84 85 86 87
    dError("failed to write snode file since %s", terrstr());
    return -1;
  }

  return 0;
S
shm  
Shengliang Guan 已提交
88
}
S
shm  
Shengliang Guan 已提交
89

S
Shengliang 已提交
90 91 92 93 94 95
SArray *smGetMsgHandles() {
  int32_t code = -1;
  SArray *pArray = taosArrayInit(4, sizeof(SMgmtHandle));
  if (pArray == NULL) goto _OVER;

  if (dmSetMgmtHandle(pArray, TDMT_MON_SM_INFO, smPutNodeMsgToMonitorQueue, 0) == NULL) goto _OVER;
96

97
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_TASK_DEPLOY, smPutNodeMsgToMgmtQueue, 1) == NULL) goto _OVER;
L
Liu Jicong 已提交
98
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_TASK_DROP, smPutNodeMsgToMgmtQueue, 1) == NULL) goto _OVER;
L
Liu Jicong 已提交
99 100 101 102 103
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_TASK_RUN, smPutNodeMsgToSharedQueue, 1) == NULL) goto _OVER;
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_TASK_DISPATCH, smPutNodeMsgToSharedQueue, 1) == NULL) goto _OVER;
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_TASK_DISPATCH_RSP, smPutNodeMsgToSharedQueue, 1) == NULL) goto _OVER;
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_TASK_RECOVER, smPutNodeMsgToSharedQueue, 1) == NULL) goto _OVER;
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_TASK_RECOVER_RSP, smPutNodeMsgToSharedQueue, 1) == NULL) goto _OVER;
L
Liu Jicong 已提交
104 105
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_RETRIEVE, smPutNodeMsgToSharedQueue, 1) == NULL) goto _OVER;
  if (dmSetMgmtHandle(pArray, TDMT_STREAM_RETRIEVE_RSP, smPutNodeMsgToSharedQueue, 1) == NULL) goto _OVER;
S
Shengliang 已提交
106 107 108 109 110 111 112 113 114

  code = 0;
_OVER:
  if (code != 0) {
    taosArrayDestroy(pArray);
    return NULL;
  } else {
    return pArray;
  }
S
shm  
Shengliang Guan 已提交
115
}