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) {
S
Shengliang Guan 已提交
21
  SSnode *pSnode = calloc(1, sizeof(SSnode));
L
Liu Jicong 已提交
22 23 24
  if (pSnode == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
25
  memcpy(&pSnode->cfg, pOption, sizeof(SSnodeOpt));
L
Liu Jicong 已提交
26 27 28 29 30
  pSnode->pMeta = sndMetaNew();
  if (pSnode->pMeta == NULL) {
    free(pSnode);
    return NULL;
  }
S
Shengliang Guan 已提交
31
  return pSnode;
H
refact  
Hongze Cheng 已提交
32 33
}

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

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

L
Liu Jicong 已提交
41 42 43 44
/*int32_t sndProcessMsg(SSnode *pSnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {*/
/**pRsp = NULL;*/
/*return 0;*/
/*}*/
S
Shengliang Guan 已提交
45

L
Liu Jicong 已提交
46
void sndDestroy(const char *path) {}
L
Liu Jicong 已提交
47

L
Liu Jicong 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
SStreamMeta *sndMetaNew() {
  SStreamMeta *pMeta = calloc(1, sizeof(SStreamMeta));
  if (pMeta == NULL) {
    return NULL;
  }
  pMeta->pHash = taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_NO_LOCK);
  if (pMeta->pHash == NULL) {
    free(pMeta);
    return NULL;
  }
  return pMeta;
}

void sndMetaDelete(SStreamMeta *pMeta) {
  taosHashCleanup(pMeta->pHash);
  free(pMeta);
}

int32_t sndMetaDeployTask(SStreamMeta *pMeta, SStreamTask *pTask) {
  pTask->executor = qCreateStreamExecTaskInfo(pTask->qmsg, NULL);
  return taosHashPut(pMeta->pHash, &pTask->taskId, sizeof(int32_t), pTask, sizeof(void *));
}

L
Liu Jicong 已提交
71 72 73 74
SStreamTask *sndMetaGetTask(SStreamMeta *pMeta, int32_t taskId) {
  return taosHashGet(pMeta->pHash, &taskId, sizeof(int32_t));
}

L
Liu Jicong 已提交
75 76 77
int32_t sndMetaRemoveTask(SStreamMeta *pMeta, int32_t taskId) {
  SStreamTask *pTask = taosHashGet(pMeta->pHash, &taskId, sizeof(int32_t));
  if (pTask == NULL) {
L
Liu Jicong 已提交
78 79
    return -1;
  }
L
Liu Jicong 已提交
80 81 82 83
  free(pTask->qmsg);
  // TODO:free executor
  free(pTask);
  return taosHashRemove(pMeta->pHash, &taskId, sizeof(int32_t));
L
Liu Jicong 已提交
84 85
}

L
Liu Jicong 已提交
86 87 88 89 90 91 92 93 94 95
static int32_t sndProcessTaskExecReq(SSnode *pSnode, SRpcMsg *pMsg) {
  SMsgHead    *pHead = pMsg->pCont;
  int32_t      taskId = pHead->streamTaskId;
  SStreamTask *pTask = sndMetaGetTask(pSnode->pMeta, taskId);
  if (pTask == NULL) {
    return -1;
  }
  return 0;
}

L
Liu Jicong 已提交
96
int32_t sndProcessUMsg(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
97
  // stream deploy
L
Liu Jicong 已提交
98 99
  // stream stop/resume
  // operator exec
L
Liu Jicong 已提交
100 101 102 103 104 105 106 107 108 109 110 111
  if (pMsg->msgType == TDMT_SND_TASK_DEPLOY) {
    void        *msg = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
    SStreamTask *pTask = malloc(sizeof(SStreamTask));
    if (pTask == NULL) {
      return -1;
    }
    SCoder decoder;
    tCoderInit(&decoder, TD_LITTLE_ENDIAN, msg, pMsg->contLen - sizeof(SMsgHead), TD_DECODER);
    tDecodeSStreamTask(&decoder, pTask);
    tCoderClear(&decoder);

    sndMetaDeployTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
112 113
  } else if (pMsg->msgType == TDMT_SND_TASK_EXEC) {
    sndProcessTaskExecReq(pSnode, pMsg);
L
Liu Jicong 已提交
114
  } else {
L
Liu Jicong 已提交
115
    ASSERT(0);
L
Liu Jicong 已提交
116
  }
L
Liu Jicong 已提交
117 118 119 120 121
  return 0;
}

int32_t sndProcessSMsg(SSnode *pSnode, SRpcMsg *pMsg) {
  // operator exec
L
Liu Jicong 已提交
122 123 124 125 126
  if (pMsg->msgType == TDMT_SND_TASK_EXEC) {
    sndProcessTaskExecReq(pSnode, pMsg);
  } else {
    ASSERT(0);
  }
L
Liu Jicong 已提交
127 128
  return 0;
}