snode.c 3.5 KB
Newer Older
H
refact  
Hongze Cheng 已提交
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/>.
 */

L
Liu Jicong 已提交
16
#include "executor.h"
S
Shengliang Guan 已提交
17
#include "sndInt.h"
L
Liu Jicong 已提交
18
#include "tuuid.h"
H
refact  
Hongze Cheng 已提交
19

S
Shengliang Guan 已提交
20
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) {
wafwerar's avatar
wafwerar 已提交
21
  SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
L
Liu Jicong 已提交
22 23 24
  if (pSnode == NULL) {
    return NULL;
  }
S
Shengliang Guan 已提交
25
  pSnode->msgCb = pOption->msgCb;
L
Liu Jicong 已提交
26 27
  pSnode->pMeta = sndMetaNew();
  if (pSnode->pMeta == NULL) {
wafwerar's avatar
wafwerar 已提交
28
    taosMemoryFree(pSnode);
L
Liu Jicong 已提交
29 30
    return NULL;
  }
S
Shengliang Guan 已提交
31
  return pSnode;
H
refact  
Hongze Cheng 已提交
32 33
}

L
Liu Jicong 已提交
34 35
void sndClose(SSnode *pSnode) {
  sndMetaDelete(pSnode->pMeta);
wafwerar's avatar
wafwerar 已提交
36
  taosMemoryFree(pSnode);
L
Liu Jicong 已提交
37
}
S
Shengliang Guan 已提交
38 39 40

int32_t sndGetLoad(SSnode *pSnode, SSnodeLoad *pLoad) { return 0; }

L
Liu Jicong 已提交
41
SStreamMeta *sndMetaNew() {
wafwerar's avatar
wafwerar 已提交
42
  SStreamMeta *pMeta = taosMemoryCalloc(1, sizeof(SStreamMeta));
L
Liu Jicong 已提交
43 44 45 46 47
  if (pMeta == NULL) {
    return NULL;
  }
  pMeta->pHash = taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_NO_LOCK);
  if (pMeta->pHash == NULL) {
wafwerar's avatar
wafwerar 已提交
48
    taosMemoryFree(pMeta);
L
Liu Jicong 已提交
49 50 51 52 53 54 55
    return NULL;
  }
  return pMeta;
}

void sndMetaDelete(SStreamMeta *pMeta) {
  taosHashCleanup(pMeta->pHash);
wafwerar's avatar
wafwerar 已提交
56
  taosMemoryFree(pMeta);
L
Liu Jicong 已提交
57 58 59
}

int32_t sndMetaDeployTask(SStreamMeta *pMeta, SStreamTask *pTask) {
L
Liu Jicong 已提交
60
  pTask->exec.executor = qCreateStreamExecTaskInfo(pTask->exec.qmsg, NULL);
L
Liu Jicong 已提交
61 62 63
  return taosHashPut(pMeta->pHash, &pTask->taskId, sizeof(int32_t), pTask, sizeof(void *));
}

L
Liu Jicong 已提交
64 65 66 67
SStreamTask *sndMetaGetTask(SStreamMeta *pMeta, int32_t taskId) {
  return taosHashGet(pMeta->pHash, &taskId, sizeof(int32_t));
}

L
Liu Jicong 已提交
68 69 70
int32_t sndMetaRemoveTask(SStreamMeta *pMeta, int32_t taskId) {
  SStreamTask *pTask = taosHashGet(pMeta->pHash, &taskId, sizeof(int32_t));
  if (pTask == NULL) {
L
Liu Jicong 已提交
71 72
    return -1;
  }
wafwerar's avatar
wafwerar 已提交
73
  taosMemoryFree(pTask->exec.qmsg);
L
Liu Jicong 已提交
74
  // TODO:free executor
wafwerar's avatar
wafwerar 已提交
75
  taosMemoryFree(pTask);
L
Liu Jicong 已提交
76
  return taosHashRemove(pMeta->pHash, &taskId, sizeof(int32_t));
L
Liu Jicong 已提交
77 78
}

L
Liu Jicong 已提交
79
static int32_t sndProcessTaskExecReq(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
80 81 82 83 84 85
  /*SStreamExecMsgHead *pHead = pMsg->pCont;*/
  /*int32_t             taskId = pHead->streamTaskId;*/
  /*SStreamTask *pTask = sndMetaGetTask(pSnode->pMeta, taskId);*/
  /*if (pTask == NULL) {*/
  /*return -1;*/
  /*}*/
L
Liu Jicong 已提交
86 87 88
  return 0;
}

S
shm  
Shengliang Guan 已提交
89
void sndProcessUMsg(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
90
  // stream deploy
L
Liu Jicong 已提交
91 92
  // stream stop/resume
  // operator exec
93
  if (pMsg->msgType == TDMT_STREAM_TASK_DEPLOY) {
L
Liu Jicong 已提交
94
    void        *msg = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
wafwerar's avatar
wafwerar 已提交
95
    SStreamTask *pTask = taosMemoryMalloc(sizeof(SStreamTask));
L
Liu Jicong 已提交
96
    if (pTask == NULL) {
S
shm  
Shengliang Guan 已提交
97
      ASSERT(0);
L
Liu Jicong 已提交
98
      return;
L
Liu Jicong 已提交
99
    }
H
Hongze Cheng 已提交
100 101
    SDecoder decoder;
    tDecoderInit(&decoder, msg, pMsg->contLen - sizeof(SMsgHead));
L
Liu Jicong 已提交
102
    tDecodeSStreamTask(&decoder, pTask);
H
Hongze Cheng 已提交
103
    tDecoderClear(&decoder);
L
Liu Jicong 已提交
104 105

    sndMetaDeployTask(pSnode->pMeta, pTask);
106 107
    /*} else if (pMsg->msgType == TDMT_SND_TASK_EXEC) {*/
    /*sndProcessTaskExecReq(pSnode, pMsg);*/
L
Liu Jicong 已提交
108
  } else {
L
Liu Jicong 已提交
109
    ASSERT(0);
L
Liu Jicong 已提交
110
  }
L
Liu Jicong 已提交
111 112
}

S
shm  
Shengliang Guan 已提交
113
void sndProcessSMsg(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
114
  // operator exec
115 116 117 118 119
  /*if (pMsg->msgType == TDMT_SND_TASK_EXEC) {*/
  /*sndProcessTaskExecReq(pSnode, pMsg);*/
  /*} else {*/
  ASSERT(0);
  /*}*/
L
Liu Jicong 已提交
120
}