dmInt.c 3.2 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * 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
#include "dmInt.h"

static int32_t dmStartMgmt(SDnodeMgmt *pMgmt) {
  if (dmStartStatusThread(pMgmt) != 0) {
    return -1;
  }
  if (dmStartMonitorThread(pMgmt) != 0) {
    return -1;
  }
  return 0;
}

static void dmStopMgmt(SDnodeMgmt *pMgmt) {
S
Shengliang Guan 已提交
30
  pMgmt->pData->stopped = true;
S
Shengliang Guan 已提交
31 32 33 34
  dmStopMonitorThread(pMgmt);
  dmStopStatusThread(pMgmt);
}

S
Shengliang Guan 已提交
35
static int32_t dmOpenMgmt(SMgmtInputOpt *pInput, SMgmtOutputOpt *pOutput) {
S
Shengliang Guan 已提交
36 37 38 39 40 41 42
  dInfo("dnode-mgmt start to init");
  SDnodeMgmt *pMgmt = taosMemoryCalloc(1, sizeof(SDnodeMgmt));
  if (pMgmt == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

S
Shengliang Guan 已提交
43
  pMgmt->pDnode = pInput->pDnode;
S
Shengliang Guan 已提交
44 45 46
  pMgmt->msgCb = pInput->msgCb;
  pMgmt->path = pInput->path;
  pMgmt->name = pInput->name;
S
Shengliang Guan 已提交
47 48
  pMgmt->processCreateNodeFp = pInput->processCreateNodeFp;
  pMgmt->processDropNodeFp = pInput->processDropNodeFp;
S
Shengliang Guan 已提交
49
  pMgmt->isNodeRequiredFp = pInput->isNodeRequiredFp;
S
Shengliang Guan 已提交
50
  taosInitRWLatch(&pMgmt->pData->latch);
S
Shengliang Guan 已提交
51

S
Shengliang Guan 已提交
52 53
  pMgmt->pData->dnodeHash = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_NO_LOCK);
  if (pMgmt->pData->dnodeHash == NULL) {
S
Shengliang Guan 已提交
54 55 56 57 58
    dError("failed to init dnode hash");
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

S
Shengliang Guan 已提交
59
  if (dmReadEps(pMgmt->pData) != 0) {
S
Shengliang Guan 已提交
60 61 62 63
    dError("failed to read file since %s", terrstr());
    return -1;
  }

S
Shengliang Guan 已提交
64
  if (pMgmt->pData->dropped) {
S
Shengliang Guan 已提交
65 66 67 68 69 70 71 72
    dError("dnode will not start since its already dropped");
    return -1;
  }

  if (dmStartWorker(pMgmt) != 0) {
    return -1;
  }

S
Shengliang Guan 已提交
73
  if (udfStartUdfd(pMgmt->pData->dnodeId) != 0) {
S
Shengliang Guan 已提交
74 75 76
    dError("failed to start udfd");
  }

S
Shengliang Guan 已提交
77
  pOutput->pMgmt = pMgmt;
S
Shengliang Guan 已提交
78 79 80 81 82 83 84 85
  dInfo("dnode-mgmt is initialized");
  return 0;
}

static void dmCloseMgmt(SDnodeMgmt *pMgmt) {
  dInfo("dnode-mgmt start to clean up");
  dmStopWorker(pMgmt);

S
Shengliang Guan 已提交
86 87 88 89
  taosWLockLatch(&pMgmt->pData->latch);
  if (pMgmt->pData->dnodeEps != NULL) {
    taosArrayDestroy(pMgmt->pData->dnodeEps);
    pMgmt->pData->dnodeEps = NULL;
S
Shengliang Guan 已提交
90
  }
S
Shengliang Guan 已提交
91 92 93
  if (pMgmt->pData->dnodeHash != NULL) {
    taosHashCleanup(pMgmt->pData->dnodeHash);
    pMgmt->pData->dnodeHash = NULL;
S
Shengliang Guan 已提交
94
  }
S
Shengliang Guan 已提交
95
  taosWUnLockLatch(&pMgmt->pData->latch);
S
Shengliang Guan 已提交
96
  taosMemoryFree(pMgmt);
S
Shengliang Guan 已提交
97

S
Shengliang Guan 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
  dInfo("dnode-mgmt is cleaned up");
}

static int32_t dmRequireMgmt(const SMgmtInputOpt *pInput, bool *required) {
  *required = true;
  return 0;
}

SMgmtFunc dmGetMgmtFunc() {
  SMgmtFunc mgmtFunc = {0};
  mgmtFunc.openFp = dmOpenMgmt;
  mgmtFunc.closeFp = (NodeCloseFp)dmCloseMgmt;
  mgmtFunc.startFp = (NodeStartFp)dmStartMgmt;
  mgmtFunc.stopFp = (NodeStopFp)dmStopMgmt;
  mgmtFunc.requiredFp = dmRequireMgmt;
  mgmtFunc.getHandlesFp = dmGetMsgHandles;

  return mgmtFunc;
}